From 2961e46c5c484531cf2a4c6bcf29d4fced2537cf Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Thu, 10 Mar 2022 12:55:08 -0800 Subject: [PATCH 01/29] Bump prismjs from 1.25.0 to 1.27.0 in /dashboards-observability (#508) (#574) Bumps [prismjs](https://github.com/PrismJS/prism) from 1.25.0 to 1.27.0. - [Release notes](https://github.com/PrismJS/prism/releases) - [Changelog](https://github.com/PrismJS/prism/blob/master/CHANGELOG.md) - [Commits](https://github.com/PrismJS/prism/compare/v1.25.0...v1.27.0) --- updated-dependencies: - dependency-name: prismjs dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (cherry picked from commit b4f491a16f81725db6d63f604a3020e5b89dd720) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- dashboards-observability/yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboards-observability/yarn.lock b/dashboards-observability/yarn.lock index 75c63573b..4d07cfde7 100644 --- a/dashboards-observability/yarn.lock +++ b/dashboards-observability/yarn.lock @@ -2312,9 +2312,9 @@ pretty-bytes@^5.4.1: integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== prismjs@^1.22.0, prismjs@~1.24.0: - version "1.25.0" - resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.25.0.tgz#6f822df1bdad965734b310b315a23315cf999756" - integrity sha512-WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg== + version "1.27.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" + integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== process-nextick-args@~2.0.0: version "2.0.1" From 4afca569100adf2b6b108a124709b89016c9a697 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Thu, 10 Mar 2022 17:39:23 -0800 Subject: [PATCH 02/29] change to support java 8 in compile and runtime (#575) (#576) Signed-off-by: Zhongnan Su (cherry picked from commit 5c43e9dac336b37fa4f6f002709e0965015383aa) Co-authored-by: Zhongnan Su --- .../opensearch-observability-test-and-build-workflow.yml | 1 + .../org/opensearch/observability/settings/PluginSettings.kt | 4 ++-- .../kotlin/org/opensearch/observability/PluginRestTestCase.kt | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/opensearch-observability-test-and-build-workflow.yml b/.github/workflows/opensearch-observability-test-and-build-workflow.yml index 618308a33..2c33f8511 100644 --- a/.github/workflows/opensearch-observability-test-and-build-workflow.yml +++ b/.github/workflows/opensearch-observability-test-and-build-workflow.yml @@ -12,6 +12,7 @@ jobs: strategy: matrix: java: + - 8 - 11 - 14 diff --git a/opensearch-observability/src/main/kotlin/org/opensearch/observability/settings/PluginSettings.kt b/opensearch-observability/src/main/kotlin/org/opensearch/observability/settings/PluginSettings.kt index 7782425ca..0f5d31504 100644 --- a/opensearch-observability/src/main/kotlin/org/opensearch/observability/settings/PluginSettings.kt +++ b/opensearch-observability/src/main/kotlin/org/opensearch/observability/settings/PluginSettings.kt @@ -15,7 +15,7 @@ import org.opensearch.common.settings.Settings import org.opensearch.observability.ObservabilityPlugin.Companion.LOG_PREFIX import org.opensearch.observability.ObservabilityPlugin.Companion.PLUGIN_NAME import java.io.IOException -import java.nio.file.Path +import java.nio.file.Paths /** * settings specific to observability Plugin. @@ -246,7 +246,7 @@ internal object PluginSettings { var settings: Settings? = null val configDirName = BootstrapInfo.getSystemProperties()?.get("opensearch.path.conf")?.toString() if (configDirName != null) { - val defaultSettingYmlFile = Path.of(configDirName, PLUGIN_NAME, "observability.yml") + val defaultSettingYmlFile = Paths.get(configDirName, PLUGIN_NAME, "observability.yml") try { settings = Settings.builder().loadFromPath(defaultSettingYmlFile).build() } catch (exception: IOException) { diff --git a/opensearch-observability/src/test/kotlin/org/opensearch/observability/PluginRestTestCase.kt b/opensearch-observability/src/test/kotlin/org/opensearch/observability/PluginRestTestCase.kt index 33afa6e80..c80e1bddd 100644 --- a/opensearch-observability/src/test/kotlin/org/opensearch/observability/PluginRestTestCase.kt +++ b/opensearch-observability/src/test/kotlin/org/opensearch/observability/PluginRestTestCase.kt @@ -38,7 +38,7 @@ import java.io.IOException import java.io.InputStreamReader import java.nio.charset.StandardCharsets import java.nio.file.Files -import java.nio.file.Path +import java.nio.file.Paths import java.security.cert.X509Certificate import javax.management.MBeanServerInvocationHandler import javax.management.ObjectName @@ -263,7 +263,7 @@ abstract class PluginRestTestCase : OpenSearchRestTestCase() { false ) proxy.getExecutionData(false)?.let { - val path = Path.of("$jacocoBuildPath/integTest.exec") + val path = Paths.get("$jacocoBuildPath/integTest.exec") Files.write(path, it) } } From c85b9ef2359b3a6e0d8bf02dfbd792dd271de2f2 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Mon, 14 Mar 2022 11:41:23 -0700 Subject: [PATCH 03/29] Add 1.3.0 release notes (#580) (#582) Signed-off-by: Eugene Lee --- ...rch-observability.release-notes-1.3.0.0.md | 92 +++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 release-notes/opensearch-observability.release-notes-1.3.0.0.md diff --git a/release-notes/opensearch-observability.release-notes-1.3.0.0.md b/release-notes/opensearch-observability.release-notes-1.3.0.0.md new file mode 100644 index 000000000..2cd38fc33 --- /dev/null +++ b/release-notes/opensearch-observability.release-notes-1.3.0.0.md @@ -0,0 +1,92 @@ +## Version 1.3.0.0 Release Notes + +Compatible with OpenSearch and OpenSearch Dashboards Version 1.3.0 + +### Features +* Feature latest observability ([#509](https://github.com/opensearch-project/observability/pull/509)) +* Live tail - Event analytics ([#494](https://github.com/opensearch-project/observability/pull/494)) +* Add Events Flyout and Correlate Traces with logs ([#493](https://github.com/opensearch-project/observability/pull/493)) +* Merge Application Analytics into main ([#454](https://github.com/opensearch-project/observability/pull/454)) + +### Enhancements +* Disable duplicate visualization and enable edit panel ([#554](https://github.com/opensearch-project/observability/pull/554)) +* Allow app creation with one composition ([#557](https://github.com/opensearch-project/observability/pull/557)) +* Add ability to choose visualization for availability ([#552](https://github.com/opensearch-project/observability/pull/552)) +* added common visualization parser ([#550](https://github.com/opensearch-project/observability/pull/550)) +* converting datetime to utc from picker ([#551](https://github.com/opensearch-project/observability/pull/551)) +* Feature/remove timestamp saving ([#546](https://github.com/opensearch-project/observability/pull/546)) +* Feature convert browser time to utc time ([#542](https://github.com/opensearch-project/observability/pull/542)) +* replace viz icon ([#543](https://github.com/opensearch-project/observability/pull/543)) +* Add availability metrics to app table ([#539](https://github.com/opensearch-project/observability/pull/539)) +* Add autocomplete to panels, add parse command to app analytics ([#529](https://github.com/opensearch-project/observability/pull/529)) +* changes panel requests & date, traces link in events ([#533](https://github.com/opensearch-project/observability/pull/533)) +* Include related services node under service filter ([#527](https://github.com/opensearch-project/observability/pull/527)) +* Change availability level to have expression ([#525](https://github.com/opensearch-project/observability/pull/525)) +* Feature/sort only datatable in flyout ([#522](https://github.com/opensearch-project/observability/pull/522)) +* Add service map to services and trace view page ([#518](https://github.com/opensearch-project/observability/pull/518)) +* Edit visualization in Application Analytics ([#519](https://github.com/opensearch-project/observability/pull/519)) +* Add parse command back in autocompletion ([#517](https://github.com/opensearch-project/observability/pull/517)) +* Add autocomplete enhancements ([#507](https://github.com/opensearch-project/observability/pull/507)) +* Make base query immutable ([#500](https://github.com/opensearch-project/observability/pull/500)) +* Redirect to trace tab, updateMappings once, etc ([#481](https://github.com/opensearch-project/observability/pull/481)) +* Finish autocomplete logic for after where ([#480](https://github.com/opensearch-project/observability/pull/480)) +* UI changes to Metrics Tab ([#476](https://github.com/opensearch-project/observability/pull/476)) +* Add date_nanos to valid time fields ([#426](https://github.com/opensearch-project/observability/pull/426)) +* Separate default filters and extra filters ([#474](https://github.com/opensearch-project/observability/pull/474)) +* Saving time for individual applications ([#473](https://github.com/opensearch-project/observability/pull/473)) +* Support lazy scroll and auto complete for PPL parse command ([#421](https://github.com/opensearch-project/observability/pull/421)) +* Add observability visualization to notebooks ([#351](https://github.com/opensearch-project/observability/pull/351)) + +### Bug Fixes +* fix for datepicker issue ([#571](https://github.com/opensearch-project/observability/pull/571)) +* Show saved time range when editing saved visualization ([#570](https://github.com/opensearch-project/observability/pull/570)) +* Issue/query click ([#569](https://github.com/opensearch-project/observability/pull/569)) +* Fix fields not showing up in panels autocomplete ([#566](https://github.com/opensearch-project/observability/pull/566)) +* Pass in prop curSelectedTabId for live tail ([#567](https://github.com/opensearch-project/observability/pull/567)) +* added fix for threshold ([#568](https://github.com/opensearch-project/observability/pull/568)) +* fix interval selector issue, revert interval function changes ([#563](https://github.com/opensearch-project/observability/pull/563)) +* remove bold letter and extra pranthesis ([#559](https://github.com/opensearch-project/observability/pull/559)) +* Issue horizontal bar ([#556](https://github.com/opensearch-project/observability/pull/556)) +* final live tail fixes ([#558](https://github.com/opensearch-project/observability/pull/558)) +* fix page flicker for live tail ([#541](https://github.com/opensearch-project/observability/pull/541)) +* Fix multiple flyouts issue in explorer ([#538](https://github.com/opensearch-project/observability/pull/538)) +* Flyout bugs ([#540](https://github.com/opensearch-project/observability/pull/540)) +* detete request and response changes for event and panels ([#530](https://github.com/opensearch-project/observability/pull/530)) +* Issue/darkmode support viz config ([#521](https://github.com/opensearch-project/observability/pull/521)) +* Visualizations do not follow set timerange ([#516](https://github.com/opensearch-project/observability/pull/516)) +* Fix empty userConfigs stringify ([#513](https://github.com/opensearch-project/observability/pull/513)) +* Fix lower margin of autocomplete being cut off ([#512](https://github.com/opensearch-project/observability/pull/512)) +* fix issue of clicking query caused crash ([#515](https://github.com/opensearch-project/observability/pull/515)) +* Feature viz saving on missing fields ([#511](https://github.com/opensearch-project/observability/pull/511)) +* Fix events flyout bugs and Styling ([#510](https://github.com/opensearch-project/observability/pull/510)) +* Bump prismjs from 1.25.0 to 1.27.0 in /dashboards-observability ([#508](https://github.com/opensearch-project/observability/pull/508)) +* Revert query pre-processing for parse command ([#497](https://github.com/opensearch-project/observability/pull/497)) +* Fix create/edit page bug ([#475](https://github.com/opensearch-project/observability/pull/475)) +* Fix queries being filtered out ([#472](https://github.com/opensearch-project/observability/pull/472)) +* Guava package update ([#404](https://github.com/opensearch-project/observability/pull/404)) +* CVE fix:json-schema, gson & glob-parent ([#368](https://github.com/opensearch-project/observability/pull/368)) + +### Documentation +* Sync PPL commands doc with main repo ([#549](https://github.com/opensearch-project/observability/pull/549)) +* Fixed documentation links ([#534](https://github.com/opensearch-project/observability/pull/534)) +* Add parse command docs ([#535](https://github.com/opensearch-project/observability/pull/535)) +* updating readme and badges ([#352](https://github.com/opensearch-project/observability/pull/352)) + +### Maintenance +* bump main to 1.3 ([#361](https://github.com/opensearch-project/observability/pull/361)) + +### Infrastructure +* change to support java 8 in compile and runtime ([#575](https://github.com/opensearch-project/observability/pull/575)) +* Update cypress test ([#564](https://github.com/opensearch-project/observability/pull/564)) +* fixed flaky panel test ([#565](https://github.com/opensearch-project/observability/pull/565)) +* Feature flyout tests ([#553](https://github.com/opensearch-project/observability/pull/553)) +* Add cypress tests for application analytics ([#544](https://github.com/opensearch-project/observability/pull/544)) +* Update panels cypress ([#545](https://github.com/opensearch-project/observability/pull/545)) +* Update cypress for trace analytics traces view ([#536](https://github.com/opensearch-project/observability/pull/536)) +* Cypress fix for panels and events ([#531](https://github.com/opensearch-project/observability/pull/531)) +* updated panels flaky jest tests ([#505](https://github.com/opensearch-project/observability/pull/505)) +* Change Default CI java version to 11 ([#504](https://github.com/opensearch-project/observability/pull/504)) +* Update backport and add auto-delete workflows ([#496](https://github.com/opensearch-project/observability/pull/496)) +* Add auto backporting functionality ([#491](https://github.com/opensearch-project/observability/pull/491)) +* [main] jcenter removed from gradle.build ([#374](https://github.com/opensearch-project/observability/pull/374)) +* Configure WhiteSource for GitHub.com ([#365](https://github.com/opensearch-project/observability/pull/365)) \ No newline at end of file From 4e46b74762371712f02763554c00503f63cb65fa Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Tue, 26 Jul 2022 14:53:46 -0700 Subject: [PATCH 04/29] query manager Signed-off-by: Eric Wei --- .../opensearch_dashboards.json | 4 +- dashboards-observability/package.json | 9 +- .../event_analytics/explorer/explorer.tsx | 53 +- .../adaptors/case_insensitive_char_stream.ts | 62 + .../bin/.antlr/OpenSearchPPLLexer.interp | 831 ++ .../antlr/bin/.antlr/OpenSearchPPLLexer.java | 1277 +++ .../bin/.antlr/OpenSearchPPLLexer.tokens | 527 + .../bin/.antlr/OpenSearchPPLParser.interp | 634 ++ .../antlr/bin/.antlr/OpenSearchPPLParser.java | 6612 +++++++++++ .../bin/.antlr/OpenSearchPPLParser.tokens | 527 + .../antlr/bin/OpenSearchPPLLexer.interp | 831 ++ .../antlr/bin/OpenSearchPPLLexer.tokens | 527 + .../antlr/bin/OpenSearchPPLLexer.ts | 1768 +++ .../antlr/bin/OpenSearchPPLParser.interp | 634 ++ .../antlr/bin/OpenSearchPPLParser.tokens | 527 + .../antlr/bin/OpenSearchPPLParser.ts | 9805 +++++++++++++++++ .../antlr/bin/OpenSearchPPLParserListener.ts | 1327 +++ .../antlr/bin/OpenSearchPPLParserVisitor.ts | 885 ++ .../query_manager/antlr/ppl_syntax_parser.ts | 31 + .../query_manager/ast/builder/ast_builder.ts | 229 + .../ast/builder/query_builder.ts | 3 + .../ast/builder/stats_builder.ts | 120 + .../ast/expression/AggregateFunction.ts | 37 + .../ast/expression/AggregateTerm.ts | 31 + .../query_manager/ast/expression/field.ts | 24 + .../query_manager/ast/expression/group_by.ts | 29 + .../query_manager/ast/expression/index.ts | 6 + .../query_manager/ast/expression/span.ts | 28 + .../ast/expression/spanExpression.ts | 30 + .../query_manager/ast/index.ts | 6 + .../query_manager/ast/node.ts | 35 + .../query_manager/ast/tree/aggragations.ts | 47 + .../grammar/.antlr/OpenSearchPPLLexer.interp | 831 ++ .../grammar/.antlr/OpenSearchPPLLexer.java | 1277 +++ .../grammar/.antlr/OpenSearchPPLLexer.tokens | 527 + .../grammar/.antlr/OpenSearchPPLParser.interp | 634 ++ .../grammar/.antlr/OpenSearchPPLParser.java | 6612 +++++++++++ .../grammar/.antlr/OpenSearchPPLParser.tokens | 527 + .../grammar/OpenSearchPPLLexer.g4 | 333 + .../grammar/OpenSearchPPLParser.g4 | 475 + .../query_manager/index.ts | 6 + .../query_manager/ppl_query_manager.ts | 18 + .../query_manager/query_builder/index.ts | 1 + .../query_builder/ppl_query_builder.ts | 35 + .../query_manager/query_parser/index.ts | 8 + .../query_parser/ppl_query_parser.ts | 51 + .../query_parser/ppl_stats_visitor.ts | 338 + dashboards-observability/yarn.lock | 15 + 48 files changed, 39177 insertions(+), 7 deletions(-) create mode 100644 dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts create mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp create mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java create mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens create mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp create mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java create mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts create mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts create mode 100644 dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts create mode 100644 dashboards-observability/query_manager/ast/builder/ast_builder.ts create mode 100644 dashboards-observability/query_manager/ast/builder/query_builder.ts create mode 100644 dashboards-observability/query_manager/ast/builder/stats_builder.ts create mode 100644 dashboards-observability/query_manager/ast/expression/AggregateFunction.ts create mode 100644 dashboards-observability/query_manager/ast/expression/AggregateTerm.ts create mode 100644 dashboards-observability/query_manager/ast/expression/field.ts create mode 100644 dashboards-observability/query_manager/ast/expression/group_by.ts create mode 100644 dashboards-observability/query_manager/ast/expression/index.ts create mode 100644 dashboards-observability/query_manager/ast/expression/span.ts create mode 100644 dashboards-observability/query_manager/ast/expression/spanExpression.ts create mode 100644 dashboards-observability/query_manager/ast/index.ts create mode 100644 dashboards-observability/query_manager/ast/node.ts create mode 100644 dashboards-observability/query_manager/ast/tree/aggragations.ts create mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp create mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java create mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens create mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp create mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java create mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens create mode 100644 dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 create mode 100644 dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 create mode 100644 dashboards-observability/query_manager/index.ts create mode 100644 dashboards-observability/query_manager/ppl_query_manager.ts create mode 100644 dashboards-observability/query_manager/query_builder/index.ts create mode 100644 dashboards-observability/query_manager/query_builder/ppl_query_builder.ts create mode 100644 dashboards-observability/query_manager/query_parser/index.ts create mode 100644 dashboards-observability/query_manager/query_parser/ppl_query_parser.ts create mode 100644 dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts diff --git a/dashboards-observability/opensearch_dashboards.json b/dashboards-observability/opensearch_dashboards.json index b8d9645c6..aaa8be58e 100644 --- a/dashboards-observability/opensearch_dashboards.json +++ b/dashboards-observability/opensearch_dashboards.json @@ -1,7 +1,7 @@ { "id": "observabilityDashboards", - "version": "2.1.0.0", - "opensearchDashboardsVersion": "2.1.0", + "version": "2.0.1.0", + "opensearchDashboardsVersion": "2.0.1", "server": true, "ui": true, "requiredPlugins": [ diff --git a/dashboards-observability/package.json b/dashboards-observability/package.json index d068e60c4..fc8b1e4a2 100644 --- a/dashboards-observability/package.json +++ b/dashboards-observability/package.json @@ -1,6 +1,6 @@ { "name": "observability-dashboards", - "version": "2.1.0.0", + "version": "2.0.1.0", "main": "index.ts", "license": "Apache-2.0", "scripts": { @@ -9,7 +9,9 @@ "test": "../../node_modules/.bin/jest --config ./test/jest.config.js", "cypress:run": "TZ=America/Los_Angeles cypress run", "cypress:open": "TZ=America/Los_Angeles cypress open", - "plugin_helpers": "node ../../scripts/plugin_helpers" + "plugin_helpers": "node ../../scripts/plugin_helpers", + "antlr4ts_ppl_lexer": "antlr4ts -visitor ./antlr/OpenSearchPPLLexer.g4", + "antlr4ts_ppl_parser": "antlr4ts -visitor ./antlr/OpenSearchPPLParser.g4" }, "dependencies": { "@algolia/autocomplete-core": "^1.4.1", @@ -19,6 +21,8 @@ "@reduxjs/toolkit": "^1.6.1", "ag-grid-community": "^27.3.0", "ag-grid-react": "^27.3.0", + "antlr4": "4.8.0", + "antlr4ts": "^0.5.0-alpha.4", "plotly.js-dist": "^2.2.0", "react-graph-vis": "^1.0.5", "react-paginate": "^8.1.3", @@ -29,6 +33,7 @@ "@types/enzyme-adapter-react-16": "^1.0.6", "@types/react-plotly.js": "^2.5.0", "@types/react-test-renderer": "^16.9.1", + "antlr4ts-cli": "^0.5.0-alpha.4", "cypress": "^5.0.0", "eslint": "^6.8.0", "jest-dom": "^4.0.0", diff --git a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx index 015bf48f5..a9f1f36a9 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx @@ -77,6 +77,7 @@ import { getVizContainerProps } from '../../visualizations/charts/helpers'; import { parseGetSuggestions, onItemSelect } from '../../common/search/autocomplete_logic'; import { formatError } from '../utils'; import { sleep } from '../../common/live_tail/live_tail_button'; +import { QueryManager } from '../../../../query_manager/ppl_query_manager'; const TYPE_TAB_MAPPING = { [SAVED_QUERY]: TAB_EVENT_ID, @@ -806,27 +807,73 @@ export const Explorer = ({ ); }; + const testAntlr = (query: string) => { + const qm = new QueryManager(); + // const pplQueryBuilder = new PPLQueryBuilder(); + + // build query + const res = + qm + .queryBuilder() + .addSource('index') + .addPipe() + .addStats() + .addMetrics([ + { + field: '', + agg_func: 'count' + }, + { + field: 'bytes', + agg_func: 'avg', + alias: 'avg_bytes' + } + ]) + .addBy() + .addGroupBy([{ + field: 'host' + }, + { + field: 'tags' + } + ]) + .getQuery(); + + console.log('built res: ', res); + + // parse query + const parsed_res = + qm + .queryParser() + .parse(query) + .getStats(); + + console.log('parsed res: ', parsed_res); + + }; + const handleQuerySearch = useCallback( async (availability?: boolean) => { + // clear previous selected timestamp when index pattern changes if ( !isEmpty(tempQuery) && !isEmpty(query[RAW_QUERY]) && isIndexPatternChanged(tempQuery, query[RAW_QUERY]) ) { + await updateCurrentTimeStamp(''); } if (availability !== true) { await updateQueryInStore(tempQuery); } + testAntlr(query[RAW_QUERY]); fetchData(); }, [tempQuery, query[RAW_QUERY]] ); - const handleQueryChange = async (newQuery: string) => { - setTempQuery(newQuery); - }; + const handleQueryChange = async (newQuery: string) => setTempQuery(newQuery); const handleSavingObject = async () => { const currQuery = queryRef.current; diff --git a/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts b/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts new file mode 100644 index 000000000..599ae3432 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts @@ -0,0 +1,62 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { CharStream } from 'antlr4ts'; + +export class CaseInsensitiveCharStream { + + private stream: CharStream; + + get index() : number { + return this.stream.index; + } + + get size() : number { + return this.stream.size; + } + + get sourceName() : string { + return 'pplquery'; + } + + constructor(stream: CharStream) { + this.stream = stream; + } + + LA(offset: number) : number { + const c : number = this.stream.LA(offset); + if (c <= 0) { + return c; + } + + // case insensitivity support for PPL + return String.fromCodePoint(c).toUpperCase().codePointAt(0)!; + } + + consume() : void { + this.stream.consume(); + } + + mark() : number { + return this.stream.mark(); + } + + release(marker: number) : void { + this.stream.release(marker); + } + + seek(index: number) : void { + this.stream.seek(index); + }; + + getText(interval: any): string { + return this.stream.getText(interval); + } + + toString() : string { + return this.stream.toString(); + } + +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp new file mode 100644 index 000000000..68b2f0fd1 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp @@ -0,0 +1,831 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +DATE_SUFFIX +ID_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +DEC_DIGIT +ERROR_RECOGNITION + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN +null +null +WHITESPACE +ERRORCHANNEL + +mode names: +DEFAULT_MODE + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 274, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 2, 533, 2, 535, 267, 537, 268, 539, 269, 541, 270, 543, 2, 545, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java new file mode 100644 index 000000000..a4b0a792f --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java @@ -0,0 +1,1277 @@ +// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.2 +import org.antlr.v4.runtime.Lexer; +import org.antlr.v4.runtime.CharStream; +import org.antlr.v4.runtime.Token; +import org.antlr.v4.runtime.TokenStream; +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.atn.*; +import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.misc.*; + +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) +public class OpenSearchPPLLexer extends Lexer { + static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, + EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, + SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, + NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, + ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, + SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, + TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, + CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, + DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, + HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, + MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, + HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, + YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, + DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, + DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, + PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, + COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, + SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, + BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, + MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, + STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, + STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, + EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, + PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, + C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, + EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, + POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, + ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, + RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, + DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, + MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, + DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, + TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, + STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, + LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, + MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, + ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, + BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, + ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, + FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, + LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, + MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, + QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, + TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, + W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, + ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, + ERROR_RECOGNITION=269; + public static final int + WHITESPACE=2, ERRORCHANNEL=3; + public static String[] channelNames = { + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL" + }; + + public static String[] modeNames = { + "DEFAULT_MODE" + }; + + private static String[] makeRuleNames() { + return new String[] { + "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", + "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", + "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", + "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", + "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", + "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", + "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", + "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "DATE_SUFFIX", + "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", + "DEC_DIGIT", "ERROR_RECOGNITION" + }; + } + public static final String[] ruleNames = makeRuleNames(); + + private static String[] makeLiteralNames() { + return new String[] { + null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", + "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", + "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", + "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", + "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", + "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", + "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", + "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", + "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", + "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", + "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", + "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", + "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", + "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", + "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", + "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", + "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", + "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", + "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", + "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", + "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", + "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", + "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", + "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", + "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", + "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", + "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", + "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" + }; + } + private static final String[] _LITERAL_NAMES = makeLiteralNames(); + private static String[] makeSymbolicNames() { + return new String[] { + null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", + "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", + "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", + "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" + }; + } + private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + + public OpenSearchPPLLexer(CharStream input) { + super(input); + _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + + @Override + public String getGrammarFileName() { return "OpenSearchPPLLexer.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public String[] getChannelNames() { return channelNames; } + + @Override + public String[] getModeNames() { return modeNames; } + + @Override + public ATN getATN() { return _ATN; } + + private static final int _serializedATNSegments = 2; + private static final String _serializedATNSegment0 = + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u010f\u0a6f\b\1\4"+ + "\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n"+ + "\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+ + "\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+ + "\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+ + " \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+ + "+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+ + "\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t"+ + "=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4"+ + "I\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\t"+ + "T\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_"+ + "\4`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k"+ + "\tk\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv"+ + "\4w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t"+ + "\u0080\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084"+ + "\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089"+ + "\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+ + "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ + "\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095\t\u0095\4\u0096\t\u0096"+ + "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a\4\u009b"+ + "\t\u009b\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f\t\u009f"+ + "\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3\4\u00a4"+ + "\t\u00a4\4\u00a5\t\u00a5\4\u00a6\t\u00a6\4\u00a7\t\u00a7\4\u00a8\t\u00a8"+ + "\4\u00a9\t\u00a9\4\u00aa\t\u00aa\4\u00ab\t\u00ab\4\u00ac\t\u00ac\4\u00ad"+ + "\t\u00ad\4\u00ae\t\u00ae\4\u00af\t\u00af\4\u00b0\t\u00b0\4\u00b1\t\u00b1"+ + "\4\u00b2\t\u00b2\4\u00b3\t\u00b3\4\u00b4\t\u00b4\4\u00b5\t\u00b5\4\u00b6"+ + "\t\u00b6\4\u00b7\t\u00b7\4\u00b8\t\u00b8\4\u00b9\t\u00b9\4\u00ba\t\u00ba"+ + "\4\u00bb\t\u00bb\4\u00bc\t\u00bc\4\u00bd\t\u00bd\4\u00be\t\u00be\4\u00bf"+ + "\t\u00bf\4\u00c0\t\u00c0\4\u00c1\t\u00c1\4\u00c2\t\u00c2\4\u00c3\t\u00c3"+ + "\4\u00c4\t\u00c4\4\u00c5\t\u00c5\4\u00c6\t\u00c6\4\u00c7\t\u00c7\4\u00c8"+ + "\t\u00c8\4\u00c9\t\u00c9\4\u00ca\t\u00ca\4\u00cb\t\u00cb\4\u00cc\t\u00cc"+ + "\4\u00cd\t\u00cd\4\u00ce\t\u00ce\4\u00cf\t\u00cf\4\u00d0\t\u00d0\4\u00d1"+ + "\t\u00d1\4\u00d2\t\u00d2\4\u00d3\t\u00d3\4\u00d4\t\u00d4\4\u00d5\t\u00d5"+ + "\4\u00d6\t\u00d6\4\u00d7\t\u00d7\4\u00d8\t\u00d8\4\u00d9\t\u00d9\4\u00da"+ + "\t\u00da\4\u00db\t\u00db\4\u00dc\t\u00dc\4\u00dd\t\u00dd\4\u00de\t\u00de"+ + "\4\u00df\t\u00df\4\u00e0\t\u00e0\4\u00e1\t\u00e1\4\u00e2\t\u00e2\4\u00e3"+ + "\t\u00e3\4\u00e4\t\u00e4\4\u00e5\t\u00e5\4\u00e6\t\u00e6\4\u00e7\t\u00e7"+ + "\4\u00e8\t\u00e8\4\u00e9\t\u00e9\4\u00ea\t\u00ea\4\u00eb\t\u00eb\4\u00ec"+ + "\t\u00ec\4\u00ed\t\u00ed\4\u00ee\t\u00ee\4\u00ef\t\u00ef\4\u00f0\t\u00f0"+ + "\4\u00f1\t\u00f1\4\u00f2\t\u00f2\4\u00f3\t\u00f3\4\u00f4\t\u00f4\4\u00f5"+ + "\t\u00f5\4\u00f6\t\u00f6\4\u00f7\t\u00f7\4\u00f8\t\u00f8\4\u00f9\t\u00f9"+ + "\4\u00fa\t\u00fa\4\u00fb\t\u00fb\4\u00fc\t\u00fc\4\u00fd\t\u00fd\4\u00fe"+ + "\t\u00fe\4\u00ff\t\u00ff\4\u0100\t\u0100\4\u0101\t\u0101\4\u0102\t\u0102"+ + "\4\u0103\t\u0103\4\u0104\t\u0104\4\u0105\t\u0105\4\u0106\t\u0106\4\u0107"+ + "\t\u0107\4\u0108\t\u0108\4\u0109\t\u0109\4\u010a\t\u010a\4\u010b\t\u010b"+ + "\4\u010c\t\u010c\4\u010d\t\u010d\4\u010e\t\u010e\4\u010f\t\u010f\4\u0110"+ + "\t\u0110\4\u0111\t\u0111\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\3\3"+ + "\3\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6"+ + "\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3"+ + "\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3"+ + "\f\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3"+ + "\17\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\21\3\22\3\22\3\22\3\23\3"+ + "\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3"+ + "\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3"+ + "\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3"+ + "\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3"+ + "\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\3"+ + "\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3!\3"+ + "!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3"+ + "#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+ + "&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3"+ + "(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3"+ + "*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3,\3,\3"+ + ",\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3"+ + "-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ + ".\3.\3.\3.\3.\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\62\3"+ + "\62\3\62\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3"+ + "\65\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3"+ + "8\38\38\38\38\38\38\38\38\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3"+ + ":\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3"+ + "<\3<\3<\3=\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3?\3?\3?\3?\3@\3@\3@\3@\3"+ + "@\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3"+ + "D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3"+ + "E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3"+ + "F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3"+ + "H\3H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3J\3J\3"+ + "J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3K\3"+ + "K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3M\3N\3"+ + "N\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3"+ + "P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3S\3S\3S\3"+ + "S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3"+ + "W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Z\3Z\3[\3[\3\\\3\\"+ + "\3]\3]\3^\3^\3_\3_\3_\3`\3`\3`\3a\3a\3a\3b\3b\3c\3c\3d\3d\3e\3e\3f\3f"+ + "\3g\3g\3h\3h\3i\3i\3j\3j\3k\3k\3l\3l\3m\3m\3n\3n\3o\3o\3p\3p\3q\3q\3r"+ + "\3r\3s\3s\3s\3s\3t\3t\3t\3t\3t\3t\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u"+ + "\3u\3u\3u\3v\3v\3v\3v\3v\3v\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3x\3x"+ + "\3x\3x\3y\3y\3y\3y\3y\3z\3z\3z\3z\3z\3z\3z\3{\3{\3{\3{\3|\3|\3|\3|\3|"+ + "\3}\3}\3}\3}\3}\3}\3~\3~\3~\3~\3~\3~\3\177\3\177\3\177\3\177\3\177\3\177"+ + "\3\177\3\u0080\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082"+ + "\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083"+ + "\3\u0083\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ + "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085"+ + "\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086"+ + "\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0087"+ + "\3\u0087\3\u0087\3\u0087\3\u0087\3\u0087\3\u0088\3\u0088\3\u0088\3\u0088"+ + "\3\u0088\3\u0089\3\u0089\3\u0089\3\u0089\3\u0089\3\u008a\3\u008a\3\u008a"+ + "\3\u008a\3\u008a\3\u008a\3\u008a\3\u008b\3\u008b\3\u008b\3\u008b\3\u008b"+ + "\3\u008b\3\u008b\3\u008b\3\u008b\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ + "\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ + "\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008e\3\u008e"+ + "\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e"+ + "\3\u008e\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f"+ + "\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090"+ + "\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091"+ + "\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092"+ + "\3\u0092\3\u0092\3\u0092\3\u0092\3\u0093\3\u0093\3\u0093\3\u0093\3\u0093"+ + "\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094"+ + "\3\u0094\3\u0095\3\u0095\3\u0096\3\u0096\3\u0096\3\u0097\3\u0097\3\u0097"+ + "\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\3\u0098\3\u0099\3\u0099\3\u0099"+ + "\3\u0099\3\u0099\3\u0099\3\u0099\3\u0099\3\u009a\3\u009a\3\u009a\3\u009a"+ + "\3\u009a\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009c\3\u009c"+ + "\3\u009d\3\u009d\3\u009d\3\u009d\3\u009e\3\u009e\3\u009e\3\u009e\3\u009e"+ + "\3\u009e\3\u009f\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a1"+ + "\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a2\3\u00a2"+ + "\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4\3\u00a5"+ + "\3\u00a5\3\u00a5\3\u00a5\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6"+ + "\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a8\3\u00a8"+ + "\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00aa\3\u00aa"+ + "\3\u00aa\3\u00aa\3\u00aa\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab"+ + "\3\u00ab\3\u00ab\3\u00ab\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ad"+ + "\3\u00ad\3\u00ad\3\u00ad\3\u00ad\3\u00ae\3\u00ae\3\u00ae\3\u00ae\3\u00ae"+ + "\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00b0\3\u00b0\3\u00b0"+ + "\3\u00b0\3\u00b1\3\u00b1\3\u00b1\3\u00b1\3\u00b2\3\u00b2\3\u00b2\3\u00b2"+ + "\3\u00b2\3\u00b2\3\u00b2\3\u00b2\3\u00b3\3\u00b3\3\u00b3\3\u00b3\3\u00b3"+ + "\3\u00b3\3\u00b3\3\u00b3\3\u00b4\3\u00b4\3\u00b4\3\u00b4\3\u00b5\3\u00b5"+ + "\3\u00b5\3\u00b5\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6"+ + "\3\u00b6\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b8\3\u00b8\3\u00b8"+ + "\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b9\3\u00b9\3\u00b9"+ + "\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00ba\3\u00ba\3\u00ba"+ + "\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00bb"+ + "\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb"+ + "\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc"+ + "\3\u00bc\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd"+ + "\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be"+ + "\3\u00be\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf"+ + "\3\u00bf\3\u00bf\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0"+ + "\3\u00c0\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c2\3\u00c2\3\u00c2"+ + "\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2"+ + "\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3"+ + "\3\u00c3\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4"+ + "\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c5\3\u00c5\3\u00c5\3\u00c5\3\u00c5"+ + "\3\u00c5\3\u00c5\3\u00c5\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6"+ + "\3\u00c6\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7"+ + "\3\u00c7\3\u00c7\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c9"+ + "\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00ca\3\u00ca\3\u00ca\3\u00ca"+ + "\3\u00ca\3\u00cb\3\u00cb\3\u00cb\3\u00cc\3\u00cc\3\u00cc\3\u00cc\3\u00cc"+ + "\3\u00cc\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00ce\3\u00ce"+ + "\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00cf\3\u00cf\3\u00cf\3\u00cf"+ + "\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00d0\3\u00d0\3\u00d0"+ + "\3\u00d0\3\u00d0\3\u00d0\3\u00d0\3\u00d1\3\u00d1\3\u00d1\3\u00d1\3\u00d1"+ + "\3\u00d1\3\u00d1\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d3"+ + "\3\u00d3\3\u00d3\3\u00d3\3\u00d3\3\u00d4\3\u00d4\3\u00d4\3\u00d4\3\u00d4"+ + "\3\u00d4\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d6"+ + "\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d7\3\u00d7"+ + "\3\u00d7\3\u00d7\3\u00d7\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d9"+ + "\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00da\3\u00da\3\u00da"+ + "\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00db\3\u00db"+ + "\3\u00db\3\u00db\3\u00db\3\u00db\3\u00db\3\u00dc\3\u00dc\3\u00dc\3\u00dc"+ + "\3\u00dc\3\u00dc\3\u00dc\3\u00dd\3\u00dd\3\u00dd\3\u00de\3\u00de\3\u00de"+ + "\3\u00de\3\u00de\3\u00de\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df"+ + "\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00e0\3\u00e0"+ + "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ + "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ + "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ + "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e3"+ + "\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e5\3\u00e5\3\u00e5\3\u00e5\3\u00e5"+ + "\3\u00e5\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ + "\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ + "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7"+ + "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ + "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ + "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00ea\3\u00ea\3\u00ea\3\u00ea\3\u00ea"+ + "\3\u00ea\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ + "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ + "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ + "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ + "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee"+ + "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ef\3\u00ef\3\u00ef\3\u00ef"+ + "\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00f0\3\u00f0\3\u00f0"+ + "\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ + "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ + "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3"+ + "\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5"+ + "\3\u00f5\3\u00f5\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6"+ + "\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ + "\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ + "\3\u00f7\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8"+ + "\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f9\3\u00f9"+ + "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9"+ + "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00fa"+ + "\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fb\3\u00fb"+ + "\3\u00fb\3\u00fb\3\u00fb\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc"+ + "\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fd\3\u00fd\3\u00fd"+ + "\3\u00fd\3\u00fd\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ + "\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ + "\3\u00fe\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u0100\3\u0100\3\u0100"+ + "\3\u0101\3\u0101\3\u0102\3\u0102\3\u0103\3\u0103\3\u0104\3\u0104\3\u0105"+ + "\3\u0105\3\u0106\3\u0106\3\u0107\3\u0107\3\u0108\6\u0108\u0a19\n\u0108"+ + "\r\u0108\16\u0108\u0a1a\3\u0109\6\u0109\u0a1e\n\u0109\r\u0109\16\u0109"+ + "\u0a1f\5\u0109\u0a22\n\u0109\3\u0109\3\u0109\6\u0109\u0a26\n\u0109\r\u0109"+ + "\16\u0109\u0a27\3\u010a\3\u010a\6\u010a\u0a2c\n\u010a\r\u010a\16\u010a"+ + "\u0a2d\7\u010a\u0a30\n\u010a\f\u010a\16\u010a\u0a33\13\u010a\3\u010b\6"+ + "\u010b\u0a36\n\u010b\r\u010b\16\u010b\u0a37\3\u010b\7\u010b\u0a3b\n\u010b"+ + "\f\u010b\16\u010b\u0a3e\13\u010b\3\u010c\3\u010c\3\u010c\3\u010d\3\u010d"+ + "\3\u010d\3\u010d\3\u010d\3\u010d\7\u010d\u0a49\n\u010d\f\u010d\16\u010d"+ + "\u0a4c\13\u010d\3\u010d\3\u010d\3\u010e\3\u010e\3\u010e\3\u010e\3\u010e"+ + "\3\u010e\7\u010e\u0a56\n\u010e\f\u010e\16\u010e\u0a59\13\u010e\3\u010e"+ + "\3\u010e\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\7\u010f\u0a63"+ + "\n\u010f\f\u010f\16\u010f\u0a66\13\u010f\3\u010f\3\u010f\3\u0110\3\u0110"+ + "\3\u0111\3\u0111\3\u0111\3\u0111\3\u0a37\2\u0112\3\3\5\4\7\5\t\6\13\7"+ + "\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25"+ + ")\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O"+ + ")Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081"+ + "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095"+ + "L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9"+ + "V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd"+ + "`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1"+ + "j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5"+ + "t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9"+ + "~\u00fb\177\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105\u0084"+ + "\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111\u008a"+ + "\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d\u0090"+ + "\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129\u0096"+ + "\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135\u009c"+ + "\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141\u00a2"+ + "\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d\u00a8"+ + "\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159\u00ae"+ + "\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165\u00b4"+ + "\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171\u00ba"+ + "\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d\u00c0"+ + "\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189\u00c6"+ + "\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195\u00cc"+ + "\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1\u00d2"+ + "\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8"+ + "\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9\u00de"+ + "\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4"+ + "\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea"+ + "\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd\u00f0"+ + "\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6"+ + "\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc"+ + "\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201\u0102"+ + "\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d\u0108"+ + "\u020f\u0109\u0211\u010a\u0213\2\u0215\2\u0217\u010b\u0219\u010c\u021b"+ + "\u010d\u021d\u010e\u021f\2\u0221\u010f\3\2\n\3\2/\60\4\2,,\62;\4\2,,B"+ + "\\\7\2,,//\62;C\\aa\4\2$$^^\4\2))^^\4\2^^bb\3\2\62;\2\u0a7c\2\3\3\2\2"+ + "\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3"+ + "\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2"+ + "\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2"+ + "\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2"+ + "\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3"+ + "\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2"+ + "\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2"+ + "W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3"+ + "\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2"+ + "\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2"+ + "}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2"+ + "\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f"+ + "\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2"+ + "\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1"+ + "\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2"+ + "\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3"+ + "\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2"+ + "\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5"+ + "\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2"+ + "\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7"+ + "\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2"+ + "\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9"+ + "\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2"+ + "\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb"+ + "\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103\3\2\2"+ + "\2\2\u0105\3\2\2\2\2\u0107\3\2\2\2\2\u0109\3\2\2\2\2\u010b\3\2\2\2\2\u010d"+ + "\3\2\2\2\2\u010f\3\2\2\2\2\u0111\3\2\2\2\2\u0113\3\2\2\2\2\u0115\3\2\2"+ + "\2\2\u0117\3\2\2\2\2\u0119\3\2\2\2\2\u011b\3\2\2\2\2\u011d\3\2\2\2\2\u011f"+ + "\3\2\2\2\2\u0121\3\2\2\2\2\u0123\3\2\2\2\2\u0125\3\2\2\2\2\u0127\3\2\2"+ + "\2\2\u0129\3\2\2\2\2\u012b\3\2\2\2\2\u012d\3\2\2\2\2\u012f\3\2\2\2\2\u0131"+ + "\3\2\2\2\2\u0133\3\2\2\2\2\u0135\3\2\2\2\2\u0137\3\2\2\2\2\u0139\3\2\2"+ + "\2\2\u013b\3\2\2\2\2\u013d\3\2\2\2\2\u013f\3\2\2\2\2\u0141\3\2\2\2\2\u0143"+ + "\3\2\2\2\2\u0145\3\2\2\2\2\u0147\3\2\2\2\2\u0149\3\2\2\2\2\u014b\3\2\2"+ + "\2\2\u014d\3\2\2\2\2\u014f\3\2\2\2\2\u0151\3\2\2\2\2\u0153\3\2\2\2\2\u0155"+ + "\3\2\2\2\2\u0157\3\2\2\2\2\u0159\3\2\2\2\2\u015b\3\2\2\2\2\u015d\3\2\2"+ + "\2\2\u015f\3\2\2\2\2\u0161\3\2\2\2\2\u0163\3\2\2\2\2\u0165\3\2\2\2\2\u0167"+ + "\3\2\2\2\2\u0169\3\2\2\2\2\u016b\3\2\2\2\2\u016d\3\2\2\2\2\u016f\3\2\2"+ + "\2\2\u0171\3\2\2\2\2\u0173\3\2\2\2\2\u0175\3\2\2\2\2\u0177\3\2\2\2\2\u0179"+ + "\3\2\2\2\2\u017b\3\2\2\2\2\u017d\3\2\2\2\2\u017f\3\2\2\2\2\u0181\3\2\2"+ + "\2\2\u0183\3\2\2\2\2\u0185\3\2\2\2\2\u0187\3\2\2\2\2\u0189\3\2\2\2\2\u018b"+ + "\3\2\2\2\2\u018d\3\2\2\2\2\u018f\3\2\2\2\2\u0191\3\2\2\2\2\u0193\3\2\2"+ + "\2\2\u0195\3\2\2\2\2\u0197\3\2\2\2\2\u0199\3\2\2\2\2\u019b\3\2\2\2\2\u019d"+ + "\3\2\2\2\2\u019f\3\2\2\2\2\u01a1\3\2\2\2\2\u01a3\3\2\2\2\2\u01a5\3\2\2"+ + "\2\2\u01a7\3\2\2\2\2\u01a9\3\2\2\2\2\u01ab\3\2\2\2\2\u01ad\3\2\2\2\2\u01af"+ + "\3\2\2\2\2\u01b1\3\2\2\2\2\u01b3\3\2\2\2\2\u01b5\3\2\2\2\2\u01b7\3\2\2"+ + "\2\2\u01b9\3\2\2\2\2\u01bb\3\2\2\2\2\u01bd\3\2\2\2\2\u01bf\3\2\2\2\2\u01c1"+ + "\3\2\2\2\2\u01c3\3\2\2\2\2\u01c5\3\2\2\2\2\u01c7\3\2\2\2\2\u01c9\3\2\2"+ + "\2\2\u01cb\3\2\2\2\2\u01cd\3\2\2\2\2\u01cf\3\2\2\2\2\u01d1\3\2\2\2\2\u01d3"+ + "\3\2\2\2\2\u01d5\3\2\2\2\2\u01d7\3\2\2\2\2\u01d9\3\2\2\2\2\u01db\3\2\2"+ + "\2\2\u01dd\3\2\2\2\2\u01df\3\2\2\2\2\u01e1\3\2\2\2\2\u01e3\3\2\2\2\2\u01e5"+ + "\3\2\2\2\2\u01e7\3\2\2\2\2\u01e9\3\2\2\2\2\u01eb\3\2\2\2\2\u01ed\3\2\2"+ + "\2\2\u01ef\3\2\2\2\2\u01f1\3\2\2\2\2\u01f3\3\2\2\2\2\u01f5\3\2\2\2\2\u01f7"+ + "\3\2\2\2\2\u01f9\3\2\2\2\2\u01fb\3\2\2\2\2\u01fd\3\2\2\2\2\u01ff\3\2\2"+ + "\2\2\u0201\3\2\2\2\2\u0203\3\2\2\2\2\u0205\3\2\2\2\2\u0207\3\2\2\2\2\u0209"+ + "\3\2\2\2\2\u020b\3\2\2\2\2\u020d\3\2\2\2\2\u020f\3\2\2\2\2\u0211\3\2\2"+ + "\2\2\u0217\3\2\2\2\2\u0219\3\2\2\2\2\u021b\3\2\2\2\2\u021d\3\2\2\2\2\u0221"+ + "\3\2\2\2\3\u0223\3\2\2\2\5\u022a\3\2\2\2\7\u022f\3\2\2\2\t\u0235\3\2\2"+ + "\2\13\u023c\3\2\2\2\r\u0243\3\2\2\2\17\u0249\3\2\2\2\21\u024f\3\2\2\2"+ + "\23\u0254\3\2\2\2\25\u0259\3\2\2\2\27\u025e\3\2\2\2\31\u0262\3\2\2\2\33"+ + "\u0267\3\2\2\2\35\u026d\3\2\2\2\37\u0274\3\2\2\2!\u0277\3\2\2\2#\u027a"+ + "\3\2\2\2%\u027d\3\2\2\2\'\u0284\3\2\2\2)\u028a\3\2\2\2+\u028c\3\2\2\2"+ + "-\u0291\3\2\2\2/\u0298\3\2\2\2\61\u029d\3\2\2\2\63\u02a1\3\2\2\2\65\u02a4"+ + "\3\2\2\2\67\u02a8\3\2\2\29\u02b2\3\2\2\2;\u02be\3\2\2\2=\u02d0\3\2\2\2"+ + "?\u02db\3\2\2\2A\u02e2\3\2\2\2C\u02e8\3\2\2\2E\u02f2\3\2\2\2G\u02fd\3"+ + "\2\2\2I\u030b\3\2\2\2K\u031b\3\2\2\2M\u0328\3\2\2\2O\u0334\3\2\2\2Q\u0341"+ + "\3\2\2\2S\u034c\3\2\2\2U\u0359\3\2\2\2W\u0364\3\2\2\2Y\u036e\3\2\2\2["+ + "\u0381\3\2\2\2]\u0399\3\2\2\2_\u039e\3\2\2\2a\u03a1\3\2\2\2c\u03a5\3\2"+ + "\2\2e\u03a8\3\2\2\2g\u03ac\3\2\2\2i\u03b0\3\2\2\2k\u03b5\3\2\2\2m\u03bb"+ + "\3\2\2\2o\u03c2\3\2\2\2q\u03cb\3\2\2\2s\u03d4\3\2\2\2u\u03e0\3\2\2\2w"+ + "\u03ec\3\2\2\2y\u03f3\3\2\2\2{\u03fa\3\2\2\2}\u03ff\3\2\2\2\177\u0403"+ + "\3\2\2\2\u0081\u0408\3\2\2\2\u0083\u040e\3\2\2\2\u0085\u0416\3\2\2\2\u0087"+ + "\u041b\3\2\2\2\u0089\u042e\3\2\2\2\u008b\u0441\3\2\2\2\u008d\u044f\3\2"+ + "\2\2\u008f\u0460\3\2\2\2\u0091\u046c\3\2\2\2\u0093\u0478\3\2\2\2\u0095"+ + "\u0488\3\2\2\2\u0097\u0493\3\2\2\2\u0099\u049e\3\2\2\2\u009b\u04a7\3\2"+ + "\2\2\u009d\u04b2\3\2\2\2\u009f\u04bc\3\2\2\2\u00a1\u04c3\3\2\2\2\u00a3"+ + "\u04cf\3\2\2\2\u00a5\u04d3\3\2\2\2\u00a7\u04db\3\2\2\2\u00a9\u04e2\3\2"+ + "\2\2\u00ab\u04e7\3\2\2\2\u00ad\u04ed\3\2\2\2\u00af\u04f4\3\2\2\2\u00b1"+ + "\u04fc\3\2\2\2\u00b3\u04fe\3\2\2\2\u00b5\u0500\3\2\2\2\u00b7\u0502\3\2"+ + "\2\2\u00b9\u0504\3\2\2\2\u00bb\u0506\3\2\2\2\u00bd\u0508\3\2\2\2\u00bf"+ + "\u050b\3\2\2\2\u00c1\u050e\3\2\2\2\u00c3\u0511\3\2\2\2\u00c5\u0513\3\2"+ + "\2\2\u00c7\u0515\3\2\2\2\u00c9\u0517\3\2\2\2\u00cb\u0519\3\2\2\2\u00cd"+ + "\u051b\3\2\2\2\u00cf\u051d\3\2\2\2\u00d1\u051f\3\2\2\2\u00d3\u0521\3\2"+ + "\2\2\u00d5\u0523\3\2\2\2\u00d7\u0525\3\2\2\2\u00d9\u0527\3\2\2\2\u00db"+ + "\u0529\3\2\2\2\u00dd\u052b\3\2\2\2\u00df\u052d\3\2\2\2\u00e1\u052f\3\2"+ + "\2\2\u00e3\u0531\3\2\2\2\u00e5\u0533\3\2\2\2\u00e7\u0537\3\2\2\2\u00e9"+ + "\u053d\3\2\2\2\u00eb\u054c\3\2\2\2\u00ed\u0552\3\2\2\2\u00ef\u055e\3\2"+ + "\2\2\u00f1\u0562\3\2\2\2\u00f3\u0567\3\2\2\2\u00f5\u056e\3\2\2\2\u00f7"+ + "\u0572\3\2\2\2\u00f9\u0577\3\2\2\2\u00fb\u057d\3\2\2\2\u00fd\u0583\3\2"+ + "\2\2\u00ff\u058a\3\2\2\2\u0101\u058e\3\2\2\2\u0103\u0594\3\2\2\2\u0105"+ + "\u059d\3\2\2\2\u0107\u05a5\3\2\2\2\u0109\u05b1\3\2\2\2\u010b\u05bc\3\2"+ + "\2\2\u010d\u05c7\3\2\2\2\u010f\u05cd\3\2\2\2\u0111\u05d2\3\2\2\2\u0113"+ + "\u05d7\3\2\2\2\u0115\u05de\3\2\2\2\u0117\u05e7\3\2\2\2\u0119\u05f5\3\2"+ + "\2\2\u011b\u05fc\3\2\2\2\u011d\u0608\3\2\2\2\u011f\u0610\3\2\2\2\u0121"+ + "\u0619\3\2\2\2\u0123\u0624\3\2\2\2\u0125\u062f\3\2\2\2\u0127\u0634\3\2"+ + "\2\2\u0129\u063e\3\2\2\2\u012b\u0640\3\2\2\2\u012d\u0643\3\2\2\2\u012f"+ + "\u0647\3\2\2\2\u0131\u064c\3\2\2\2\u0133\u0654\3\2\2\2\u0135\u0659\3\2"+ + "\2\2\u0137\u065f\3\2\2\2\u0139\u0661\3\2\2\2\u013b\u0665\3\2\2\2\u013d"+ + "\u066b\3\2\2\2\u013f\u066e\3\2\2\2\u0141\u0672\3\2\2\2\u0143\u0678\3\2"+ + "\2\2\u0145\u067d\3\2\2\2\u0147\u0681\3\2\2\2\u0149\u0684\3\2\2\2\u014b"+ + "\u0688\3\2\2\2\u014d\u068e\3\2\2\2\u014f\u0693\3\2\2\2\u0151\u0699\3\2"+ + "\2\2\u0153\u069e\3\2\2\2\u0155\u06a3\3\2\2\2\u0157\u06ac\3\2\2\2\u0159"+ + "\u06b1\3\2\2\2\u015b\u06b6\3\2\2\2\u015d\u06bb\3\2\2\2\u015f\u06c1\3\2"+ + "\2\2\u0161\u06c5\3\2\2\2\u0163\u06c9\3\2\2\2\u0165\u06d1\3\2\2\2\u0167"+ + "\u06d9\3\2\2\2\u0169\u06dd\3\2\2\2\u016b\u06e1\3\2\2\2\u016d\u06e9\3\2"+ + "\2\2\u016f\u06ee\3\2\2\2\u0171\u06f7\3\2\2\2\u0173\u0700\3\2\2\2\u0175"+ + "\u070b\3\2\2\2\u0177\u0715\3\2\2\2\u0179\u071f\3\2\2\2\u017b\u0727\3\2"+ + "\2\2\u017d\u0731\3\2\2\2\u017f\u073b\3\2\2\2\u0181\u0743\3\2\2\2\u0183"+ + "\u0748\3\2\2\2\u0185\u0754\3\2\2\2\u0187\u075e\3\2\2\2\u0189\u076a\3\2"+ + "\2\2\u018b\u0772\3\2\2\2\u018d\u0779\3\2\2\2\u018f\u0783\3\2\2\2\u0191"+ + "\u0789\3\2\2\2\u0193\u078f\3\2\2\2\u0195\u0794\3\2\2\2\u0197\u0797\3\2"+ + "\2\2\u0199\u079d\3\2\2\2\u019b\u07a3\3\2\2\2\u019d\u07aa\3\2\2\2\u019f"+ + "\u07b4\3\2\2\2\u01a1\u07bb\3\2\2\2\u01a3\u07c2\3\2\2\2\u01a5\u07c8\3\2"+ + "\2\2\u01a7\u07cd\3\2\2\2\u01a9\u07d3\3\2\2\2\u01ab\u07da\3\2\2\2\u01ad"+ + "\u07e2\3\2\2\2\u01af\u07e7\3\2\2\2\u01b1\u07ec\3\2\2\2\u01b3\u07f3\3\2"+ + "\2\2\u01b5\u07fd\3\2\2\2\u01b7\u0804\3\2\2\2\u01b9\u080b\3\2\2\2\u01bb"+ + "\u080e\3\2\2\2\u01bd\u0814\3\2\2\2\u01bf\u0821\3\2\2\2\u01c1\u0835\3\2"+ + "\2\2\u01c3\u084c\3\2\2\2\u01c5\u085d\3\2\2\2\u01c7\u0866\3\2\2\2\u01c9"+ + "\u088a\3\2\2\2\u01cb\u0890\3\2\2\2\u01cd\u08a1\3\2\2\2\u01cf\u08af\3\2"+ + "\2\2\u01d1\u08c0\3\2\2\2\u01d3\u08db\3\2\2\2\u01d5\u08e1\3\2\2\2\u01d7"+ + "\u08f6\3\2\2\2\u01d9\u090a\3\2\2\2\u01db\u091f\3\2\2\2\u01dd\u092d\3\2"+ + "\2\2\u01df\u0937\3\2\2\2\u01e1\u093f\3\2\2\2\u01e3\u0951\3\2\2\2\u01e5"+ + "\u0969\3\2\2\2\u01e7\u0978\3\2\2\2\u01e9\u098d\3\2\2\2\u01eb\u0996\3\2"+ + "\2\2\u01ed\u09a2\3\2\2\2\u01ef\u09b0\3\2\2\2\u01f1\u09bf\3\2\2\2\u01f3"+ + "\u09d2\3\2\2\2\u01f5\u09da\3\2\2\2\u01f7\u09df\3\2\2\2\u01f9\u09eb\3\2"+ + "\2\2\u01fb\u09f0\3\2\2\2\u01fd\u0a01\3\2\2\2\u01ff\u0a06\3\2\2\2\u0201"+ + "\u0a09\3\2\2\2\u0203\u0a0b\3\2\2\2\u0205\u0a0d\3\2\2\2\u0207\u0a0f\3\2"+ + "\2\2\u0209\u0a11\3\2\2\2\u020b\u0a13\3\2\2\2\u020d\u0a15\3\2\2\2\u020f"+ + "\u0a18\3\2\2\2\u0211\u0a21\3\2\2\2\u0213\u0a31\3\2\2\2\u0215\u0a35\3\2"+ + "\2\2\u0217\u0a3f\3\2\2\2\u0219\u0a42\3\2\2\2\u021b\u0a4f\3\2\2\2\u021d"+ + "\u0a5c\3\2\2\2\u021f\u0a69\3\2\2\2\u0221\u0a6b\3\2\2\2\u0223\u0224\7U"+ + "\2\2\u0224\u0225\7G\2\2\u0225\u0226\7C\2\2\u0226\u0227\7T\2\2\u0227\u0228"+ + "\7E\2\2\u0228\u0229\7J\2\2\u0229\4\3\2\2\2\u022a\u022b\7H\2\2\u022b\u022c"+ + "\7T\2\2\u022c\u022d\7Q\2\2\u022d\u022e\7O\2\2\u022e\6\3\2\2\2\u022f\u0230"+ + "\7Y\2\2\u0230\u0231\7J\2\2\u0231\u0232\7G\2\2\u0232\u0233\7T\2\2\u0233"+ + "\u0234\7G\2\2\u0234\b\3\2\2\2\u0235\u0236\7H\2\2\u0236\u0237\7K\2\2\u0237"+ + "\u0238\7G\2\2\u0238\u0239\7N\2\2\u0239\u023a\7F\2\2\u023a\u023b\7U\2\2"+ + "\u023b\n\3\2\2\2\u023c\u023d\7T\2\2\u023d\u023e\7G\2\2\u023e\u023f\7P"+ + "\2\2\u023f\u0240\7C\2\2\u0240\u0241\7O\2\2\u0241\u0242\7G\2\2\u0242\f"+ + "\3\2\2\2\u0243\u0244\7U\2\2\u0244\u0245\7V\2\2\u0245\u0246\7C\2\2\u0246"+ + "\u0247\7V\2\2\u0247\u0248\7U\2\2\u0248\16\3\2\2\2\u0249\u024a\7F\2\2\u024a"+ + "\u024b\7G\2\2\u024b\u024c\7F\2\2\u024c\u024d\7W\2\2\u024d\u024e\7R\2\2"+ + "\u024e\20\3\2\2\2\u024f\u0250\7U\2\2\u0250\u0251\7Q\2\2\u0251\u0252\7"+ + "T\2\2\u0252\u0253\7V\2\2\u0253\22\3\2\2\2\u0254\u0255\7G\2\2\u0255\u0256"+ + "\7X\2\2\u0256\u0257\7C\2\2\u0257\u0258\7N\2\2\u0258\24\3\2\2\2\u0259\u025a"+ + "\7J\2\2\u025a\u025b\7G\2\2\u025b\u025c\7C\2\2\u025c\u025d\7F\2\2\u025d"+ + "\26\3\2\2\2\u025e\u025f\7V\2\2\u025f\u0260\7Q\2\2\u0260\u0261\7R\2\2\u0261"+ + "\30\3\2\2\2\u0262\u0263\7T\2\2\u0263\u0264\7C\2\2\u0264\u0265\7T\2\2\u0265"+ + "\u0266\7G\2\2\u0266\32\3\2\2\2\u0267\u0268\7R\2\2\u0268\u0269\7C\2\2\u0269"+ + "\u026a\7T\2\2\u026a\u026b\7U\2\2\u026b\u026c\7G\2\2\u026c\34\3\2\2\2\u026d"+ + "\u026e\7M\2\2\u026e\u026f\7O\2\2\u026f\u0270\7G\2\2\u0270\u0271\7C\2\2"+ + "\u0271\u0272\7P\2\2\u0272\u0273\7U\2\2\u0273\36\3\2\2\2\u0274\u0275\7"+ + "C\2\2\u0275\u0276\7F\2\2\u0276 \3\2\2\2\u0277\u0278\7C\2\2\u0278\u0279"+ + "\7U\2\2\u0279\"\3\2\2\2\u027a\u027b\7D\2\2\u027b\u027c\7[\2\2\u027c$\3"+ + "\2\2\2\u027d\u027e\7U\2\2\u027e\u027f\7Q\2\2\u027f\u0280\7W\2\2\u0280"+ + "\u0281\7T\2\2\u0281\u0282\7E\2\2\u0282\u0283\7G\2\2\u0283&\3\2\2\2\u0284"+ + "\u0285\7K\2\2\u0285\u0286\7P\2\2\u0286\u0287\7F\2\2\u0287\u0288\7G\2\2"+ + "\u0288\u0289\7Z\2\2\u0289(\3\2\2\2\u028a\u028b\7F\2\2\u028b*\3\2\2\2\u028c"+ + "\u028d\7F\2\2\u028d\u028e\7G\2\2\u028e\u028f\7U\2\2\u028f\u0290\7E\2\2"+ + "\u0290,\3\2\2\2\u0291\u0292\7U\2\2\u0292\u0293\7Q\2\2\u0293\u0294\7T\2"+ + "\2\u0294\u0295\7V\2\2\u0295\u0296\7D\2\2\u0296\u0297\7[\2\2\u0297.\3\2"+ + "\2\2\u0298\u0299\7C\2\2\u0299\u029a\7W\2\2\u029a\u029b\7V\2\2\u029b\u029c"+ + "\7Q\2\2\u029c\60\3\2\2\2\u029d\u029e\7U\2\2\u029e\u029f\7V\2\2\u029f\u02a0"+ + "\7T\2\2\u02a0\62\3\2\2\2\u02a1\u02a2\7K\2\2\u02a2\u02a3\7R\2\2\u02a3\64"+ + "\3\2\2\2\u02a4\u02a5\7P\2\2\u02a5\u02a6\7W\2\2\u02a6\u02a7\7O\2\2\u02a7"+ + "\66\3\2\2\2\u02a8\u02a9\7M\2\2\u02a9\u02aa\7G\2\2\u02aa\u02ab\7G\2\2\u02ab"+ + "\u02ac\7R\2\2\u02ac\u02ad\7G\2\2\u02ad\u02ae\7O\2\2\u02ae\u02af\7R\2\2"+ + "\u02af\u02b0\7V\2\2\u02b0\u02b1\7[\2\2\u02b18\3\2\2\2\u02b2\u02b3\7E\2"+ + "\2\u02b3\u02b4\7Q\2\2\u02b4\u02b5\7P\2\2\u02b5\u02b6\7U\2\2\u02b6\u02b7"+ + "\7G\2\2\u02b7\u02b8\7E\2\2\u02b8\u02b9\7W\2\2\u02b9\u02ba\7V\2\2\u02ba"+ + "\u02bb\7K\2\2\u02bb\u02bc\7X\2\2\u02bc\u02bd\7G\2\2\u02bd:\3\2\2\2\u02be"+ + "\u02bf\7F\2\2\u02bf\u02c0\7G\2\2\u02c0\u02c1\7F\2\2\u02c1\u02c2\7W\2\2"+ + "\u02c2\u02c3\7R\2\2\u02c3\u02c4\7a\2\2\u02c4\u02c5\7U\2\2\u02c5\u02c6"+ + "\7R\2\2\u02c6\u02c7\7N\2\2\u02c7\u02c8\7K\2\2\u02c8\u02c9\7V\2\2\u02c9"+ + "\u02ca\7X\2\2\u02ca\u02cb\7C\2\2\u02cb\u02cc\7N\2\2\u02cc\u02cd\7W\2\2"+ + "\u02cd\u02ce\7G\2\2\u02ce\u02cf\7U\2\2\u02cf<\3\2\2\2\u02d0\u02d1\7R\2"+ + "\2\u02d1\u02d2\7C\2\2\u02d2\u02d3\7T\2\2\u02d3\u02d4\7V\2\2\u02d4\u02d5"+ + "\7K\2\2\u02d5\u02d6\7V\2\2\u02d6\u02d7\7K\2\2\u02d7\u02d8\7Q\2\2\u02d8"+ + "\u02d9\7P\2\2\u02d9\u02da\7U\2\2\u02da>\3\2\2\2\u02db\u02dc\7C\2\2\u02dc"+ + "\u02dd\7N\2\2\u02dd\u02de\7N\2\2\u02de\u02df\7P\2\2\u02df\u02e0\7W\2\2"+ + "\u02e0\u02e1\7O\2\2\u02e1@\3\2\2\2\u02e2\u02e3\7F\2\2\u02e3\u02e4\7G\2"+ + "\2\u02e4\u02e5\7N\2\2\u02e5\u02e6\7K\2\2\u02e6\u02e7\7O\2\2\u02e7B\3\2"+ + "\2\2\u02e8\u02e9\7E\2\2\u02e9\u02ea\7G\2\2\u02ea\u02eb\7P\2\2\u02eb\u02ec"+ + "\7V\2\2\u02ec\u02ed\7T\2\2\u02ed\u02ee\7Q\2\2\u02ee\u02ef\7K\2\2\u02ef"+ + "\u02f0\7F\2\2\u02f0\u02f1\7U\2\2\u02f1D\3\2\2\2\u02f2\u02f3\7K\2\2\u02f3"+ + "\u02f4\7V\2\2\u02f4\u02f5\7G\2\2\u02f5\u02f6\7T\2\2\u02f6\u02f7\7C\2\2"+ + "\u02f7\u02f8\7V\2\2\u02f8\u02f9\7K\2\2\u02f9\u02fa\7Q\2\2\u02fa\u02fb"+ + "\7P\2\2\u02fb\u02fc\7U\2\2\u02fcF\3\2\2\2\u02fd\u02fe\7F\2\2\u02fe\u02ff"+ + "\7K\2\2\u02ff\u0300\7U\2\2\u0300\u0301\7V\2\2\u0301\u0302\7C\2\2\u0302"+ + "\u0303\7P\2\2\u0303\u0304\7E\2\2\u0304\u0305\7G\2\2\u0305\u0306\7a\2\2"+ + "\u0306\u0307\7V\2\2\u0307\u0308\7[\2\2\u0308\u0309\7R\2\2\u0309\u030a"+ + "\7G\2\2\u030aH\3\2\2\2\u030b\u030c\7P\2\2\u030c\u030d\7W\2\2\u030d\u030e"+ + "\7O\2\2\u030e\u030f\7D\2\2\u030f\u0310\7G\2\2\u0310\u0311\7T\2\2\u0311"+ + "\u0312\7a\2\2\u0312\u0313\7Q\2\2\u0313\u0314\7H\2\2\u0314\u0315\7a\2\2"+ + "\u0315\u0316\7V\2\2\u0316\u0317\7T\2\2\u0317\u0318\7G\2\2\u0318\u0319"+ + "\7G\2\2\u0319\u031a\7U\2\2\u031aJ\3\2\2\2\u031b\u031c\7U\2\2\u031c\u031d"+ + "\7J\2\2\u031d\u031e\7K\2\2\u031e\u031f\7P\2\2\u031f\u0320\7I\2\2\u0320"+ + "\u0321\7N\2\2\u0321\u0322\7G\2\2\u0322\u0323\7a\2\2\u0323\u0324\7U\2\2"+ + "\u0324\u0325\7K\2\2\u0325\u0326\7\\\2\2\u0326\u0327\7G\2\2\u0327L\3\2"+ + "\2\2\u0328\u0329\7U\2\2\u0329\u032a\7C\2\2\u032a\u032b\7O\2\2\u032b\u032c"+ + "\7R\2\2\u032c\u032d\7N\2\2\u032d\u032e\7G\2\2\u032e\u032f\7a\2\2\u032f"+ + "\u0330\7U\2\2\u0330\u0331\7K\2\2\u0331\u0332\7\\\2\2\u0332\u0333\7G\2"+ + "\2\u0333N\3\2\2\2\u0334\u0335\7Q\2\2\u0335\u0336\7W\2\2\u0336\u0337\7"+ + "V\2\2\u0337\u0338\7R\2\2\u0338\u0339\7W\2\2\u0339\u033a\7V\2\2\u033a\u033b"+ + "\7a\2\2\u033b\u033c\7C\2\2\u033c\u033d\7H\2\2\u033d\u033e\7V\2\2\u033e"+ + "\u033f\7G\2\2\u033f\u0340\7T\2\2\u0340P\3\2\2\2\u0341\u0342\7V\2\2\u0342"+ + "\u0343\7K\2\2\u0343\u0344\7O\2\2\u0344\u0345\7G\2\2\u0345\u0346\7a\2\2"+ + "\u0346\u0347\7F\2\2\u0347\u0348\7G\2\2\u0348\u0349\7E\2\2\u0349\u034a"+ + "\7C\2\2\u034a\u034b\7[\2\2\u034bR\3\2\2\2\u034c\u034d\7C\2\2\u034d\u034e"+ + "\7P\2\2\u034e\u034f\7Q\2\2\u034f\u0350\7O\2\2\u0350\u0351\7C\2\2\u0351"+ + "\u0352\7N\2\2\u0352\u0353\7[\2\2\u0353\u0354\7a\2\2\u0354\u0355\7T\2\2"+ + "\u0355\u0356\7C\2\2\u0356\u0357\7V\2\2\u0357\u0358\7G\2\2\u0358T\3\2\2"+ + "\2\u0359\u035a\7V\2\2\u035a\u035b\7K\2\2\u035b\u035c\7O\2\2\u035c\u035d"+ + "\7G\2\2\u035d\u035e\7a\2\2\u035e\u035f\7H\2\2\u035f\u0360\7K\2\2\u0360"+ + "\u0361\7G\2\2\u0361\u0362\7N\2\2\u0362\u0363\7F\2\2\u0363V\3\2\2\2\u0364"+ + "\u0365\7V\2\2\u0365\u0366\7K\2\2\u0366\u0367\7O\2\2\u0367\u0368\7G\2\2"+ + "\u0368\u0369\7a\2\2\u0369\u036a\7\\\2\2\u036a\u036b\7Q\2\2\u036b\u036c"+ + "\7P\2\2\u036c\u036d\7G\2\2\u036dX\3\2\2\2\u036e\u036f\7V\2\2\u036f\u0370"+ + "\7T\2\2\u0370\u0371\7C\2\2\u0371\u0372\7K\2\2\u0372\u0373\7P\2\2\u0373"+ + "\u0374\7K\2\2\u0374\u0375\7P\2\2\u0375\u0376\7I\2\2\u0376\u0377\7a\2\2"+ + "\u0377\u0378\7F\2\2\u0378\u0379\7C\2\2\u0379\u037a\7V\2\2\u037a\u037b"+ + "\7C\2\2\u037b\u037c\7a\2\2\u037c\u037d\7U\2\2\u037d\u037e\7K\2\2\u037e"+ + "\u037f\7\\\2\2\u037f\u0380\7G\2\2\u0380Z\3\2\2\2\u0381\u0382\7C\2\2\u0382"+ + "\u0383\7P\2\2\u0383\u0384\7Q\2\2\u0384\u0385\7O\2\2\u0385\u0386\7C\2\2"+ + "\u0386\u0387\7N\2\2\u0387\u0388\7[\2\2\u0388\u0389\7a\2\2\u0389\u038a"+ + "\7U\2\2\u038a\u038b\7E\2\2\u038b\u038c\7Q\2\2\u038c\u038d\7T\2\2\u038d"+ + "\u038e\7G\2\2\u038e\u038f\7a\2\2\u038f\u0390\7V\2\2\u0390\u0391\7J\2\2"+ + "\u0391\u0392\7T\2\2\u0392\u0393\7G\2\2\u0393\u0394\7U\2\2\u0394\u0395"+ + "\7J\2\2\u0395\u0396\7Q\2\2\u0396\u0397\7N\2\2\u0397\u0398\7F\2\2\u0398"+ + "\\\3\2\2\2\u0399\u039a\7E\2\2\u039a\u039b\7C\2\2\u039b\u039c\7U\2\2\u039c"+ + "\u039d\7G\2\2\u039d^\3\2\2\2\u039e\u039f\7K\2\2\u039f\u03a0\7P\2\2\u03a0"+ + "`\3\2\2\2\u03a1\u03a2\7P\2\2\u03a2\u03a3\7Q\2\2\u03a3\u03a4\7V\2\2\u03a4"+ + "b\3\2\2\2\u03a5\u03a6\7Q\2\2\u03a6\u03a7\7T\2\2\u03a7d\3\2\2\2\u03a8\u03a9"+ + "\7C\2\2\u03a9\u03aa\7P\2\2\u03aa\u03ab\7F\2\2\u03abf\3\2\2\2\u03ac\u03ad"+ + "\7Z\2\2\u03ad\u03ae\7Q\2\2\u03ae\u03af\7T\2\2\u03afh\3\2\2\2\u03b0\u03b1"+ + "\7V\2\2\u03b1\u03b2\7T\2\2\u03b2\u03b3\7W\2\2\u03b3\u03b4\7G\2\2\u03b4"+ + "j\3\2\2\2\u03b5\u03b6\7H\2\2\u03b6\u03b7\7C\2\2\u03b7\u03b8\7N\2\2\u03b8"+ + "\u03b9\7U\2\2\u03b9\u03ba\7G\2\2\u03bal\3\2\2\2\u03bb\u03bc\7T\2\2\u03bc"+ + "\u03bd\7G\2\2\u03bd\u03be\7I\2\2\u03be\u03bf\7G\2\2\u03bf\u03c0\7Z\2\2"+ + "\u03c0\u03c1\7R\2\2\u03c1n\3\2\2\2\u03c2\u03c3\7F\2\2\u03c3\u03c4\7C\2"+ + "\2\u03c4\u03c5\7V\2\2\u03c5\u03c6\7G\2\2\u03c6\u03c7\7V\2\2\u03c7\u03c8"+ + "\7K\2\2\u03c8\u03c9\7O\2\2\u03c9\u03ca\7G\2\2\u03cap\3\2\2\2\u03cb\u03cc"+ + "\7K\2\2\u03cc\u03cd\7P\2\2\u03cd\u03ce\7V\2\2\u03ce\u03cf\7G\2\2\u03cf"+ + "\u03d0\7T\2\2\u03d0\u03d1\7X\2\2\u03d1\u03d2\7C\2\2\u03d2\u03d3\7N\2\2"+ + "\u03d3r\3\2\2\2\u03d4\u03d5\7O\2\2\u03d5\u03d6\7K\2\2\u03d6\u03d7\7E\2"+ + "\2\u03d7\u03d8\7T\2\2\u03d8\u03d9\7Q\2\2\u03d9\u03da\7U\2\2\u03da\u03db"+ + "\7G\2\2\u03db\u03dc\7E\2\2\u03dc\u03dd\7Q\2\2\u03dd\u03de\7P\2\2\u03de"+ + "\u03df\7F\2\2\u03dft\3\2\2\2\u03e0\u03e1\7O\2\2\u03e1\u03e2\7K\2\2\u03e2"+ + "\u03e3\7N\2\2\u03e3\u03e4\7N\2\2\u03e4\u03e5\7K\2\2\u03e5\u03e6\7U\2\2"+ + "\u03e6\u03e7\7G\2\2\u03e7\u03e8\7E\2\2\u03e8\u03e9\7Q\2\2\u03e9\u03ea"+ + "\7P\2\2\u03ea\u03eb\7F\2\2\u03ebv\3\2\2\2\u03ec\u03ed\7U\2\2\u03ed\u03ee"+ + "\7G\2\2\u03ee\u03ef\7E\2\2\u03ef\u03f0\7Q\2\2\u03f0\u03f1\7P\2\2\u03f1"+ + "\u03f2\7F\2\2\u03f2x\3\2\2\2\u03f3\u03f4\7O\2\2\u03f4\u03f5\7K\2\2\u03f5"+ + "\u03f6\7P\2\2\u03f6\u03f7\7W\2\2\u03f7\u03f8\7V\2\2\u03f8\u03f9\7G\2\2"+ + "\u03f9z\3\2\2\2\u03fa\u03fb\7J\2\2\u03fb\u03fc\7Q\2\2\u03fc\u03fd\7W\2"+ + "\2\u03fd\u03fe\7T\2\2\u03fe|\3\2\2\2\u03ff\u0400\7F\2\2\u0400\u0401\7"+ + "C\2\2\u0401\u0402\7[\2\2\u0402~\3\2\2\2\u0403\u0404\7Y\2\2\u0404\u0405"+ + "\7G\2\2\u0405\u0406\7G\2\2\u0406\u0407\7M\2\2\u0407\u0080\3\2\2\2\u0408"+ + "\u0409\7O\2\2\u0409\u040a\7Q\2\2\u040a\u040b\7P\2\2\u040b\u040c\7V\2\2"+ + "\u040c\u040d\7J\2\2\u040d\u0082\3\2\2\2\u040e\u040f\7S\2\2\u040f\u0410"+ + "\7W\2\2\u0410\u0411\7C\2\2\u0411\u0412\7T\2\2\u0412\u0413\7V\2\2\u0413"+ + "\u0414\7G\2\2\u0414\u0415\7T\2\2\u0415\u0084\3\2\2\2\u0416\u0417\7[\2"+ + "\2\u0417\u0418\7G\2\2\u0418\u0419\7C\2\2\u0419\u041a\7T\2\2\u041a\u0086"+ + "\3\2\2\2\u041b\u041c\7U\2\2\u041c\u041d\7G\2\2\u041d\u041e\7E\2\2\u041e"+ + "\u041f\7Q\2\2\u041f\u0420\7P\2\2\u0420\u0421\7F\2\2\u0421\u0422\7a\2\2"+ + "\u0422\u0423\7O\2\2\u0423\u0424\7K\2\2\u0424\u0425\7E\2\2\u0425\u0426"+ + "\7T\2\2\u0426\u0427\7Q\2\2\u0427\u0428\7U\2\2\u0428\u0429\7G\2\2\u0429"+ + "\u042a\7E\2\2\u042a\u042b\7Q\2\2\u042b\u042c\7P\2\2\u042c\u042d\7F\2\2"+ + "\u042d\u0088\3\2\2\2\u042e\u042f\7O\2\2\u042f\u0430\7K\2\2\u0430\u0431"+ + "\7P\2\2\u0431\u0432\7W\2\2\u0432\u0433\7V\2\2\u0433\u0434\7G\2\2\u0434"+ + "\u0435\7a\2\2\u0435\u0436\7O\2\2\u0436\u0437\7K\2\2\u0437\u0438\7E\2\2"+ + "\u0438\u0439\7T\2\2\u0439\u043a\7Q\2\2\u043a\u043b\7U\2\2\u043b\u043c"+ + "\7G\2\2\u043c\u043d\7E\2\2\u043d\u043e\7Q\2\2\u043e\u043f\7P\2\2\u043f"+ + "\u0440\7F\2\2\u0440\u008a\3\2\2\2\u0441\u0442\7O\2\2\u0442\u0443\7K\2"+ + "\2\u0443\u0444\7P\2\2\u0444\u0445\7W\2\2\u0445\u0446\7V\2\2\u0446\u0447"+ + "\7G\2\2\u0447\u0448\7a\2\2\u0448\u0449\7U\2\2\u0449\u044a\7G\2\2\u044a"+ + "\u044b\7E\2\2\u044b\u044c\7Q\2\2\u044c\u044d\7P\2\2\u044d\u044e\7F\2\2"+ + "\u044e\u008c\3\2\2\2\u044f\u0450\7J\2\2\u0450\u0451\7Q\2\2\u0451\u0452"+ + "\7W\2\2\u0452\u0453\7T\2\2\u0453\u0454\7a\2\2\u0454\u0455\7O\2\2\u0455"+ + "\u0456\7K\2\2\u0456\u0457\7E\2\2\u0457\u0458\7T\2\2\u0458\u0459\7Q\2\2"+ + "\u0459\u045a\7U\2\2\u045a\u045b\7G\2\2\u045b\u045c\7E\2\2\u045c\u045d"+ + "\7Q\2\2\u045d\u045e\7P\2\2\u045e\u045f\7F\2\2\u045f\u008e\3\2\2\2\u0460"+ + "\u0461\7J\2\2\u0461\u0462\7Q\2\2\u0462\u0463\7W\2\2\u0463\u0464\7T\2\2"+ + "\u0464\u0465\7a\2\2\u0465\u0466\7U\2\2\u0466\u0467\7G\2\2\u0467\u0468"+ + "\7E\2\2\u0468\u0469\7Q\2\2\u0469\u046a\7P\2\2\u046a\u046b\7F\2\2\u046b"+ + "\u0090\3\2\2\2\u046c\u046d\7J\2\2\u046d\u046e\7Q\2\2\u046e\u046f\7W\2"+ + "\2\u046f\u0470\7T\2\2\u0470\u0471\7a\2\2\u0471\u0472\7O\2\2\u0472\u0473"+ + "\7K\2\2\u0473\u0474\7P\2\2\u0474\u0475\7W\2\2\u0475\u0476\7V\2\2\u0476"+ + "\u0477\7G\2\2\u0477\u0092\3\2\2\2\u0478\u0479\7F\2\2\u0479\u047a\7C\2"+ + "\2\u047a\u047b\7[\2\2\u047b\u047c\7a\2\2\u047c\u047d\7O\2\2\u047d\u047e"+ + "\7K\2\2\u047e\u047f\7E\2\2\u047f\u0480\7T\2\2\u0480\u0481\7Q\2\2\u0481"+ + "\u0482\7U\2\2\u0482\u0483\7G\2\2\u0483\u0484\7E\2\2\u0484\u0485\7Q\2\2"+ + "\u0485\u0486\7P\2\2\u0486\u0487\7F\2\2\u0487\u0094\3\2\2\2\u0488\u0489"+ + "\7F\2\2\u0489\u048a\7C\2\2\u048a\u048b\7[\2\2\u048b\u048c\7a\2\2\u048c"+ + "\u048d\7U\2\2\u048d\u048e\7G\2\2\u048e\u048f\7E\2\2\u048f\u0490\7Q\2\2"+ + "\u0490\u0491\7P\2\2\u0491\u0492\7F\2\2\u0492\u0096\3\2\2\2\u0493\u0494"+ + "\7F\2\2\u0494\u0495\7C\2\2\u0495\u0496\7[\2\2\u0496\u0497\7a\2\2\u0497"+ + "\u0498\7O\2\2\u0498\u0499\7K\2\2\u0499\u049a\7P\2\2\u049a\u049b\7W\2\2"+ + "\u049b\u049c\7V\2\2\u049c\u049d\7G\2\2\u049d\u0098\3\2\2\2\u049e\u049f"+ + "\7F\2\2\u049f\u04a0\7C\2\2\u04a0\u04a1\7[\2\2\u04a1\u04a2\7a\2\2\u04a2"+ + "\u04a3\7J\2\2\u04a3\u04a4\7Q\2\2\u04a4\u04a5\7W\2\2\u04a5\u04a6\7T\2\2"+ + "\u04a6\u009a\3\2\2\2\u04a7\u04a8\7[\2\2\u04a8\u04a9\7G\2\2\u04a9\u04aa"+ + "\7C\2\2\u04aa\u04ab\7T\2\2\u04ab\u04ac\7a\2\2\u04ac\u04ad\7O\2\2\u04ad"+ + "\u04ae\7Q\2\2\u04ae\u04af\7P\2\2\u04af\u04b0\7V\2\2\u04b0\u04b1\7J\2\2"+ + "\u04b1\u009c\3\2\2\2\u04b2\u04b3\7F\2\2\u04b3\u04b4\7C\2\2\u04b4\u04b5"+ + "\7V\2\2\u04b5\u04b6\7C\2\2\u04b6\u04b7\7O\2\2\u04b7\u04b8\7Q\2\2\u04b8"+ + "\u04b9\7F\2\2\u04b9\u04ba\7G\2\2\u04ba\u04bb\7N\2\2\u04bb\u009e\3\2\2"+ + "\2\u04bc\u04bd\7N\2\2\u04bd\u04be\7Q\2\2\u04be\u04bf\7Q\2\2\u04bf\u04c0"+ + "\7M\2\2\u04c0\u04c1\7W\2\2\u04c1\u04c2\7R\2\2\u04c2\u00a0\3\2\2\2\u04c3"+ + "\u04c4\7U\2\2\u04c4\u04c5\7C\2\2\u04c5\u04c6\7X\2\2\u04c6\u04c7\7G\2\2"+ + "\u04c7\u04c8\7F\2\2\u04c8\u04c9\7U\2\2\u04c9\u04ca\7G\2\2\u04ca\u04cb"+ + "\7C\2\2\u04cb\u04cc\7T\2\2\u04cc\u04cd\7E\2\2\u04cd\u04ce\7J\2\2\u04ce"+ + "\u00a2\3\2\2\2\u04cf\u04d0\7K\2\2\u04d0\u04d1\7P\2\2\u04d1\u04d2\7V\2"+ + "\2\u04d2\u00a4\3\2\2\2\u04d3\u04d4\7K\2\2\u04d4\u04d5\7P\2\2\u04d5\u04d6"+ + "\7V\2\2\u04d6\u04d7\7G\2\2\u04d7\u04d8\7I\2\2\u04d8\u04d9\7G\2\2\u04d9"+ + "\u04da\7T\2\2\u04da\u00a6\3\2\2\2\u04db\u04dc\7F\2\2\u04dc\u04dd\7Q\2"+ + "\2\u04dd\u04de\7W\2\2\u04de\u04df\7D\2\2\u04df\u04e0\7N\2\2\u04e0\u04e1"+ + "\7G\2\2\u04e1\u00a8\3\2\2\2\u04e2\u04e3\7N\2\2\u04e3\u04e4\7Q\2\2\u04e4"+ + "\u04e5\7P\2\2\u04e5\u04e6\7I\2\2\u04e6\u00aa\3\2\2\2\u04e7\u04e8\7H\2"+ + "\2\u04e8\u04e9\7N\2\2\u04e9\u04ea\7Q\2\2\u04ea\u04eb\7C\2\2\u04eb\u04ec"+ + "\7V\2\2\u04ec\u00ac\3\2\2\2\u04ed\u04ee\7U\2\2\u04ee\u04ef\7V\2\2\u04ef"+ + "\u04f0\7T\2\2\u04f0\u04f1\7K\2\2\u04f1\u04f2\7P\2\2\u04f2\u04f3\7I\2\2"+ + "\u04f3\u00ae\3\2\2\2\u04f4\u04f5\7D\2\2\u04f5\u04f6\7Q\2\2\u04f6\u04f7"+ + "\7Q\2\2\u04f7\u04f8\7N\2\2\u04f8\u04f9\7G\2\2\u04f9\u04fa\7C\2\2\u04fa"+ + "\u04fb\7P\2\2\u04fb\u00b0\3\2\2\2\u04fc\u04fd\7~\2\2\u04fd\u00b2\3\2\2"+ + "\2\u04fe\u04ff\7.\2\2\u04ff\u00b4\3\2\2\2\u0500\u0501\7\60\2\2\u0501\u00b6"+ + "\3\2\2\2\u0502\u0503\7?\2\2\u0503\u00b8\3\2\2\2\u0504\u0505\7@\2\2\u0505"+ + "\u00ba\3\2\2\2\u0506\u0507\7>\2\2\u0507\u00bc\3\2\2\2\u0508\u0509\7>\2"+ + "\2\u0509\u050a\7?\2\2\u050a\u00be\3\2\2\2\u050b\u050c\7@\2\2\u050c\u050d"+ + "\7?\2\2\u050d\u00c0\3\2\2\2\u050e\u050f\7#\2\2\u050f\u0510\7?\2\2\u0510"+ + "\u00c2\3\2\2\2\u0511\u0512\7-\2\2\u0512\u00c4\3\2\2\2\u0513\u0514\7/\2"+ + "\2\u0514\u00c6\3\2\2\2\u0515\u0516\7,\2\2\u0516\u00c8\3\2\2\2\u0517\u0518"+ + "\7\61\2\2\u0518\u00ca\3\2\2\2\u0519\u051a\7\'\2\2\u051a\u00cc\3\2\2\2"+ + "\u051b\u051c\7#\2\2\u051c\u00ce\3\2\2\2\u051d\u051e\7<\2\2\u051e\u00d0"+ + "\3\2\2\2\u051f\u0520\7*\2\2\u0520\u00d2\3\2\2\2\u0521\u0522\7+\2\2\u0522"+ + "\u00d4\3\2\2\2\u0523\u0524\7]\2\2\u0524\u00d6\3\2\2\2\u0525\u0526\7_\2"+ + "\2\u0526\u00d8\3\2\2\2\u0527\u0528\7)\2\2\u0528\u00da\3\2\2\2\u0529\u052a"+ + "\7$\2\2\u052a\u00dc\3\2\2\2\u052b\u052c\7b\2\2\u052c\u00de\3\2\2\2\u052d"+ + "\u052e\7\u0080\2\2\u052e\u00e0\3\2\2\2\u052f\u0530\7(\2\2\u0530\u00e2"+ + "\3\2\2\2\u0531\u0532\7`\2\2\u0532\u00e4\3\2\2\2\u0533\u0534\7C\2\2\u0534"+ + "\u0535\7X\2\2\u0535\u0536\7I\2\2\u0536\u00e6\3\2\2\2\u0537\u0538\7E\2"+ + "\2\u0538\u0539\7Q\2\2\u0539\u053a\7W\2\2\u053a\u053b\7P\2\2\u053b\u053c"+ + "\7V\2\2\u053c\u00e8\3\2\2\2\u053d\u053e\7F\2\2\u053e\u053f\7K\2\2\u053f"+ + "\u0540\7U\2\2\u0540\u0541\7V\2\2\u0541\u0542\7K\2\2\u0542\u0543\7P\2\2"+ + "\u0543\u0544\7E\2\2\u0544\u0545\7V\2\2\u0545\u0546\7a\2\2\u0546\u0547"+ + "\7E\2\2\u0547\u0548\7Q\2\2\u0548\u0549\7W\2\2\u0549\u054a\7P\2\2\u054a"+ + "\u054b\7V\2\2\u054b\u00ea\3\2\2\2\u054c\u054d\7G\2\2\u054d\u054e\7U\2"+ + "\2\u054e\u054f\7V\2\2\u054f\u0550\7F\2\2\u0550\u0551\7E\2\2\u0551\u00ec"+ + "\3\2\2\2\u0552\u0553\7G\2\2\u0553\u0554\7U\2\2\u0554\u0555\7V\2\2\u0555"+ + "\u0556\7F\2\2\u0556\u0557\7E\2\2\u0557\u0558\7a\2\2\u0558\u0559\7G\2\2"+ + "\u0559\u055a\7T\2\2\u055a\u055b\7T\2\2\u055b\u055c\7Q\2\2\u055c\u055d"+ + "\7T\2\2\u055d\u00ee\3\2\2\2\u055e\u055f\7O\2\2\u055f\u0560\7C\2\2\u0560"+ + "\u0561\7Z\2\2\u0561\u00f0\3\2\2\2\u0562\u0563\7O\2\2\u0563\u0564\7G\2"+ + "\2\u0564\u0565\7C\2\2\u0565\u0566\7P\2\2\u0566\u00f2\3\2\2\2\u0567\u0568"+ + "\7O\2\2\u0568\u0569\7G\2\2\u0569\u056a\7F\2\2\u056a\u056b\7K\2\2\u056b"+ + "\u056c\7C\2\2\u056c\u056d\7P\2\2\u056d\u00f4\3\2\2\2\u056e\u056f\7O\2"+ + "\2\u056f\u0570\7K\2\2\u0570\u0571\7P\2\2\u0571\u00f6\3\2\2\2\u0572\u0573"+ + "\7O\2\2\u0573\u0574\7Q\2\2\u0574\u0575\7F\2\2\u0575\u0576\7G\2\2\u0576"+ + "\u00f8\3\2\2\2\u0577\u0578\7T\2\2\u0578\u0579\7C\2\2\u0579\u057a\7P\2"+ + "\2\u057a\u057b\7I\2\2\u057b\u057c\7G\2\2\u057c\u00fa\3\2\2\2\u057d\u057e"+ + "\7U\2\2\u057e\u057f\7V\2\2\u057f\u0580\7F\2\2\u0580\u0581\7G\2\2\u0581"+ + "\u0582\7X\2\2\u0582\u00fc\3\2\2\2\u0583\u0584\7U\2\2\u0584\u0585\7V\2"+ + "\2\u0585\u0586\7F\2\2\u0586\u0587\7G\2\2\u0587\u0588\7X\2\2\u0588\u0589"+ + "\7R\2\2\u0589\u00fe\3\2\2\2\u058a\u058b\7U\2\2\u058b\u058c\7W\2\2\u058c"+ + "\u058d\7O\2\2\u058d\u0100\3\2\2\2\u058e\u058f\7U\2\2\u058f\u0590\7W\2"+ + "\2\u0590\u0591\7O\2\2\u0591\u0592\7U\2\2\u0592\u0593\7S\2\2\u0593\u0102"+ + "\3\2\2\2\u0594\u0595\7X\2\2\u0595\u0596\7C\2\2\u0596\u0597\7T\2\2\u0597"+ + "\u0598\7a\2\2\u0598\u0599\7U\2\2\u0599\u059a\7C\2\2\u059a\u059b\7O\2\2"+ + "\u059b\u059c\7R\2\2\u059c\u0104\3\2\2\2\u059d\u059e\7X\2\2\u059e\u059f"+ + "\7C\2\2\u059f\u05a0\7T\2\2\u05a0\u05a1\7a\2\2\u05a1\u05a2\7R\2\2\u05a2"+ + "\u05a3\7Q\2\2\u05a3\u05a4\7R\2\2\u05a4\u0106\3\2\2\2\u05a5\u05a6\7U\2"+ + "\2\u05a6\u05a7\7V\2\2\u05a7\u05a8\7F\2\2\u05a8\u05a9\7F\2\2\u05a9\u05aa"+ + "\7G\2\2\u05aa\u05ab\7X\2\2\u05ab\u05ac\7a\2\2\u05ac\u05ad\7U\2\2\u05ad"+ + "\u05ae\7C\2\2\u05ae\u05af\7O\2\2\u05af\u05b0\7R\2\2\u05b0\u0108\3\2\2"+ + "\2\u05b1\u05b2\7U\2\2\u05b2\u05b3\7V\2\2\u05b3\u05b4\7F\2\2\u05b4\u05b5"+ + "\7F\2\2\u05b5\u05b6\7G\2\2\u05b6\u05b7\7X\2\2\u05b7\u05b8\7a\2\2\u05b8"+ + "\u05b9\7R\2\2\u05b9\u05ba\7Q\2\2\u05ba\u05bb\7R\2\2\u05bb\u010a\3\2\2"+ + "\2\u05bc\u05bd\7R\2\2\u05bd\u05be\7G\2\2\u05be\u05bf\7T\2\2\u05bf\u05c0"+ + "\7E\2\2\u05c0\u05c1\7G\2\2\u05c1\u05c2\7P\2\2\u05c2\u05c3\7V\2\2\u05c3"+ + "\u05c4\7K\2\2\u05c4\u05c5\7N\2\2\u05c5\u05c6\7G\2\2\u05c6\u010c\3\2\2"+ + "\2\u05c7\u05c8\7H\2\2\u05c8\u05c9\7K\2\2\u05c9\u05ca\7T\2\2\u05ca\u05cb"+ + "\7U\2\2\u05cb\u05cc\7V\2\2\u05cc\u010e\3\2\2\2\u05cd\u05ce\7N\2\2\u05ce"+ + "\u05cf\7C\2\2\u05cf\u05d0\7U\2\2\u05d0\u05d1\7V\2\2\u05d1\u0110\3\2\2"+ + "\2\u05d2\u05d3\7N\2\2\u05d3\u05d4\7K\2\2\u05d4\u05d5\7U\2\2\u05d5\u05d6"+ + "\7V\2\2\u05d6\u0112\3\2\2\2\u05d7\u05d8\7X\2\2\u05d8\u05d9\7C\2\2\u05d9"+ + "\u05da\7N\2\2\u05da\u05db\7W\2\2\u05db\u05dc\7G\2\2\u05dc\u05dd\7U\2\2"+ + "\u05dd\u0114\3\2\2\2\u05de\u05df\7G\2\2\u05df\u05e0\7C\2\2\u05e0\u05e1"+ + "\7T\2\2\u05e1\u05e2\7N\2\2\u05e2\u05e3\7K\2\2\u05e3\u05e4\7G\2\2\u05e4"+ + "\u05e5\7U\2\2\u05e5\u05e6\7V\2\2\u05e6\u0116\3\2\2\2\u05e7\u05e8\7G\2"+ + "\2\u05e8\u05e9\7C\2\2\u05e9\u05ea\7T\2\2\u05ea\u05eb\7N\2\2\u05eb\u05ec"+ + "\7K\2\2\u05ec\u05ed\7G\2\2\u05ed\u05ee\7U\2\2\u05ee\u05ef\7V\2\2\u05ef"+ + "\u05f0\7a\2\2\u05f0\u05f1\7V\2\2\u05f1\u05f2\7K\2\2\u05f2\u05f3\7O\2\2"+ + "\u05f3\u05f4\7G\2\2\u05f4\u0118\3\2\2\2\u05f5\u05f6\7N\2\2\u05f6\u05f7"+ + "\7C\2\2\u05f7\u05f8\7V\2\2\u05f8\u05f9\7G\2\2\u05f9\u05fa\7U\2\2\u05fa"+ + "\u05fb\7V\2\2\u05fb\u011a\3\2\2\2\u05fc\u05fd\7N\2\2\u05fd\u05fe\7C\2"+ + "\2\u05fe\u05ff\7V\2\2\u05ff\u0600\7G\2\2\u0600\u0601\7U\2\2\u0601\u0602"+ + "\7V\2\2\u0602\u0603\7a\2\2\u0603\u0604\7V\2\2\u0604\u0605\7K\2\2\u0605"+ + "\u0606\7O\2\2\u0606\u0607\7G\2\2\u0607\u011c\3\2\2\2\u0608\u0609\7R\2"+ + "\2\u0609\u060a\7G\2\2\u060a\u060b\7T\2\2\u060b\u060c\7a\2\2\u060c\u060d"+ + "\7F\2\2\u060d\u060e\7C\2\2\u060e\u060f\7[\2\2\u060f\u011e\3\2\2\2\u0610"+ + "\u0611\7R\2\2\u0611\u0612\7G\2\2\u0612\u0613\7T\2\2\u0613\u0614\7a\2\2"+ + "\u0614\u0615\7J\2\2\u0615\u0616\7Q\2\2\u0616\u0617\7W\2\2\u0617\u0618"+ + "\7T\2\2\u0618\u0120\3\2\2\2\u0619\u061a\7R\2\2\u061a\u061b\7G\2\2\u061b"+ + "\u061c\7T\2\2\u061c\u061d\7a\2\2\u061d\u061e\7O\2\2\u061e\u061f\7K\2\2"+ + "\u061f\u0620\7P\2\2\u0620\u0621\7W\2\2\u0621\u0622\7V\2\2\u0622\u0623"+ + "\7G\2\2\u0623\u0122\3\2\2\2\u0624\u0625\7R\2\2\u0625\u0626\7G\2\2\u0626"+ + "\u0627\7T\2\2\u0627\u0628\7a\2\2\u0628\u0629\7U\2\2\u0629\u062a\7G\2\2"+ + "\u062a\u062b\7E\2\2\u062b\u062c\7Q\2\2\u062c\u062d\7P\2\2\u062d\u062e"+ + "\7F\2\2\u062e\u0124\3\2\2\2\u062f\u0630\7T\2\2\u0630\u0631\7C\2\2\u0631"+ + "\u0632\7V\2\2\u0632\u0633\7G\2\2\u0633\u0126\3\2\2\2\u0634\u0635\7U\2"+ + "\2\u0635\u0636\7R\2\2\u0636\u0637\7C\2\2\u0637\u0638\7T\2\2\u0638\u0639"+ + "\7M\2\2\u0639\u063a\7N\2\2\u063a\u063b\7K\2\2\u063b\u063c\7P\2\2\u063c"+ + "\u063d\7G\2\2\u063d\u0128\3\2\2\2\u063e\u063f\7E\2\2\u063f\u012a\3\2\2"+ + "\2\u0640\u0641\7F\2\2\u0641\u0642\7E\2\2\u0642\u012c\3\2\2\2\u0643\u0644"+ + "\7C\2\2\u0644\u0645\7D\2\2\u0645\u0646\7U\2\2\u0646\u012e\3\2\2\2\u0647"+ + "\u0648\7E\2\2\u0648\u0649\7G\2\2\u0649\u064a\7K\2\2\u064a\u064b\7N\2\2"+ + "\u064b\u0130\3\2\2\2\u064c\u064d\7E\2\2\u064d\u064e\7G\2\2\u064e\u064f"+ + "\7K\2\2\u064f\u0650\7N\2\2\u0650\u0651\7K\2\2\u0651\u0652\7P\2\2\u0652"+ + "\u0653\7I\2\2\u0653\u0132\3\2\2\2\u0654\u0655\7E\2\2\u0655\u0656\7Q\2"+ + "\2\u0656\u0657\7P\2\2\u0657\u0658\7X\2\2\u0658\u0134\3\2\2\2\u0659\u065a"+ + "\7E\2\2\u065a\u065b\7T\2\2\u065b\u065c\7E\2\2\u065c\u065d\7\65\2\2\u065d"+ + "\u065e\7\64\2\2\u065e\u0136\3\2\2\2\u065f\u0660\7G\2\2\u0660\u0138\3\2"+ + "\2\2\u0661\u0662\7G\2\2\u0662\u0663\7Z\2\2\u0663\u0664\7R\2\2\u0664\u013a"+ + "\3\2\2\2\u0665\u0666\7H\2\2\u0666\u0667\7N\2\2\u0667\u0668\7Q\2\2\u0668"+ + "\u0669\7Q\2\2\u0669\u066a\7T\2\2\u066a\u013c\3\2\2\2\u066b\u066c\7N\2"+ + "\2\u066c\u066d\7P\2\2\u066d\u013e\3\2\2\2\u066e\u066f\7N\2\2\u066f\u0670"+ + "\7Q\2\2\u0670\u0671\7I\2\2\u0671\u0140\3\2\2\2\u0672\u0673\7N\2\2\u0673"+ + "\u0674\7Q\2\2\u0674\u0675\7I\2\2\u0675\u0676\7\63\2\2\u0676\u0677\7\62"+ + "\2\2\u0677\u0142\3\2\2\2\u0678\u0679\7N\2\2\u0679\u067a\7Q\2\2\u067a\u067b"+ + "\7I\2\2\u067b\u067c\7\64\2\2\u067c\u0144\3\2\2\2\u067d\u067e\7O\2\2\u067e"+ + "\u067f\7Q\2\2\u067f\u0680\7F\2\2\u0680\u0146\3\2\2\2\u0681\u0682\7R\2"+ + "\2\u0682\u0683\7K\2\2\u0683\u0148\3\2\2\2\u0684\u0685\7R\2\2\u0685\u0686"+ + "\7Q\2\2\u0686\u0687\7Y\2\2\u0687\u014a\3\2\2\2\u0688\u0689\7R\2\2\u0689"+ + "\u068a\7Q\2\2\u068a\u068b\7Y\2\2\u068b\u068c\7G\2\2\u068c\u068d\7T\2\2"+ + "\u068d\u014c\3\2\2\2\u068e\u068f\7T\2\2\u068f\u0690\7C\2\2\u0690\u0691"+ + "\7P\2\2\u0691\u0692\7F\2\2\u0692\u014e\3\2\2\2\u0693\u0694\7T\2\2\u0694"+ + "\u0695\7Q\2\2\u0695\u0696\7W\2\2\u0696\u0697\7P\2\2\u0697\u0698\7F\2\2"+ + "\u0698\u0150\3\2\2\2\u0699\u069a\7U\2\2\u069a\u069b\7K\2\2\u069b\u069c"+ + "\7I\2\2\u069c\u069d\7P\2\2\u069d\u0152\3\2\2\2\u069e\u069f\7U\2\2\u069f"+ + "\u06a0\7S\2\2\u06a0\u06a1\7T\2\2\u06a1\u06a2\7V\2\2\u06a2\u0154\3\2\2"+ + "\2\u06a3\u06a4\7V\2\2\u06a4\u06a5\7T\2\2\u06a5\u06a6\7W\2\2\u06a6\u06a7"+ + "\7P\2\2\u06a7\u06a8\7E\2\2\u06a8\u06a9\7C\2\2\u06a9\u06aa\7V\2\2\u06aa"+ + "\u06ab\7G\2\2\u06ab\u0156\3\2\2\2\u06ac\u06ad\7C\2\2\u06ad\u06ae\7E\2"+ + "\2\u06ae\u06af\7Q\2\2\u06af\u06b0\7U\2\2\u06b0\u0158\3\2\2\2\u06b1\u06b2"+ + "\7C\2\2\u06b2\u06b3\7U\2\2\u06b3\u06b4\7K\2\2\u06b4\u06b5\7P\2\2\u06b5"+ + "\u015a\3\2\2\2\u06b6\u06b7\7C\2\2\u06b7\u06b8\7V\2\2\u06b8\u06b9\7C\2"+ + "\2\u06b9\u06ba\7P\2\2\u06ba\u015c\3\2\2\2\u06bb\u06bc\7C\2\2\u06bc\u06bd"+ + "\7V\2\2\u06bd\u06be\7C\2\2\u06be\u06bf\7P\2\2\u06bf\u06c0\7\64\2\2\u06c0"+ + "\u015e\3\2\2\2\u06c1\u06c2\7E\2\2\u06c2\u06c3\7Q\2\2\u06c3\u06c4\7U\2"+ + "\2\u06c4\u0160\3\2\2\2\u06c5\u06c6\7E\2\2\u06c6\u06c7\7Q\2\2\u06c7\u06c8"+ + "\7V\2\2\u06c8\u0162\3\2\2\2\u06c9\u06ca\7F\2\2\u06ca\u06cb\7G\2\2\u06cb"+ + "\u06cc\7I\2\2\u06cc\u06cd\7T\2\2\u06cd\u06ce\7G\2\2\u06ce\u06cf\7G\2\2"+ + "\u06cf\u06d0\7U\2\2\u06d0\u0164\3\2\2\2\u06d1\u06d2\7T\2\2\u06d2\u06d3"+ + "\7C\2\2\u06d3\u06d4\7F\2\2\u06d4\u06d5\7K\2\2\u06d5\u06d6\7C\2\2\u06d6"+ + "\u06d7\7P\2\2\u06d7\u06d8\7U\2\2\u06d8\u0166\3\2\2\2\u06d9\u06da\7U\2"+ + "\2\u06da\u06db\7K\2\2\u06db\u06dc\7P\2\2\u06dc\u0168\3\2\2\2\u06dd\u06de"+ + "\7V\2\2\u06de\u06df\7C\2\2\u06df\u06e0\7P\2\2\u06e0\u016a\3\2\2\2\u06e1"+ + "\u06e2\7C\2\2\u06e2\u06e3\7F\2\2\u06e3\u06e4\7F\2\2\u06e4\u06e5\7F\2\2"+ + "\u06e5\u06e6\7C\2\2\u06e6\u06e7\7V\2\2\u06e7\u06e8\7G\2\2\u06e8\u016c"+ + "\3\2\2\2\u06e9\u06ea\7F\2\2\u06ea\u06eb\7C\2\2\u06eb\u06ec\7V\2\2\u06ec"+ + "\u06ed\7G\2\2\u06ed\u016e\3\2\2\2\u06ee\u06ef\7F\2\2\u06ef\u06f0\7C\2"+ + "\2\u06f0\u06f1\7V\2\2\u06f1\u06f2\7G\2\2\u06f2\u06f3\7a\2\2\u06f3\u06f4"+ + "\7C\2\2\u06f4\u06f5\7F\2\2\u06f5\u06f6\7F\2\2\u06f6\u0170\3\2\2\2\u06f7"+ + "\u06f8\7F\2\2\u06f8\u06f9\7C\2\2\u06f9\u06fa\7V\2\2\u06fa\u06fb\7G\2\2"+ + "\u06fb\u06fc\7a\2\2\u06fc\u06fd\7U\2\2\u06fd\u06fe\7W\2\2\u06fe\u06ff"+ + "\7D\2\2\u06ff\u0172\3\2\2\2\u0700\u0701\7F\2\2\u0701\u0702\7C\2\2\u0702"+ + "\u0703\7[\2\2\u0703\u0704\7Q\2\2\u0704\u0705\7H\2\2\u0705\u0706\7O\2\2"+ + "\u0706\u0707\7Q\2\2\u0707\u0708\7P\2\2\u0708\u0709\7V\2\2\u0709\u070a"+ + "\7J\2\2\u070a\u0174\3\2\2\2\u070b\u070c\7F\2\2\u070c\u070d\7C\2\2\u070d"+ + "\u070e\7[\2\2\u070e\u070f\7Q\2\2\u070f\u0710\7H\2\2\u0710\u0711\7Y\2\2"+ + "\u0711\u0712\7G\2\2\u0712\u0713\7G\2\2\u0713\u0714\7M\2\2\u0714\u0176"+ + "\3\2\2\2\u0715\u0716\7F\2\2\u0716\u0717\7C\2\2\u0717\u0718\7[\2\2\u0718"+ + "\u0719\7Q\2\2\u0719\u071a\7H\2\2\u071a\u071b\7[\2\2\u071b\u071c\7G\2\2"+ + "\u071c\u071d\7C\2\2\u071d\u071e\7T\2\2\u071e\u0178\3\2\2\2\u071f\u0720"+ + "\7F\2\2\u0720\u0721\7C\2\2\u0721\u0722\7[\2\2\u0722\u0723\7P\2\2\u0723"+ + "\u0724\7C\2\2\u0724\u0725\7O\2\2\u0725\u0726\7G\2\2\u0726\u017a\3\2\2"+ + "\2\u0727\u0728\7H\2\2\u0728\u0729\7T\2\2\u0729\u072a\7Q\2\2\u072a\u072b"+ + "\7O\2\2\u072b\u072c\7a\2\2\u072c\u072d\7F\2\2\u072d\u072e\7C\2\2\u072e"+ + "\u072f\7[\2\2\u072f\u0730\7U\2\2\u0730\u017c\3\2\2\2\u0731\u0732\7O\2"+ + "\2\u0732\u0733\7Q\2\2\u0733\u0734\7P\2\2\u0734\u0735\7V\2\2\u0735\u0736"+ + "\7J\2\2\u0736\u0737\7P\2\2\u0737\u0738\7C\2\2\u0738\u0739\7O\2\2\u0739"+ + "\u073a\7G\2\2\u073a\u017e\3\2\2\2\u073b\u073c\7U\2\2\u073c\u073d\7W\2"+ + "\2\u073d\u073e\7D\2\2\u073e\u073f\7F\2\2\u073f\u0740\7C\2\2\u0740\u0741"+ + "\7V\2\2\u0741\u0742\7G\2\2\u0742\u0180\3\2\2\2\u0743\u0744\7V\2\2\u0744"+ + "\u0745\7K\2\2\u0745\u0746\7O\2\2\u0746\u0747\7G\2\2\u0747\u0182\3\2\2"+ + "\2\u0748\u0749\7V\2\2\u0749\u074a\7K\2\2\u074a\u074b\7O\2\2\u074b\u074c"+ + "\7G\2\2\u074c\u074d\7a\2\2\u074d\u074e\7V\2\2\u074e\u074f\7Q\2\2\u074f"+ + "\u0750\7a\2\2\u0750\u0751\7U\2\2\u0751\u0752\7G\2\2\u0752\u0753\7E\2\2"+ + "\u0753\u0184\3\2\2\2\u0754\u0755\7V\2\2\u0755\u0756\7K\2\2\u0756\u0757"+ + "\7O\2\2\u0757\u0758\7G\2\2\u0758\u0759\7U\2\2\u0759\u075a\7V\2\2\u075a"+ + "\u075b\7C\2\2\u075b\u075c\7O\2\2\u075c\u075d\7R\2\2\u075d\u0186\3\2\2"+ + "\2\u075e\u075f\7F\2\2\u075f\u0760\7C\2\2\u0760\u0761\7V\2\2\u0761\u0762"+ + "\7G\2\2\u0762\u0763\7a\2\2\u0763\u0764\7H\2\2\u0764\u0765\7Q\2\2\u0765"+ + "\u0766\7T\2\2\u0766\u0767\7O\2\2\u0767\u0768\7C\2\2\u0768\u0769\7V\2\2"+ + "\u0769\u0188\3\2\2\2\u076a\u076b\7V\2\2\u076b\u076c\7Q\2\2\u076c\u076d"+ + "\7a\2\2\u076d\u076e\7F\2\2\u076e\u076f\7C\2\2\u076f\u0770\7[\2\2\u0770"+ + "\u0771\7U\2\2\u0771\u018a\3\2\2\2\u0772\u0773\7U\2\2\u0773\u0774\7W\2"+ + "\2\u0774\u0775\7D\2\2\u0775\u0776\7U\2\2\u0776\u0777\7V\2\2\u0777\u0778"+ + "\7T\2\2\u0778\u018c\3\2\2\2\u0779\u077a\7U\2\2\u077a\u077b\7W\2\2\u077b"+ + "\u077c\7D\2\2\u077c\u077d\7U\2\2\u077d\u077e\7V\2\2\u077e\u077f\7T\2\2"+ + "\u077f\u0780\7K\2\2\u0780\u0781\7P\2\2\u0781\u0782\7I\2\2\u0782\u018e"+ + "\3\2\2\2\u0783\u0784\7N\2\2\u0784\u0785\7V\2\2\u0785\u0786\7T\2\2\u0786"+ + "\u0787\7K\2\2\u0787\u0788\7O\2\2\u0788\u0190\3\2\2\2\u0789\u078a\7T\2"+ + "\2\u078a\u078b\7V\2\2\u078b\u078c\7T\2\2\u078c\u078d\7K\2\2\u078d\u078e"+ + "\7O\2\2\u078e\u0192\3\2\2\2\u078f\u0790\7V\2\2\u0790\u0791\7T\2\2\u0791"+ + "\u0792\7K\2\2\u0792\u0793\7O\2\2\u0793\u0194\3\2\2\2\u0794\u0795\7V\2"+ + "\2\u0795\u0796\7Q\2\2\u0796\u0196\3\2\2\2\u0797\u0798\7N\2\2\u0798\u0799"+ + "\7Q\2\2\u0799\u079a\7Y\2\2\u079a\u079b\7G\2\2\u079b\u079c\7T\2\2\u079c"+ + "\u0198\3\2\2\2\u079d\u079e\7W\2\2\u079e\u079f\7R\2\2\u079f\u07a0\7R\2"+ + "\2\u07a0\u07a1\7G\2\2\u07a1\u07a2\7T\2\2\u07a2\u019a\3\2\2\2\u07a3\u07a4"+ + "\7E\2\2\u07a4\u07a5\7Q\2\2\u07a5\u07a6\7P\2\2\u07a6\u07a7\7E\2\2\u07a7"+ + "\u07a8\7C\2\2\u07a8\u07a9\7V\2\2\u07a9\u019c\3\2\2\2\u07aa\u07ab\7E\2"+ + "\2\u07ab\u07ac\7Q\2\2\u07ac\u07ad\7P\2\2\u07ad\u07ae\7E\2\2\u07ae\u07af"+ + "\7C\2\2\u07af\u07b0\7V\2\2\u07b0\u07b1\7a\2\2\u07b1\u07b2\7Y\2\2\u07b2"+ + "\u07b3\7U\2\2\u07b3\u019e\3\2\2\2\u07b4\u07b5\7N\2\2\u07b5\u07b6\7G\2"+ + "\2\u07b6\u07b7\7P\2\2\u07b7\u07b8\7I\2\2\u07b8\u07b9\7V\2\2\u07b9\u07ba"+ + "\7J\2\2\u07ba\u01a0\3\2\2\2\u07bb\u07bc\7U\2\2\u07bc\u07bd\7V\2\2\u07bd"+ + "\u07be\7T\2\2\u07be\u07bf\7E\2\2\u07bf\u07c0\7O\2\2\u07c0\u07c1\7R\2\2"+ + "\u07c1\u01a2\3\2\2\2\u07c2\u07c3\7T\2\2\u07c3\u07c4\7K\2\2\u07c4\u07c5"+ + "\7I\2\2\u07c5\u07c6\7J\2\2\u07c6\u07c7\7V\2\2\u07c7\u01a4\3\2\2\2\u07c8"+ + "\u07c9\7N\2\2\u07c9\u07ca\7G\2\2\u07ca\u07cb\7H\2\2\u07cb\u07cc\7V\2\2"+ + "\u07cc\u01a6\3\2\2\2\u07cd\u07ce\7C\2\2\u07ce\u07cf\7U\2\2\u07cf\u07d0"+ + "\7E\2\2\u07d0\u07d1\7K\2\2\u07d1\u07d2\7K\2\2\u07d2\u01a8\3\2\2\2\u07d3"+ + "\u07d4\7N\2\2\u07d4\u07d5\7Q\2\2\u07d5\u07d6\7E\2\2\u07d6\u07d7\7C\2\2"+ + "\u07d7\u07d8\7V\2\2\u07d8\u07d9\7G\2\2\u07d9\u01aa\3\2\2\2\u07da\u07db"+ + "\7T\2\2\u07db\u07dc\7G\2\2\u07dc\u07dd\7R\2\2\u07dd\u07de\7N\2\2\u07de"+ + "\u07df\7C\2\2\u07df\u07e0\7E\2\2\u07e0\u07e1\7G\2\2\u07e1\u01ac\3\2\2"+ + "\2\u07e2\u07e3\7E\2\2\u07e3\u07e4\7C\2\2\u07e4\u07e5\7U\2\2\u07e5\u07e6"+ + "\7V\2\2\u07e6\u01ae\3\2\2\2\u07e7\u07e8\7N\2\2\u07e8\u07e9\7K\2\2\u07e9"+ + "\u07ea\7M\2\2\u07ea\u07eb\7G\2\2\u07eb\u01b0\3\2\2\2\u07ec\u07ed\7K\2"+ + "\2\u07ed\u07ee\7U\2\2\u07ee\u07ef\7P\2\2\u07ef\u07f0\7W\2\2\u07f0\u07f1"+ + "\7N\2\2\u07f1\u07f2\7N\2\2\u07f2\u01b2\3\2\2\2\u07f3\u07f4\7K\2\2\u07f4"+ + "\u07f5\7U\2\2\u07f5\u07f6\7P\2\2\u07f6\u07f7\7Q\2\2\u07f7\u07f8\7V\2\2"+ + "\u07f8\u07f9\7P\2\2\u07f9\u07fa\7W\2\2\u07fa\u07fb\7N\2\2\u07fb\u07fc"+ + "\7N\2\2\u07fc\u01b4\3\2\2\2\u07fd\u07fe\7K\2\2\u07fe\u07ff\7H\2\2\u07ff"+ + "\u0800\7P\2\2\u0800\u0801\7W\2\2\u0801\u0802\7N\2\2\u0802\u0803\7N\2\2"+ + "\u0803\u01b6\3\2\2\2\u0804\u0805\7P\2\2\u0805\u0806\7W\2\2\u0806\u0807"+ + "\7N\2\2\u0807\u0808\7N\2\2\u0808\u0809\7K\2\2\u0809\u080a\7H\2\2\u080a"+ + "\u01b8\3\2\2\2\u080b\u080c\7K\2\2\u080c\u080d\7H\2\2\u080d\u01ba\3\2\2"+ + "\2\u080e\u080f\7O\2\2\u080f\u0810\7C\2\2\u0810\u0811\7V\2\2\u0811\u0812"+ + "\7E\2\2\u0812\u0813\7J\2\2\u0813\u01bc\3\2\2\2\u0814\u0815\7O\2\2\u0815"+ + "\u0816\7C\2\2\u0816\u0817\7V\2\2\u0817\u0818\7E\2\2\u0818\u0819\7J\2\2"+ + "\u0819\u081a\7a\2\2\u081a\u081b\7R\2\2\u081b\u081c\7J\2\2\u081c\u081d"+ + "\7T\2\2\u081d\u081e\7C\2\2\u081e\u081f\7U\2\2\u081f\u0820\7G\2\2\u0820"+ + "\u01be\3\2\2\2\u0821\u0822\7U\2\2\u0822\u0823\7K\2\2\u0823\u0824\7O\2"+ + "\2\u0824\u0825\7R\2\2\u0825\u0826\7N\2\2\u0826\u0827\7G\2\2\u0827\u0828"+ + "\7a\2\2\u0828\u0829\7S\2\2\u0829\u082a\7W\2\2\u082a\u082b\7G\2\2\u082b"+ + "\u082c\7T\2\2\u082c\u082d\7[\2\2\u082d\u082e\7a\2\2\u082e\u082f\7U\2\2"+ + "\u082f\u0830\7V\2\2\u0830\u0831\7T\2\2\u0831\u0832\7K\2\2\u0832\u0833"+ + "\7P\2\2\u0833\u0834\7I\2\2\u0834\u01c0\3\2\2\2\u0835\u0836\7C\2\2\u0836"+ + "\u0837\7N\2\2\u0837\u0838\7N\2\2\u0838\u0839\7Q\2\2\u0839\u083a\7Y\2\2"+ + "\u083a\u083b\7a\2\2\u083b\u083c\7N\2\2\u083c\u083d\7G\2\2\u083d\u083e"+ + "\7C\2\2\u083e\u083f\7F\2\2\u083f\u0840\7K\2\2\u0840\u0841\7P\2\2\u0841"+ + "\u0842\7I\2\2\u0842\u0843\7a\2\2\u0843\u0844\7Y\2\2\u0844\u0845\7K\2\2"+ + "\u0845\u0846\7N\2\2\u0846\u0847\7F\2\2\u0847\u0848\7E\2\2\u0848\u0849"+ + "\7C\2\2\u0849\u084a\7T\2\2\u084a\u084b\7F\2\2\u084b\u01c2\3\2\2\2\u084c"+ + "\u084d\7C\2\2\u084d\u084e\7P\2\2\u084e\u084f\7C\2\2\u084f\u0850\7N\2\2"+ + "\u0850\u0851\7[\2\2\u0851\u0852\7\\\2\2\u0852\u0853\7G\2\2\u0853\u0854"+ + "\7a\2\2\u0854\u0855\7Y\2\2\u0855\u0856\7K\2\2\u0856\u0857\7N\2\2\u0857"+ + "\u0858\7F\2\2\u0858\u0859\7E\2\2\u0859\u085a\7C\2\2\u085a\u085b\7T\2\2"+ + "\u085b\u085c\7F\2\2\u085c\u01c4\3\2\2\2\u085d\u085e\7C\2\2\u085e\u085f"+ + "\7P\2\2\u085f\u0860\7C\2\2\u0860\u0861\7N\2\2\u0861\u0862\7[\2\2\u0862"+ + "\u0863\7\\\2\2\u0863\u0864\7G\2\2\u0864\u0865\7T\2\2\u0865\u01c6\3\2\2"+ + "\2\u0866\u0867\7C\2\2\u0867\u0868\7W\2\2\u0868\u0869\7V\2\2\u0869\u086a"+ + "\7Q\2\2\u086a\u086b\7a\2\2\u086b\u086c\7I\2\2\u086c\u086d\7G\2\2\u086d"+ + "\u086e\7P\2\2\u086e\u086f\7G\2\2\u086f\u0870\7T\2\2\u0870\u0871\7C\2\2"+ + "\u0871\u0872\7V\2\2\u0872\u0873\7G\2\2\u0873\u0874\7a\2\2\u0874\u0875"+ + "\7U\2\2\u0875\u0876\7[\2\2\u0876\u0877\7P\2\2\u0877\u0878\7Q\2\2\u0878"+ + "\u0879\7P\2\2\u0879\u087a\7[\2\2\u087a\u087b\7O\2\2\u087b\u087c\7U\2\2"+ + "\u087c\u087d\7a\2\2\u087d\u087e\7R\2\2\u087e\u087f\7J\2\2\u087f\u0880"+ + "\7T\2\2\u0880\u0881\7C\2\2\u0881\u0882\7U\2\2\u0882\u0883\7G\2\2\u0883"+ + "\u0884\7a\2\2\u0884\u0885\7S\2\2\u0885\u0886\7W\2\2\u0886\u0887\7G\2\2"+ + "\u0887\u0888\7T\2\2\u0888\u0889\7[\2\2\u0889\u01c8\3\2\2\2\u088a\u088b"+ + "\7D\2\2\u088b\u088c\7Q\2\2\u088c\u088d\7Q\2\2\u088d\u088e\7U\2\2\u088e"+ + "\u088f\7V\2\2\u088f\u01ca\3\2\2\2\u0890\u0891\7E\2\2\u0891\u0892\7W\2"+ + "\2\u0892\u0893\7V\2\2\u0893\u0894\7Q\2\2\u0894\u0895\7H\2\2\u0895\u0896"+ + "\7H\2\2\u0896\u0897\7a\2\2\u0897\u0898\7H\2\2\u0898\u0899\7T\2\2\u0899"+ + "\u089a\7G\2\2\u089a\u089b\7S\2\2\u089b\u089c\7W\2\2\u089c\u089d\7G\2\2"+ + "\u089d\u089e\7P\2\2\u089e\u089f\7E\2\2\u089f\u08a0\7[\2\2\u08a0\u01cc"+ + "\3\2\2\2\u08a1\u08a2\7F\2\2\u08a2\u08a3\7G\2\2\u08a3\u08a4\7H\2\2\u08a4"+ + "\u08a5\7C\2\2\u08a5\u08a6\7W\2\2\u08a6\u08a7\7N\2\2\u08a7\u08a8\7V\2\2"+ + "\u08a8\u08a9\7a\2\2\u08a9\u08aa\7H\2\2\u08aa\u08ab\7K\2\2\u08ab\u08ac"+ + "\7G\2\2\u08ac\u08ad\7N\2\2\u08ad\u08ae\7F\2\2\u08ae\u01ce\3\2\2\2\u08af"+ + "\u08b0\7F\2\2\u08b0\u08b1\7G\2\2\u08b1\u08b2\7H\2\2\u08b2\u08b3\7C\2\2"+ + "\u08b3\u08b4\7W\2\2\u08b4\u08b5\7N\2\2\u08b5\u08b6\7V\2\2\u08b6\u08b7"+ + "\7a\2\2\u08b7\u08b8\7Q\2\2\u08b8\u08b9\7R\2\2\u08b9\u08ba\7G\2\2\u08ba"+ + "\u08bb\7T\2\2\u08bb\u08bc\7C\2\2\u08bc\u08bd\7V\2\2\u08bd\u08be\7Q\2\2"+ + "\u08be\u08bf\7T\2\2\u08bf\u01d0\3\2\2\2\u08c0\u08c1\7G\2\2\u08c1\u08c2"+ + "\7P\2\2\u08c2\u08c3\7C\2\2\u08c3\u08c4\7D\2\2\u08c4\u08c5\7N\2\2\u08c5"+ + "\u08c6\7G\2\2\u08c6\u08c7\7a\2\2\u08c7\u08c8\7R\2\2\u08c8\u08c9\7Q\2\2"+ + "\u08c9\u08ca\7U\2\2\u08ca\u08cb\7K\2\2\u08cb\u08cc\7V\2\2\u08cc\u08cd"+ + "\7K\2\2\u08cd\u08ce\7Q\2\2\u08ce\u08cf\7P\2\2\u08cf\u08d0\7a\2\2\u08d0"+ + "\u08d1\7K\2\2\u08d1\u08d2\7P\2\2\u08d2\u08d3\7E\2\2\u08d3\u08d4\7T\2\2"+ + "\u08d4\u08d5\7G\2\2\u08d5\u08d6\7O\2\2\u08d6\u08d7\7G\2\2\u08d7\u08d8"+ + "\7P\2\2\u08d8\u08d9\7V\2\2\u08d9\u08da\7U\2\2\u08da\u01d2\3\2\2\2\u08db"+ + "\u08dc\7H\2\2\u08dc\u08dd\7N\2\2\u08dd\u08de\7C\2\2\u08de\u08df\7I\2\2"+ + "\u08df\u08e0\7U\2\2\u08e0\u01d4\3\2\2\2\u08e1\u08e2\7H\2\2\u08e2\u08e3"+ + "\7W\2\2\u08e3\u08e4\7\\\2\2\u08e4\u08e5\7\\\2\2\u08e5\u08e6\7[\2\2\u08e6"+ + "\u08e7\7a\2\2\u08e7\u08e8\7O\2\2\u08e8\u08e9\7C\2\2\u08e9\u08ea\7Z\2\2"+ + "\u08ea\u08eb\7a\2\2\u08eb\u08ec\7G\2\2\u08ec\u08ed\7Z\2\2\u08ed\u08ee"+ + "\7R\2\2\u08ee\u08ef\7C\2\2\u08ef\u08f0\7P\2\2\u08f0\u08f1\7U\2\2\u08f1"+ + "\u08f2\7K\2\2\u08f2\u08f3\7Q\2\2\u08f3\u08f4\7P\2\2\u08f4\u08f5\7U\2\2"+ + "\u08f5\u01d6\3\2\2\2\u08f6\u08f7\7H\2\2\u08f7\u08f8\7W\2\2\u08f8\u08f9"+ + "\7\\\2\2\u08f9\u08fa\7\\\2\2\u08fa\u08fb\7[\2\2\u08fb\u08fc\7a\2\2\u08fc"+ + "\u08fd\7R\2\2\u08fd\u08fe\7T\2\2\u08fe\u08ff\7G\2\2\u08ff\u0900\7H\2\2"+ + "\u0900\u0901\7K\2\2\u0901\u0902\7Z\2\2\u0902\u0903\7a\2\2\u0903\u0904"+ + "\7N\2\2\u0904\u0905\7G\2\2\u0905\u0906\7P\2\2\u0906\u0907\7I\2\2\u0907"+ + "\u0908\7V\2\2\u0908\u0909\7J\2\2\u0909\u01d8\3\2\2\2\u090a\u090b\7H\2"+ + "\2\u090b\u090c\7W\2\2\u090c\u090d\7\\\2\2\u090d\u090e\7\\\2\2\u090e\u090f"+ + "\7[\2\2\u090f\u0910\7a\2\2\u0910\u0911\7V\2\2\u0911\u0912\7T\2\2\u0912"+ + "\u0913\7C\2\2\u0913\u0914\7P\2\2\u0914\u0915\7U\2\2\u0915\u0916\7R\2\2"+ + "\u0916\u0917\7Q\2\2\u0917\u0918\7U\2\2\u0918\u0919\7K\2\2\u0919\u091a"+ + "\7V\2\2\u091a\u091b\7K\2\2\u091b\u091c\7Q\2\2\u091c\u091d\7P\2\2\u091d"+ + "\u091e\7U\2\2\u091e\u01da\3\2\2\2\u091f\u0920\7H\2\2\u0920\u0921\7W\2"+ + "\2\u0921\u0922\7\\\2\2\u0922\u0923\7\\\2\2\u0923\u0924\7[\2\2\u0924\u0925"+ + "\7a\2\2\u0925\u0926\7T\2\2\u0926\u0927\7G\2\2\u0927\u0928\7Y\2\2\u0928"+ + "\u0929\7T\2\2\u0929\u092a\7K\2\2\u092a\u092b\7V\2\2\u092b\u092c\7G\2\2"+ + "\u092c\u01dc\3\2\2\2\u092d\u092e\7H\2\2\u092e\u092f\7W\2\2\u092f\u0930"+ + "\7\\\2\2\u0930\u0931\7\\\2\2\u0931\u0932\7K\2\2\u0932\u0933\7P\2\2\u0933"+ + "\u0934\7G\2\2\u0934\u0935\7U\2\2\u0935\u0936\7U\2\2\u0936\u01de\3\2\2"+ + "\2\u0937\u0938\7N\2\2\u0938\u0939\7G\2\2\u0939\u093a\7P\2\2\u093a\u093b"+ + "\7K\2\2\u093b\u093c\7G\2\2\u093c\u093d\7P\2\2\u093d\u093e\7V\2\2\u093e"+ + "\u01e0\3\2\2\2\u093f\u0940\7N\2\2\u0940\u0941\7Q\2\2\u0941\u0942\7Y\2"+ + "\2\u0942\u0943\7a\2\2\u0943\u0944\7H\2\2\u0944\u0945\7T\2\2\u0945\u0946"+ + "\7G\2\2\u0946\u0947\7S\2\2\u0947\u0948\7a\2\2\u0948\u0949\7Q\2\2\u0949"+ + "\u094a\7R\2\2\u094a\u094b\7G\2\2\u094b\u094c\7T\2\2\u094c\u094d\7C\2\2"+ + "\u094d\u094e\7V\2\2\u094e\u094f\7Q\2\2\u094f\u0950\7T\2\2\u0950\u01e2"+ + "\3\2\2\2\u0951\u0952\7O\2\2\u0952\u0953\7C\2\2\u0953\u0954\7Z\2\2\u0954"+ + "\u0955\7a\2\2\u0955\u0956\7F\2\2\u0956\u0957\7G\2\2\u0957\u0958\7V\2\2"+ + "\u0958\u0959\7G\2\2\u0959\u095a\7T\2\2\u095a\u095b\7O\2\2\u095b\u095c"+ + "\7K\2\2\u095c\u095d\7P\2\2\u095d\u095e\7K\2\2\u095e\u095f\7\\\2\2\u095f"+ + "\u0960\7G\2\2\u0960\u0961\7F\2\2\u0961\u0962\7a\2\2\u0962\u0963\7U\2\2"+ + "\u0963\u0964\7V\2\2\u0964\u0965\7C\2\2\u0965\u0966\7V\2\2\u0966\u0967"+ + "\7G\2\2\u0967\u0968\7U\2\2\u0968\u01e4\3\2\2\2\u0969\u096a\7O\2\2\u096a"+ + "\u096b\7C\2\2\u096b\u096c\7Z\2\2\u096c\u096d\7a\2\2\u096d\u096e\7G\2\2"+ + "\u096e\u096f\7Z\2\2\u096f\u0970\7R\2\2\u0970\u0971\7C\2\2\u0971\u0972"+ + "\7P\2\2\u0972\u0973\7U\2\2\u0973\u0974\7K\2\2\u0974\u0975\7Q\2\2\u0975"+ + "\u0976\7P\2\2\u0976\u0977\7U\2\2\u0977\u01e6\3\2\2\2\u0978\u0979\7O\2"+ + "\2\u0979\u097a\7K\2\2\u097a\u097b\7P\2\2\u097b\u097c\7K\2\2\u097c\u097d"+ + "\7O\2\2\u097d\u097e\7W\2\2\u097e\u097f\7O\2\2\u097f\u0980\7a\2\2\u0980"+ + "\u0981\7U\2\2\u0981\u0982\7J\2\2\u0982\u0983\7Q\2\2\u0983\u0984\7W\2\2"+ + "\u0984\u0985\7N\2\2\u0985\u0986\7F\2\2\u0986\u0987\7a\2\2\u0987\u0988"+ + "\7O\2\2\u0988\u0989\7C\2\2\u0989\u098a\7V\2\2\u098a\u098b\7E\2\2\u098b"+ + "\u098c\7J\2\2\u098c\u01e8\3\2\2\2\u098d\u098e\7Q\2\2\u098e\u098f\7R\2"+ + "\2\u098f\u0990\7G\2\2\u0990\u0991\7T\2\2\u0991\u0992\7C\2\2\u0992\u0993"+ + "\7V\2\2\u0993\u0994\7Q\2\2\u0994\u0995\7T\2\2\u0995\u01ea\3\2\2\2\u0996"+ + "\u0997\7R\2\2\u0997\u0998\7J\2\2\u0998\u0999\7T\2\2\u0999\u099a\7C\2\2"+ + "\u099a\u099b\7U\2\2\u099b\u099c\7G\2\2\u099c\u099d\7a\2\2\u099d\u099e"+ + "\7U\2\2\u099e\u099f\7N\2\2\u099f\u09a0\7Q\2\2\u09a0\u09a1\7R\2\2\u09a1"+ + "\u01ec\3\2\2\2\u09a2\u09a3\7R\2\2\u09a3\u09a4\7T\2\2\u09a4\u09a5\7G\2"+ + "\2\u09a5\u09a6\7H\2\2\u09a6\u09a7\7K\2\2\u09a7\u09a8\7Z\2\2\u09a8\u09a9"+ + "\7a\2\2\u09a9\u09aa\7N\2\2\u09aa\u09ab\7G\2\2\u09ab\u09ac\7P\2\2\u09ac"+ + "\u09ad\7I\2\2\u09ad\u09ae\7V\2\2\u09ae\u09af\7J\2\2\u09af\u01ee\3\2\2"+ + "\2\u09b0\u09b1\7S\2\2\u09b1\u09b2\7W\2\2\u09b2\u09b3\7Q\2\2\u09b3\u09b4"+ + "\7V\2\2\u09b4\u09b5\7G\2\2\u09b5\u09b6\7a\2\2\u09b6\u09b7\7C\2\2\u09b7"+ + "\u09b8\7P\2\2\u09b8\u09b9\7C\2\2\u09b9\u09ba\7N\2\2\u09ba\u09bb\7[\2\2"+ + "\u09bb\u09bc\7\\\2\2\u09bc\u09bd\7G\2\2\u09bd\u09be\7T\2\2\u09be\u01f0"+ + "\3\2\2\2\u09bf\u09c0\7S\2\2\u09c0\u09c1\7W\2\2\u09c1\u09c2\7Q\2\2\u09c2"+ + "\u09c3\7V\2\2\u09c3\u09c4\7G\2\2\u09c4\u09c5\7a\2\2\u09c5\u09c6\7H\2\2"+ + "\u09c6\u09c7\7K\2\2\u09c7\u09c8\7G\2\2\u09c8\u09c9\7N\2\2\u09c9\u09ca"+ + "\7F\2\2\u09ca\u09cb\7a\2\2\u09cb\u09cc\7U\2\2\u09cc\u09cd\7W\2\2\u09cd"+ + "\u09ce\7H\2\2\u09ce\u09cf\7H\2\2\u09cf\u09d0\7K\2\2\u09d0\u09d1\7Z\2\2"+ + "\u09d1\u01f2\3\2\2\2\u09d2\u09d3\7T\2\2\u09d3\u09d4\7G\2\2\u09d4\u09d5"+ + "\7Y\2\2\u09d5\u09d6\7T\2\2\u09d6\u09d7\7K\2\2\u09d7\u09d8\7V\2\2\u09d8"+ + "\u09d9\7G\2\2\u09d9\u01f4\3\2\2\2\u09da\u09db\7U\2\2\u09db\u09dc\7N\2"+ + "\2\u09dc\u09dd\7Q\2\2\u09dd\u09de\7R\2\2\u09de\u01f6\3\2\2\2\u09df\u09e0"+ + "\7V\2\2\u09e0\u09e1\7K\2\2\u09e1\u09e2\7G\2\2\u09e2\u09e3\7a\2\2\u09e3"+ + "\u09e4\7D\2\2\u09e4\u09e5\7T\2\2\u09e5\u09e6\7G\2\2\u09e6\u09e7\7C\2\2"+ + "\u09e7\u09e8\7M\2\2\u09e8\u09e9\7G\2\2\u09e9\u09ea\7T\2\2\u09ea\u01f8"+ + "\3\2\2\2\u09eb\u09ec\7V\2\2\u09ec\u09ed\7[\2\2\u09ed\u09ee\7R\2\2\u09ee"+ + "\u09ef\7G\2\2\u09ef\u01fa\3\2\2\2\u09f0\u09f1\7\\\2\2\u09f1\u09f2\7G\2"+ + "\2\u09f2\u09f3\7T\2\2\u09f3\u09f4\7Q\2\2\u09f4\u09f5\7a\2\2\u09f5\u09f6"+ + "\7V\2\2\u09f6\u09f7\7G\2\2\u09f7\u09f8\7T\2\2\u09f8\u09f9\7O\2\2\u09f9"+ + "\u09fa\7U\2\2\u09fa\u09fb\7a\2\2\u09fb\u09fc\7S\2\2\u09fc\u09fd\7W\2\2"+ + "\u09fd\u09fe\7G\2\2\u09fe\u09ff\7T\2\2\u09ff\u0a00\7[\2\2\u0a00\u01fc"+ + "\3\2\2\2\u0a01\u0a02\7U\2\2\u0a02\u0a03\7R\2\2\u0a03\u0a04\7C\2\2\u0a04"+ + "\u0a05\7P\2\2\u0a05\u01fe\3\2\2\2\u0a06\u0a07\7O\2\2\u0a07\u0a08\7U\2"+ + "\2\u0a08\u0200\3\2\2\2\u0a09\u0a0a\7U\2\2\u0a0a\u0202\3\2\2\2\u0a0b\u0a0c"+ + "\7O\2\2\u0a0c\u0204\3\2\2\2\u0a0d\u0a0e\7J\2\2\u0a0e\u0206\3\2\2\2\u0a0f"+ + "\u0a10\7Y\2\2\u0a10\u0208\3\2\2\2\u0a11\u0a12\7S\2\2\u0a12\u020a\3\2\2"+ + "\2\u0a13\u0a14\7[\2\2\u0a14\u020c\3\2\2\2\u0a15\u0a16\5\u0215\u010b\2"+ + "\u0a16\u020e\3\2\2\2\u0a17\u0a19\5\u021f\u0110\2\u0a18\u0a17\3\2\2\2\u0a19"+ + "\u0a1a\3\2\2\2\u0a1a\u0a18\3\2\2\2\u0a1a\u0a1b\3\2\2\2\u0a1b\u0210\3\2"+ + "\2\2\u0a1c\u0a1e\5\u021f\u0110\2\u0a1d\u0a1c\3\2\2\2\u0a1e\u0a1f\3\2\2"+ + "\2\u0a1f\u0a1d\3\2\2\2\u0a1f\u0a20\3\2\2\2\u0a20\u0a22\3\2\2\2\u0a21\u0a1d"+ + "\3\2\2\2\u0a21\u0a22\3\2\2\2\u0a22\u0a23\3\2\2\2\u0a23\u0a25\7\60\2\2"+ + "\u0a24\u0a26\5\u021f\u0110\2\u0a25\u0a24\3\2\2\2\u0a26\u0a27\3\2\2\2\u0a27"+ + "\u0a25\3\2\2\2\u0a27\u0a28\3\2\2\2\u0a28\u0212\3\2\2\2\u0a29\u0a2b\t\2"+ + "\2\2\u0a2a\u0a2c\t\3\2\2\u0a2b\u0a2a\3\2\2\2\u0a2c\u0a2d\3\2\2\2\u0a2d"+ + "\u0a2b\3\2\2\2\u0a2d\u0a2e\3\2\2\2\u0a2e\u0a30\3\2\2\2\u0a2f\u0a29\3\2"+ + "\2\2\u0a30\u0a33\3\2\2\2\u0a31\u0a2f\3\2\2\2\u0a31\u0a32\3\2\2\2\u0a32"+ + "\u0214\3\2\2\2\u0a33\u0a31\3\2\2\2\u0a34\u0a36\t\4\2\2\u0a35\u0a34\3\2"+ + "\2\2\u0a36\u0a37\3\2\2\2\u0a37\u0a38\3\2\2\2\u0a37\u0a35\3\2\2\2\u0a38"+ + "\u0a3c\3\2\2\2\u0a39\u0a3b\t\5\2\2\u0a3a\u0a39\3\2\2\2\u0a3b\u0a3e\3\2"+ + "\2\2\u0a3c\u0a3a\3\2\2\2\u0a3c\u0a3d\3\2\2\2\u0a3d\u0216\3\2\2\2\u0a3e"+ + "\u0a3c\3\2\2\2\u0a3f\u0a40\5\u0215\u010b\2\u0a40\u0a41\5\u0213\u010a\2"+ + "\u0a41\u0218\3\2\2\2\u0a42\u0a4a\7$\2\2\u0a43\u0a44\7^\2\2\u0a44\u0a49"+ + "\13\2\2\2\u0a45\u0a46\7$\2\2\u0a46\u0a49\7$\2\2\u0a47\u0a49\n\6\2\2\u0a48"+ + "\u0a43\3\2\2\2\u0a48\u0a45\3\2\2\2\u0a48\u0a47\3\2\2\2\u0a49\u0a4c\3\2"+ + "\2\2\u0a4a\u0a48\3\2\2\2\u0a4a\u0a4b\3\2\2\2\u0a4b\u0a4d\3\2\2\2\u0a4c"+ + "\u0a4a\3\2\2\2\u0a4d\u0a4e\7$\2\2\u0a4e\u021a\3\2\2\2\u0a4f\u0a57\7)\2"+ + "\2\u0a50"; + private static final String _serializedATNSegment1 = + "\u0a51\7^\2\2\u0a51\u0a56\13\2\2\2\u0a52\u0a53\7)\2\2\u0a53\u0a56\7)\2"+ + "\2\u0a54\u0a56\n\7\2\2\u0a55\u0a50\3\2\2\2\u0a55\u0a52\3\2\2\2\u0a55\u0a54"+ + "\3\2\2\2\u0a56\u0a59\3\2\2\2\u0a57\u0a55\3\2\2\2\u0a57\u0a58\3\2\2\2\u0a58"+ + "\u0a5a\3\2\2\2\u0a59\u0a57\3\2\2\2\u0a5a\u0a5b\7)\2\2\u0a5b\u021c\3\2"+ + "\2\2\u0a5c\u0a64\7b\2\2\u0a5d\u0a5e\7^\2\2\u0a5e\u0a63\13\2\2\2\u0a5f"+ + "\u0a60\7b\2\2\u0a60\u0a63\7b\2\2\u0a61\u0a63\n\b\2\2\u0a62\u0a5d\3\2\2"+ + "\2\u0a62\u0a5f\3\2\2\2\u0a62\u0a61\3\2\2\2\u0a63\u0a66\3\2\2\2\u0a64\u0a62"+ + "\3\2\2\2\u0a64\u0a65\3\2\2\2\u0a65\u0a67\3\2\2\2\u0a66\u0a64\3\2\2\2\u0a67"+ + "\u0a68\7b\2\2\u0a68\u021e\3\2\2\2\u0a69\u0a6a\t\t\2\2\u0a6a\u0220\3\2"+ + "\2\2\u0a6b\u0a6c\13\2\2\2\u0a6c\u0a6d\3\2\2\2\u0a6d\u0a6e\b\u0111\2\2"+ + "\u0a6e\u0222\3\2\2\2\21\2\u0a1a\u0a1f\u0a21\u0a27\u0a2d\u0a31\u0a37\u0a3c"+ + "\u0a48\u0a4a\u0a55\u0a57\u0a62\u0a64\3\2\5\2"; + public static final String _serializedATN = Utils.join( + new String[] { + _serializedATNSegment0, + _serializedATNSegment1 + }, + "" + ); + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp new file mode 100644 index 000000000..8078132b4 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp @@ -0,0 +1,634 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +root +pplStatement +commands +searchCommand +whereCommand +fieldsCommand +renameCommand +statsCommand +dedupCommand +sortCommand +evalCommand +headCommand +topCommand +rareCommand +parseCommand +kmeansCommand +kmeansParameter +adCommand +adParameter +fromClause +renameClasue +byClause +statsByClause +bySpanClause +spanClause +sortbyClause +evalClause +statsAggTerm +statsFunction +statsFunctionName +percentileAggFunction +expression +logicalExpression +comparisonExpression +valueExpression +primaryExpression +booleanExpression +relevanceExpression +singleFieldRelevanceFunction +multiFieldRelevanceFunction +tableSource +fieldList +wcFieldList +sortField +sortFieldExpression +fieldExpression +wcFieldExpression +evalFunctionCall +dataTypeFunctionCall +booleanFunctionCall +convertedDataType +evalFunctionName +functionArgs +functionArg +relevanceArg +relevanceArgName +relevanceFieldAndWeight +relevanceFieldWeight +relevanceField +relevanceQuery +relevanceArgValue +mathematicalFunctionBase +trigonometricFunctionName +dateAndTimeFunctionBase +conditionFunctionBase +textFunctionBase +comparisonOperator +binaryOperator +singleFieldRelevanceFunctionName +multiFieldRelevanceFunctionName +literalValue +intervalLiteral +stringLiteral +integerLiteral +decimalLiteral +booleanLiteral +pattern +intervalUnit +timespanUnit +valueList +qualifiedName +wcQualifiedName +ident +wildcard +keywordsCanBeId + + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 4, 66, 70, 87, 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, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java new file mode 100644 index 000000000..eaf8c0ca9 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java @@ -0,0 +1,6612 @@ +// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.2 +import org.antlr.v4.runtime.atn.*; +import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.misc.*; +import org.antlr.v4.runtime.tree.*; +import java.util.List; +import java.util.Iterator; +import java.util.ArrayList; + +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) +public class OpenSearchPPLParser extends Parser { + static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, + EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, + SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, + NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, + ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, + SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, + TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, + CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, + DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, + HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, + MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, + HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, + YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, + DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, + DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, + PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, + COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, + SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, + BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, + MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, + STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, + STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, + EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, + PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, + C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, + EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, + POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, + ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, + RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, + DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, + MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, + DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, + TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, + STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, + LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, + MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, + ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, + BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, + ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, + FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, + LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, + MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, + QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, + TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, + W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, + ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, + ERROR_RECOGNITION=269; + public static final int + RULE_root = 0, RULE_pplStatement = 1, RULE_commands = 2, RULE_searchCommand = 3, + RULE_whereCommand = 4, RULE_fieldsCommand = 5, RULE_renameCommand = 6, + RULE_statsCommand = 7, RULE_dedupCommand = 8, RULE_sortCommand = 9, RULE_evalCommand = 10, + RULE_headCommand = 11, RULE_topCommand = 12, RULE_rareCommand = 13, RULE_parseCommand = 14, + RULE_kmeansCommand = 15, RULE_kmeansParameter = 16, RULE_adCommand = 17, + RULE_adParameter = 18, RULE_fromClause = 19, RULE_renameClasue = 20, RULE_byClause = 21, + RULE_statsByClause = 22, RULE_bySpanClause = 23, RULE_spanClause = 24, + RULE_sortbyClause = 25, RULE_evalClause = 26, RULE_statsAggTerm = 27, + RULE_statsFunction = 28, RULE_statsFunctionName = 29, RULE_percentileAggFunction = 30, + RULE_expression = 31, RULE_logicalExpression = 32, RULE_comparisonExpression = 33, + RULE_valueExpression = 34, RULE_primaryExpression = 35, RULE_booleanExpression = 36, + RULE_relevanceExpression = 37, RULE_singleFieldRelevanceFunction = 38, + RULE_multiFieldRelevanceFunction = 39, RULE_tableSource = 40, RULE_fieldList = 41, + RULE_wcFieldList = 42, RULE_sortField = 43, RULE_sortFieldExpression = 44, + RULE_fieldExpression = 45, RULE_wcFieldExpression = 46, RULE_evalFunctionCall = 47, + RULE_dataTypeFunctionCall = 48, RULE_booleanFunctionCall = 49, RULE_convertedDataType = 50, + RULE_evalFunctionName = 51, RULE_functionArgs = 52, RULE_functionArg = 53, + RULE_relevanceArg = 54, RULE_relevanceArgName = 55, RULE_relevanceFieldAndWeight = 56, + RULE_relevanceFieldWeight = 57, RULE_relevanceField = 58, RULE_relevanceQuery = 59, + RULE_relevanceArgValue = 60, RULE_mathematicalFunctionBase = 61, RULE_trigonometricFunctionName = 62, + RULE_dateAndTimeFunctionBase = 63, RULE_conditionFunctionBase = 64, RULE_textFunctionBase = 65, + RULE_comparisonOperator = 66, RULE_binaryOperator = 67, RULE_singleFieldRelevanceFunctionName = 68, + RULE_multiFieldRelevanceFunctionName = 69, RULE_literalValue = 70, RULE_intervalLiteral = 71, + RULE_stringLiteral = 72, RULE_integerLiteral = 73, RULE_decimalLiteral = 74, + RULE_booleanLiteral = 75, RULE_pattern = 76, RULE_intervalUnit = 77, RULE_timespanUnit = 78, + RULE_valueList = 79, RULE_qualifiedName = 80, RULE_wcQualifiedName = 81, + RULE_ident = 82, RULE_wildcard = 83, RULE_keywordsCanBeId = 84; + private static String[] makeRuleNames() { + return new String[] { + "root", "pplStatement", "commands", "searchCommand", "whereCommand", + "fieldsCommand", "renameCommand", "statsCommand", "dedupCommand", "sortCommand", + "evalCommand", "headCommand", "topCommand", "rareCommand", "parseCommand", + "kmeansCommand", "kmeansParameter", "adCommand", "adParameter", "fromClause", + "renameClasue", "byClause", "statsByClause", "bySpanClause", "spanClause", + "sortbyClause", "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", + "percentileAggFunction", "expression", "logicalExpression", "comparisonExpression", + "valueExpression", "primaryExpression", "booleanExpression", "relevanceExpression", + "singleFieldRelevanceFunction", "multiFieldRelevanceFunction", "tableSource", + "fieldList", "wcFieldList", "sortField", "sortFieldExpression", "fieldExpression", + "wcFieldExpression", "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", + "convertedDataType", "evalFunctionName", "functionArgs", "functionArg", + "relevanceArg", "relevanceArgName", "relevanceFieldAndWeight", "relevanceFieldWeight", + "relevanceField", "relevanceQuery", "relevanceArgValue", "mathematicalFunctionBase", + "trigonometricFunctionName", "dateAndTimeFunctionBase", "conditionFunctionBase", + "textFunctionBase", "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", + "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", + "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", + "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", + "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId" + }; + } + public static final String[] ruleNames = makeRuleNames(); + + private static String[] makeLiteralNames() { + return new String[] { + null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", + "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", + "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", + "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", + "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", + "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", + "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", + "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", + "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", + "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", + "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", + "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", + "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", + "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", + "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", + "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", + "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", + "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", + "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", + "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", + "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", + "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", + "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", + "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", + "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", + "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", + "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", + "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" + }; + } + private static final String[] _LITERAL_NAMES = makeLiteralNames(); + private static String[] makeSymbolicNames() { + return new String[] { + null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", + "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", + "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", + "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" + }; + } + private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + @Override + public String getGrammarFileName() { return "OpenSearchPPLParser.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public ATN getATN() { return _ATN; } + + public OpenSearchPPLParser(TokenStream input) { + super(input); + _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + + public static class RootContext extends ParserRuleContext { + public TerminalNode EOF() { return getToken(OpenSearchPPLParser.EOF, 0); } + public PplStatementContext pplStatement() { + return getRuleContext(PplStatementContext.class,0); + } + public RootContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_root; } + } + + public final RootContext root() throws RecognitionException { + RootContext _localctx = new RootContext(_ctx, getState()); + enterRule(_localctx, 0, RULE_root); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(171); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << SEARCH) | (1L << SOURCE) | (1L << INDEX) | (1L << D) | (1L << NOT) | (1L << TRUE) | (1L << FALSE) | (1L << INTERVAL) | (1L << MICROSECOND) | (1L << MILLISECOND) | (1L << SECOND) | (1L << MINUTE) | (1L << HOUR) | (1L << DAY) | (1L << WEEK))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (MONTH - 64)) | (1L << (QUARTER - 64)) | (1L << (YEAR - 64)) | (1L << (DOT - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (LT_PRTHS - 64)) | (1L << (BACKTICK - 64)) | (1L << (AVG - 64)) | (1L << (COUNT - 64)) | (1L << (MAX - 64)) | (1L << (MIN - 64)) | (1L << (SUM - 64)))) != 0) || ((((_la - 129)) & ~0x3f) == 0 && ((1L << (_la - 129)) & ((1L << (VAR_SAMP - 129)) | (1L << (VAR_POP - 129)) | (1L << (STDDEV_SAMP - 129)) | (1L << (STDDEV_POP - 129)) | (1L << (FIRST - 129)) | (1L << (LAST - 129)) | (1L << (ABS - 129)) | (1L << (CEIL - 129)) | (1L << (CEILING - 129)) | (1L << (CONV - 129)) | (1L << (CRC32 - 129)) | (1L << (E - 129)) | (1L << (EXP - 129)) | (1L << (FLOOR - 129)) | (1L << (LN - 129)) | (1L << (LOG - 129)) | (1L << (LOG10 - 129)) | (1L << (LOG2 - 129)) | (1L << (MOD - 129)) | (1L << (PI - 129)) | (1L << (POW - 129)) | (1L << (POWER - 129)) | (1L << (RAND - 129)) | (1L << (ROUND - 129)) | (1L << (SIGN - 129)) | (1L << (SQRT - 129)) | (1L << (TRUNCATE - 129)) | (1L << (ACOS - 129)) | (1L << (ASIN - 129)) | (1L << (ATAN - 129)) | (1L << (ATAN2 - 129)) | (1L << (COS - 129)) | (1L << (COT - 129)) | (1L << (DEGREES - 129)) | (1L << (RADIANS - 129)) | (1L << (SIN - 129)) | (1L << (TAN - 129)) | (1L << (ADDDATE - 129)) | (1L << (DATE - 129)) | (1L << (DATE_ADD - 129)) | (1L << (DATE_SUB - 129)) | (1L << (DAYOFMONTH - 129)) | (1L << (DAYOFWEEK - 129)) | (1L << (DAYOFYEAR - 129)) | (1L << (DAYNAME - 129)) | (1L << (FROM_DAYS - 129)) | (1L << (MONTHNAME - 129)) | (1L << (SUBDATE - 129)) | (1L << (TIME - 129)))) != 0) || ((((_la - 193)) & ~0x3f) == 0 && ((1L << (_la - 193)) & ((1L << (TIME_TO_SEC - 193)) | (1L << (TIMESTAMP - 193)) | (1L << (DATE_FORMAT - 193)) | (1L << (TO_DAYS - 193)) | (1L << (SUBSTR - 193)) | (1L << (SUBSTRING - 193)) | (1L << (LTRIM - 193)) | (1L << (RTRIM - 193)) | (1L << (TRIM - 193)) | (1L << (LOWER - 193)) | (1L << (UPPER - 193)) | (1L << (CONCAT - 193)) | (1L << (CONCAT_WS - 193)) | (1L << (LENGTH - 193)) | (1L << (STRCMP - 193)) | (1L << (RIGHT - 193)) | (1L << (LEFT - 193)) | (1L << (ASCII - 193)) | (1L << (LOCATE - 193)) | (1L << (REPLACE - 193)) | (1L << (CAST - 193)) | (1L << (LIKE - 193)) | (1L << (ISNULL - 193)) | (1L << (ISNOTNULL - 193)) | (1L << (IFNULL - 193)) | (1L << (NULLIF - 193)) | (1L << (IF - 193)) | (1L << (MATCH - 193)) | (1L << (MATCH_PHRASE - 193)) | (1L << (SIMPLE_QUERY_STRING - 193)) | (1L << (SPAN - 193)) | (1L << (MS - 193)) | (1L << (S - 193)))) != 0) || ((((_la - 257)) & ~0x3f) == 0 && ((1L << (_la - 257)) & ((1L << (M - 257)) | (1L << (H - 257)) | (1L << (W - 257)) | (1L << (Q - 257)) | (1L << (Y - 257)) | (1L << (ID - 257)) | (1L << (INTEGER_LITERAL - 257)) | (1L << (DECIMAL_LITERAL - 257)) | (1L << (DQUOTA_STRING - 257)) | (1L << (SQUOTA_STRING - 257)) | (1L << (BQUOTA_STRING - 257)))) != 0)) { + { + setState(170); + pplStatement(); + } + } + + setState(173); + match(EOF); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PplStatementContext extends ParserRuleContext { + public SearchCommandContext searchCommand() { + return getRuleContext(SearchCommandContext.class,0); + } + public List PIPE() { return getTokens(OpenSearchPPLParser.PIPE); } + public TerminalNode PIPE(int i) { + return getToken(OpenSearchPPLParser.PIPE, i); + } + public List commands() { + return getRuleContexts(CommandsContext.class); + } + public CommandsContext commands(int i) { + return getRuleContext(CommandsContext.class,i); + } + public PplStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_pplStatement; } + } + + public final PplStatementContext pplStatement() throws RecognitionException { + PplStatementContext _localctx = new PplStatementContext(_ctx, getState()); + enterRule(_localctx, 2, RULE_pplStatement); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(175); + searchCommand(); + setState(180); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==PIPE) { + { + { + setState(176); + match(PIPE); + setState(177); + commands(); + } + } + setState(182); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class CommandsContext extends ParserRuleContext { + public WhereCommandContext whereCommand() { + return getRuleContext(WhereCommandContext.class,0); + } + public FieldsCommandContext fieldsCommand() { + return getRuleContext(FieldsCommandContext.class,0); + } + public RenameCommandContext renameCommand() { + return getRuleContext(RenameCommandContext.class,0); + } + public StatsCommandContext statsCommand() { + return getRuleContext(StatsCommandContext.class,0); + } + public DedupCommandContext dedupCommand() { + return getRuleContext(DedupCommandContext.class,0); + } + public SortCommandContext sortCommand() { + return getRuleContext(SortCommandContext.class,0); + } + public EvalCommandContext evalCommand() { + return getRuleContext(EvalCommandContext.class,0); + } + public HeadCommandContext headCommand() { + return getRuleContext(HeadCommandContext.class,0); + } + public TopCommandContext topCommand() { + return getRuleContext(TopCommandContext.class,0); + } + public RareCommandContext rareCommand() { + return getRuleContext(RareCommandContext.class,0); + } + public ParseCommandContext parseCommand() { + return getRuleContext(ParseCommandContext.class,0); + } + public KmeansCommandContext kmeansCommand() { + return getRuleContext(KmeansCommandContext.class,0); + } + public AdCommandContext adCommand() { + return getRuleContext(AdCommandContext.class,0); + } + public CommandsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_commands; } + } + + public final CommandsContext commands() throws RecognitionException { + CommandsContext _localctx = new CommandsContext(_ctx, getState()); + enterRule(_localctx, 4, RULE_commands); + try { + setState(196); + _errHandler.sync(this); + switch (_input.LA(1)) { + case WHERE: + enterOuterAlt(_localctx, 1); + { + setState(183); + whereCommand(); + } + break; + case FIELDS: + enterOuterAlt(_localctx, 2); + { + setState(184); + fieldsCommand(); + } + break; + case RENAME: + enterOuterAlt(_localctx, 3); + { + setState(185); + renameCommand(); + } + break; + case STATS: + enterOuterAlt(_localctx, 4); + { + setState(186); + statsCommand(); + } + break; + case DEDUP: + enterOuterAlt(_localctx, 5); + { + setState(187); + dedupCommand(); + } + break; + case SORT: + enterOuterAlt(_localctx, 6); + { + setState(188); + sortCommand(); + } + break; + case EVAL: + enterOuterAlt(_localctx, 7); + { + setState(189); + evalCommand(); + } + break; + case HEAD: + enterOuterAlt(_localctx, 8); + { + setState(190); + headCommand(); + } + break; + case TOP: + enterOuterAlt(_localctx, 9); + { + setState(191); + topCommand(); + } + break; + case RARE: + enterOuterAlt(_localctx, 10); + { + setState(192); + rareCommand(); + } + break; + case PARSE: + enterOuterAlt(_localctx, 11); + { + setState(193); + parseCommand(); + } + break; + case KMEANS: + enterOuterAlt(_localctx, 12); + { + setState(194); + kmeansCommand(); + } + break; + case AD: + enterOuterAlt(_localctx, 13); + { + setState(195); + adCommand(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SearchCommandContext extends ParserRuleContext { + public SearchCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_searchCommand; } + + public SearchCommandContext() { } + public void copyFrom(SearchCommandContext ctx) { + super.copyFrom(ctx); + } + } + public static class SearchFromFilterContext extends SearchCommandContext { + public FromClauseContext fromClause() { + return getRuleContext(FromClauseContext.class,0); + } + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } + public SearchFromFilterContext(SearchCommandContext ctx) { copyFrom(ctx); } + } + public static class SearchFromContext extends SearchCommandContext { + public FromClauseContext fromClause() { + return getRuleContext(FromClauseContext.class,0); + } + public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } + public SearchFromContext(SearchCommandContext ctx) { copyFrom(ctx); } + } + public static class SearchFilterFromContext extends SearchCommandContext { + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public FromClauseContext fromClause() { + return getRuleContext(FromClauseContext.class,0); + } + public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } + public SearchFilterFromContext(SearchCommandContext ctx) { copyFrom(ctx); } + } + + public final SearchCommandContext searchCommand() throws RecognitionException { + SearchCommandContext _localctx = new SearchCommandContext(_ctx, getState()); + enterRule(_localctx, 6, RULE_searchCommand); + int _la; + try { + setState(214); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { + case 1: + _localctx = new SearchFromContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(199); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==SEARCH) { + { + setState(198); + match(SEARCH); + } + } + + setState(201); + fromClause(); + } + break; + case 2: + _localctx = new SearchFromFilterContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(203); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==SEARCH) { + { + setState(202); + match(SEARCH); + } + } + + setState(205); + fromClause(); + setState(206); + logicalExpression(0); + } + break; + case 3: + _localctx = new SearchFilterFromContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(209); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==SEARCH) { + { + setState(208); + match(SEARCH); + } + } + + setState(211); + logicalExpression(0); + setState(212); + fromClause(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WhereCommandContext extends ParserRuleContext { + public TerminalNode WHERE() { return getToken(OpenSearchPPLParser.WHERE, 0); } + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public WhereCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_whereCommand; } + } + + public final WhereCommandContext whereCommand() throws RecognitionException { + WhereCommandContext _localctx = new WhereCommandContext(_ctx, getState()); + enterRule(_localctx, 8, RULE_whereCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(216); + match(WHERE); + setState(217); + logicalExpression(0); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FieldsCommandContext extends ParserRuleContext { + public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public FieldsCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fieldsCommand; } + } + + public final FieldsCommandContext fieldsCommand() throws RecognitionException { + FieldsCommandContext _localctx = new FieldsCommandContext(_ctx, getState()); + enterRule(_localctx, 10, RULE_fieldsCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(219); + match(FIELDS); + setState(221); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(220); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(223); + fieldList(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RenameCommandContext extends ParserRuleContext { + public TerminalNode RENAME() { return getToken(OpenSearchPPLParser.RENAME, 0); } + public List renameClasue() { + return getRuleContexts(RenameClasueContext.class); + } + public RenameClasueContext renameClasue(int i) { + return getRuleContext(RenameClasueContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public RenameCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_renameCommand; } + } + + public final RenameCommandContext renameCommand() throws RecognitionException { + RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); + enterRule(_localctx, 12, RULE_renameCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(225); + match(RENAME); + setState(226); + renameClasue(); + setState(231); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(227); + match(COMMA); + setState(228); + renameClasue(); + } + } + setState(233); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsCommandContext extends ParserRuleContext { + public IntegerLiteralContext partitions; + public BooleanLiteralContext allnum; + public StringLiteralContext delim; + public BooleanLiteralContext dedupsplit; + public TerminalNode STATS() { return getToken(OpenSearchPPLParser.STATS, 0); } + public List statsAggTerm() { + return getRuleContexts(StatsAggTermContext.class); + } + public StatsAggTermContext statsAggTerm(int i) { + return getRuleContext(StatsAggTermContext.class,i); + } + public TerminalNode PARTITIONS() { return getToken(OpenSearchPPLParser.PARTITIONS, 0); } + public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } + public TerminalNode EQUAL(int i) { + return getToken(OpenSearchPPLParser.EQUAL, i); + } + public TerminalNode ALLNUM() { return getToken(OpenSearchPPLParser.ALLNUM, 0); } + public TerminalNode DELIM() { return getToken(OpenSearchPPLParser.DELIM, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public StatsByClauseContext statsByClause() { + return getRuleContext(StatsByClauseContext.class,0); + } + public TerminalNode DEDUP_SPLITVALUES() { return getToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public List booleanLiteral() { + return getRuleContexts(BooleanLiteralContext.class); + } + public BooleanLiteralContext booleanLiteral(int i) { + return getRuleContext(BooleanLiteralContext.class,i); + } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public StatsCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsCommand; } + } + + public final StatsCommandContext statsCommand() throws RecognitionException { + StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState()); + enterRule(_localctx, 14, RULE_statsCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(234); + match(STATS); + setState(238); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PARTITIONS) { + { + setState(235); + match(PARTITIONS); + setState(236); + match(EQUAL); + setState(237); + ((StatsCommandContext)_localctx).partitions = integerLiteral(); + } + } + + setState(243); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==ALLNUM) { + { + setState(240); + match(ALLNUM); + setState(241); + match(EQUAL); + setState(242); + ((StatsCommandContext)_localctx).allnum = booleanLiteral(); + } + } + + setState(248); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==DELIM) { + { + setState(245); + match(DELIM); + setState(246); + match(EQUAL); + setState(247); + ((StatsCommandContext)_localctx).delim = stringLiteral(); + } + } + + setState(250); + statsAggTerm(); + setState(255); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(251); + match(COMMA); + setState(252); + statsAggTerm(); + } + } + setState(257); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(259); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==BY) { + { + setState(258); + statsByClause(); + } + } + + setState(264); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==DEDUP_SPLITVALUES) { + { + setState(261); + match(DEDUP_SPLITVALUES); + setState(262); + match(EQUAL); + setState(263); + ((StatsCommandContext)_localctx).dedupsplit = booleanLiteral(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DedupCommandContext extends ParserRuleContext { + public IntegerLiteralContext number; + public BooleanLiteralContext keepempty; + public BooleanLiteralContext consecutive; + public TerminalNode DEDUP() { return getToken(OpenSearchPPLParser.DEDUP, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public TerminalNode KEEPEMPTY() { return getToken(OpenSearchPPLParser.KEEPEMPTY, 0); } + public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } + public TerminalNode EQUAL(int i) { + return getToken(OpenSearchPPLParser.EQUAL, i); + } + public TerminalNode CONSECUTIVE() { return getToken(OpenSearchPPLParser.CONSECUTIVE, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public List booleanLiteral() { + return getRuleContexts(BooleanLiteralContext.class); + } + public BooleanLiteralContext booleanLiteral(int i) { + return getRuleContext(BooleanLiteralContext.class,i); + } + public DedupCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dedupCommand; } + } + + public final DedupCommandContext dedupCommand() throws RecognitionException { + DedupCommandContext _localctx = new DedupCommandContext(_ctx, getState()); + enterRule(_localctx, 16, RULE_dedupCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(266); + match(DEDUP); + setState(268); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { + { + setState(267); + ((DedupCommandContext)_localctx).number = integerLiteral(); + } + } + + setState(270); + fieldList(); + setState(274); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==KEEPEMPTY) { + { + setState(271); + match(KEEPEMPTY); + setState(272); + match(EQUAL); + setState(273); + ((DedupCommandContext)_localctx).keepempty = booleanLiteral(); + } + } + + setState(279); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==CONSECUTIVE) { + { + setState(276); + match(CONSECUTIVE); + setState(277); + match(EQUAL); + setState(278); + ((DedupCommandContext)_localctx).consecutive = booleanLiteral(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortCommandContext extends ParserRuleContext { + public TerminalNode SORT() { return getToken(OpenSearchPPLParser.SORT, 0); } + public SortbyClauseContext sortbyClause() { + return getRuleContext(SortbyClauseContext.class,0); + } + public SortCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortCommand; } + } + + public final SortCommandContext sortCommand() throws RecognitionException { + SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); + enterRule(_localctx, 18, RULE_sortCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(281); + match(SORT); + setState(282); + sortbyClause(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalCommandContext extends ParserRuleContext { + public TerminalNode EVAL() { return getToken(OpenSearchPPLParser.EVAL, 0); } + public List evalClause() { + return getRuleContexts(EvalClauseContext.class); + } + public EvalClauseContext evalClause(int i) { + return getRuleContext(EvalClauseContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public EvalCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalCommand; } + } + + public final EvalCommandContext evalCommand() throws RecognitionException { + EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState()); + enterRule(_localctx, 20, RULE_evalCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(284); + match(EVAL); + setState(285); + evalClause(); + setState(290); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(286); + match(COMMA); + setState(287); + evalClause(); + } + } + setState(292); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class HeadCommandContext extends ParserRuleContext { + public IntegerLiteralContext number; + public IntegerLiteralContext from; + public TerminalNode HEAD() { return getToken(OpenSearchPPLParser.HEAD, 0); } + public TerminalNode FROM() { return getToken(OpenSearchPPLParser.FROM, 0); } + public List integerLiteral() { + return getRuleContexts(IntegerLiteralContext.class); + } + public IntegerLiteralContext integerLiteral(int i) { + return getRuleContext(IntegerLiteralContext.class,i); + } + public HeadCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_headCommand; } + } + + public final HeadCommandContext headCommand() throws RecognitionException { + HeadCommandContext _localctx = new HeadCommandContext(_ctx, getState()); + enterRule(_localctx, 22, RULE_headCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(293); + match(HEAD); + setState(295); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { + { + setState(294); + ((HeadCommandContext)_localctx).number = integerLiteral(); + } + } + + setState(299); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==FROM) { + { + setState(297); + match(FROM); + setState(298); + ((HeadCommandContext)_localctx).from = integerLiteral(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TopCommandContext extends ParserRuleContext { + public IntegerLiteralContext number; + public TerminalNode TOP() { return getToken(OpenSearchPPLParser.TOP, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public ByClauseContext byClause() { + return getRuleContext(ByClauseContext.class,0); + } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public TopCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_topCommand; } + } + + public final TopCommandContext topCommand() throws RecognitionException { + TopCommandContext _localctx = new TopCommandContext(_ctx, getState()); + enterRule(_localctx, 24, RULE_topCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(301); + match(TOP); + setState(303); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { + { + setState(302); + ((TopCommandContext)_localctx).number = integerLiteral(); + } + } + + setState(305); + fieldList(); + setState(307); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==BY) { + { + setState(306); + byClause(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RareCommandContext extends ParserRuleContext { + public TerminalNode RARE() { return getToken(OpenSearchPPLParser.RARE, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public ByClauseContext byClause() { + return getRuleContext(ByClauseContext.class,0); + } + public RareCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_rareCommand; } + } + + public final RareCommandContext rareCommand() throws RecognitionException { + RareCommandContext _localctx = new RareCommandContext(_ctx, getState()); + enterRule(_localctx, 26, RULE_rareCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(309); + match(RARE); + setState(310); + fieldList(); + setState(312); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==BY) { + { + setState(311); + byClause(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ParseCommandContext extends ParserRuleContext { + public TerminalNode PARSE() { return getToken(OpenSearchPPLParser.PARSE, 0); } + public ExpressionContext expression() { + return getRuleContext(ExpressionContext.class,0); + } + public PatternContext pattern() { + return getRuleContext(PatternContext.class,0); + } + public ParseCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_parseCommand; } + } + + public final ParseCommandContext parseCommand() throws RecognitionException { + ParseCommandContext _localctx = new ParseCommandContext(_ctx, getState()); + enterRule(_localctx, 28, RULE_parseCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(314); + match(PARSE); + setState(315); + expression(); + setState(316); + pattern(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class KmeansCommandContext extends ParserRuleContext { + public TerminalNode KMEANS() { return getToken(OpenSearchPPLParser.KMEANS, 0); } + public List kmeansParameter() { + return getRuleContexts(KmeansParameterContext.class); + } + public KmeansParameterContext kmeansParameter(int i) { + return getRuleContext(KmeansParameterContext.class,i); + } + public KmeansCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_kmeansCommand; } + } + + public final KmeansCommandContext kmeansCommand() throws RecognitionException { + KmeansCommandContext _localctx = new KmeansCommandContext(_ctx, getState()); + enterRule(_localctx, 30, RULE_kmeansCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(318); + match(KMEANS); + setState(322); + _errHandler.sync(this); + _la = _input.LA(1); + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CENTROIDS) | (1L << ITERATIONS) | (1L << DISTANCE_TYPE))) != 0)) { + { + { + setState(319); + kmeansParameter(); + } + } + setState(324); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class KmeansParameterContext extends ParserRuleContext { + public IntegerLiteralContext centroids; + public IntegerLiteralContext iterations; + public StringLiteralContext distance_type; + public TerminalNode CENTROIDS() { return getToken(OpenSearchPPLParser.CENTROIDS, 0); } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public TerminalNode ITERATIONS() { return getToken(OpenSearchPPLParser.ITERATIONS, 0); } + public TerminalNode DISTANCE_TYPE() { return getToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public KmeansParameterContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_kmeansParameter; } + } + + public final KmeansParameterContext kmeansParameter() throws RecognitionException { + KmeansParameterContext _localctx = new KmeansParameterContext(_ctx, getState()); + enterRule(_localctx, 32, RULE_kmeansParameter); + try { + setState(334); + _errHandler.sync(this); + switch (_input.LA(1)) { + case CENTROIDS: + enterOuterAlt(_localctx, 1); + { + { + setState(325); + match(CENTROIDS); + setState(326); + match(EQUAL); + setState(327); + ((KmeansParameterContext)_localctx).centroids = integerLiteral(); + } + } + break; + case ITERATIONS: + enterOuterAlt(_localctx, 2); + { + { + setState(328); + match(ITERATIONS); + setState(329); + match(EQUAL); + setState(330); + ((KmeansParameterContext)_localctx).iterations = integerLiteral(); + } + } + break; + case DISTANCE_TYPE: + enterOuterAlt(_localctx, 3); + { + { + setState(331); + match(DISTANCE_TYPE); + setState(332); + match(EQUAL); + setState(333); + ((KmeansParameterContext)_localctx).distance_type = stringLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AdCommandContext extends ParserRuleContext { + public TerminalNode AD() { return getToken(OpenSearchPPLParser.AD, 0); } + public List adParameter() { + return getRuleContexts(AdParameterContext.class); + } + public AdParameterContext adParameter(int i) { + return getRuleContext(AdParameterContext.class,i); + } + public AdCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_adCommand; } + } + + public final AdCommandContext adCommand() throws RecognitionException { + AdCommandContext _localctx = new AdCommandContext(_ctx, getState()); + enterRule(_localctx, 34, RULE_adCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(336); + match(AD); + setState(340); + _errHandler.sync(this); + _la = _input.LA(1); + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << NUMBER_OF_TREES) | (1L << SHINGLE_SIZE) | (1L << SAMPLE_SIZE) | (1L << OUTPUT_AFTER) | (1L << TIME_DECAY) | (1L << ANOMALY_RATE) | (1L << TIME_FIELD) | (1L << TIME_ZONE) | (1L << TRAINING_DATA_SIZE) | (1L << ANOMALY_SCORE_THRESHOLD))) != 0) || _la==DATE_FORMAT) { + { + { + setState(337); + adParameter(); + } + } + setState(342); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AdParameterContext extends ParserRuleContext { + public IntegerLiteralContext number_of_trees; + public IntegerLiteralContext shingle_size; + public IntegerLiteralContext sample_size; + public IntegerLiteralContext output_after; + public DecimalLiteralContext time_decay; + public DecimalLiteralContext anomaly_rate; + public StringLiteralContext time_field; + public StringLiteralContext date_format; + public StringLiteralContext time_zone; + public IntegerLiteralContext training_data_size; + public DecimalLiteralContext anomaly_score_threshold; + public TerminalNode NUMBER_OF_TREES() { return getToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public TerminalNode SHINGLE_SIZE() { return getToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } + public TerminalNode SAMPLE_SIZE() { return getToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } + public TerminalNode OUTPUT_AFTER() { return getToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } + public TerminalNode TIME_DECAY() { return getToken(OpenSearchPPLParser.TIME_DECAY, 0); } + public DecimalLiteralContext decimalLiteral() { + return getRuleContext(DecimalLiteralContext.class,0); + } + public TerminalNode ANOMALY_RATE() { return getToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } + public TerminalNode TIME_FIELD() { return getToken(OpenSearchPPLParser.TIME_FIELD, 0); } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TerminalNode TRAINING_DATA_SIZE() { return getToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } + public TerminalNode ANOMALY_SCORE_THRESHOLD() { return getToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } + public AdParameterContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_adParameter; } + } + + public final AdParameterContext adParameter() throws RecognitionException { + AdParameterContext _localctx = new AdParameterContext(_ctx, getState()); + enterRule(_localctx, 36, RULE_adParameter); + try { + setState(376); + _errHandler.sync(this); + switch (_input.LA(1)) { + case NUMBER_OF_TREES: + enterOuterAlt(_localctx, 1); + { + { + setState(343); + match(NUMBER_OF_TREES); + setState(344); + match(EQUAL); + setState(345); + ((AdParameterContext)_localctx).number_of_trees = integerLiteral(); + } + } + break; + case SHINGLE_SIZE: + enterOuterAlt(_localctx, 2); + { + { + setState(346); + match(SHINGLE_SIZE); + setState(347); + match(EQUAL); + setState(348); + ((AdParameterContext)_localctx).shingle_size = integerLiteral(); + } + } + break; + case SAMPLE_SIZE: + enterOuterAlt(_localctx, 3); + { + { + setState(349); + match(SAMPLE_SIZE); + setState(350); + match(EQUAL); + setState(351); + ((AdParameterContext)_localctx).sample_size = integerLiteral(); + } + } + break; + case OUTPUT_AFTER: + enterOuterAlt(_localctx, 4); + { + { + setState(352); + match(OUTPUT_AFTER); + setState(353); + match(EQUAL); + setState(354); + ((AdParameterContext)_localctx).output_after = integerLiteral(); + } + } + break; + case TIME_DECAY: + enterOuterAlt(_localctx, 5); + { + { + setState(355); + match(TIME_DECAY); + setState(356); + match(EQUAL); + setState(357); + ((AdParameterContext)_localctx).time_decay = decimalLiteral(); + } + } + break; + case ANOMALY_RATE: + enterOuterAlt(_localctx, 6); + { + { + setState(358); + match(ANOMALY_RATE); + setState(359); + match(EQUAL); + setState(360); + ((AdParameterContext)_localctx).anomaly_rate = decimalLiteral(); + } + } + break; + case TIME_FIELD: + enterOuterAlt(_localctx, 7); + { + { + setState(361); + match(TIME_FIELD); + setState(362); + match(EQUAL); + setState(363); + ((AdParameterContext)_localctx).time_field = stringLiteral(); + } + } + break; + case DATE_FORMAT: + enterOuterAlt(_localctx, 8); + { + { + setState(364); + match(DATE_FORMAT); + setState(365); + match(EQUAL); + setState(366); + ((AdParameterContext)_localctx).date_format = stringLiteral(); + } + } + break; + case TIME_ZONE: + enterOuterAlt(_localctx, 9); + { + { + setState(367); + match(TIME_ZONE); + setState(368); + match(EQUAL); + setState(369); + ((AdParameterContext)_localctx).time_zone = stringLiteral(); + } + } + break; + case TRAINING_DATA_SIZE: + enterOuterAlt(_localctx, 10); + { + { + setState(370); + match(TRAINING_DATA_SIZE); + setState(371); + match(EQUAL); + setState(372); + ((AdParameterContext)_localctx).training_data_size = integerLiteral(); + } + } + break; + case ANOMALY_SCORE_THRESHOLD: + enterOuterAlt(_localctx, 11); + { + { + setState(373); + match(ANOMALY_SCORE_THRESHOLD); + setState(374); + match(EQUAL); + setState(375); + ((AdParameterContext)_localctx).anomaly_score_threshold = decimalLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FromClauseContext extends ParserRuleContext { + public TerminalNode SOURCE() { return getToken(OpenSearchPPLParser.SOURCE, 0); } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public List tableSource() { + return getRuleContexts(TableSourceContext.class); + } + public TableSourceContext tableSource(int i) { + return getRuleContext(TableSourceContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public TerminalNode INDEX() { return getToken(OpenSearchPPLParser.INDEX, 0); } + public FromClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fromClause; } + } + + public final FromClauseContext fromClause() throws RecognitionException { + FromClauseContext _localctx = new FromClauseContext(_ctx, getState()); + enterRule(_localctx, 38, RULE_fromClause); + int _la; + try { + setState(398); + _errHandler.sync(this); + switch (_input.LA(1)) { + case SOURCE: + enterOuterAlt(_localctx, 1); + { + setState(378); + match(SOURCE); + setState(379); + match(EQUAL); + setState(380); + tableSource(); + setState(385); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(381); + match(COMMA); + setState(382); + tableSource(); + } + } + setState(387); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + break; + case INDEX: + enterOuterAlt(_localctx, 2); + { + setState(388); + match(INDEX); + setState(389); + match(EQUAL); + setState(390); + tableSource(); + setState(395); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(391); + match(COMMA); + setState(392); + tableSource(); + } + } + setState(397); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RenameClasueContext extends ParserRuleContext { + public WcFieldExpressionContext orignalField; + public WcFieldExpressionContext renamedField; + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public List wcFieldExpression() { + return getRuleContexts(WcFieldExpressionContext.class); + } + public WcFieldExpressionContext wcFieldExpression(int i) { + return getRuleContext(WcFieldExpressionContext.class,i); + } + public RenameClasueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_renameClasue; } + } + + public final RenameClasueContext renameClasue() throws RecognitionException { + RenameClasueContext _localctx = new RenameClasueContext(_ctx, getState()); + enterRule(_localctx, 40, RULE_renameClasue); + try { + enterOuterAlt(_localctx, 1); + { + setState(400); + ((RenameClasueContext)_localctx).orignalField = wcFieldExpression(); + setState(401); + match(AS); + setState(402); + ((RenameClasueContext)_localctx).renamedField = wcFieldExpression(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ByClauseContext extends ParserRuleContext { + public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public ByClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_byClause; } + } + + public final ByClauseContext byClause() throws RecognitionException { + ByClauseContext _localctx = new ByClauseContext(_ctx, getState()); + enterRule(_localctx, 42, RULE_byClause); + try { + enterOuterAlt(_localctx, 1); + { + setState(404); + match(BY); + setState(405); + fieldList(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsByClauseContext extends ParserRuleContext { + public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public BySpanClauseContext bySpanClause() { + return getRuleContext(BySpanClauseContext.class,0); + } + public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } + public StatsByClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsByClause; } + } + + public final StatsByClauseContext statsByClause() throws RecognitionException { + StatsByClauseContext _localctx = new StatsByClauseContext(_ctx, getState()); + enterRule(_localctx, 44, RULE_statsByClause); + try { + setState(416); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(407); + match(BY); + setState(408); + fieldList(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(409); + match(BY); + setState(410); + bySpanClause(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(411); + match(BY); + setState(412); + bySpanClause(); + setState(413); + match(COMMA); + setState(414); + fieldList(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BySpanClauseContext extends ParserRuleContext { + public QualifiedNameContext alias; + public SpanClauseContext spanClause() { + return getRuleContext(SpanClauseContext.class,0); + } + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public BySpanClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_bySpanClause; } + } + + public final BySpanClauseContext bySpanClause() throws RecognitionException { + BySpanClauseContext _localctx = new BySpanClauseContext(_ctx, getState()); + enterRule(_localctx, 46, RULE_bySpanClause); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(418); + spanClause(); + setState(421); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AS) { + { + setState(419); + match(AS); + setState(420); + ((BySpanClauseContext)_localctx).alias = qualifiedName(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SpanClauseContext extends ParserRuleContext { + public LiteralValueContext value; + public TimespanUnitContext unit; + public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public LiteralValueContext literalValue() { + return getRuleContext(LiteralValueContext.class,0); + } + public TimespanUnitContext timespanUnit() { + return getRuleContext(TimespanUnitContext.class,0); + } + public SpanClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_spanClause; } + } + + public final SpanClauseContext spanClause() throws RecognitionException { + SpanClauseContext _localctx = new SpanClauseContext(_ctx, getState()); + enterRule(_localctx, 48, RULE_spanClause); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(423); + match(SPAN); + setState(424); + match(LT_PRTHS); + setState(425); + fieldExpression(); + setState(426); + match(COMMA); + setState(427); + ((SpanClauseContext)_localctx).value = literalValue(); + setState(429); + _errHandler.sync(this); + _la = _input.LA(1); + if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) { + { + setState(428); + ((SpanClauseContext)_localctx).unit = timespanUnit(); + } + } + + setState(431); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortbyClauseContext extends ParserRuleContext { + public List sortField() { + return getRuleContexts(SortFieldContext.class); + } + public SortFieldContext sortField(int i) { + return getRuleContext(SortFieldContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public SortbyClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortbyClause; } + } + + public final SortbyClauseContext sortbyClause() throws RecognitionException { + SortbyClauseContext _localctx = new SortbyClauseContext(_ctx, getState()); + enterRule(_localctx, 50, RULE_sortbyClause); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(433); + sortField(); + setState(438); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(434); + match(COMMA); + setState(435); + sortField(); + } + } + setState(440); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalClauseContext extends ParserRuleContext { + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public ExpressionContext expression() { + return getRuleContext(ExpressionContext.class,0); + } + public EvalClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalClause; } + } + + public final EvalClauseContext evalClause() throws RecognitionException { + EvalClauseContext _localctx = new EvalClauseContext(_ctx, getState()); + enterRule(_localctx, 52, RULE_evalClause); + try { + enterOuterAlt(_localctx, 1); + { + setState(441); + fieldExpression(); + setState(442); + match(EQUAL); + setState(443); + expression(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsAggTermContext extends ParserRuleContext { + public WcFieldExpressionContext alias; + public StatsFunctionContext statsFunction() { + return getRuleContext(StatsFunctionContext.class,0); + } + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public WcFieldExpressionContext wcFieldExpression() { + return getRuleContext(WcFieldExpressionContext.class,0); + } + public StatsAggTermContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsAggTerm; } + } + + public final StatsAggTermContext statsAggTerm() throws RecognitionException { + StatsAggTermContext _localctx = new StatsAggTermContext(_ctx, getState()); + enterRule(_localctx, 54, RULE_statsAggTerm); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(445); + statsFunction(); + setState(448); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AS) { + { + setState(446); + match(AS); + setState(447); + ((StatsAggTermContext)_localctx).alias = wcFieldExpression(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsFunctionContext extends ParserRuleContext { + public StatsFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsFunction; } + + public StatsFunctionContext() { } + public void copyFrom(StatsFunctionContext ctx) { + super.copyFrom(ctx); + } + } + public static class DistinctCountFunctionCallContext extends StatsFunctionContext { + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public TerminalNode DISTINCT_COUNT() { return getToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } + public TerminalNode DC() { return getToken(OpenSearchPPLParser.DC, 0); } + public DistinctCountFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + public static class StatsFunctionCallContext extends StatsFunctionContext { + public StatsFunctionNameContext statsFunctionName() { + return getRuleContext(StatsFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public StatsFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + public static class CountAllFunctionCallContext extends StatsFunctionContext { + public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public CountAllFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + public static class PercentileAggFunctionCallContext extends StatsFunctionContext { + public PercentileAggFunctionContext percentileAggFunction() { + return getRuleContext(PercentileAggFunctionContext.class,0); + } + public PercentileAggFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + + public final StatsFunctionContext statsFunction() throws RecognitionException { + StatsFunctionContext _localctx = new StatsFunctionContext(_ctx, getState()); + enterRule(_localctx, 56, RULE_statsFunction); + int _la; + try { + setState(464); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { + case 1: + _localctx = new StatsFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(450); + statsFunctionName(); + setState(451); + match(LT_PRTHS); + setState(452); + valueExpression(0); + setState(453); + match(RT_PRTHS); + } + break; + case 2: + _localctx = new CountAllFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(455); + match(COUNT); + setState(456); + match(LT_PRTHS); + setState(457); + match(RT_PRTHS); + } + break; + case 3: + _localctx = new DistinctCountFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(458); + _la = _input.LA(1); + if ( !(_la==DISTINCT_COUNT || _la==DC) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(459); + match(LT_PRTHS); + setState(460); + valueExpression(0); + setState(461); + match(RT_PRTHS); + } + break; + case 4: + _localctx = new PercentileAggFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 4); + { + setState(463); + percentileAggFunction(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsFunctionNameContext extends ParserRuleContext { + public TerminalNode AVG() { return getToken(OpenSearchPPLParser.AVG, 0); } + public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } + public TerminalNode SUM() { return getToken(OpenSearchPPLParser.SUM, 0); } + public TerminalNode MIN() { return getToken(OpenSearchPPLParser.MIN, 0); } + public TerminalNode MAX() { return getToken(OpenSearchPPLParser.MAX, 0); } + public TerminalNode VAR_SAMP() { return getToken(OpenSearchPPLParser.VAR_SAMP, 0); } + public TerminalNode VAR_POP() { return getToken(OpenSearchPPLParser.VAR_POP, 0); } + public TerminalNode STDDEV_SAMP() { return getToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } + public TerminalNode STDDEV_POP() { return getToken(OpenSearchPPLParser.STDDEV_POP, 0); } + public StatsFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsFunctionName; } + } + + public final StatsFunctionNameContext statsFunctionName() throws RecognitionException { + StatsFunctionNameContext _localctx = new StatsFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 58, RULE_statsFunctionName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(466); + _la = _input.LA(1); + if ( !(((((_la - 114)) & ~0x3f) == 0 && ((1L << (_la - 114)) & ((1L << (AVG - 114)) | (1L << (COUNT - 114)) | (1L << (MAX - 114)) | (1L << (MIN - 114)) | (1L << (SUM - 114)) | (1L << (VAR_SAMP - 114)) | (1L << (VAR_POP - 114)) | (1L << (STDDEV_SAMP - 114)) | (1L << (STDDEV_POP - 114)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PercentileAggFunctionContext extends ParserRuleContext { + public IntegerLiteralContext value; + public FieldExpressionContext aggField; + public TerminalNode PERCENTILE() { return getToken(OpenSearchPPLParser.PERCENTILE, 0); } + public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } + public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public PercentileAggFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_percentileAggFunction; } + } + + public final PercentileAggFunctionContext percentileAggFunction() throws RecognitionException { + PercentileAggFunctionContext _localctx = new PercentileAggFunctionContext(_ctx, getState()); + enterRule(_localctx, 60, RULE_percentileAggFunction); + try { + enterOuterAlt(_localctx, 1); + { + setState(468); + match(PERCENTILE); + setState(469); + match(LESS); + setState(470); + ((PercentileAggFunctionContext)_localctx).value = integerLiteral(); + setState(471); + match(GREATER); + setState(472); + match(LT_PRTHS); + setState(473); + ((PercentileAggFunctionContext)_localctx).aggField = fieldExpression(); + setState(474); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ExpressionContext extends ParserRuleContext { + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public ComparisonExpressionContext comparisonExpression() { + return getRuleContext(ComparisonExpressionContext.class,0); + } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public ExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_expression; } + } + + public final ExpressionContext expression() throws RecognitionException { + ExpressionContext _localctx = new ExpressionContext(_ctx, getState()); + enterRule(_localctx, 62, RULE_expression); + try { + setState(479); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(476); + logicalExpression(0); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(477); + comparisonExpression(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(478); + valueExpression(0); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LogicalExpressionContext extends ParserRuleContext { + public LogicalExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_logicalExpression; } + + public LogicalExpressionContext() { } + public void copyFrom(LogicalExpressionContext ctx) { + super.copyFrom(ctx); + } + } + public static class RelevanceExprContext extends LogicalExpressionContext { + public RelevanceExpressionContext relevanceExpression() { + return getRuleContext(RelevanceExpressionContext.class,0); + } + public RelevanceExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalNotContext extends LogicalExpressionContext { + public TerminalNode NOT() { return getToken(OpenSearchPPLParser.NOT, 0); } + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public LogicalNotContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class BooleanExprContext extends LogicalExpressionContext { + public BooleanExpressionContext booleanExpression() { + return getRuleContext(BooleanExpressionContext.class,0); + } + public BooleanExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalAndContext extends LogicalExpressionContext { + public LogicalExpressionContext left; + public LogicalExpressionContext right; + public List logicalExpression() { + return getRuleContexts(LogicalExpressionContext.class); + } + public LogicalExpressionContext logicalExpression(int i) { + return getRuleContext(LogicalExpressionContext.class,i); + } + public TerminalNode AND() { return getToken(OpenSearchPPLParser.AND, 0); } + public LogicalAndContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class ComparsionContext extends LogicalExpressionContext { + public ComparisonExpressionContext comparisonExpression() { + return getRuleContext(ComparisonExpressionContext.class,0); + } + public ComparsionContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalXorContext extends LogicalExpressionContext { + public LogicalExpressionContext left; + public LogicalExpressionContext right; + public TerminalNode XOR() { return getToken(OpenSearchPPLParser.XOR, 0); } + public List logicalExpression() { + return getRuleContexts(LogicalExpressionContext.class); + } + public LogicalExpressionContext logicalExpression(int i) { + return getRuleContext(LogicalExpressionContext.class,i); + } + public LogicalXorContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalOrContext extends LogicalExpressionContext { + public LogicalExpressionContext left; + public LogicalExpressionContext right; + public TerminalNode OR() { return getToken(OpenSearchPPLParser.OR, 0); } + public List logicalExpression() { + return getRuleContexts(LogicalExpressionContext.class); + } + public LogicalExpressionContext logicalExpression(int i) { + return getRuleContext(LogicalExpressionContext.class,i); + } + public LogicalOrContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + + public final LogicalExpressionContext logicalExpression() throws RecognitionException { + return logicalExpression(0); + } + + private LogicalExpressionContext logicalExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + LogicalExpressionContext _localctx = new LogicalExpressionContext(_ctx, _parentState); + LogicalExpressionContext _prevctx = _localctx; + int _startState = 64; + enterRecursionRule(_localctx, 64, RULE_logicalExpression, _p); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(487); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + case 1: + { + _localctx = new ComparsionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(482); + comparisonExpression(); + } + break; + case 2: + { + _localctx = new LogicalNotContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(483); + match(NOT); + setState(484); + logicalExpression(6); + } + break; + case 3: + { + _localctx = new BooleanExprContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(485); + booleanExpression(); + } + break; + case 4: + { + _localctx = new RelevanceExprContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(486); + relevanceExpression(); + } + break; + } + _ctx.stop = _input.LT(-1); + setState(502); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + setState(500); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { + case 1: + { + _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); + ((LogicalOrContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); + setState(489); + if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); + setState(490); + match(OR); + setState(491); + ((LogicalOrContext)_localctx).right = logicalExpression(6); + } + break; + case 2: + { + _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); + ((LogicalAndContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); + setState(492); + if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); + setState(494); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AND) { + { + setState(493); + match(AND); + } + } + + setState(496); + ((LogicalAndContext)_localctx).right = logicalExpression(5); + } + break; + case 3: + { + _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); + ((LogicalXorContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); + setState(497); + if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); + setState(498); + match(XOR); + setState(499); + ((LogicalXorContext)_localctx).right = logicalExpression(4); + } + break; + } + } + } + setState(504); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + unrollRecursionContexts(_parentctx); + } + return _localctx; + } + + public static class ComparisonExpressionContext extends ParserRuleContext { + public ComparisonExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_comparisonExpression; } + + public ComparisonExpressionContext() { } + public void copyFrom(ComparisonExpressionContext ctx) { + super.copyFrom(ctx); + } + } + public static class InExprContext extends ComparisonExpressionContext { + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public TerminalNode IN() { return getToken(OpenSearchPPLParser.IN, 0); } + public ValueListContext valueList() { + return getRuleContext(ValueListContext.class,0); + } + public InExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } + } + public static class CompareExprContext extends ComparisonExpressionContext { + public ValueExpressionContext left; + public ValueExpressionContext right; + public ComparisonOperatorContext comparisonOperator() { + return getRuleContext(ComparisonOperatorContext.class,0); + } + public List valueExpression() { + return getRuleContexts(ValueExpressionContext.class); + } + public ValueExpressionContext valueExpression(int i) { + return getRuleContext(ValueExpressionContext.class,i); + } + public CompareExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } + } + + public final ComparisonExpressionContext comparisonExpression() throws RecognitionException { + ComparisonExpressionContext _localctx = new ComparisonExpressionContext(_ctx, getState()); + enterRule(_localctx, 66, RULE_comparisonExpression); + try { + setState(513); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { + case 1: + _localctx = new CompareExprContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(505); + ((CompareExprContext)_localctx).left = valueExpression(0); + setState(506); + comparisonOperator(); + setState(507); + ((CompareExprContext)_localctx).right = valueExpression(0); + } + break; + case 2: + _localctx = new InExprContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(509); + valueExpression(0); + setState(510); + match(IN); + setState(511); + valueList(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ValueExpressionContext extends ParserRuleContext { + public ValueExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_valueExpression; } + + public ValueExpressionContext() { } + public void copyFrom(ValueExpressionContext ctx) { + super.copyFrom(ctx); + } + } + public static class ValueExpressionDefaultContext extends ValueExpressionContext { + public PrimaryExpressionContext primaryExpression() { + return getRuleContext(PrimaryExpressionContext.class,0); + } + public ValueExpressionDefaultContext(ValueExpressionContext ctx) { copyFrom(ctx); } + } + public static class ParentheticBinaryArithmeticContext extends ValueExpressionContext { + public ValueExpressionContext left; + public ValueExpressionContext right; + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public BinaryOperatorContext binaryOperator() { + return getRuleContext(BinaryOperatorContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public List valueExpression() { + return getRuleContexts(ValueExpressionContext.class); + } + public ValueExpressionContext valueExpression(int i) { + return getRuleContext(ValueExpressionContext.class,i); + } + public ParentheticBinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } + } + public static class BinaryArithmeticContext extends ValueExpressionContext { + public ValueExpressionContext left; + public ValueExpressionContext right; + public BinaryOperatorContext binaryOperator() { + return getRuleContext(BinaryOperatorContext.class,0); + } + public List valueExpression() { + return getRuleContexts(ValueExpressionContext.class); + } + public ValueExpressionContext valueExpression(int i) { + return getRuleContext(ValueExpressionContext.class,i); + } + public BinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } + } + + public final ValueExpressionContext valueExpression() throws RecognitionException { + return valueExpression(0); + } + + private ValueExpressionContext valueExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, _parentState); + ValueExpressionContext _prevctx = _localctx; + int _startState = 68; + enterRecursionRule(_localctx, 68, RULE_valueExpression, _p); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(523); + _errHandler.sync(this); + switch (_input.LA(1)) { + case LT_PRTHS: + { + _localctx = new ParentheticBinaryArithmeticContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(516); + match(LT_PRTHS); + setState(517); + ((ParentheticBinaryArithmeticContext)_localctx).left = valueExpression(0); + setState(518); + binaryOperator(); + setState(519); + ((ParentheticBinaryArithmeticContext)_localctx).right = valueExpression(0); + setState(520); + match(RT_PRTHS); + } + break; + case D: + case TRUE: + case FALSE: + case INTERVAL: + case MICROSECOND: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case PLUS: + case MINUS: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case ABS: + case CEIL: + case CEILING: + case CONV: + case CRC32: + case E: + case EXP: + case FLOOR: + case LN: + case LOG: + case LOG10: + case LOG2: + case MOD: + case PI: + case POW: + case POWER: + case RAND: + case ROUND: + case SIGN: + case SQRT: + case TRUNCATE: + case ACOS: + case ASIN: + case ATAN: + case ATAN2: + case COS: + case COT: + case DEGREES: + case RADIANS: + case SIN: + case TAN: + case ADDDATE: + case DATE: + case DATE_ADD: + case DATE_SUB: + case DAYOFMONTH: + case DAYOFWEEK: + case DAYOFYEAR: + case DAYNAME: + case FROM_DAYS: + case MONTHNAME: + case SUBDATE: + case TIME: + case TIME_TO_SEC: + case TIMESTAMP: + case DATE_FORMAT: + case TO_DAYS: + case SUBSTR: + case SUBSTRING: + case LTRIM: + case RTRIM: + case TRIM: + case LOWER: + case UPPER: + case CONCAT: + case CONCAT_WS: + case LENGTH: + case STRCMP: + case RIGHT: + case LEFT: + case ASCII: + case LOCATE: + case REPLACE: + case CAST: + case LIKE: + case ISNULL: + case ISNOTNULL: + case IFNULL: + case NULLIF: + case IF: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case INTEGER_LITERAL: + case DECIMAL_LITERAL: + case DQUOTA_STRING: + case SQUOTA_STRING: + case BQUOTA_STRING: + { + _localctx = new ValueExpressionDefaultContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(522); + primaryExpression(); + } + break; + default: + throw new NoViableAltException(this); + } + _ctx.stop = _input.LT(-1); + setState(531); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + { + _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); + ((BinaryArithmeticContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_valueExpression); + setState(525); + if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); + setState(526); + binaryOperator(); + setState(527); + ((BinaryArithmeticContext)_localctx).right = valueExpression(4); + } + } + } + setState(533); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + unrollRecursionContexts(_parentctx); + } + return _localctx; + } + + public static class PrimaryExpressionContext extends ParserRuleContext { + public EvalFunctionCallContext evalFunctionCall() { + return getRuleContext(EvalFunctionCallContext.class,0); + } + public DataTypeFunctionCallContext dataTypeFunctionCall() { + return getRuleContext(DataTypeFunctionCallContext.class,0); + } + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public LiteralValueContext literalValue() { + return getRuleContext(LiteralValueContext.class,0); + } + public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_primaryExpression; } + } + + public final PrimaryExpressionContext primaryExpression() throws RecognitionException { + PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, getState()); + enterRule(_localctx, 70, RULE_primaryExpression); + try { + setState(538); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(534); + evalFunctionCall(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(535); + dataTypeFunctionCall(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(536); + fieldExpression(); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(537); + literalValue(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BooleanExpressionContext extends ParserRuleContext { + public BooleanFunctionCallContext booleanFunctionCall() { + return getRuleContext(BooleanFunctionCallContext.class,0); + } + public BooleanExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_booleanExpression; } + } + + public final BooleanExpressionContext booleanExpression() throws RecognitionException { + BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, getState()); + enterRule(_localctx, 72, RULE_booleanExpression); + try { + enterOuterAlt(_localctx, 1); + { + setState(540); + booleanFunctionCall(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceExpressionContext extends ParserRuleContext { + public SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() { + return getRuleContext(SingleFieldRelevanceFunctionContext.class,0); + } + public MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() { + return getRuleContext(MultiFieldRelevanceFunctionContext.class,0); + } + public RelevanceExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceExpression; } + } + + public final RelevanceExpressionContext relevanceExpression() throws RecognitionException { + RelevanceExpressionContext _localctx = new RelevanceExpressionContext(_ctx, getState()); + enterRule(_localctx, 74, RULE_relevanceExpression); + try { + setState(544); + _errHandler.sync(this); + switch (_input.LA(1)) { + case MATCH: + case MATCH_PHRASE: + enterOuterAlt(_localctx, 1); + { + setState(542); + singleFieldRelevanceFunction(); + } + break; + case SIMPLE_QUERY_STRING: + enterOuterAlt(_localctx, 2); + { + setState(543); + multiFieldRelevanceFunction(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SingleFieldRelevanceFunctionContext extends ParserRuleContext { + public RelevanceFieldContext field; + public RelevanceQueryContext query; + public SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() { + return getRuleContext(SingleFieldRelevanceFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public RelevanceFieldContext relevanceField() { + return getRuleContext(RelevanceFieldContext.class,0); + } + public RelevanceQueryContext relevanceQuery() { + return getRuleContext(RelevanceQueryContext.class,0); + } + public List relevanceArg() { + return getRuleContexts(RelevanceArgContext.class); + } + public RelevanceArgContext relevanceArg(int i) { + return getRuleContext(RelevanceArgContext.class,i); + } + public SingleFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunction; } + } + + public final SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() throws RecognitionException { + SingleFieldRelevanceFunctionContext _localctx = new SingleFieldRelevanceFunctionContext(_ctx, getState()); + enterRule(_localctx, 76, RULE_singleFieldRelevanceFunction); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(546); + singleFieldRelevanceFunctionName(); + setState(547); + match(LT_PRTHS); + setState(548); + ((SingleFieldRelevanceFunctionContext)_localctx).field = relevanceField(); + setState(549); + match(COMMA); + setState(550); + ((SingleFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); + setState(555); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(551); + match(COMMA); + setState(552); + relevanceArg(); + } + } + setState(557); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(558); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class MultiFieldRelevanceFunctionContext extends ParserRuleContext { + public RelevanceFieldAndWeightContext field; + public RelevanceQueryContext query; + public MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() { + return getRuleContext(MultiFieldRelevanceFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode LT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } + public TerminalNode RT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public List relevanceFieldAndWeight() { + return getRuleContexts(RelevanceFieldAndWeightContext.class); + } + public RelevanceFieldAndWeightContext relevanceFieldAndWeight(int i) { + return getRuleContext(RelevanceFieldAndWeightContext.class,i); + } + public RelevanceQueryContext relevanceQuery() { + return getRuleContext(RelevanceQueryContext.class,0); + } + public List relevanceArg() { + return getRuleContexts(RelevanceArgContext.class); + } + public RelevanceArgContext relevanceArg(int i) { + return getRuleContext(RelevanceArgContext.class,i); + } + public MultiFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunction; } + } + + public final MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() throws RecognitionException { + MultiFieldRelevanceFunctionContext _localctx = new MultiFieldRelevanceFunctionContext(_ctx, getState()); + enterRule(_localctx, 78, RULE_multiFieldRelevanceFunction); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(560); + multiFieldRelevanceFunctionName(); + setState(561); + match(LT_PRTHS); + setState(562); + match(LT_SQR_PRTHS); + setState(563); + ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); + setState(568); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(564); + match(COMMA); + setState(565); + ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); + } + } + setState(570); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(571); + match(RT_SQR_PRTHS); + setState(572); + match(COMMA); + setState(573); + ((MultiFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); + setState(578); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(574); + match(COMMA); + setState(575); + relevanceArg(); + } + } + setState(580); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(581); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TableSourceContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public TerminalNode ID_DATE_SUFFIX() { return getToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } + public TableSourceContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_tableSource; } + } + + public final TableSourceContext tableSource() throws RecognitionException { + TableSourceContext _localctx = new TableSourceContext(_ctx, getState()); + enterRule(_localctx, 80, RULE_tableSource); + try { + setState(585); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(583); + qualifiedName(); + } + break; + case ID_DATE_SUFFIX: + enterOuterAlt(_localctx, 2); + { + setState(584); + match(ID_DATE_SUFFIX); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FieldListContext extends ParserRuleContext { + public List fieldExpression() { + return getRuleContexts(FieldExpressionContext.class); + } + public FieldExpressionContext fieldExpression(int i) { + return getRuleContext(FieldExpressionContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public FieldListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fieldList; } + } + + public final FieldListContext fieldList() throws RecognitionException { + FieldListContext _localctx = new FieldListContext(_ctx, getState()); + enterRule(_localctx, 82, RULE_fieldList); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(587); + fieldExpression(); + setState(592); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(588); + match(COMMA); + setState(589); + fieldExpression(); + } + } + setState(594); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WcFieldListContext extends ParserRuleContext { + public List wcFieldExpression() { + return getRuleContexts(WcFieldExpressionContext.class); + } + public WcFieldExpressionContext wcFieldExpression(int i) { + return getRuleContext(WcFieldExpressionContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public WcFieldListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wcFieldList; } + } + + public final WcFieldListContext wcFieldList() throws RecognitionException { + WcFieldListContext _localctx = new WcFieldListContext(_ctx, getState()); + enterRule(_localctx, 84, RULE_wcFieldList); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(595); + wcFieldExpression(); + setState(600); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(596); + match(COMMA); + setState(597); + wcFieldExpression(); + } + } + setState(602); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortFieldContext extends ParserRuleContext { + public SortFieldExpressionContext sortFieldExpression() { + return getRuleContext(SortFieldExpressionContext.class,0); + } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public SortFieldContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortField; } + } + + public final SortFieldContext sortField() throws RecognitionException { + SortFieldContext _localctx = new SortFieldContext(_ctx, getState()); + enterRule(_localctx, 86, RULE_sortField); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(604); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(603); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(606); + sortFieldExpression(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortFieldExpressionContext extends ParserRuleContext { + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public TerminalNode AUTO() { return getToken(OpenSearchPPLParser.AUTO, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public TerminalNode STR() { return getToken(OpenSearchPPLParser.STR, 0); } + public TerminalNode IP() { return getToken(OpenSearchPPLParser.IP, 0); } + public TerminalNode NUM() { return getToken(OpenSearchPPLParser.NUM, 0); } + public SortFieldExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortFieldExpression; } + } + + public final SortFieldExpressionContext sortFieldExpression() throws RecognitionException { + SortFieldExpressionContext _localctx = new SortFieldExpressionContext(_ctx, getState()); + enterRule(_localctx, 88, RULE_sortFieldExpression); + try { + setState(629); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(608); + fieldExpression(); + } + break; + case AUTO: + enterOuterAlt(_localctx, 2); + { + setState(609); + match(AUTO); + setState(610); + match(LT_PRTHS); + setState(611); + fieldExpression(); + setState(612); + match(RT_PRTHS); + } + break; + case STR: + enterOuterAlt(_localctx, 3); + { + setState(614); + match(STR); + setState(615); + match(LT_PRTHS); + setState(616); + fieldExpression(); + setState(617); + match(RT_PRTHS); + } + break; + case IP: + enterOuterAlt(_localctx, 4); + { + setState(619); + match(IP); + setState(620); + match(LT_PRTHS); + setState(621); + fieldExpression(); + setState(622); + match(RT_PRTHS); + } + break; + case NUM: + enterOuterAlt(_localctx, 5); + { + setState(624); + match(NUM); + setState(625); + match(LT_PRTHS); + setState(626); + fieldExpression(); + setState(627); + match(RT_PRTHS); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FieldExpressionContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public FieldExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fieldExpression; } + } + + public final FieldExpressionContext fieldExpression() throws RecognitionException { + FieldExpressionContext _localctx = new FieldExpressionContext(_ctx, getState()); + enterRule(_localctx, 90, RULE_fieldExpression); + try { + enterOuterAlt(_localctx, 1); + { + setState(631); + qualifiedName(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WcFieldExpressionContext extends ParserRuleContext { + public WcQualifiedNameContext wcQualifiedName() { + return getRuleContext(WcQualifiedNameContext.class,0); + } + public WcFieldExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wcFieldExpression; } + } + + public final WcFieldExpressionContext wcFieldExpression() throws RecognitionException { + WcFieldExpressionContext _localctx = new WcFieldExpressionContext(_ctx, getState()); + enterRule(_localctx, 92, RULE_wcFieldExpression); + try { + enterOuterAlt(_localctx, 1); + { + setState(633); + wcQualifiedName(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalFunctionCallContext extends ParserRuleContext { + public EvalFunctionNameContext evalFunctionName() { + return getRuleContext(EvalFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public FunctionArgsContext functionArgs() { + return getRuleContext(FunctionArgsContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public EvalFunctionCallContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalFunctionCall; } + } + + public final EvalFunctionCallContext evalFunctionCall() throws RecognitionException { + EvalFunctionCallContext _localctx = new EvalFunctionCallContext(_ctx, getState()); + enterRule(_localctx, 94, RULE_evalFunctionCall); + try { + enterOuterAlt(_localctx, 1); + { + setState(635); + evalFunctionName(); + setState(636); + match(LT_PRTHS); + setState(637); + functionArgs(); + setState(638); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DataTypeFunctionCallContext extends ParserRuleContext { + public TerminalNode CAST() { return getToken(OpenSearchPPLParser.CAST, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public ExpressionContext expression() { + return getRuleContext(ExpressionContext.class,0); + } + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public ConvertedDataTypeContext convertedDataType() { + return getRuleContext(ConvertedDataTypeContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public DataTypeFunctionCallContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dataTypeFunctionCall; } + } + + public final DataTypeFunctionCallContext dataTypeFunctionCall() throws RecognitionException { + DataTypeFunctionCallContext _localctx = new DataTypeFunctionCallContext(_ctx, getState()); + enterRule(_localctx, 96, RULE_dataTypeFunctionCall); + try { + enterOuterAlt(_localctx, 1); + { + setState(640); + match(CAST); + setState(641); + match(LT_PRTHS); + setState(642); + expression(); + setState(643); + match(AS); + setState(644); + convertedDataType(); + setState(645); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BooleanFunctionCallContext extends ParserRuleContext { + public ConditionFunctionBaseContext conditionFunctionBase() { + return getRuleContext(ConditionFunctionBaseContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public FunctionArgsContext functionArgs() { + return getRuleContext(FunctionArgsContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public BooleanFunctionCallContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_booleanFunctionCall; } + } + + public final BooleanFunctionCallContext booleanFunctionCall() throws RecognitionException { + BooleanFunctionCallContext _localctx = new BooleanFunctionCallContext(_ctx, getState()); + enterRule(_localctx, 98, RULE_booleanFunctionCall); + try { + enterOuterAlt(_localctx, 1); + { + setState(647); + conditionFunctionBase(); + setState(648); + match(LT_PRTHS); + setState(649); + functionArgs(); + setState(650); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ConvertedDataTypeContext extends ParserRuleContext { + public Token typeName; + public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } + public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } + public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TerminalNode INT() { return getToken(OpenSearchPPLParser.INT, 0); } + public TerminalNode INTEGER() { return getToken(OpenSearchPPLParser.INTEGER, 0); } + public TerminalNode DOUBLE() { return getToken(OpenSearchPPLParser.DOUBLE, 0); } + public TerminalNode LONG() { return getToken(OpenSearchPPLParser.LONG, 0); } + public TerminalNode FLOAT() { return getToken(OpenSearchPPLParser.FLOAT, 0); } + public TerminalNode STRING() { return getToken(OpenSearchPPLParser.STRING, 0); } + public TerminalNode BOOLEAN() { return getToken(OpenSearchPPLParser.BOOLEAN, 0); } + public ConvertedDataTypeContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_convertedDataType; } + } + + public final ConvertedDataTypeContext convertedDataType() throws RecognitionException { + ConvertedDataTypeContext _localctx = new ConvertedDataTypeContext(_ctx, getState()); + enterRule(_localctx, 100, RULE_convertedDataType); + try { + setState(662); + _errHandler.sync(this); + switch (_input.LA(1)) { + case DATE: + enterOuterAlt(_localctx, 1); + { + setState(652); + ((ConvertedDataTypeContext)_localctx).typeName = match(DATE); + } + break; + case TIME: + enterOuterAlt(_localctx, 2); + { + setState(653); + ((ConvertedDataTypeContext)_localctx).typeName = match(TIME); + } + break; + case TIMESTAMP: + enterOuterAlt(_localctx, 3); + { + setState(654); + ((ConvertedDataTypeContext)_localctx).typeName = match(TIMESTAMP); + } + break; + case INT: + enterOuterAlt(_localctx, 4); + { + setState(655); + ((ConvertedDataTypeContext)_localctx).typeName = match(INT); + } + break; + case INTEGER: + enterOuterAlt(_localctx, 5); + { + setState(656); + ((ConvertedDataTypeContext)_localctx).typeName = match(INTEGER); + } + break; + case DOUBLE: + enterOuterAlt(_localctx, 6); + { + setState(657); + ((ConvertedDataTypeContext)_localctx).typeName = match(DOUBLE); + } + break; + case LONG: + enterOuterAlt(_localctx, 7); + { + setState(658); + ((ConvertedDataTypeContext)_localctx).typeName = match(LONG); + } + break; + case FLOAT: + enterOuterAlt(_localctx, 8); + { + setState(659); + ((ConvertedDataTypeContext)_localctx).typeName = match(FLOAT); + } + break; + case STRING: + enterOuterAlt(_localctx, 9); + { + setState(660); + ((ConvertedDataTypeContext)_localctx).typeName = match(STRING); + } + break; + case BOOLEAN: + enterOuterAlt(_localctx, 10); + { + setState(661); + ((ConvertedDataTypeContext)_localctx).typeName = match(BOOLEAN); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalFunctionNameContext extends ParserRuleContext { + public MathematicalFunctionBaseContext mathematicalFunctionBase() { + return getRuleContext(MathematicalFunctionBaseContext.class,0); + } + public DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() { + return getRuleContext(DateAndTimeFunctionBaseContext.class,0); + } + public TextFunctionBaseContext textFunctionBase() { + return getRuleContext(TextFunctionBaseContext.class,0); + } + public ConditionFunctionBaseContext conditionFunctionBase() { + return getRuleContext(ConditionFunctionBaseContext.class,0); + } + public EvalFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalFunctionName; } + } + + public final EvalFunctionNameContext evalFunctionName() throws RecognitionException { + EvalFunctionNameContext _localctx = new EvalFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 102, RULE_evalFunctionName); + try { + setState(668); + _errHandler.sync(this); + switch (_input.LA(1)) { + case ABS: + case CEIL: + case CEILING: + case CONV: + case CRC32: + case E: + case EXP: + case FLOOR: + case LN: + case LOG: + case LOG10: + case LOG2: + case MOD: + case PI: + case POW: + case POWER: + case RAND: + case ROUND: + case SIGN: + case SQRT: + case TRUNCATE: + case ACOS: + case ASIN: + case ATAN: + case ATAN2: + case COS: + case COT: + case DEGREES: + case RADIANS: + case SIN: + case TAN: + enterOuterAlt(_localctx, 1); + { + setState(664); + mathematicalFunctionBase(); + } + break; + case MICROSECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case ADDDATE: + case DATE: + case DATE_ADD: + case DATE_SUB: + case DAYOFMONTH: + case DAYOFWEEK: + case DAYOFYEAR: + case DAYNAME: + case FROM_DAYS: + case MONTHNAME: + case SUBDATE: + case TIME: + case TIME_TO_SEC: + case TIMESTAMP: + case DATE_FORMAT: + case TO_DAYS: + enterOuterAlt(_localctx, 2); + { + setState(665); + dateAndTimeFunctionBase(); + } + break; + case SUBSTR: + case SUBSTRING: + case LTRIM: + case RTRIM: + case TRIM: + case LOWER: + case UPPER: + case CONCAT: + case CONCAT_WS: + case LENGTH: + case STRCMP: + case RIGHT: + case LEFT: + case ASCII: + case LOCATE: + case REPLACE: + enterOuterAlt(_localctx, 3); + { + setState(666); + textFunctionBase(); + } + break; + case LIKE: + case ISNULL: + case ISNOTNULL: + case IFNULL: + case NULLIF: + case IF: + enterOuterAlt(_localctx, 4); + { + setState(667); + conditionFunctionBase(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FunctionArgsContext extends ParserRuleContext { + public List functionArg() { + return getRuleContexts(FunctionArgContext.class); + } + public FunctionArgContext functionArg(int i) { + return getRuleContext(FunctionArgContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public FunctionArgsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_functionArgs; } + } + + public final FunctionArgsContext functionArgs() throws RecognitionException { + FunctionArgsContext _localctx = new FunctionArgsContext(_ctx, getState()); + enterRule(_localctx, 104, RULE_functionArgs); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(678); + _errHandler.sync(this); + _la = _input.LA(1); + if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (TRUE - 20)) | (1L << (FALSE - 20)) | (1L << (INTERVAL - 20)) | (1L << (MICROSECOND - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 90)) & ~0x3f) == 0 && ((1L << (_la - 90)) & ((1L << (DOT - 90)) | (1L << (PLUS - 90)) | (1L << (MINUS - 90)) | (1L << (LT_PRTHS - 90)) | (1L << (BACKTICK - 90)) | (1L << (AVG - 90)) | (1L << (COUNT - 90)) | (1L << (MAX - 90)) | (1L << (MIN - 90)) | (1L << (SUM - 90)) | (1L << (VAR_SAMP - 90)) | (1L << (VAR_POP - 90)) | (1L << (STDDEV_SAMP - 90)) | (1L << (STDDEV_POP - 90)) | (1L << (FIRST - 90)) | (1L << (LAST - 90)) | (1L << (ABS - 90)) | (1L << (CEIL - 90)) | (1L << (CEILING - 90)) | (1L << (CONV - 90)))) != 0) || ((((_la - 154)) & ~0x3f) == 0 && ((1L << (_la - 154)) & ((1L << (CRC32 - 154)) | (1L << (E - 154)) | (1L << (EXP - 154)) | (1L << (FLOOR - 154)) | (1L << (LN - 154)) | (1L << (LOG - 154)) | (1L << (LOG10 - 154)) | (1L << (LOG2 - 154)) | (1L << (MOD - 154)) | (1L << (PI - 154)) | (1L << (POW - 154)) | (1L << (POWER - 154)) | (1L << (RAND - 154)) | (1L << (ROUND - 154)) | (1L << (SIGN - 154)) | (1L << (SQRT - 154)) | (1L << (TRUNCATE - 154)) | (1L << (ACOS - 154)) | (1L << (ASIN - 154)) | (1L << (ATAN - 154)) | (1L << (ATAN2 - 154)) | (1L << (COS - 154)) | (1L << (COT - 154)) | (1L << (DEGREES - 154)) | (1L << (RADIANS - 154)) | (1L << (SIN - 154)) | (1L << (TAN - 154)) | (1L << (ADDDATE - 154)) | (1L << (DATE - 154)) | (1L << (DATE_ADD - 154)) | (1L << (DATE_SUB - 154)) | (1L << (DAYOFMONTH - 154)) | (1L << (DAYOFWEEK - 154)) | (1L << (DAYOFYEAR - 154)) | (1L << (DAYNAME - 154)) | (1L << (FROM_DAYS - 154)) | (1L << (MONTHNAME - 154)) | (1L << (SUBDATE - 154)) | (1L << (TIME - 154)) | (1L << (TIME_TO_SEC - 154)) | (1L << (TIMESTAMP - 154)) | (1L << (DATE_FORMAT - 154)) | (1L << (TO_DAYS - 154)) | (1L << (SUBSTR - 154)) | (1L << (SUBSTRING - 154)) | (1L << (LTRIM - 154)) | (1L << (RTRIM - 154)) | (1L << (TRIM - 154)) | (1L << (LOWER - 154)) | (1L << (UPPER - 154)) | (1L << (CONCAT - 154)) | (1L << (CONCAT_WS - 154)) | (1L << (LENGTH - 154)) | (1L << (STRCMP - 154)) | (1L << (RIGHT - 154)) | (1L << (LEFT - 154)) | (1L << (ASCII - 154)) | (1L << (LOCATE - 154)) | (1L << (REPLACE - 154)) | (1L << (CAST - 154)) | (1L << (LIKE - 154)) | (1L << (ISNULL - 154)) | (1L << (ISNOTNULL - 154)))) != 0) || ((((_la - 218)) & ~0x3f) == 0 && ((1L << (_la - 218)) & ((1L << (IFNULL - 218)) | (1L << (NULLIF - 218)) | (1L << (IF - 218)) | (1L << (SPAN - 218)) | (1L << (MS - 218)) | (1L << (S - 218)) | (1L << (M - 218)) | (1L << (H - 218)) | (1L << (W - 218)) | (1L << (Q - 218)) | (1L << (Y - 218)) | (1L << (ID - 218)) | (1L << (INTEGER_LITERAL - 218)) | (1L << (DECIMAL_LITERAL - 218)) | (1L << (DQUOTA_STRING - 218)) | (1L << (SQUOTA_STRING - 218)) | (1L << (BQUOTA_STRING - 218)))) != 0)) { + { + setState(670); + functionArg(); + setState(675); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(671); + match(COMMA); + setState(672); + functionArg(); + } + } + setState(677); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FunctionArgContext extends ParserRuleContext { + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public FunctionArgContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_functionArg; } + } + + public final FunctionArgContext functionArg() throws RecognitionException { + FunctionArgContext _localctx = new FunctionArgContext(_ctx, getState()); + enterRule(_localctx, 106, RULE_functionArg); + try { + enterOuterAlt(_localctx, 1); + { + setState(680); + valueExpression(0); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceArgContext extends ParserRuleContext { + public RelevanceArgNameContext relevanceArgName() { + return getRuleContext(RelevanceArgNameContext.class,0); + } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public RelevanceArgValueContext relevanceArgValue() { + return getRuleContext(RelevanceArgValueContext.class,0); + } + public RelevanceArgContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceArg; } + } + + public final RelevanceArgContext relevanceArg() throws RecognitionException { + RelevanceArgContext _localctx = new RelevanceArgContext(_ctx, getState()); + enterRule(_localctx, 108, RULE_relevanceArg); + try { + enterOuterAlt(_localctx, 1); + { + setState(682); + relevanceArgName(); + setState(683); + match(EQUAL); + setState(684); + relevanceArgValue(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceArgNameContext extends ParserRuleContext { + public TerminalNode ALLOW_LEADING_WILDCARD() { return getToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } + public TerminalNode ANALYZER() { return getToken(OpenSearchPPLParser.ANALYZER, 0); } + public TerminalNode ANALYZE_WILDCARD() { return getToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } + public TerminalNode AUTO_GENERATE_SYNONYMS_PHRASE_QUERY() { return getToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } + public TerminalNode BOOST() { return getToken(OpenSearchPPLParser.BOOST, 0); } + public TerminalNode CUTOFF_FREQUENCY() { return getToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } + public TerminalNode DEFAULT_FIELD() { return getToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } + public TerminalNode DEFAULT_OPERATOR() { return getToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } + public TerminalNode ENABLE_POSITION_INCREMENTS() { return getToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } + public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } + public TerminalNode FLAGS() { return getToken(OpenSearchPPLParser.FLAGS, 0); } + public TerminalNode FUZZINESS() { return getToken(OpenSearchPPLParser.FUZZINESS, 0); } + public TerminalNode FUZZY_MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } + public TerminalNode FUZZY_PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } + public TerminalNode FUZZY_REWRITE() { return getToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } + public TerminalNode FUZZY_TRANSPOSITIONS() { return getToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } + public TerminalNode LENIENT() { return getToken(OpenSearchPPLParser.LENIENT, 0); } + public TerminalNode LOW_FREQ_OPERATOR() { return getToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } + public TerminalNode MAX_DETERMINIZED_STATES() { return getToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } + public TerminalNode MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } + public TerminalNode MINIMUM_SHOULD_MATCH() { return getToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } + public TerminalNode OPERATOR() { return getToken(OpenSearchPPLParser.OPERATOR, 0); } + public TerminalNode PHRASE_SLOP() { return getToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } + public TerminalNode PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } + public TerminalNode QUOTE_ANALYZER() { return getToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } + public TerminalNode QUOTE_FIELD_SUFFIX() { return getToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } + public TerminalNode REWRITE() { return getToken(OpenSearchPPLParser.REWRITE, 0); } + public TerminalNode SLOP() { return getToken(OpenSearchPPLParser.SLOP, 0); } + public TerminalNode TIE_BREAKER() { return getToken(OpenSearchPPLParser.TIE_BREAKER, 0); } + public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TerminalNode TYPE() { return getToken(OpenSearchPPLParser.TYPE, 0); } + public TerminalNode ZERO_TERMS_QUERY() { return getToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } + public RelevanceArgNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceArgName; } + } + + public final RelevanceArgNameContext relevanceArgName() throws RecognitionException { + RelevanceArgNameContext _localctx = new RelevanceArgNameContext(_ctx, getState()); + enterRule(_localctx, 110, RULE_relevanceArgName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(686); + _la = _input.LA(1); + if ( !(_la==FIELDS || _la==TIME_ZONE || ((((_la - 224)) & ~0x3f) == 0 && ((1L << (_la - 224)) & ((1L << (ALLOW_LEADING_WILDCARD - 224)) | (1L << (ANALYZE_WILDCARD - 224)) | (1L << (ANALYZER - 224)) | (1L << (AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1L << (BOOST - 224)) | (1L << (CUTOFF_FREQUENCY - 224)) | (1L << (DEFAULT_FIELD - 224)) | (1L << (DEFAULT_OPERATOR - 224)) | (1L << (ENABLE_POSITION_INCREMENTS - 224)) | (1L << (FLAGS - 224)) | (1L << (FUZZY_MAX_EXPANSIONS - 224)) | (1L << (FUZZY_PREFIX_LENGTH - 224)) | (1L << (FUZZY_TRANSPOSITIONS - 224)) | (1L << (FUZZY_REWRITE - 224)) | (1L << (FUZZINESS - 224)) | (1L << (LENIENT - 224)) | (1L << (LOW_FREQ_OPERATOR - 224)) | (1L << (MAX_DETERMINIZED_STATES - 224)) | (1L << (MAX_EXPANSIONS - 224)) | (1L << (MINIMUM_SHOULD_MATCH - 224)) | (1L << (OPERATOR - 224)) | (1L << (PHRASE_SLOP - 224)) | (1L << (PREFIX_LENGTH - 224)) | (1L << (QUOTE_ANALYZER - 224)) | (1L << (QUOTE_FIELD_SUFFIX - 224)) | (1L << (REWRITE - 224)) | (1L << (SLOP - 224)) | (1L << (TIE_BREAKER - 224)) | (1L << (TYPE - 224)) | (1L << (ZERO_TERMS_QUERY - 224)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceFieldAndWeightContext extends ParserRuleContext { + public RelevanceFieldContext field; + public RelevanceFieldWeightContext weight; + public RelevanceFieldContext relevanceField() { + return getRuleContext(RelevanceFieldContext.class,0); + } + public RelevanceFieldWeightContext relevanceFieldWeight() { + return getRuleContext(RelevanceFieldWeightContext.class,0); + } + public TerminalNode BIT_XOR_OP() { return getToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } + public RelevanceFieldAndWeightContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceFieldAndWeight; } + } + + public final RelevanceFieldAndWeightContext relevanceFieldAndWeight() throws RecognitionException { + RelevanceFieldAndWeightContext _localctx = new RelevanceFieldAndWeightContext(_ctx, getState()); + enterRule(_localctx, 112, RULE_relevanceFieldAndWeight); + try { + setState(696); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(688); + ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(689); + ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); + setState(690); + ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(692); + ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); + setState(693); + match(BIT_XOR_OP); + setState(694); + ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceFieldWeightContext extends ParserRuleContext { + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public DecimalLiteralContext decimalLiteral() { + return getRuleContext(DecimalLiteralContext.class,0); + } + public RelevanceFieldWeightContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceFieldWeight; } + } + + public final RelevanceFieldWeightContext relevanceFieldWeight() throws RecognitionException { + RelevanceFieldWeightContext _localctx = new RelevanceFieldWeightContext(_ctx, getState()); + enterRule(_localctx, 114, RULE_relevanceFieldWeight); + try { + setState(700); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(698); + integerLiteral(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(699); + decimalLiteral(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceFieldContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public RelevanceFieldContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceField; } + } + + public final RelevanceFieldContext relevanceField() throws RecognitionException { + RelevanceFieldContext _localctx = new RelevanceFieldContext(_ctx, getState()); + enterRule(_localctx, 116, RULE_relevanceField); + try { + setState(704); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(702); + qualifiedName(); + } + break; + case DQUOTA_STRING: + case SQUOTA_STRING: + enterOuterAlt(_localctx, 2); + { + setState(703); + stringLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceQueryContext extends ParserRuleContext { + public RelevanceArgValueContext relevanceArgValue() { + return getRuleContext(RelevanceArgValueContext.class,0); + } + public RelevanceQueryContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceQuery; } + } + + public final RelevanceQueryContext relevanceQuery() throws RecognitionException { + RelevanceQueryContext _localctx = new RelevanceQueryContext(_ctx, getState()); + enterRule(_localctx, 118, RULE_relevanceQuery); + try { + enterOuterAlt(_localctx, 1); + { + setState(706); + relevanceArgValue(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceArgValueContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public LiteralValueContext literalValue() { + return getRuleContext(LiteralValueContext.class,0); + } + public RelevanceArgValueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceArgValue; } + } + + public final RelevanceArgValueContext relevanceArgValue() throws RecognitionException { + RelevanceArgValueContext _localctx = new RelevanceArgValueContext(_ctx, getState()); + enterRule(_localctx, 120, RULE_relevanceArgValue); + try { + setState(710); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(708); + qualifiedName(); + } + break; + case TRUE: + case FALSE: + case INTERVAL: + case PLUS: + case MINUS: + case INTEGER_LITERAL: + case DECIMAL_LITERAL: + case DQUOTA_STRING: + case SQUOTA_STRING: + enterOuterAlt(_localctx, 2); + { + setState(709); + literalValue(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class MathematicalFunctionBaseContext extends ParserRuleContext { + public TerminalNode ABS() { return getToken(OpenSearchPPLParser.ABS, 0); } + public TerminalNode CEIL() { return getToken(OpenSearchPPLParser.CEIL, 0); } + public TerminalNode CEILING() { return getToken(OpenSearchPPLParser.CEILING, 0); } + public TerminalNode CONV() { return getToken(OpenSearchPPLParser.CONV, 0); } + public TerminalNode CRC32() { return getToken(OpenSearchPPLParser.CRC32, 0); } + public TerminalNode E() { return getToken(OpenSearchPPLParser.E, 0); } + public TerminalNode EXP() { return getToken(OpenSearchPPLParser.EXP, 0); } + public TerminalNode FLOOR() { return getToken(OpenSearchPPLParser.FLOOR, 0); } + public TerminalNode LN() { return getToken(OpenSearchPPLParser.LN, 0); } + public TerminalNode LOG() { return getToken(OpenSearchPPLParser.LOG, 0); } + public TerminalNode LOG10() { return getToken(OpenSearchPPLParser.LOG10, 0); } + public TerminalNode LOG2() { return getToken(OpenSearchPPLParser.LOG2, 0); } + public TerminalNode MOD() { return getToken(OpenSearchPPLParser.MOD, 0); } + public TerminalNode PI() { return getToken(OpenSearchPPLParser.PI, 0); } + public TerminalNode POW() { return getToken(OpenSearchPPLParser.POW, 0); } + public TerminalNode POWER() { return getToken(OpenSearchPPLParser.POWER, 0); } + public TerminalNode RAND() { return getToken(OpenSearchPPLParser.RAND, 0); } + public TerminalNode ROUND() { return getToken(OpenSearchPPLParser.ROUND, 0); } + public TerminalNode SIGN() { return getToken(OpenSearchPPLParser.SIGN, 0); } + public TerminalNode SQRT() { return getToken(OpenSearchPPLParser.SQRT, 0); } + public TerminalNode TRUNCATE() { return getToken(OpenSearchPPLParser.TRUNCATE, 0); } + public TrigonometricFunctionNameContext trigonometricFunctionName() { + return getRuleContext(TrigonometricFunctionNameContext.class,0); + } + public MathematicalFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_mathematicalFunctionBase; } + } + + public final MathematicalFunctionBaseContext mathematicalFunctionBase() throws RecognitionException { + MathematicalFunctionBaseContext _localctx = new MathematicalFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 122, RULE_mathematicalFunctionBase); + try { + setState(734); + _errHandler.sync(this); + switch (_input.LA(1)) { + case ABS: + enterOuterAlt(_localctx, 1); + { + setState(712); + match(ABS); + } + break; + case CEIL: + enterOuterAlt(_localctx, 2); + { + setState(713); + match(CEIL); + } + break; + case CEILING: + enterOuterAlt(_localctx, 3); + { + setState(714); + match(CEILING); + } + break; + case CONV: + enterOuterAlt(_localctx, 4); + { + setState(715); + match(CONV); + } + break; + case CRC32: + enterOuterAlt(_localctx, 5); + { + setState(716); + match(CRC32); + } + break; + case E: + enterOuterAlt(_localctx, 6); + { + setState(717); + match(E); + } + break; + case EXP: + enterOuterAlt(_localctx, 7); + { + setState(718); + match(EXP); + } + break; + case FLOOR: + enterOuterAlt(_localctx, 8); + { + setState(719); + match(FLOOR); + } + break; + case LN: + enterOuterAlt(_localctx, 9); + { + setState(720); + match(LN); + } + break; + case LOG: + enterOuterAlt(_localctx, 10); + { + setState(721); + match(LOG); + } + break; + case LOG10: + enterOuterAlt(_localctx, 11); + { + setState(722); + match(LOG10); + } + break; + case LOG2: + enterOuterAlt(_localctx, 12); + { + setState(723); + match(LOG2); + } + break; + case MOD: + enterOuterAlt(_localctx, 13); + { + setState(724); + match(MOD); + } + break; + case PI: + enterOuterAlt(_localctx, 14); + { + setState(725); + match(PI); + } + break; + case POW: + enterOuterAlt(_localctx, 15); + { + setState(726); + match(POW); + } + break; + case POWER: + enterOuterAlt(_localctx, 16); + { + setState(727); + match(POWER); + } + break; + case RAND: + enterOuterAlt(_localctx, 17); + { + setState(728); + match(RAND); + } + break; + case ROUND: + enterOuterAlt(_localctx, 18); + { + setState(729); + match(ROUND); + } + break; + case SIGN: + enterOuterAlt(_localctx, 19); + { + setState(730); + match(SIGN); + } + break; + case SQRT: + enterOuterAlt(_localctx, 20); + { + setState(731); + match(SQRT); + } + break; + case TRUNCATE: + enterOuterAlt(_localctx, 21); + { + setState(732); + match(TRUNCATE); + } + break; + case ACOS: + case ASIN: + case ATAN: + case ATAN2: + case COS: + case COT: + case DEGREES: + case RADIANS: + case SIN: + case TAN: + enterOuterAlt(_localctx, 22); + { + setState(733); + trigonometricFunctionName(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TrigonometricFunctionNameContext extends ParserRuleContext { + public TerminalNode ACOS() { return getToken(OpenSearchPPLParser.ACOS, 0); } + public TerminalNode ASIN() { return getToken(OpenSearchPPLParser.ASIN, 0); } + public TerminalNode ATAN() { return getToken(OpenSearchPPLParser.ATAN, 0); } + public TerminalNode ATAN2() { return getToken(OpenSearchPPLParser.ATAN2, 0); } + public TerminalNode COS() { return getToken(OpenSearchPPLParser.COS, 0); } + public TerminalNode COT() { return getToken(OpenSearchPPLParser.COT, 0); } + public TerminalNode DEGREES() { return getToken(OpenSearchPPLParser.DEGREES, 0); } + public TerminalNode RADIANS() { return getToken(OpenSearchPPLParser.RADIANS, 0); } + public TerminalNode SIN() { return getToken(OpenSearchPPLParser.SIN, 0); } + public TerminalNode TAN() { return getToken(OpenSearchPPLParser.TAN, 0); } + public TrigonometricFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_trigonometricFunctionName; } + } + + public final TrigonometricFunctionNameContext trigonometricFunctionName() throws RecognitionException { + TrigonometricFunctionNameContext _localctx = new TrigonometricFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 124, RULE_trigonometricFunctionName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(736); + _la = _input.LA(1); + if ( !(((((_la - 171)) & ~0x3f) == 0 && ((1L << (_la - 171)) & ((1L << (ACOS - 171)) | (1L << (ASIN - 171)) | (1L << (ATAN - 171)) | (1L << (ATAN2 - 171)) | (1L << (COS - 171)) | (1L << (COT - 171)) | (1L << (DEGREES - 171)) | (1L << (RADIANS - 171)) | (1L << (SIN - 171)) | (1L << (TAN - 171)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DateAndTimeFunctionBaseContext extends ParserRuleContext { + public TerminalNode ADDDATE() { return getToken(OpenSearchPPLParser.ADDDATE, 0); } + public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } + public TerminalNode DATE_ADD() { return getToken(OpenSearchPPLParser.DATE_ADD, 0); } + public TerminalNode DATE_SUB() { return getToken(OpenSearchPPLParser.DATE_SUB, 0); } + public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } + public TerminalNode DAYNAME() { return getToken(OpenSearchPPLParser.DAYNAME, 0); } + public TerminalNode DAYOFMONTH() { return getToken(OpenSearchPPLParser.DAYOFMONTH, 0); } + public TerminalNode DAYOFWEEK() { return getToken(OpenSearchPPLParser.DAYOFWEEK, 0); } + public TerminalNode DAYOFYEAR() { return getToken(OpenSearchPPLParser.DAYOFYEAR, 0); } + public TerminalNode FROM_DAYS() { return getToken(OpenSearchPPLParser.FROM_DAYS, 0); } + public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } + public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } + public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } + public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } + public TerminalNode MONTHNAME() { return getToken(OpenSearchPPLParser.MONTHNAME, 0); } + public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } + public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } + public TerminalNode SUBDATE() { return getToken(OpenSearchPPLParser.SUBDATE, 0); } + public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } + public TerminalNode TIME_TO_SEC() { return getToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } + public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TerminalNode TO_DAYS() { return getToken(OpenSearchPPLParser.TO_DAYS, 0); } + public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } + public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } + public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + public DateAndTimeFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dateAndTimeFunctionBase; } + } + + public final DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() throws RecognitionException { + DateAndTimeFunctionBaseContext _localctx = new DateAndTimeFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 126, RULE_dateAndTimeFunctionBase); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(738); + _la = _input.LA(1); + if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)))) != 0) || ((((_la - 181)) & ~0x3f) == 0 && ((1L << (_la - 181)) & ((1L << (ADDDATE - 181)) | (1L << (DATE - 181)) | (1L << (DATE_ADD - 181)) | (1L << (DATE_SUB - 181)) | (1L << (DAYOFMONTH - 181)) | (1L << (DAYOFWEEK - 181)) | (1L << (DAYOFYEAR - 181)) | (1L << (DAYNAME - 181)) | (1L << (FROM_DAYS - 181)) | (1L << (MONTHNAME - 181)) | (1L << (SUBDATE - 181)) | (1L << (TIME - 181)) | (1L << (TIME_TO_SEC - 181)) | (1L << (TIMESTAMP - 181)) | (1L << (DATE_FORMAT - 181)) | (1L << (TO_DAYS - 181)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ConditionFunctionBaseContext extends ParserRuleContext { + public TerminalNode LIKE() { return getToken(OpenSearchPPLParser.LIKE, 0); } + public TerminalNode IF() { return getToken(OpenSearchPPLParser.IF, 0); } + public TerminalNode ISNULL() { return getToken(OpenSearchPPLParser.ISNULL, 0); } + public TerminalNode ISNOTNULL() { return getToken(OpenSearchPPLParser.ISNOTNULL, 0); } + public TerminalNode IFNULL() { return getToken(OpenSearchPPLParser.IFNULL, 0); } + public TerminalNode NULLIF() { return getToken(OpenSearchPPLParser.NULLIF, 0); } + public ConditionFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_conditionFunctionBase; } + } + + public final ConditionFunctionBaseContext conditionFunctionBase() throws RecognitionException { + ConditionFunctionBaseContext _localctx = new ConditionFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 128, RULE_conditionFunctionBase); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(740); + _la = _input.LA(1); + if ( !(((((_la - 215)) & ~0x3f) == 0 && ((1L << (_la - 215)) & ((1L << (LIKE - 215)) | (1L << (ISNULL - 215)) | (1L << (ISNOTNULL - 215)) | (1L << (IFNULL - 215)) | (1L << (NULLIF - 215)) | (1L << (IF - 215)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TextFunctionBaseContext extends ParserRuleContext { + public TerminalNode SUBSTR() { return getToken(OpenSearchPPLParser.SUBSTR, 0); } + public TerminalNode SUBSTRING() { return getToken(OpenSearchPPLParser.SUBSTRING, 0); } + public TerminalNode TRIM() { return getToken(OpenSearchPPLParser.TRIM, 0); } + public TerminalNode LTRIM() { return getToken(OpenSearchPPLParser.LTRIM, 0); } + public TerminalNode RTRIM() { return getToken(OpenSearchPPLParser.RTRIM, 0); } + public TerminalNode LOWER() { return getToken(OpenSearchPPLParser.LOWER, 0); } + public TerminalNode UPPER() { return getToken(OpenSearchPPLParser.UPPER, 0); } + public TerminalNode CONCAT() { return getToken(OpenSearchPPLParser.CONCAT, 0); } + public TerminalNode CONCAT_WS() { return getToken(OpenSearchPPLParser.CONCAT_WS, 0); } + public TerminalNode LENGTH() { return getToken(OpenSearchPPLParser.LENGTH, 0); } + public TerminalNode STRCMP() { return getToken(OpenSearchPPLParser.STRCMP, 0); } + public TerminalNode RIGHT() { return getToken(OpenSearchPPLParser.RIGHT, 0); } + public TerminalNode LEFT() { return getToken(OpenSearchPPLParser.LEFT, 0); } + public TerminalNode ASCII() { return getToken(OpenSearchPPLParser.ASCII, 0); } + public TerminalNode LOCATE() { return getToken(OpenSearchPPLParser.LOCATE, 0); } + public TerminalNode REPLACE() { return getToken(OpenSearchPPLParser.REPLACE, 0); } + public TextFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_textFunctionBase; } + } + + public final TextFunctionBaseContext textFunctionBase() throws RecognitionException { + TextFunctionBaseContext _localctx = new TextFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 130, RULE_textFunctionBase); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(742); + _la = _input.LA(1); + if ( !(((((_la - 197)) & ~0x3f) == 0 && ((1L << (_la - 197)) & ((1L << (SUBSTR - 197)) | (1L << (SUBSTRING - 197)) | (1L << (LTRIM - 197)) | (1L << (RTRIM - 197)) | (1L << (TRIM - 197)) | (1L << (LOWER - 197)) | (1L << (UPPER - 197)) | (1L << (CONCAT - 197)) | (1L << (CONCAT_WS - 197)) | (1L << (LENGTH - 197)) | (1L << (STRCMP - 197)) | (1L << (RIGHT - 197)) | (1L << (LEFT - 197)) | (1L << (ASCII - 197)) | (1L << (LOCATE - 197)) | (1L << (REPLACE - 197)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ComparisonOperatorContext extends ParserRuleContext { + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public TerminalNode NOT_EQUAL() { return getToken(OpenSearchPPLParser.NOT_EQUAL, 0); } + public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } + public TerminalNode NOT_LESS() { return getToken(OpenSearchPPLParser.NOT_LESS, 0); } + public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } + public TerminalNode NOT_GREATER() { return getToken(OpenSearchPPLParser.NOT_GREATER, 0); } + public TerminalNode REGEXP() { return getToken(OpenSearchPPLParser.REGEXP, 0); } + public ComparisonOperatorContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_comparisonOperator; } + } + + public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { + ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); + enterRule(_localctx, 132, RULE_comparisonOperator); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(744); + _la = _input.LA(1); + if ( !(((((_la - 54)) & ~0x3f) == 0 && ((1L << (_la - 54)) & ((1L << (REGEXP - 54)) | (1L << (EQUAL - 54)) | (1L << (GREATER - 54)) | (1L << (LESS - 54)) | (1L << (NOT_GREATER - 54)) | (1L << (NOT_LESS - 54)) | (1L << (NOT_EQUAL - 54)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BinaryOperatorContext extends ParserRuleContext { + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public TerminalNode STAR() { return getToken(OpenSearchPPLParser.STAR, 0); } + public TerminalNode DIVIDE() { return getToken(OpenSearchPPLParser.DIVIDE, 0); } + public TerminalNode MODULE() { return getToken(OpenSearchPPLParser.MODULE, 0); } + public BinaryOperatorContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_binaryOperator; } + } + + public final BinaryOperatorContext binaryOperator() throws RecognitionException { + BinaryOperatorContext _localctx = new BinaryOperatorContext(_ctx, getState()); + enterRule(_localctx, 134, RULE_binaryOperator); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(746); + _la = _input.LA(1); + if ( !(((((_la - 97)) & ~0x3f) == 0 && ((1L << (_la - 97)) & ((1L << (PLUS - 97)) | (1L << (MINUS - 97)) | (1L << (STAR - 97)) | (1L << (DIVIDE - 97)) | (1L << (MODULE - 97)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { + public TerminalNode MATCH() { return getToken(OpenSearchPPLParser.MATCH, 0); } + public TerminalNode MATCH_PHRASE() { return getToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } + public SingleFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunctionName; } + } + + public final SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() throws RecognitionException { + SingleFieldRelevanceFunctionNameContext _localctx = new SingleFieldRelevanceFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 136, RULE_singleFieldRelevanceFunctionName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(748); + _la = _input.LA(1); + if ( !(_la==MATCH || _la==MATCH_PHRASE) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { + public TerminalNode SIMPLE_QUERY_STRING() { return getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } + public MultiFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunctionName; } + } + + public final MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() throws RecognitionException { + MultiFieldRelevanceFunctionNameContext _localctx = new MultiFieldRelevanceFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 138, RULE_multiFieldRelevanceFunctionName); + try { + enterOuterAlt(_localctx, 1); + { + setState(750); + match(SIMPLE_QUERY_STRING); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LiteralValueContext extends ParserRuleContext { + public IntervalLiteralContext intervalLiteral() { + return getRuleContext(IntervalLiteralContext.class,0); + } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public DecimalLiteralContext decimalLiteral() { + return getRuleContext(DecimalLiteralContext.class,0); + } + public BooleanLiteralContext booleanLiteral() { + return getRuleContext(BooleanLiteralContext.class,0); + } + public LiteralValueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_literalValue; } + } + + public final LiteralValueContext literalValue() throws RecognitionException { + LiteralValueContext _localctx = new LiteralValueContext(_ctx, getState()); + enterRule(_localctx, 140, RULE_literalValue); + try { + setState(757); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(752); + intervalLiteral(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(753); + stringLiteral(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(754); + integerLiteral(); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(755); + decimalLiteral(); + } + break; + case 5: + enterOuterAlt(_localctx, 5); + { + setState(756); + booleanLiteral(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IntervalLiteralContext extends ParserRuleContext { + public TerminalNode INTERVAL() { return getToken(OpenSearchPPLParser.INTERVAL, 0); } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public IntervalUnitContext intervalUnit() { + return getRuleContext(IntervalUnitContext.class,0); + } + public IntervalLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_intervalLiteral; } + } + + public final IntervalLiteralContext intervalLiteral() throws RecognitionException { + IntervalLiteralContext _localctx = new IntervalLiteralContext(_ctx, getState()); + enterRule(_localctx, 142, RULE_intervalLiteral); + try { + enterOuterAlt(_localctx, 1); + { + setState(759); + match(INTERVAL); + setState(760); + valueExpression(0); + setState(761); + intervalUnit(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StringLiteralContext extends ParserRuleContext { + public TerminalNode DQUOTA_STRING() { return getToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } + public TerminalNode SQUOTA_STRING() { return getToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } + public StringLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_stringLiteral; } + } + + public final StringLiteralContext stringLiteral() throws RecognitionException { + StringLiteralContext _localctx = new StringLiteralContext(_ctx, getState()); + enterRule(_localctx, 144, RULE_stringLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(763); + _la = _input.LA(1); + if ( !(_la==DQUOTA_STRING || _la==SQUOTA_STRING) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IntegerLiteralContext extends ParserRuleContext { + public TerminalNode INTEGER_LITERAL() { return getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public IntegerLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_integerLiteral; } + } + + public final IntegerLiteralContext integerLiteral() throws RecognitionException { + IntegerLiteralContext _localctx = new IntegerLiteralContext(_ctx, getState()); + enterRule(_localctx, 146, RULE_integerLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(766); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(765); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(768); + match(INTEGER_LITERAL); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DecimalLiteralContext extends ParserRuleContext { + public TerminalNode DECIMAL_LITERAL() { return getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public DecimalLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_decimalLiteral; } + } + + public final DecimalLiteralContext decimalLiteral() throws RecognitionException { + DecimalLiteralContext _localctx = new DecimalLiteralContext(_ctx, getState()); + enterRule(_localctx, 148, RULE_decimalLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(771); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(770); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(773); + match(DECIMAL_LITERAL); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BooleanLiteralContext extends ParserRuleContext { + public TerminalNode TRUE() { return getToken(OpenSearchPPLParser.TRUE, 0); } + public TerminalNode FALSE() { return getToken(OpenSearchPPLParser.FALSE, 0); } + public BooleanLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_booleanLiteral; } + } + + public final BooleanLiteralContext booleanLiteral() throws RecognitionException { + BooleanLiteralContext _localctx = new BooleanLiteralContext(_ctx, getState()); + enterRule(_localctx, 150, RULE_booleanLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(775); + _la = _input.LA(1); + if ( !(_la==TRUE || _la==FALSE) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PatternContext extends ParserRuleContext { + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public PatternContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_pattern; } + } + + public final PatternContext pattern() throws RecognitionException { + PatternContext _localctx = new PatternContext(_ctx, getState()); + enterRule(_localctx, 152, RULE_pattern); + try { + enterOuterAlt(_localctx, 1); + { + setState(777); + stringLiteral(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IntervalUnitContext extends ParserRuleContext { + public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } + public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } + public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } + public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } + public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } + public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } + public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } + public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } + public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } + public TerminalNode SECOND_MICROSECOND() { return getToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } + public TerminalNode MINUTE_MICROSECOND() { return getToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } + public TerminalNode MINUTE_SECOND() { return getToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } + public TerminalNode HOUR_MICROSECOND() { return getToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } + public TerminalNode HOUR_SECOND() { return getToken(OpenSearchPPLParser.HOUR_SECOND, 0); } + public TerminalNode HOUR_MINUTE() { return getToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } + public TerminalNode DAY_MICROSECOND() { return getToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } + public TerminalNode DAY_SECOND() { return getToken(OpenSearchPPLParser.DAY_SECOND, 0); } + public TerminalNode DAY_MINUTE() { return getToken(OpenSearchPPLParser.DAY_MINUTE, 0); } + public TerminalNode DAY_HOUR() { return getToken(OpenSearchPPLParser.DAY_HOUR, 0); } + public TerminalNode YEAR_MONTH() { return getToken(OpenSearchPPLParser.YEAR_MONTH, 0); } + public IntervalUnitContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_intervalUnit; } + } + + public final IntervalUnitContext intervalUnit() throws RecognitionException { + IntervalUnitContext _localctx = new IntervalUnitContext(_ctx, getState()); + enterRule(_localctx, 154, RULE_intervalUnit); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(779); + _la = _input.LA(1); + if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)) | (1L << (SECOND_MICROSECOND - 57)) | (1L << (MINUTE_MICROSECOND - 57)) | (1L << (MINUTE_SECOND - 57)) | (1L << (HOUR_MICROSECOND - 57)) | (1L << (HOUR_SECOND - 57)) | (1L << (HOUR_MINUTE - 57)) | (1L << (DAY_MICROSECOND - 57)) | (1L << (DAY_SECOND - 57)) | (1L << (DAY_MINUTE - 57)) | (1L << (DAY_HOUR - 57)) | (1L << (YEAR_MONTH - 57)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TimespanUnitContext extends ParserRuleContext { + public TerminalNode MS() { return getToken(OpenSearchPPLParser.MS, 0); } + public TerminalNode S() { return getToken(OpenSearchPPLParser.S, 0); } + public TerminalNode M() { return getToken(OpenSearchPPLParser.M, 0); } + public TerminalNode H() { return getToken(OpenSearchPPLParser.H, 0); } + public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } + public TerminalNode W() { return getToken(OpenSearchPPLParser.W, 0); } + public TerminalNode Q() { return getToken(OpenSearchPPLParser.Q, 0); } + public TerminalNode Y() { return getToken(OpenSearchPPLParser.Y, 0); } + public TerminalNode MILLISECOND() { return getToken(OpenSearchPPLParser.MILLISECOND, 0); } + public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } + public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } + public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } + public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } + public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } + public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } + public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } + public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } + public TimespanUnitContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_timespanUnit; } + } + + public final TimespanUnitContext timespanUnit() throws RecognitionException { + TimespanUnitContext _localctx = new TimespanUnitContext(_ctx, getState()); + enterRule(_localctx, 156, RULE_timespanUnit); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(781); + _la = _input.LA(1); + if ( !(((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ValueListContext extends ParserRuleContext { + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public List literalValue() { + return getRuleContexts(LiteralValueContext.class); + } + public LiteralValueContext literalValue(int i) { + return getRuleContext(LiteralValueContext.class,i); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public ValueListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_valueList; } + } + + public final ValueListContext valueList() throws RecognitionException { + ValueListContext _localctx = new ValueListContext(_ctx, getState()); + enterRule(_localctx, 158, RULE_valueList); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(783); + match(LT_PRTHS); + setState(784); + literalValue(); + setState(789); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(785); + match(COMMA); + setState(786); + literalValue(); + } + } + setState(791); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(792); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class QualifiedNameContext extends ParserRuleContext { + public QualifiedNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_qualifiedName; } + + public QualifiedNameContext() { } + public void copyFrom(QualifiedNameContext ctx) { + super.copyFrom(ctx); + } + } + public static class IdentsAsQualifiedNameContext extends QualifiedNameContext { + public List ident() { + return getRuleContexts(IdentContext.class); + } + public IdentContext ident(int i) { + return getRuleContext(IdentContext.class,i); + } + public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } + public TerminalNode DOT(int i) { + return getToken(OpenSearchPPLParser.DOT, i); + } + public IdentsAsQualifiedNameContext(QualifiedNameContext ctx) { copyFrom(ctx); } + } + + public final QualifiedNameContext qualifiedName() throws RecognitionException { + QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState()); + enterRule(_localctx, 160, RULE_qualifiedName); + try { + int _alt; + _localctx = new IdentsAsQualifiedNameContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(794); + ident(); + setState(799); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(795); + match(DOT); + setState(796); + ident(); + } + } + } + setState(801); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WcQualifiedNameContext extends ParserRuleContext { + public WcQualifiedNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wcQualifiedName; } + + public WcQualifiedNameContext() { } + public void copyFrom(WcQualifiedNameContext ctx) { + super.copyFrom(ctx); + } + } + public static class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { + public List wildcard() { + return getRuleContexts(WildcardContext.class); + } + public WildcardContext wildcard(int i) { + return getRuleContext(WildcardContext.class,i); + } + public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } + public TerminalNode DOT(int i) { + return getToken(OpenSearchPPLParser.DOT, i); + } + public IdentsAsWildcardQualifiedNameContext(WcQualifiedNameContext ctx) { copyFrom(ctx); } + } + + public final WcQualifiedNameContext wcQualifiedName() throws RecognitionException { + WcQualifiedNameContext _localctx = new WcQualifiedNameContext(_ctx, getState()); + enterRule(_localctx, 162, RULE_wcQualifiedName); + int _la; + try { + _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(802); + wildcard(); + setState(807); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==DOT) { + { + { + setState(803); + match(DOT); + setState(804); + wildcard(); + } + } + setState(809); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IdentContext extends ParserRuleContext { + public TerminalNode ID() { return getToken(OpenSearchPPLParser.ID, 0); } + public TerminalNode DOT() { return getToken(OpenSearchPPLParser.DOT, 0); } + public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } + public TerminalNode BACKTICK(int i) { + return getToken(OpenSearchPPLParser.BACKTICK, i); + } + public IdentContext ident() { + return getRuleContext(IdentContext.class,0); + } + public TerminalNode BQUOTA_STRING() { return getToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } + public KeywordsCanBeIdContext keywordsCanBeId() { + return getRuleContext(KeywordsCanBeIdContext.class,0); + } + public IdentContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_ident; } + } + + public final IdentContext ident() throws RecognitionException { + IdentContext _localctx = new IdentContext(_ctx, getState()); + enterRule(_localctx, 164, RULE_ident); + int _la; + try { + setState(820); + _errHandler.sync(this); + switch (_input.LA(1)) { + case DOT: + case ID: + enterOuterAlt(_localctx, 1); + { + setState(811); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==DOT) { + { + setState(810); + match(DOT); + } + } + + setState(813); + match(ID); + } + break; + case BACKTICK: + enterOuterAlt(_localctx, 2); + { + setState(814); + match(BACKTICK); + setState(815); + ident(); + setState(816); + match(BACKTICK); + } + break; + case BQUOTA_STRING: + enterOuterAlt(_localctx, 3); + { + setState(818); + match(BQUOTA_STRING); + } + break; + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + enterOuterAlt(_localctx, 4); + { + setState(819); + keywordsCanBeId(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WildcardContext extends ParserRuleContext { + public List ident() { + return getRuleContexts(IdentContext.class); + } + public IdentContext ident(int i) { + return getRuleContext(IdentContext.class,i); + } + public List MODULE() { return getTokens(OpenSearchPPLParser.MODULE); } + public TerminalNode MODULE(int i) { + return getToken(OpenSearchPPLParser.MODULE, i); + } + public List SINGLE_QUOTE() { return getTokens(OpenSearchPPLParser.SINGLE_QUOTE); } + public TerminalNode SINGLE_QUOTE(int i) { + return getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); + } + public WildcardContext wildcard() { + return getRuleContext(WildcardContext.class,0); + } + public List DOUBLE_QUOTE() { return getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); } + public TerminalNode DOUBLE_QUOTE(int i) { + return getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); + } + public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } + public TerminalNode BACKTICK(int i) { + return getToken(OpenSearchPPLParser.BACKTICK, i); + } + public WildcardContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wildcard; } + } + + public final WildcardContext wildcard() throws RecognitionException { + WildcardContext _localctx = new WildcardContext(_ctx, getState()); + enterRule(_localctx, 166, RULE_wildcard); + int _la; + try { + int _alt; + setState(845); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(822); + ident(); + setState(827); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(823); + match(MODULE); + setState(824); + ident(); + } + } + } + setState(829); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + } + setState(831); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==MODULE) { + { + setState(830); + match(MODULE); + } + } + + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(833); + match(SINGLE_QUOTE); + setState(834); + wildcard(); + setState(835); + match(SINGLE_QUOTE); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(837); + match(DOUBLE_QUOTE); + setState(838); + wildcard(); + setState(839); + match(DOUBLE_QUOTE); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(841); + match(BACKTICK); + setState(842); + wildcard(); + setState(843); + match(BACKTICK); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class KeywordsCanBeIdContext extends ParserRuleContext { + public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } + public StatsFunctionNameContext statsFunctionName() { + return getRuleContext(StatsFunctionNameContext.class,0); + } + public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } + public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } + public TerminalNode FIRST() { return getToken(OpenSearchPPLParser.FIRST, 0); } + public TerminalNode LAST() { return getToken(OpenSearchPPLParser.LAST, 0); } + public TimespanUnitContext timespanUnit() { + return getRuleContext(TimespanUnitContext.class,0); + } + public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } + public KeywordsCanBeIdContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_keywordsCanBeId; } + } + + public final KeywordsCanBeIdContext keywordsCanBeId() throws RecognitionException { + KeywordsCanBeIdContext _localctx = new KeywordsCanBeIdContext(_ctx, getState()); + enterRule(_localctx, 168, RULE_keywordsCanBeId); + try { + setState(856); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(847); + match(D); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(848); + statsFunctionName(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(849); + match(TIMESTAMP); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(850); + match(DATE); + } + break; + case 5: + enterOuterAlt(_localctx, 5); + { + setState(851); + match(TIME); + } + break; + case 6: + enterOuterAlt(_localctx, 6); + { + setState(852); + match(FIRST); + } + break; + case 7: + enterOuterAlt(_localctx, 7); + { + setState(853); + match(LAST); + } + break; + case 8: + enterOuterAlt(_localctx, 8); + { + setState(854); + timespanUnit(); + } + break; + case 9: + enterOuterAlt(_localctx, 9); + { + setState(855); + match(SPAN); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { + switch (ruleIndex) { + case 32: + return logicalExpression_sempred((LogicalExpressionContext)_localctx, predIndex); + case 34: + return valueExpression_sempred((ValueExpressionContext)_localctx, predIndex); + } + return true; + } + private boolean logicalExpression_sempred(LogicalExpressionContext _localctx, int predIndex) { + switch (predIndex) { + case 0: + return precpred(_ctx, 5); + case 1: + return precpred(_ctx, 4); + case 2: + return precpred(_ctx, 3); + } + return true; + } + private boolean valueExpression_sempred(ValueExpressionContext _localctx, int predIndex) { + switch (predIndex) { + case 3: + return precpred(_ctx, 3); + } + return true; + } + + public static final String _serializedATN = + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u010f\u035d\4\2\t"+ + "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ + "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ + "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ + "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ + "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ + ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ + "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ + "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ + "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ + "\4U\tU\4V\tV\3\2\5\2\u00ae\n\2\3\2\3\2\3\3\3\3\3\3\7\3\u00b5\n\3\f\3\16"+ + "\3\u00b8\13\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\5\4"+ + "\u00c7\n\4\3\5\5\5\u00ca\n\5\3\5\3\5\5\5\u00ce\n\5\3\5\3\5\3\5\3\5\5\5"+ + "\u00d4\n\5\3\5\3\5\3\5\5\5\u00d9\n\5\3\6\3\6\3\6\3\7\3\7\5\7\u00e0\n\7"+ + "\3\7\3\7\3\b\3\b\3\b\3\b\7\b\u00e8\n\b\f\b\16\b\u00eb\13\b\3\t\3\t\3\t"+ + "\3\t\5\t\u00f1\n\t\3\t\3\t\3\t\5\t\u00f6\n\t\3\t\3\t\3\t\5\t\u00fb\n\t"+ + "\3\t\3\t\3\t\7\t\u0100\n\t\f\t\16\t\u0103\13\t\3\t\5\t\u0106\n\t\3\t\3"+ + "\t\3\t\5\t\u010b\n\t\3\n\3\n\5\n\u010f\n\n\3\n\3\n\3\n\3\n\5\n\u0115\n"+ + "\n\3\n\3\n\3\n\5\n\u011a\n\n\3\13\3\13\3\13\3\f\3\f\3\f\3\f\7\f\u0123"+ + "\n\f\f\f\16\f\u0126\13\f\3\r\3\r\5\r\u012a\n\r\3\r\3\r\5\r\u012e\n\r\3"+ + "\16\3\16\5\16\u0132\n\16\3\16\3\16\5\16\u0136\n\16\3\17\3\17\3\17\5\17"+ + "\u013b\n\17\3\20\3\20\3\20\3\20\3\21\3\21\7\21\u0143\n\21\f\21\16\21\u0146"+ + "\13\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\5\22\u0151\n\22\3"+ + "\23\3\23\7\23\u0155\n\23\f\23\16\23\u0158\13\23\3\24\3\24\3\24\3\24\3"+ + "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ + "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ + "\24\5\24\u017b\n\24\3\25\3\25\3\25\3\25\3\25\7\25\u0182\n\25\f\25\16\25"+ + "\u0185\13\25\3\25\3\25\3\25\3\25\3\25\7\25\u018c\n\25\f\25\16\25\u018f"+ + "\13\25\5\25\u0191\n\25\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\30\3\30\3"+ + "\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u01a3\n\30\3\31\3\31\3\31\5\31"+ + "\u01a8\n\31\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u01b0\n\32\3\32\3\32\3"+ + "\33\3\33\3\33\7\33\u01b7\n\33\f\33\16\33\u01ba\13\33\3\34\3\34\3\34\3"+ + "\34\3\35\3\35\3\35\5\35\u01c3\n\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+ + "\3\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36\u01d3\n\36\3\37\3\37\3 \3 \3"+ + " \3 \3 \3 \3 \3 \3!\3!\3!\5!\u01e2\n!\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u01ea"+ + "\n\"\3\"\3\"\3\"\3\"\3\"\5\"\u01f1\n\"\3\"\3\"\3\"\3\"\7\"\u01f7\n\"\f"+ + "\"\16\"\u01fa\13\"\3#\3#\3#\3#\3#\3#\3#\3#\5#\u0204\n#\3$\3$\3$\3$\3$"+ + "\3$\3$\3$\5$\u020e\n$\3$\3$\3$\3$\7$\u0214\n$\f$\16$\u0217\13$\3%\3%\3"+ + "%\3%\5%\u021d\n%\3&\3&\3\'\3\'\5\'\u0223\n\'\3(\3(\3(\3(\3(\3(\3(\7(\u022c"+ + "\n(\f(\16(\u022f\13(\3(\3(\3)\3)\3)\3)\3)\3)\7)\u0239\n)\f)\16)\u023c"+ + "\13)\3)\3)\3)\3)\3)\7)\u0243\n)\f)\16)\u0246\13)\3)\3)\3*\3*\5*\u024c"+ + "\n*\3+\3+\3+\7+\u0251\n+\f+\16+\u0254\13+\3,\3,\3,\7,\u0259\n,\f,\16,"+ + "\u025c\13,\3-\5-\u025f\n-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ + ".\3.\3.\3.\3.\3.\3.\3.\3.\5.\u0278\n.\3/\3/\3\60\3\60\3\61\3\61\3\61\3"+ + "\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3"+ + "\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\5\64\u0299\n\64\3\65"+ + "\3\65\3\65\3\65\5\65\u029f\n\65\3\66\3\66\3\66\7\66\u02a4\n\66\f\66\16"+ + "\66\u02a7\13\66\5\66\u02a9\n\66\3\67\3\67\38\38\38\38\39\39\3:\3:\3:\3"+ + ":\3:\3:\3:\3:\5:\u02bb\n:\3;\3;\5;\u02bf\n;\3<\3<\5<\u02c3\n<\3=\3=\3"+ + ">\3>\5>\u02c9\n>\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3"+ + "?\3?\3?\3?\3?\5?\u02e1\n?\3@\3@\3A\3A\3B\3B\3C\3C\3D\3D\3E\3E\3F\3F\3"+ + "G\3G\3H\3H\3H\3H\3H\5H\u02f8\nH\3I\3I\3I\3I\3J\3J\3K\5K\u0301\nK\3K\3"+ + "K\3L\5L\u0306\nL\3L\3L\3M\3M\3N\3N\3O\3O\3P\3P\3Q\3Q\3Q\3Q\7Q\u0316\n"+ + "Q\fQ\16Q\u0319\13Q\3Q\3Q\3R\3R\3R\7R\u0320\nR\fR\16R\u0323\13R\3S\3S\3"+ + "S\7S\u0328\nS\fS\16S\u032b\13S\3T\5T\u032e\nT\3T\3T\3T\3T\3T\3T\3T\5T"+ + "\u0337\nT\3U\3U\3U\7U\u033c\nU\fU\16U\u033f\13U\3U\5U\u0342\nU\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\5U\u0350\nU\3V\3V\3V\3V\3V\3V\3V\3V\3V\5"+ + "V\u035b\nV\3V\2\4BFW\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60"+ + "\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ + "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e"+ + "\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\2\21\3\2cd\4\2vv\u0097\u0097\7\2"+ + "tuyy||\u0081\u0081\u0083\u0086\5\2\6\6--\u00e2\u00ff\3\2\u00ad\u00b6\5"+ + "\2;;=D\u00b7\u00c6\3\2\u00d9\u00de\4\2\u00c7\u00cb\u00cd\u00d7\4\288]"+ + "b\3\2cg\3\2\u00df\u00e0\3\2\u010c\u010d\3\2\66\67\4\2;;=O\5\2\26\26\u01d6\3\2\2\2@\u01e1\3\2\2\2B\u01e9\3\2\2\2D\u0203\3\2\2\2F"+ + "\u020d\3\2\2\2H\u021c\3\2\2\2J\u021e\3\2\2\2L\u0222\3\2\2\2N\u0224\3\2"+ + "\2\2P\u0232\3\2\2\2R\u024b\3\2\2\2T\u024d\3\2\2\2V\u0255\3\2\2\2X\u025e"+ + "\3\2\2\2Z\u0277\3\2\2\2\\\u0279\3\2\2\2^\u027b\3\2\2\2`\u027d\3\2\2\2"+ + "b\u0282\3\2\2\2d\u0289\3\2\2\2f\u0298\3\2\2\2h\u029e\3\2\2\2j\u02a8\3"+ + "\2\2\2l\u02aa\3\2\2\2n\u02ac\3\2\2\2p\u02b0\3\2\2\2r\u02ba\3\2\2\2t\u02be"+ + "\3\2\2\2v\u02c2\3\2\2\2x\u02c4\3\2\2\2z\u02c8\3\2\2\2|\u02e0\3\2\2\2~"+ + "\u02e2\3\2\2\2\u0080\u02e4\3\2\2\2\u0082\u02e6\3\2\2\2\u0084\u02e8\3\2"+ + "\2\2\u0086\u02ea\3\2\2\2\u0088\u02ec\3\2\2\2\u008a\u02ee\3\2\2\2\u008c"+ + "\u02f0\3\2\2\2\u008e\u02f7\3\2\2\2\u0090\u02f9\3\2\2\2\u0092\u02fd\3\2"+ + "\2\2\u0094\u0300\3\2\2\2\u0096\u0305\3\2\2\2\u0098\u0309\3\2\2\2\u009a"+ + "\u030b\3\2\2\2\u009c\u030d\3\2\2\2\u009e\u030f\3\2\2\2\u00a0\u0311\3\2"+ + "\2\2\u00a2\u031c\3\2\2\2\u00a4\u0324\3\2\2\2\u00a6\u0336\3\2\2\2\u00a8"+ + "\u034f\3\2\2\2\u00aa\u035a\3\2\2\2\u00ac\u00ae\5\4\3\2\u00ad\u00ac\3\2"+ + "\2\2\u00ad\u00ae\3\2\2\2\u00ae\u00af\3\2\2\2\u00af\u00b0\7\2\2\3\u00b0"+ + "\3\3\2\2\2\u00b1\u00b6\5\b\5\2\u00b2\u00b3\7Z\2\2\u00b3\u00b5\5\6\4\2"+ + "\u00b4\u00b2\3\2\2\2\u00b5\u00b8\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b6\u00b7"+ + "\3\2\2\2\u00b7\5\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b9\u00c7\5\n\6\2\u00ba"+ + "\u00c7\5\f\7\2\u00bb\u00c7\5\16\b\2\u00bc\u00c7\5\20\t\2\u00bd\u00c7\5"+ + "\22\n\2\u00be\u00c7\5\24\13\2\u00bf\u00c7\5\26\f\2\u00c0\u00c7\5\30\r"+ + "\2\u00c1\u00c7\5\32\16\2\u00c2\u00c7\5\34\17\2\u00c3\u00c7\5\36\20\2\u00c4"+ + "\u00c7\5 \21\2\u00c5\u00c7\5$\23\2\u00c6\u00b9\3\2\2\2\u00c6\u00ba\3\2"+ + "\2\2\u00c6\u00bb\3\2\2\2\u00c6\u00bc\3\2\2\2\u00c6\u00bd\3\2\2\2\u00c6"+ + "\u00be\3\2\2\2\u00c6\u00bf\3\2\2\2\u00c6\u00c0\3\2\2\2\u00c6\u00c1\3\2"+ + "\2\2\u00c6\u00c2\3\2\2\2\u00c6\u00c3\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6"+ + "\u00c5\3\2\2\2\u00c7\7\3\2\2\2\u00c8\u00ca\7\3\2\2\u00c9\u00c8\3\2\2\2"+ + "\u00c9\u00ca\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00d9\5(\25\2\u00cc\u00ce"+ + "\7\3\2\2\u00cd\u00cc\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf"+ + "\u00d0\5(\25\2\u00d0\u00d1\5B\"\2\u00d1\u00d9\3\2\2\2\u00d2\u00d4\7\3"+ + "\2\2\u00d3\u00d2\3\2\2\2\u00d3\u00d4\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5"+ + "\u00d6\5B\"\2\u00d6\u00d7\5(\25\2\u00d7\u00d9\3\2\2\2\u00d8\u00c9\3\2"+ + "\2\2\u00d8\u00cd\3\2\2\2\u00d8\u00d3\3\2\2\2\u00d9\t\3\2\2\2\u00da\u00db"+ + "\7\5\2\2\u00db\u00dc\5B\"\2\u00dc\13\3\2\2\2\u00dd\u00df\7\6\2\2\u00de"+ + "\u00e0\t\2\2\2\u00df\u00de\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u00e1\3\2"+ + "\2\2\u00e1\u00e2\5T+\2\u00e2\r\3\2\2\2\u00e3\u00e4\7\7\2\2\u00e4\u00e9"+ + "\5*\26\2\u00e5\u00e6\7[\2\2\u00e6\u00e8\5*\26\2\u00e7\u00e5\3\2\2\2\u00e8"+ + "\u00eb\3\2\2\2\u00e9\u00e7\3\2\2\2\u00e9\u00ea\3\2\2\2\u00ea\17\3\2\2"+ + "\2\u00eb\u00e9\3\2\2\2\u00ec\u00f0\7\b\2\2\u00ed\u00ee\7 \2\2\u00ee\u00ef"+ + "\7]\2\2\u00ef\u00f1\5\u0094K\2\u00f0\u00ed\3\2\2\2\u00f0\u00f1\3\2\2\2"+ + "\u00f1\u00f5\3\2\2\2\u00f2\u00f3\7!\2\2\u00f3\u00f4\7]\2\2\u00f4\u00f6"+ + "\5\u0098M\2\u00f5\u00f2\3\2\2\2\u00f5\u00f6\3\2\2\2\u00f6\u00fa\3\2\2"+ + "\2\u00f7\u00f8\7\"\2\2\u00f8\u00f9\7]\2\2\u00f9\u00fb\5\u0092J\2\u00fa"+ + "\u00f7\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u0101\58"+ + "\35\2\u00fd\u00fe\7[\2\2\u00fe\u0100\58\35\2\u00ff\u00fd\3\2\2\2\u0100"+ + "\u0103\3\2\2\2\u0101\u00ff\3\2\2\2\u0101\u0102\3\2\2\2\u0102\u0105\3\2"+ + "\2\2\u0103\u0101\3\2\2\2\u0104\u0106\5.\30\2\u0105\u0104\3\2\2\2\u0105"+ + "\u0106\3\2\2\2\u0106\u010a\3\2\2\2\u0107\u0108\7\37\2\2\u0108\u0109\7"+ + "]\2\2\u0109\u010b\5\u0098M\2\u010a\u0107\3\2\2\2\u010a\u010b\3\2\2\2\u010b"+ + "\21\3\2\2\2\u010c\u010e\7\t\2\2\u010d\u010f\5\u0094K\2\u010e\u010d\3\2"+ + "\2\2\u010e\u010f\3\2\2\2\u010f\u0110\3\2\2\2\u0110\u0114\5T+\2\u0111\u0112"+ + "\7\35\2\2\u0112\u0113\7]\2\2\u0113\u0115\5\u0098M\2\u0114\u0111\3\2\2"+ + "\2\u0114\u0115\3\2\2\2\u0115\u0119\3\2\2\2\u0116\u0117\7\36\2\2\u0117"+ + "\u0118\7]\2\2\u0118\u011a\5\u0098M\2\u0119\u0116\3\2\2\2\u0119\u011a\3"+ + "\2\2\2\u011a\23\3\2\2\2\u011b\u011c\7\n\2\2\u011c\u011d\5\64\33\2\u011d"+ + "\25\3\2\2\2\u011e\u011f\7\13\2\2\u011f\u0124\5\66\34\2\u0120\u0121\7["+ + "\2\2\u0121\u0123\5\66\34\2\u0122\u0120\3\2\2\2\u0123\u0126\3\2\2\2\u0124"+ + "\u0122\3\2\2\2\u0124\u0125\3\2\2\2\u0125\27\3\2\2\2\u0126\u0124\3\2\2"+ + "\2\u0127\u0129\7\f\2\2\u0128\u012a\5\u0094K\2\u0129\u0128\3\2\2\2\u0129"+ + "\u012a\3\2\2\2\u012a\u012d\3\2\2\2\u012b\u012c\7\4\2\2\u012c\u012e\5\u0094"+ + "K\2\u012d\u012b\3\2\2\2\u012d\u012e\3\2\2\2\u012e\31\3\2\2\2\u012f\u0131"+ + "\7\r\2\2\u0130\u0132\5\u0094K\2\u0131\u0130\3\2\2\2\u0131\u0132\3\2\2"+ + "\2\u0132\u0133\3\2\2\2\u0133\u0135\5T+\2\u0134\u0136\5,\27\2\u0135\u0134"+ + "\3\2\2\2\u0135\u0136\3\2\2\2\u0136\33\3\2\2\2\u0137\u0138\7\16\2\2\u0138"+ + "\u013a\5T+\2\u0139\u013b\5,\27\2\u013a\u0139\3\2\2\2\u013a\u013b\3\2\2"+ + "\2\u013b\35\3\2\2\2\u013c\u013d\7\17\2\2\u013d\u013e\5@!\2\u013e\u013f"+ + "\5\u009aN\2\u013f\37\3\2\2\2\u0140\u0144\7\20\2\2\u0141\u0143\5\"\22\2"+ + "\u0142\u0141\3\2\2\2\u0143\u0146\3\2\2\2\u0144\u0142\3\2\2\2\u0144\u0145"+ + "\3\2\2\2\u0145!\3\2\2\2\u0146\u0144\3\2\2\2\u0147\u0148\7#\2\2\u0148\u0149"+ + "\7]\2\2\u0149\u0151\5\u0094K\2\u014a\u014b\7$\2\2\u014b\u014c\7]\2\2\u014c"+ + "\u0151\5\u0094K\2\u014d\u014e\7%\2\2\u014e\u014f\7]\2\2\u014f\u0151\5"+ + "\u0092J\2\u0150\u0147\3\2\2\2\u0150\u014a\3\2\2\2\u0150\u014d\3\2\2\2"+ + "\u0151#\3\2\2\2\u0152\u0156\7\21\2\2\u0153\u0155\5&\24\2\u0154\u0153\3"+ + "\2\2\2\u0155\u0158\3\2\2\2\u0156\u0154\3\2\2\2\u0156\u0157\3\2\2\2\u0157"+ + "%\3\2\2\2\u0158\u0156\3\2\2\2\u0159\u015a\7&\2\2\u015a\u015b\7]\2\2\u015b"+ + "\u017b\5\u0094K\2\u015c\u015d\7\'\2\2\u015d\u015e\7]\2\2\u015e\u017b\5"+ + "\u0094K\2\u015f\u0160\7(\2\2\u0160\u0161\7]\2\2\u0161\u017b\5\u0094K\2"+ + "\u0162\u0163\7)\2\2\u0163\u0164\7]\2\2\u0164\u017b\5\u0094K\2\u0165\u0166"+ + "\7*\2\2\u0166\u0167\7]\2\2\u0167\u017b\5\u0096L\2\u0168\u0169\7+\2\2\u0169"+ + "\u016a\7]\2\2\u016a\u017b\5\u0096L\2\u016b\u016c\7,\2\2\u016c\u016d\7"+ + "]\2\2\u016d\u017b\5\u0092J\2\u016e\u016f\7\u00c5\2\2\u016f\u0170\7]\2"+ + "\2\u0170\u017b\5\u0092J\2\u0171\u0172\7-\2\2\u0172\u0173\7]\2\2\u0173"+ + "\u017b\5\u0092J\2\u0174\u0175\7.\2\2\u0175\u0176\7]\2\2\u0176\u017b\5"+ + "\u0094K\2\u0177\u0178\7/\2\2\u0178\u0179\7]\2\2\u0179\u017b\5\u0096L\2"+ + "\u017a\u0159\3\2\2\2\u017a\u015c\3\2\2\2\u017a\u015f\3\2\2\2\u017a\u0162"+ + "\3\2\2\2\u017a\u0165\3\2\2\2\u017a\u0168\3\2\2\2\u017a\u016b\3\2\2\2\u017a"+ + "\u016e\3\2\2\2\u017a\u0171\3\2\2\2\u017a\u0174\3\2\2\2\u017a\u0177\3\2"+ + "\2\2\u017b\'\3\2\2\2\u017c\u017d\7\24\2\2\u017d\u017e\7]\2\2\u017e\u0183"+ + "\5R*\2\u017f\u0180\7[\2\2\u0180\u0182\5R*\2\u0181\u017f\3\2\2\2\u0182"+ + "\u0185\3\2\2\2\u0183\u0181\3\2\2\2\u0183\u0184\3\2\2\2\u0184\u0191\3\2"+ + "\2\2\u0185\u0183\3\2\2\2\u0186\u0187\7\25\2\2\u0187\u0188\7]\2\2\u0188"+ + "\u018d\5R*\2\u0189\u018a\7[\2\2\u018a\u018c\5R*\2\u018b\u0189\3\2\2\2"+ + "\u018c\u018f\3\2\2\2\u018d\u018b\3\2\2\2\u018d\u018e\3\2\2\2\u018e\u0191"+ + "\3\2\2\2\u018f\u018d\3\2\2\2\u0190\u017c\3\2\2\2\u0190\u0186\3\2\2\2\u0191"+ + ")\3\2\2\2\u0192\u0193\5^\60\2\u0193\u0194\7\22\2\2\u0194\u0195\5^\60\2"+ + "\u0195+\3\2\2\2\u0196\u0197\7\23\2\2\u0197\u0198\5T+\2\u0198-\3\2\2\2"+ + "\u0199\u019a\7\23\2\2\u019a\u01a3\5T+\2\u019b\u019c\7\23\2\2\u019c\u01a3"+ + "\5\60\31\2\u019d\u019e\7\23\2\2\u019e\u019f\5\60\31\2\u019f\u01a0\7[\2"+ + "\2\u01a0\u01a1\5T+\2\u01a1\u01a3\3\2\2\2\u01a2\u0199\3\2\2\2\u01a2\u019b"+ + "\3\2\2\2\u01a2\u019d\3\2\2\2\u01a3/\3\2\2\2\u01a4\u01a7\5\62\32\2\u01a5"+ + "\u01a6\7\22\2\2\u01a6\u01a8\5\u00a2R\2\u01a7\u01a5\3\2\2\2\u01a7\u01a8"+ + "\3\2\2\2\u01a8\61\3\2\2\2\u01a9\u01aa\7\u0100\2\2\u01aa\u01ab\7j\2\2\u01ab"+ + "\u01ac\5\\/\2\u01ac\u01ad\7[\2\2\u01ad\u01af\5\u008eH\2\u01ae\u01b0\5"+ + "\u009eP\2\u01af\u01ae\3\2\2\2\u01af\u01b0\3\2\2\2\u01b0\u01b1\3\2\2\2"+ + "\u01b1\u01b2\7k\2\2\u01b2\63\3\2\2\2\u01b3\u01b8\5X-\2\u01b4\u01b5\7["+ + "\2\2\u01b5\u01b7\5X-\2\u01b6\u01b4\3\2\2\2\u01b7\u01ba\3\2\2\2\u01b8\u01b6"+ + "\3\2\2\2\u01b8\u01b9\3\2\2\2\u01b9\65\3\2\2\2\u01ba\u01b8\3\2\2\2\u01bb"+ + "\u01bc\5\\/\2\u01bc\u01bd\7]\2\2\u01bd\u01be\5@!\2\u01be\67\3\2\2\2\u01bf"+ + "\u01c2\5:\36\2\u01c0\u01c1\7\22\2\2\u01c1\u01c3\5^\60\2\u01c2\u01c0\3"+ + "\2\2\2\u01c2\u01c3\3\2\2\2\u01c39\3\2\2\2\u01c4\u01c5\5<\37\2\u01c5\u01c6"+ + "\7j\2\2\u01c6\u01c7\5F$\2\u01c7\u01c8\7k\2\2\u01c8\u01d3\3\2\2\2\u01c9"+ + "\u01ca\7u\2\2\u01ca\u01cb\7j\2\2\u01cb\u01d3\7k\2\2\u01cc\u01cd\t\3\2"+ + "\2\u01cd\u01ce\7j\2\2\u01ce\u01cf\5F$\2\u01cf\u01d0\7k\2\2\u01d0\u01d3"+ + "\3\2\2\2\u01d1\u01d3\5> \2\u01d2\u01c4\3\2\2\2\u01d2\u01c9\3\2\2\2\u01d2"+ + "\u01cc\3\2\2\2\u01d2\u01d1\3\2\2\2\u01d3;\3\2\2\2\u01d4\u01d5\t\4\2\2"+ + "\u01d5=\3\2\2\2\u01d6\u01d7\7\u0087\2\2\u01d7\u01d8\7_\2\2\u01d8\u01d9"+ + "\5\u0094K\2\u01d9\u01da\7^\2\2\u01da\u01db\7j\2\2\u01db\u01dc\5\\/\2\u01dc"+ + "\u01dd\7k\2\2\u01dd?\3\2\2\2\u01de\u01e2\5B\"\2\u01df\u01e2\5D#\2\u01e0"+ + "\u01e2\5F$\2\u01e1\u01de\3\2\2\2\u01e1\u01df\3\2\2\2\u01e1\u01e0\3\2\2"+ + "\2\u01e2A\3\2\2\2\u01e3\u01e4\b\"\1\2\u01e4\u01ea\5D#\2\u01e5\u01e6\7"+ + "\62\2\2\u01e6\u01ea\5B\"\b\u01e7\u01ea\5J&\2\u01e8\u01ea\5L\'\2\u01e9"+ + "\u01e3\3\2\2\2\u01e9\u01e5\3\2\2\2\u01e9\u01e7\3\2\2\2\u01e9\u01e8\3\2"+ + "\2\2\u01ea\u01f8\3\2\2\2\u01eb\u01ec\f\7\2\2\u01ec\u01ed\7\63\2\2\u01ed"+ + "\u01f7\5B\"\b\u01ee\u01f0\f\6\2\2\u01ef\u01f1\7\64\2\2\u01f0\u01ef\3\2"+ + "\2\2\u01f0\u01f1\3\2\2\2\u01f1\u01f2\3\2\2\2\u01f2\u01f7\5B\"\7\u01f3"+ + "\u01f4\f\5\2\2\u01f4\u01f5\7\65\2\2\u01f5\u01f7\5B\"\6\u01f6\u01eb\3\2"+ + "\2\2\u01f6\u01ee\3\2\2\2\u01f6\u01f3\3\2\2\2\u01f7\u01fa\3\2\2\2\u01f8"+ + "\u01f6\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9C\3\2\2\2\u01fa\u01f8\3\2\2\2"+ + "\u01fb\u01fc\5F$\2\u01fc\u01fd\5\u0086D\2\u01fd\u01fe\5F$\2\u01fe\u0204"+ + "\3\2\2\2\u01ff\u0200\5F$\2\u0200\u0201\7\61\2\2\u0201\u0202\5\u00a0Q\2"+ + "\u0202\u0204\3\2\2\2\u0203\u01fb\3\2\2\2\u0203\u01ff\3\2\2\2\u0204E\3"+ + "\2\2\2\u0205\u0206\b$\1\2\u0206\u0207\7j\2\2\u0207\u0208\5F$\2\u0208\u0209"+ + "\5\u0088E\2\u0209\u020a\5F$\2\u020a\u020b\7k\2\2\u020b\u020e\3\2\2\2\u020c"+ + "\u020e\5H%\2\u020d\u0205\3\2\2\2\u020d\u020c\3\2\2\2\u020e\u0215\3\2\2"+ + "\2\u020f\u0210\f\5\2\2\u0210\u0211\5\u0088E\2\u0211\u0212\5F$\6\u0212"+ + "\u0214\3\2\2\2\u0213\u020f\3\2\2\2\u0214\u0217\3\2\2\2\u0215\u0213\3\2"+ + "\2\2\u0215\u0216\3\2\2\2\u0216G\3\2\2\2\u0217\u0215\3\2\2\2\u0218\u021d"+ + "\5`\61\2\u0219\u021d\5b\62\2\u021a\u021d\5\\/\2\u021b\u021d\5\u008eH\2"+ + "\u021c\u0218\3\2\2\2\u021c\u0219\3\2\2\2\u021c\u021a\3\2\2\2\u021c\u021b"+ + "\3\2\2\2\u021dI\3\2\2\2\u021e\u021f\5d\63\2\u021fK\3\2\2\2\u0220\u0223"+ + "\5N(\2\u0221\u0223\5P)\2\u0222\u0220\3\2\2\2\u0222\u0221\3\2\2\2\u0223"+ + "M\3\2\2\2\u0224\u0225\5\u008aF\2\u0225\u0226\7j\2\2\u0226\u0227\5v<\2"+ + "\u0227\u0228\7[\2\2\u0228\u022d\5x=\2\u0229\u022a\7[\2\2\u022a\u022c\5"+ + "n8\2\u022b\u0229\3\2\2\2\u022c\u022f\3\2\2\2\u022d\u022b\3\2\2\2\u022d"+ + "\u022e\3\2\2\2\u022e\u0230\3\2\2\2\u022f\u022d\3\2\2\2\u0230\u0231\7k"+ + "\2\2\u0231O\3\2\2\2\u0232\u0233\5\u008cG\2\u0233\u0234\7j\2\2\u0234\u0235"+ + "\7l\2\2\u0235\u023a\5r:\2\u0236\u0237\7[\2\2\u0237\u0239\5r:\2\u0238\u0236"+ + "\3\2\2\2\u0239\u023c\3\2\2\2\u023a\u0238\3\2\2\2\u023a\u023b\3\2\2\2\u023b"+ + "\u023d\3\2\2\2\u023c\u023a\3\2\2\2\u023d\u023e\7m\2\2\u023e\u023f\7[\2"+ + "\2\u023f\u0244\5x=\2\u0240\u0241\7[\2\2\u0241\u0243\5n8\2\u0242\u0240"+ + "\3\2\2\2\u0243\u0246\3\2\2\2\u0244\u0242\3\2\2\2\u0244\u0245\3\2\2\2\u0245"+ + "\u0247\3\2\2\2\u0246\u0244\3\2\2\2\u0247\u0248\7k\2\2\u0248Q\3\2\2\2\u0249"+ + "\u024c\5\u00a2R\2\u024a\u024c\7\u010b\2\2\u024b\u0249\3\2\2\2\u024b\u024a"+ + "\3\2\2\2\u024cS\3\2\2\2\u024d\u0252\5\\/\2\u024e\u024f\7[\2\2\u024f\u0251"+ + "\5\\/\2\u0250\u024e\3\2\2\2\u0251\u0254\3\2\2\2\u0252\u0250\3\2\2\2\u0252"+ + "\u0253\3\2\2\2\u0253U\3\2\2\2\u0254\u0252\3\2\2\2\u0255\u025a\5^\60\2"+ + "\u0256\u0257\7[\2\2\u0257\u0259\5^\60\2\u0258\u0256\3\2\2\2\u0259\u025c"+ + "\3\2\2\2\u025a\u0258\3\2\2\2\u025a\u025b\3\2\2\2\u025bW\3\2\2\2\u025c"+ + "\u025a\3\2\2\2\u025d\u025f\t\2\2\2\u025e\u025d\3\2\2\2\u025e\u025f\3\2"+ + "\2\2\u025f\u0260\3\2\2\2\u0260\u0261\5Z.\2\u0261Y\3\2\2\2\u0262\u0278"+ + "\5\\/\2\u0263\u0264\7\31\2\2\u0264\u0265\7j\2\2\u0265\u0266\5\\/\2\u0266"+ + "\u0267\7k\2\2\u0267\u0278\3\2\2\2\u0268\u0269\7\32\2\2\u0269\u026a\7j"+ + "\2\2\u026a\u026b\5\\/\2\u026b\u026c\7k\2\2\u026c\u0278\3\2\2\2\u026d\u026e"+ + "\7\33\2\2\u026e\u026f\7j\2\2\u026f\u0270\5\\/\2\u0270\u0271\7k\2\2\u0271"+ + "\u0278\3\2\2\2\u0272\u0273\7\34\2\2\u0273\u0274\7j\2\2\u0274\u0275\5\\"+ + "/\2\u0275\u0276\7k\2\2\u0276\u0278\3\2\2\2\u0277\u0262\3\2\2\2\u0277\u0263"+ + "\3\2\2\2\u0277\u0268\3\2\2\2\u0277\u026d\3\2\2\2\u0277\u0272\3\2\2\2\u0278"+ + "[\3\2\2\2\u0279\u027a\5\u00a2R\2\u027a]\3\2\2\2\u027b\u027c\5\u00a4S\2"+ + "\u027c_\3\2\2\2\u027d\u027e\5h\65\2\u027e\u027f\7j\2\2\u027f\u0280\5j"+ + "\66\2\u0280\u0281\7k\2\2\u0281a\3\2\2\2\u0282\u0283\7\u00d8\2\2\u0283"+ + "\u0284\7j\2\2\u0284\u0285\5@!\2\u0285\u0286\7\22\2\2\u0286\u0287\5f\64"+ + "\2\u0287\u0288\7k\2\2\u0288c\3\2\2\2\u0289\u028a\5\u0082B\2\u028a\u028b"+ + "\7j\2\2\u028b\u028c\5j\66\2\u028c\u028d\7k\2\2\u028de\3\2\2\2\u028e\u0299"+ + "\7\u00b8\2\2\u028f\u0299\7\u00c2\2\2\u0290\u0299\7\u00c4\2\2\u0291\u0299"+ + "\7S\2\2\u0292\u0299\7T\2\2\u0293\u0299\7U\2\2\u0294\u0299\7V\2\2\u0295"+ + "\u0299\7W\2\2\u0296\u0299\7X\2\2\u0297\u0299\7Y\2\2\u0298\u028e\3\2\2"+ + "\2\u0298\u028f\3\2\2\2\u0298\u0290\3\2\2\2\u0298\u0291\3\2\2\2\u0298\u0292"+ + "\3\2\2\2\u0298\u0293\3\2\2\2\u0298\u0294\3\2\2\2\u0298\u0295\3\2\2\2\u0298"+ + "\u0296\3\2\2\2\u0298\u0297\3\2\2\2\u0299g\3\2\2\2\u029a\u029f\5|?\2\u029b"+ + "\u029f\5\u0080A\2\u029c\u029f\5\u0084C\2\u029d\u029f\5\u0082B\2\u029e"+ + "\u029a\3\2\2\2\u029e\u029b\3\2\2\2\u029e\u029c\3\2\2\2\u029e\u029d\3\2"+ + "\2\2\u029fi\3\2\2\2\u02a0\u02a5\5l\67\2\u02a1\u02a2\7[\2\2\u02a2\u02a4"+ + "\5l\67\2\u02a3\u02a1\3\2\2\2\u02a4\u02a7\3\2\2\2\u02a5\u02a3\3\2\2\2\u02a5"+ + "\u02a6\3\2\2\2\u02a6\u02a9\3\2\2\2\u02a7\u02a5\3\2\2\2\u02a8\u02a0\3\2"+ + "\2\2\u02a8\u02a9\3\2\2\2\u02a9k\3\2\2\2\u02aa\u02ab\5F$\2\u02abm\3\2\2"+ + "\2\u02ac\u02ad\5p9\2\u02ad\u02ae\7]\2\2\u02ae\u02af\5z>\2\u02afo\3\2\2"+ + "\2\u02b0\u02b1\t\5\2\2\u02b1q\3\2\2\2\u02b2\u02bb\5v<\2\u02b3\u02b4\5"+ + "v<\2\u02b4\u02b5\5t;\2\u02b5\u02bb\3\2\2\2\u02b6\u02b7\5v<\2\u02b7\u02b8"+ + "\7s\2\2\u02b8\u02b9\5t;\2\u02b9\u02bb\3\2\2\2\u02ba\u02b2\3\2\2\2\u02ba"+ + "\u02b3\3\2\2\2\u02ba\u02b6\3\2\2\2\u02bbs\3\2\2\2\u02bc\u02bf\5\u0094"+ + "K\2\u02bd\u02bf\5\u0096L\2\u02be\u02bc\3\2\2\2\u02be\u02bd\3\2\2\2\u02bf"+ + "u\3\2\2\2\u02c0\u02c3\5\u00a2R\2\u02c1\u02c3\5\u0092J\2\u02c2\u02c0\3"+ + "\2\2\2\u02c2\u02c1\3\2\2\2\u02c3w\3\2\2\2\u02c4\u02c5\5z>\2\u02c5y\3\2"+ + "\2\2\u02c6\u02c9\5\u00a2R\2\u02c7\u02c9\5\u008eH\2\u02c8\u02c6\3\2\2\2"+ + "\u02c8\u02c7\3\2\2\2\u02c9{\3\2\2\2\u02ca\u02e1\7\u0098\2\2\u02cb\u02e1"+ + "\7\u0099\2\2\u02cc\u02e1\7\u009a\2\2\u02cd\u02e1\7\u009b\2\2\u02ce\u02e1"+ + "\7\u009c\2\2\u02cf\u02e1\7\u009d\2\2\u02d0\u02e1\7\u009e\2\2\u02d1\u02e1"+ + "\7\u009f\2\2\u02d2\u02e1\7\u00a0\2\2\u02d3\u02e1\7\u00a1\2\2\u02d4\u02e1"+ + "\7\u00a2\2\2\u02d5\u02e1\7\u00a3\2\2\u02d6\u02e1\7\u00a4\2\2\u02d7\u02e1"+ + "\7\u00a5\2\2\u02d8\u02e1\7\u00a6\2\2\u02d9\u02e1\7\u00a7\2\2\u02da\u02e1"+ + "\7\u00a8\2\2\u02db\u02e1\7\u00a9\2\2\u02dc\u02e1\7\u00aa\2\2\u02dd\u02e1"+ + "\7\u00ab\2\2\u02de\u02e1\7\u00ac\2\2\u02df\u02e1\5~@\2\u02e0\u02ca\3\2"+ + "\2\2\u02e0\u02cb\3\2\2\2\u02e0\u02cc\3\2\2\2\u02e0\u02cd\3\2\2\2\u02e0"+ + "\u02ce\3\2\2\2\u02e0\u02cf\3\2\2\2\u02e0\u02d0\3\2\2\2\u02e0\u02d1\3\2"+ + "\2\2\u02e0\u02d2\3\2\2\2\u02e0\u02d3\3\2\2\2\u02e0\u02d4\3\2\2\2\u02e0"+ + "\u02d5\3\2\2\2\u02e0\u02d6\3\2\2\2\u02e0\u02d7\3\2\2\2\u02e0\u02d8\3\2"+ + "\2\2\u02e0\u02d9\3\2\2\2\u02e0\u02da\3\2\2\2\u02e0\u02db\3\2\2\2\u02e0"+ + "\u02dc\3\2\2\2\u02e0\u02dd\3\2\2\2\u02e0\u02de\3\2\2\2\u02e0\u02df\3\2"+ + "\2\2\u02e1}\3\2\2\2\u02e2\u02e3\t\6\2\2\u02e3\177\3\2\2\2\u02e4\u02e5"+ + "\t\7\2\2\u02e5\u0081\3\2\2\2\u02e6\u02e7\t\b\2\2\u02e7\u0083\3\2\2\2\u02e8"+ + "\u02e9\t\t\2\2\u02e9\u0085\3\2\2\2\u02ea\u02eb\t\n\2\2\u02eb\u0087\3\2"+ + "\2\2\u02ec\u02ed\t\13\2\2\u02ed\u0089\3\2\2\2\u02ee\u02ef\t\f\2\2\u02ef"+ + "\u008b\3\2\2\2\u02f0\u02f1\7\u00e1\2\2\u02f1\u008d\3\2\2\2\u02f2\u02f8"+ + "\5\u0090I\2\u02f3\u02f8\5\u0092J\2\u02f4\u02f8\5\u0094K\2\u02f5\u02f8"+ + "\5\u0096L\2\u02f6\u02f8\5\u0098M\2\u02f7\u02f2\3\2\2\2\u02f7\u02f3\3\2"+ + "\2\2\u02f7\u02f4\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f7\u02f6\3\2\2\2\u02f8"+ + "\u008f\3\2\2\2\u02f9\u02fa\7:\2\2\u02fa\u02fb\5F$\2\u02fb\u02fc\5\u009c"+ + "O\2\u02fc\u0091\3\2\2\2\u02fd\u02fe\t\r\2\2\u02fe\u0093\3\2\2\2\u02ff"+ + "\u0301\t\2\2\2\u0300\u02ff\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u0302\3\2"+ + "\2\2\u0302\u0303\7\u0109\2\2\u0303\u0095\3\2\2\2\u0304\u0306\t\2\2\2\u0305"+ + "\u0304\3\2\2\2\u0305\u0306\3\2\2\2\u0306\u0307\3\2\2\2\u0307\u0308\7\u010a"+ + "\2\2\u0308\u0097\3\2\2\2\u0309\u030a\t\16\2\2\u030a\u0099\3\2\2\2\u030b"+ + "\u030c\5\u0092J\2\u030c\u009b\3\2\2\2\u030d\u030e\t\17\2\2\u030e\u009d"+ + "\3\2\2\2\u030f\u0310\t\20\2\2\u0310\u009f\3\2\2\2\u0311\u0312\7j\2\2\u0312"+ + "\u0317\5\u008eH\2\u0313\u0314\7[\2\2\u0314\u0316\5\u008eH\2\u0315\u0313"+ + "\3\2\2\2\u0316\u0319\3\2\2\2\u0317\u0315\3\2\2\2\u0317\u0318\3\2\2\2\u0318"+ + "\u031a\3\2\2\2\u0319\u0317\3\2\2\2\u031a\u031b\7k\2\2\u031b\u00a1\3\2"+ + "\2\2\u031c\u0321\5\u00a6T\2\u031d\u031e\7\\\2\2\u031e\u0320\5\u00a6T\2"+ + "\u031f\u031d\3\2\2\2\u0320\u0323\3\2\2\2\u0321\u031f\3\2\2\2\u0321\u0322"+ + "\3\2\2\2\u0322\u00a3\3\2\2\2\u0323\u0321\3\2\2\2\u0324\u0329\5\u00a8U"+ + "\2\u0325\u0326\7\\\2\2\u0326\u0328\5\u00a8U\2\u0327\u0325\3\2\2\2\u0328"+ + "\u032b\3\2\2\2\u0329\u0327\3\2\2\2\u0329\u032a\3\2\2\2\u032a\u00a5\3\2"+ + "\2\2\u032b\u0329\3\2\2\2\u032c\u032e\7\\\2\2\u032d\u032c\3\2\2\2\u032d"+ + "\u032e\3\2\2\2\u032e\u032f\3\2\2\2\u032f\u0337\7\u0108\2\2\u0330\u0331"+ + "\7p\2\2\u0331\u0332\5\u00a6T\2\u0332\u0333\7p\2\2\u0333\u0337\3\2\2\2"+ + "\u0334\u0337\7\u010e\2\2\u0335\u0337\5\u00aaV\2\u0336\u032d\3\2\2\2\u0336"+ + "\u0330\3\2\2\2\u0336\u0334\3\2\2\2\u0336\u0335\3\2\2\2\u0337\u00a7\3\2"+ + "\2\2\u0338\u033d\5\u00a6T\2\u0339\u033a\7g\2\2\u033a\u033c\5\u00a6T\2"+ + "\u033b\u0339\3\2\2\2\u033c\u033f\3\2\2\2\u033d\u033b\3\2\2\2\u033d\u033e"+ + "\3\2\2\2\u033e\u0341\3\2\2\2\u033f\u033d\3\2\2\2\u0340\u0342\7g\2\2\u0341"+ + "\u0340\3\2\2\2\u0341\u0342\3\2\2\2\u0342\u0350\3\2\2\2\u0343\u0344\7n"+ + "\2\2\u0344\u0345\5\u00a8U\2\u0345\u0346\7n\2\2\u0346\u0350\3\2\2\2\u0347"+ + "\u0348\7o\2\2\u0348\u0349\5\u00a8U\2\u0349\u034a\7o\2\2\u034a\u0350\3"+ + "\2\2\2\u034b\u034c\7p\2\2\u034c\u034d\5\u00a8U\2\u034d\u034e\7p\2\2\u034e"+ + "\u0350\3\2\2\2\u034f\u0338\3\2\2\2\u034f\u0343\3\2\2\2\u034f\u0347\3\2"+ + "\2\2\u034f\u034b\3\2\2\2\u0350\u00a9\3\2\2\2\u0351\u035b\7\26\2\2\u0352"+ + "\u035b\5<\37\2\u0353\u035b\7\u00c4\2\2\u0354\u035b\7\u00b8\2\2\u0355\u035b"+ + "\7\u00c2\2\2\u0356\u035b\7\u0088\2\2\u0357\u035b\7\u0089\2\2\u0358\u035b"+ + "\5\u009eP\2\u0359\u035b\7\u0100\2\2\u035a\u0351\3\2\2\2\u035a\u0352\3"+ + "\2\2\2\u035a\u0353\3\2\2\2\u035a\u0354\3\2\2\2\u035a\u0355\3\2\2\2\u035a"+ + "\u0356\3\2\2\2\u035a\u0357\3\2\2\2\u035a\u0358\3\2\2\2\u035a\u0359\3\2"+ + "\2\2\u035b\u00ab\3\2\2\2N\u00ad\u00b6\u00c6\u00c9\u00cd\u00d3\u00d8\u00df"+ + "\u00e9\u00f0\u00f5\u00fa\u0101\u0105\u010a\u010e\u0114\u0119\u0124\u0129"+ + "\u012d\u0131\u0135\u013a\u0144\u0150\u0156\u017a\u0183\u018d\u0190\u01a2"+ + "\u01a7\u01af\u01b8\u01c2\u01d2\u01e1\u01e9\u01f0\u01f6\u01f8\u0203\u020d"+ + "\u0215\u021c\u0222\u022d\u023a\u0244\u024b\u0252\u025a\u025e\u0277\u0298"+ + "\u029e\u02a5\u02a8\u02ba\u02be\u02c2\u02c8\u02e0\u02f7\u0300\u0305\u0317"+ + "\u0321\u0329\u032d\u0336\u033d\u0341\u034f\u035a"; + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp new file mode 100644 index 000000000..635beec9a --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp @@ -0,0 +1,831 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +DATE_SUFFIX +ID_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +DEC_DIGIT +ERROR_RECOGNITION + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN +null +null +WHITESPACE +ERRORCHANNEL + +mode names: +DEFAULT_MODE + +atn: +[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 2, 274, 3, 2, 3, 5, 2, 4, 7, 2, 5, 9, 2, 6, 11, 2, 7, 13, 2, 8, 15, 2, 9, 17, 2, 10, 19, 2, 11, 21, 2, 12, 23, 2, 13, 25, 2, 14, 27, 2, 15, 29, 2, 16, 31, 2, 17, 33, 2, 18, 35, 2, 19, 37, 2, 20, 39, 2, 21, 41, 2, 22, 43, 2, 23, 45, 2, 24, 47, 2, 25, 49, 2, 26, 51, 2, 27, 53, 2, 28, 55, 2, 29, 57, 2, 30, 59, 2, 31, 61, 2, 32, 63, 2, 33, 65, 2, 34, 67, 2, 35, 69, 2, 36, 71, 2, 37, 73, 2, 38, 75, 2, 39, 77, 2, 40, 79, 2, 41, 81, 2, 42, 83, 2, 43, 85, 2, 44, 87, 2, 45, 89, 2, 46, 91, 2, 47, 93, 2, 48, 95, 2, 49, 97, 2, 50, 99, 2, 51, 101, 2, 52, 103, 2, 53, 105, 2, 54, 107, 2, 55, 109, 2, 56, 111, 2, 57, 113, 2, 58, 115, 2, 59, 117, 2, 60, 119, 2, 61, 121, 2, 62, 123, 2, 63, 125, 2, 64, 127, 2, 65, 129, 2, 66, 131, 2, 67, 133, 2, 68, 135, 2, 69, 137, 2, 70, 139, 2, 71, 141, 2, 72, 143, 2, 73, 145, 2, 74, 147, 2, 75, 149, 2, 76, 151, 2, 77, 153, 2, 78, 155, 2, 79, 157, 2, 80, 159, 2, 81, 161, 2, 82, 163, 2, 83, 165, 2, 84, 167, 2, 85, 169, 2, 86, 171, 2, 87, 173, 2, 88, 175, 2, 89, 177, 2, 90, 179, 2, 91, 181, 2, 92, 183, 2, 93, 185, 2, 94, 187, 2, 95, 189, 2, 96, 191, 2, 97, 193, 2, 98, 195, 2, 99, 197, 2, 100, 199, 2, 101, 201, 2, 102, 203, 2, 103, 205, 2, 104, 207, 2, 105, 209, 2, 106, 211, 2, 107, 213, 2, 108, 215, 2, 109, 217, 2, 110, 219, 2, 111, 221, 2, 112, 223, 2, 113, 225, 2, 114, 227, 2, 115, 229, 2, 116, 231, 2, 117, 233, 2, 118, 235, 2, 119, 237, 2, 120, 239, 2, 121, 241, 2, 122, 243, 2, 123, 245, 2, 124, 247, 2, 125, 249, 2, 126, 251, 2, 127, 253, 2, 128, 255, 2, 129, 257, 2, 130, 259, 2, 131, 261, 2, 132, 263, 2, 133, 265, 2, 134, 267, 2, 135, 269, 2, 136, 271, 2, 137, 273, 2, 138, 275, 2, 139, 277, 2, 140, 279, 2, 141, 281, 2, 142, 283, 2, 143, 285, 2, 144, 287, 2, 145, 289, 2, 146, 291, 2, 147, 293, 2, 148, 295, 2, 149, 297, 2, 150, 299, 2, 151, 301, 2, 152, 303, 2, 153, 305, 2, 154, 307, 2, 155, 309, 2, 156, 311, 2, 157, 313, 2, 158, 315, 2, 159, 317, 2, 160, 319, 2, 161, 321, 2, 162, 323, 2, 163, 325, 2, 164, 327, 2, 165, 329, 2, 166, 331, 2, 167, 333, 2, 168, 335, 2, 169, 337, 2, 170, 339, 2, 171, 341, 2, 172, 343, 2, 173, 345, 2, 174, 347, 2, 175, 349, 2, 176, 351, 2, 177, 353, 2, 178, 355, 2, 179, 357, 2, 180, 359, 2, 181, 361, 2, 182, 363, 2, 183, 365, 2, 184, 367, 2, 185, 369, 2, 186, 371, 2, 187, 373, 2, 188, 375, 2, 189, 377, 2, 190, 379, 2, 191, 381, 2, 192, 383, 2, 193, 385, 2, 194, 387, 2, 195, 389, 2, 196, 391, 2, 197, 393, 2, 198, 395, 2, 199, 397, 2, 200, 399, 2, 201, 401, 2, 202, 403, 2, 203, 405, 2, 204, 407, 2, 205, 409, 2, 206, 411, 2, 207, 413, 2, 208, 415, 2, 209, 417, 2, 210, 419, 2, 211, 421, 2, 212, 423, 2, 213, 425, 2, 214, 427, 2, 215, 429, 2, 216, 431, 2, 217, 433, 2, 218, 435, 2, 219, 437, 2, 220, 439, 2, 221, 441, 2, 222, 443, 2, 223, 445, 2, 224, 447, 2, 225, 449, 2, 226, 451, 2, 227, 453, 2, 228, 455, 2, 229, 457, 2, 230, 459, 2, 231, 461, 2, 232, 463, 2, 233, 465, 2, 234, 467, 2, 235, 469, 2, 236, 471, 2, 237, 473, 2, 238, 475, 2, 239, 477, 2, 240, 479, 2, 241, 481, 2, 242, 483, 2, 243, 485, 2, 244, 487, 2, 245, 489, 2, 246, 491, 2, 247, 493, 2, 248, 495, 2, 249, 497, 2, 250, 499, 2, 251, 501, 2, 252, 503, 2, 253, 505, 2, 254, 507, 2, 255, 509, 2, 256, 511, 2, 257, 513, 2, 258, 515, 2, 259, 517, 2, 260, 519, 2, 261, 521, 2, 262, 523, 2, 263, 525, 2, 264, 527, 2, 265, 529, 2, 266, 531, 2, 2, 533, 2, 2, 535, 2, 267, 537, 2, 268, 539, 2, 269, 541, 2, 270, 543, 2, 2, 545, 2, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts new file mode 100644 index 000000000..5ef073dac --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts @@ -0,0 +1,1768 @@ +// Generated from ./antlr/OpenSearchPPLLexer.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ATN } from "antlr4ts/atn/ATN"; +import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; +import { CharStream } from "antlr4ts/CharStream"; +import { Lexer } from "antlr4ts/Lexer"; +import { LexerATNSimulator } from "antlr4ts/atn/LexerATNSimulator"; +import { NotNull } from "antlr4ts/Decorators"; +import { Override } from "antlr4ts/Decorators"; +import { RuleContext } from "antlr4ts/RuleContext"; +import { Vocabulary } from "antlr4ts/Vocabulary"; +import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; + +import * as Utils from "antlr4ts/misc/Utils"; + + +export class OpenSearchPPLLexer extends Lexer { + public static readonly SEARCH = 1; + public static readonly FROM = 2; + public static readonly WHERE = 3; + public static readonly FIELDS = 4; + public static readonly RENAME = 5; + public static readonly STATS = 6; + public static readonly DEDUP = 7; + public static readonly SORT = 8; + public static readonly EVAL = 9; + public static readonly HEAD = 10; + public static readonly TOP = 11; + public static readonly RARE = 12; + public static readonly PARSE = 13; + public static readonly KMEANS = 14; + public static readonly AD = 15; + public static readonly AS = 16; + public static readonly BY = 17; + public static readonly SOURCE = 18; + public static readonly INDEX = 19; + public static readonly D = 20; + public static readonly DESC = 21; + public static readonly SORTBY = 22; + public static readonly AUTO = 23; + public static readonly STR = 24; + public static readonly IP = 25; + public static readonly NUM = 26; + public static readonly KEEPEMPTY = 27; + public static readonly CONSECUTIVE = 28; + public static readonly DEDUP_SPLITVALUES = 29; + public static readonly PARTITIONS = 30; + public static readonly ALLNUM = 31; + public static readonly DELIM = 32; + public static readonly CENTROIDS = 33; + public static readonly ITERATIONS = 34; + public static readonly DISTANCE_TYPE = 35; + public static readonly NUMBER_OF_TREES = 36; + public static readonly SHINGLE_SIZE = 37; + public static readonly SAMPLE_SIZE = 38; + public static readonly OUTPUT_AFTER = 39; + public static readonly TIME_DECAY = 40; + public static readonly ANOMALY_RATE = 41; + public static readonly TIME_FIELD = 42; + public static readonly TIME_ZONE = 43; + public static readonly TRAINING_DATA_SIZE = 44; + public static readonly ANOMALY_SCORE_THRESHOLD = 45; + public static readonly CASE = 46; + public static readonly IN = 47; + public static readonly NOT = 48; + public static readonly OR = 49; + public static readonly AND = 50; + public static readonly XOR = 51; + public static readonly TRUE = 52; + public static readonly FALSE = 53; + public static readonly REGEXP = 54; + public static readonly DATETIME = 55; + public static readonly INTERVAL = 56; + public static readonly MICROSECOND = 57; + public static readonly MILLISECOND = 58; + public static readonly SECOND = 59; + public static readonly MINUTE = 60; + public static readonly HOUR = 61; + public static readonly DAY = 62; + public static readonly WEEK = 63; + public static readonly MONTH = 64; + public static readonly QUARTER = 65; + public static readonly YEAR = 66; + public static readonly SECOND_MICROSECOND = 67; + public static readonly MINUTE_MICROSECOND = 68; + public static readonly MINUTE_SECOND = 69; + public static readonly HOUR_MICROSECOND = 70; + public static readonly HOUR_SECOND = 71; + public static readonly HOUR_MINUTE = 72; + public static readonly DAY_MICROSECOND = 73; + public static readonly DAY_SECOND = 74; + public static readonly DAY_MINUTE = 75; + public static readonly DAY_HOUR = 76; + public static readonly YEAR_MONTH = 77; + public static readonly DATAMODEL = 78; + public static readonly LOOKUP = 79; + public static readonly SAVEDSEARCH = 80; + public static readonly INT = 81; + public static readonly INTEGER = 82; + public static readonly DOUBLE = 83; + public static readonly LONG = 84; + public static readonly FLOAT = 85; + public static readonly STRING = 86; + public static readonly BOOLEAN = 87; + public static readonly PIPE = 88; + public static readonly COMMA = 89; + public static readonly DOT = 90; + public static readonly EQUAL = 91; + public static readonly GREATER = 92; + public static readonly LESS = 93; + public static readonly NOT_GREATER = 94; + public static readonly NOT_LESS = 95; + public static readonly NOT_EQUAL = 96; + public static readonly PLUS = 97; + public static readonly MINUS = 98; + public static readonly STAR = 99; + public static readonly DIVIDE = 100; + public static readonly MODULE = 101; + public static readonly EXCLAMATION_SYMBOL = 102; + public static readonly COLON = 103; + public static readonly LT_PRTHS = 104; + public static readonly RT_PRTHS = 105; + public static readonly LT_SQR_PRTHS = 106; + public static readonly RT_SQR_PRTHS = 107; + public static readonly SINGLE_QUOTE = 108; + public static readonly DOUBLE_QUOTE = 109; + public static readonly BACKTICK = 110; + public static readonly BIT_NOT_OP = 111; + public static readonly BIT_AND_OP = 112; + public static readonly BIT_XOR_OP = 113; + public static readonly AVG = 114; + public static readonly COUNT = 115; + public static readonly DISTINCT_COUNT = 116; + public static readonly ESTDC = 117; + public static readonly ESTDC_ERROR = 118; + public static readonly MAX = 119; + public static readonly MEAN = 120; + public static readonly MEDIAN = 121; + public static readonly MIN = 122; + public static readonly MODE = 123; + public static readonly RANGE = 124; + public static readonly STDEV = 125; + public static readonly STDEVP = 126; + public static readonly SUM = 127; + public static readonly SUMSQ = 128; + public static readonly VAR_SAMP = 129; + public static readonly VAR_POP = 130; + public static readonly STDDEV_SAMP = 131; + public static readonly STDDEV_POP = 132; + public static readonly PERCENTILE = 133; + public static readonly FIRST = 134; + public static readonly LAST = 135; + public static readonly LIST = 136; + public static readonly VALUES = 137; + public static readonly EARLIEST = 138; + public static readonly EARLIEST_TIME = 139; + public static readonly LATEST = 140; + public static readonly LATEST_TIME = 141; + public static readonly PER_DAY = 142; + public static readonly PER_HOUR = 143; + public static readonly PER_MINUTE = 144; + public static readonly PER_SECOND = 145; + public static readonly RATE = 146; + public static readonly SPARKLINE = 147; + public static readonly C = 148; + public static readonly DC = 149; + public static readonly ABS = 150; + public static readonly CEIL = 151; + public static readonly CEILING = 152; + public static readonly CONV = 153; + public static readonly CRC32 = 154; + public static readonly E = 155; + public static readonly EXP = 156; + public static readonly FLOOR = 157; + public static readonly LN = 158; + public static readonly LOG = 159; + public static readonly LOG10 = 160; + public static readonly LOG2 = 161; + public static readonly MOD = 162; + public static readonly PI = 163; + public static readonly POW = 164; + public static readonly POWER = 165; + public static readonly RAND = 166; + public static readonly ROUND = 167; + public static readonly SIGN = 168; + public static readonly SQRT = 169; + public static readonly TRUNCATE = 170; + public static readonly ACOS = 171; + public static readonly ASIN = 172; + public static readonly ATAN = 173; + public static readonly ATAN2 = 174; + public static readonly COS = 175; + public static readonly COT = 176; + public static readonly DEGREES = 177; + public static readonly RADIANS = 178; + public static readonly SIN = 179; + public static readonly TAN = 180; + public static readonly ADDDATE = 181; + public static readonly DATE = 182; + public static readonly DATE_ADD = 183; + public static readonly DATE_SUB = 184; + public static readonly DAYOFMONTH = 185; + public static readonly DAYOFWEEK = 186; + public static readonly DAYOFYEAR = 187; + public static readonly DAYNAME = 188; + public static readonly FROM_DAYS = 189; + public static readonly MONTHNAME = 190; + public static readonly SUBDATE = 191; + public static readonly TIME = 192; + public static readonly TIME_TO_SEC = 193; + public static readonly TIMESTAMP = 194; + public static readonly DATE_FORMAT = 195; + public static readonly TO_DAYS = 196; + public static readonly SUBSTR = 197; + public static readonly SUBSTRING = 198; + public static readonly LTRIM = 199; + public static readonly RTRIM = 200; + public static readonly TRIM = 201; + public static readonly TO = 202; + public static readonly LOWER = 203; + public static readonly UPPER = 204; + public static readonly CONCAT = 205; + public static readonly CONCAT_WS = 206; + public static readonly LENGTH = 207; + public static readonly STRCMP = 208; + public static readonly RIGHT = 209; + public static readonly LEFT = 210; + public static readonly ASCII = 211; + public static readonly LOCATE = 212; + public static readonly REPLACE = 213; + public static readonly CAST = 214; + public static readonly LIKE = 215; + public static readonly ISNULL = 216; + public static readonly ISNOTNULL = 217; + public static readonly IFNULL = 218; + public static readonly NULLIF = 219; + public static readonly IF = 220; + public static readonly MATCH = 221; + public static readonly MATCH_PHRASE = 222; + public static readonly SIMPLE_QUERY_STRING = 223; + public static readonly ALLOW_LEADING_WILDCARD = 224; + public static readonly ANALYZE_WILDCARD = 225; + public static readonly ANALYZER = 226; + public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; + public static readonly BOOST = 228; + public static readonly CUTOFF_FREQUENCY = 229; + public static readonly DEFAULT_FIELD = 230; + public static readonly DEFAULT_OPERATOR = 231; + public static readonly ENABLE_POSITION_INCREMENTS = 232; + public static readonly FLAGS = 233; + public static readonly FUZZY_MAX_EXPANSIONS = 234; + public static readonly FUZZY_PREFIX_LENGTH = 235; + public static readonly FUZZY_TRANSPOSITIONS = 236; + public static readonly FUZZY_REWRITE = 237; + public static readonly FUZZINESS = 238; + public static readonly LENIENT = 239; + public static readonly LOW_FREQ_OPERATOR = 240; + public static readonly MAX_DETERMINIZED_STATES = 241; + public static readonly MAX_EXPANSIONS = 242; + public static readonly MINIMUM_SHOULD_MATCH = 243; + public static readonly OPERATOR = 244; + public static readonly PHRASE_SLOP = 245; + public static readonly PREFIX_LENGTH = 246; + public static readonly QUOTE_ANALYZER = 247; + public static readonly QUOTE_FIELD_SUFFIX = 248; + public static readonly REWRITE = 249; + public static readonly SLOP = 250; + public static readonly TIE_BREAKER = 251; + public static readonly TYPE = 252; + public static readonly ZERO_TERMS_QUERY = 253; + public static readonly SPAN = 254; + public static readonly MS = 255; + public static readonly S = 256; + public static readonly M = 257; + public static readonly H = 258; + public static readonly W = 259; + public static readonly Q = 260; + public static readonly Y = 261; + public static readonly ID = 262; + public static readonly INTEGER_LITERAL = 263; + public static readonly DECIMAL_LITERAL = 264; + public static readonly ID_DATE_SUFFIX = 265; + public static readonly DQUOTA_STRING = 266; + public static readonly SQUOTA_STRING = 267; + public static readonly BQUOTA_STRING = 268; + public static readonly ERROR_RECOGNITION = 269; + public static readonly WHITESPACE = 2; + public static readonly ERRORCHANNEL = 3; + + // tslint:disable:no-trailing-whitespace + public static readonly channelNames: string[] = [ + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL", + ]; + + // tslint:disable:no-trailing-whitespace + public static readonly modeNames: string[] = [ + "DEFAULT_MODE", + ]; + + public static readonly ruleNames: string[] = [ + "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", + "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", + "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", + "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", "CENTROIDS", + "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", "SAMPLE_SIZE", + "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", "TIME_ZONE", + "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", "IN", "NOT", + "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", "INTERVAL", + "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", "DAY", "WEEK", + "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", + "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", + "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", + "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", + "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", + "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", + "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", + "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "DATE_SUFFIX", "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", + "BQUOTA_STRING", "DEC_DIGIT", "ERROR_RECOGNITION", + ]; + + private static readonly _LITERAL_NAMES: Array = [ + undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", + "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", + "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", + "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", + "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", + "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", + "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", + "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", + "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", + "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, + undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", + "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", + "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", + "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", + "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", + "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", + "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", + "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", + "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", + "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", + "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", + "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", + "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", + "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", + "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", + "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", + "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", + "'W'", "'Q'", "'Y'", + ]; + private static readonly _SYMBOLIC_NAMES: Array = [ + undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", + "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", + "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", + "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", + "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", + "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", + "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", + "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", + "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", + "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", + ]; + public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLLexer._LITERAL_NAMES, OpenSearchPPLLexer._SYMBOLIC_NAMES, []); + + // @Override + // @NotNull + public get vocabulary(): Vocabulary { + return OpenSearchPPLLexer.VOCABULARY; + } + // tslint:enable:no-trailing-whitespace + + + constructor(input: CharStream) { + super(input); + this._interp = new LexerATNSimulator(OpenSearchPPLLexer._ATN, this); + } + + // @Override + public get grammarFileName(): string { return "OpenSearchPPLLexer.g4"; } + + // @Override + public get ruleNames(): string[] { return OpenSearchPPLLexer.ruleNames; } + + // @Override + public get serializedATN(): string { return OpenSearchPPLLexer._serializedATN; } + + // @Override + public get channelNames(): string[] { return OpenSearchPPLLexer.channelNames; } + + // @Override + public get modeNames(): string[] { return OpenSearchPPLLexer.modeNames; } + + private static readonly _serializedATNSegments: number = 5; + private static readonly _serializedATNSegment0: string = + "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02\u010F\u0A6F\b" + + "\x01\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t" + + "\x06\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04" + + "\r\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12" + + "\t\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17" + + "\t\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C" + + "\t\x1C\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"" + + "\t\"\x04#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t" + + "*\x04+\t+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x04" + + "3\t3\x044\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04" + + "<\t<\x04=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04" + + "E\tE\x04F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04" + + "N\tN\x04O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x04" + + "W\tW\x04X\tX\x04Y\tY\x04Z\tZ\x04[\t[\x04\\\t\\\x04]\t]\x04^\t^\x04_\t" + + "_\x04`\t`\x04a\ta\x04b\tb\x04c\tc\x04d\td\x04e\te\x04f\tf\x04g\tg\x04" + + "h\th\x04i\ti\x04j\tj\x04k\tk\x04l\tl\x04m\tm\x04n\tn\x04o\to\x04p\tp\x04" + + "q\tq\x04r\tr\x04s\ts\x04t\tt\x04u\tu\x04v\tv\x04w\tw\x04x\tx\x04y\ty\x04" + + "z\tz\x04{\t{\x04|\t|\x04}\t}\x04~\t~\x04\x7F\t\x7F\x04\x80\t\x80\x04\x81" + + "\t\x81\x04\x82\t\x82\x04\x83\t\x83\x04\x84\t\x84\x04\x85\t\x85\x04\x86" + + "\t\x86\x04\x87\t\x87\x04\x88\t\x88\x04\x89\t\x89\x04\x8A\t\x8A\x04\x8B" + + "\t\x8B\x04\x8C\t\x8C\x04\x8D\t\x8D\x04\x8E\t\x8E\x04\x8F\t\x8F\x04\x90" + + "\t\x90\x04\x91\t\x91\x04\x92\t\x92\x04\x93\t\x93\x04\x94\t\x94\x04\x95" + + "\t\x95\x04\x96\t\x96\x04\x97\t\x97\x04\x98\t\x98\x04\x99\t\x99\x04\x9A" + + "\t\x9A\x04\x9B\t\x9B\x04\x9C\t\x9C\x04\x9D\t\x9D\x04\x9E\t\x9E\x04\x9F" + + "\t\x9F\x04\xA0\t\xA0\x04\xA1\t\xA1\x04\xA2\t\xA2\x04\xA3\t\xA3\x04\xA4" + + "\t\xA4\x04\xA5\t\xA5\x04\xA6\t\xA6\x04\xA7\t\xA7\x04\xA8\t\xA8\x04\xA9" + + "\t\xA9\x04\xAA\t\xAA\x04\xAB\t\xAB\x04\xAC\t\xAC\x04\xAD\t\xAD\x04\xAE" + + "\t\xAE\x04\xAF\t\xAF\x04\xB0\t\xB0\x04\xB1\t\xB1\x04\xB2\t\xB2\x04\xB3" + + "\t\xB3\x04\xB4\t\xB4\x04\xB5\t\xB5\x04\xB6\t\xB6\x04\xB7\t\xB7\x04\xB8" + + "\t\xB8\x04\xB9\t\xB9\x04\xBA\t\xBA\x04\xBB\t\xBB\x04\xBC\t\xBC\x04\xBD" + + "\t\xBD\x04\xBE\t\xBE\x04\xBF\t\xBF\x04\xC0\t\xC0\x04\xC1\t\xC1\x04\xC2" + + "\t\xC2\x04\xC3\t\xC3\x04\xC4\t\xC4\x04\xC5\t\xC5\x04\xC6\t\xC6\x04\xC7" + + "\t\xC7\x04\xC8\t\xC8\x04\xC9\t\xC9\x04\xCA\t\xCA\x04\xCB\t\xCB\x04\xCC" + + "\t\xCC\x04\xCD\t\xCD\x04\xCE\t\xCE\x04\xCF\t\xCF\x04\xD0\t\xD0\x04\xD1" + + "\t\xD1\x04\xD2\t\xD2\x04\xD3\t\xD3\x04\xD4\t\xD4\x04\xD5\t\xD5\x04\xD6" + + "\t\xD6\x04\xD7\t\xD7\x04\xD8\t\xD8\x04\xD9\t\xD9\x04\xDA\t\xDA\x04\xDB" + + "\t\xDB\x04\xDC\t\xDC\x04\xDD\t\xDD\x04\xDE\t\xDE\x04\xDF\t\xDF\x04\xE0" + + "\t\xE0\x04\xE1\t\xE1\x04\xE2\t\xE2\x04\xE3\t\xE3\x04\xE4\t\xE4\x04\xE5" + + "\t\xE5\x04\xE6\t\xE6\x04\xE7\t\xE7\x04\xE8\t\xE8\x04\xE9\t\xE9\x04\xEA" + + "\t\xEA\x04\xEB\t\xEB\x04\xEC\t\xEC\x04\xED\t\xED\x04\xEE\t\xEE\x04\xEF" + + "\t\xEF\x04\xF0\t\xF0\x04\xF1\t\xF1\x04\xF2\t\xF2\x04\xF3\t\xF3\x04\xF4" + + "\t\xF4\x04\xF5\t\xF5\x04\xF6\t\xF6\x04\xF7\t\xF7\x04\xF8\t\xF8\x04\xF9" + + "\t\xF9\x04\xFA\t\xFA\x04\xFB\t\xFB\x04\xFC\t\xFC\x04\xFD\t\xFD\x04\xFE" + + "\t\xFE\x04\xFF\t\xFF\x04\u0100\t\u0100\x04\u0101\t\u0101\x04\u0102\t\u0102" + + "\x04\u0103\t\u0103\x04\u0104\t\u0104\x04\u0105\t\u0105\x04\u0106\t\u0106" + + "\x04\u0107\t\u0107\x04\u0108\t\u0108\x04\u0109\t\u0109\x04\u010A\t\u010A" + + "\x04\u010B\t\u010B\x04\u010C\t\u010C\x04\u010D\t\u010D\x04\u010E\t\u010E" + + "\x04\u010F\t\u010F\x04\u0110\t\u0110\x04\u0111\t\u0111\x03\x02\x03\x02" + + "\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x03\x03" + + "\x03\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05\x03\x05" + + "\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x06\x03\x06\x03\x06\x03\x06" + + "\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07" + + "\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03" + + "\n\x03\n\x03\n\x03\n\x03\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + + "\f\x03\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03\x0E\x03\x0E\x03\x0E\x03\x0E" + + "\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F" + + "\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x03\x11\x03\x12\x03\x12\x03\x12" + + "\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x14\x03\x14" + + "\x03\x14\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16" + + "\x03\x16\x03\x16\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" + + "\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x19\x03\x19\x03\x19\x03\x19" + + "\x03\x1A\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1C\x03\x1C" + + "\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D" + + "\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D" + + "\x03\x1D\x03\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + + "\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + + "\x03\x1E\x03\x1E\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F" + + "\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03" + + "!\x03!\x03!\x03!\x03!\x03!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03" + + "\"\x03\"\x03\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#" + + "\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03" + + "$\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03" + + "%\x03%\x03%\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03" + + "&\x03&\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03" + + "\'\x03\'\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03" + + "(\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03*\x03*\x03" + + "*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03+\x03+\x03+\x03" + + "+\x03+\x03+\x03+\x03+\x03+\x03+\x03+\x03,\x03,\x03,\x03,\x03,\x03,\x03" + + ",\x03,\x03,\x03,\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03" + + "-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03.\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x03.\x03.\x03/\x03/\x03/\x03/\x03/\x030\x030\x030\x031\x03" + + "1\x031\x031\x032\x032\x032\x033\x033\x033\x033\x034\x034\x034\x034\x03" + + "5\x035\x035\x035\x035\x036\x036\x036\x036\x036\x036\x037\x037\x037\x03" + + "7\x037\x037\x037\x038\x038\x038\x038\x038\x038\x038\x038\x038\x039\x03" + + "9\x039\x039\x039\x039\x039\x039\x039\x03:\x03:\x03:\x03:\x03:\x03:\x03" + + ":\x03:\x03:\x03:\x03:\x03:\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03" + + ";\x03;\x03;\x03;\x03<\x03<\x03<\x03<\x03<\x03<\x03<\x03=\x03=\x03=\x03" + + "=\x03=\x03=\x03=\x03>\x03>\x03>\x03>\x03>\x03?\x03?\x03?\x03?\x03@\x03" + + "@\x03@\x03@\x03@\x03A\x03A\x03A\x03A\x03A\x03A\x03B\x03B\x03B\x03B\x03" + + "B\x03B\x03B\x03B\x03C\x03C\x03C\x03C\x03C\x03D\x03D\x03D\x03D\x03D\x03" + + "D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03" + + "E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03" + + "E\x03E\x03E\x03E\x03E\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03" + + "F\x03F\x03F\x03F\x03F\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03" + + "G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x03H\x03" + + "H\x03H\x03H\x03H\x03H\x03H\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03" + + "I\x03I\x03I\x03I\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03" + + "J\x03J\x03J\x03J\x03J\x03J\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03" + + "K\x03K\x03K\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03" + + "M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03N\x03N\x03N\x03N\x03N\x03" + + "N\x03N\x03N\x03N\x03N\x03N\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03" + + "O\x03O\x03P\x03P\x03P\x03P\x03P\x03P\x03P\x03Q\x03Q\x03Q\x03Q\x03Q\x03" + + "Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03R\x03R\x03R\x03R\x03S\x03S\x03S\x03" + + "S\x03S\x03S\x03S\x03S\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x03U\x03U\x03" + + "U\x03U\x03U\x03V\x03V\x03V\x03V\x03V\x03V\x03W\x03W\x03W\x03W\x03W\x03" + + "W\x03W\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03Y\x03Y\x03Z\x03Z\x03" + + "[\x03[\x03\\\x03\\\x03]\x03]\x03^\x03^\x03_\x03_\x03_\x03`\x03`\x03`\x03" + + "a\x03a\x03a\x03b\x03b\x03c\x03c\x03d\x03d\x03e\x03e\x03f\x03f\x03g\x03" + + "g\x03h\x03h\x03i\x03i\x03j\x03j\x03k\x03k\x03l\x03l\x03m\x03m\x03n\x03" + + "n\x03o\x03o\x03p\x03p\x03q\x03q\x03r\x03r\x03s\x03s\x03s\x03s\x03t\x03" + + "t\x03t\x03t\x03t\x03t\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03" + + "u\x03u\x03u\x03u\x03u\x03u\x03v\x03v\x03v\x03v\x03v\x03v\x03w\x03w\x03" + + "w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03x\x03x\x03x\x03x\x03" + + "y\x03y\x03y\x03y\x03y\x03z\x03z\x03z\x03z\x03z\x03z\x03z\x03{\x03{\x03" + + "{\x03{\x03|\x03|\x03|\x03|\x03|\x03}\x03}\x03}\x03}\x03}\x03}\x03~\x03" + + "~\x03~\x03~\x03~\x03~\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F" + + "\x03\x7F\x03\x80\x03\x80\x03\x80\x03\x80\x03\x81\x03\x81\x03\x81\x03\x81" + + "\x03\x81\x03\x81\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82" + + "\x03\x82\x03\x82\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83" + + "\x03\x83\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84" + + "\x03\x84\x03\x84\x03\x84\x03\x84\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85" + + "\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x86\x03\x86\x03\x86" + + "\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x87" + + "\x03\x87\x03\x87\x03\x87\x03\x87\x03\x87\x03\x88\x03\x88\x03\x88\x03\x88" + + "\x03\x88\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x8A\x03\x8A\x03\x8A" + + "\x03\x8A\x03\x8A\x03\x8A\x03\x8A\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8B" + + "\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + + "\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + + "\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8E\x03\x8E" + + "\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E" + + "\x03\x8E\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F" + + "\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90" + + "\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91" + + "\x03\x91\x03\x91\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92" + + "\x03\x92\x03\x92\x03\x92\x03\x92\x03\x93\x03\x93\x03\x93\x03\x93\x03\x93" + + "\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94" + + "\x03\x94\x03\x95\x03\x95\x03\x96\x03\x96\x03\x96\x03\x97\x03\x97\x03\x97" + + "\x03\x97\x03\x98\x03\x98\x03\x98\x03\x98\x03\x98\x03\x99\x03\x99\x03\x99" + + "\x03\x99\x03\x99\x03\x99\x03\x99\x03\x99\x03\x9A\x03\x9A\x03\x9A\x03\x9A" + + "\x03\x9A\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9C\x03\x9C" + + "\x03\x9D\x03\x9D\x03\x9D\x03\x9D\x03\x9E\x03\x9E\x03\x9E\x03\x9E\x03\x9E" + + "\x03\x9E\x03\x9F\x03\x9F\x03\x9F\x03\xA0\x03\xA0\x03\xA0\x03\xA0\x03\xA1" + + "\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA2\x03\xA2\x03\xA2\x03\xA2" + + "\x03\xA2\x03\xA3\x03\xA3\x03\xA3\x03\xA3\x03\xA4\x03\xA4\x03\xA4\x03\xA5" + + "\x03\xA5\x03\xA5\x03\xA5\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6" + + "\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA8\x03\xA8\x03\xA8\x03\xA8" + + "\x03\xA8\x03\xA8\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xAA\x03\xAA" + + "\x03\xAA\x03\xAA\x03\xAA\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB" + + "\x03\xAB\x03\xAB\x03\xAB\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAD" + + "\x03\xAD\x03\xAD\x03\xAD\x03\xAD\x03\xAE\x03\xAE\x03\xAE\x03\xAE\x03\xAE" + + "\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xB0\x03\xB0\x03\xB0" + + "\x03\xB0\x03\xB1\x03\xB1\x03\xB1\x03\xB1\x03\xB2\x03\xB2\x03\xB2\x03\xB2" + + "\x03\xB2\x03\xB2\x03\xB2\x03\xB2\x03\xB3\x03\xB3\x03\xB3\x03\xB3\x03\xB3" + + "\x03\xB3\x03\xB3\x03\xB3\x03\xB4\x03\xB4\x03\xB4\x03\xB4\x03\xB5\x03\xB5" + + "\x03\xB5\x03\xB5\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6" + + "\x03\xB6\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB8\x03\xB8\x03\xB8" + + "\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB9\x03\xB9\x03\xB9" + + "\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xBA\x03\xBA\x03\xBA" + + "\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBB" + + "\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB" + + "\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC" + + "\x03\xBC\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD" + + "\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE" + + "\x03\xBE\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF" + + "\x03\xBF\x03\xBF\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0" + + "\x03\xC0\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC2\x03\xC2\x03\xC2" + + "\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2" + + "\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3" + + "\x03\xC3\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4" + + "\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC5\x03\xC5\x03\xC5\x03\xC5\x03\xC5" + + "\x03\xC5\x03\xC5\x03\xC5\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6" + + "\x03\xC6\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7" + + "\x03\xC7\x03\xC7\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC9" + + "\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xCA\x03\xCA\x03\xCA\x03\xCA" + + "\x03\xCA\x03\xCB\x03\xCB\x03\xCB\x03\xCC\x03\xCC\x03\xCC\x03\xCC\x03\xCC" + + "\x03\xCC\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCE\x03\xCE" + + "\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCF\x03\xCF\x03\xCF\x03\xCF" + + "\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xD0\x03\xD0\x03\xD0" + + "\x03\xD0\x03\xD0\x03\xD0\x03\xD0\x03\xD1\x03\xD1\x03\xD1\x03\xD1\x03\xD1" + + "\x03\xD1\x03\xD1\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD3" + + "\x03\xD3\x03\xD3\x03\xD3\x03\xD3\x03\xD4\x03\xD4\x03\xD4\x03\xD4\x03\xD4" + + "\x03\xD4\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD6" + + "\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD7\x03\xD7" + + "\x03\xD7\x03\xD7\x03\xD7\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD9" + + "\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xDA\x03\xDA\x03\xDA" + + "\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDB\x03\xDB" + + "\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDC\x03\xDC\x03\xDC\x03\xDC" + + "\x03\xDC\x03\xDC\x03\xDC\x03\xDD\x03\xDD\x03\xDD\x03\xDE\x03\xDE\x03\xDE" + + "\x03\xDE\x03\xDE\x03\xDE\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF" + + "\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xE0\x03\xE0" + + "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + + "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + + "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + + "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + + "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + + "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + + "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE3" + + "\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE5\x03\xE5\x03\xE5\x03\xE5\x03\xE5" + + "\x03\xE5\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + + "\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + + "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7" + + "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + + "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + + "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + + "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + + "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + + "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xEA\x03\xEA\x03\xEA\x03\xEA\x03\xEA" + + "\x03\xEA\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + + "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + + "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + + "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + + "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xED\x03\xED\x03\xED" + + "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + + "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + + "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE" + + "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEF\x03\xEF\x03\xEF\x03\xEF" + + "\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xF0\x03\xF0\x03\xF0" + + "\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + + "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + + "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + + "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + + "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + + "\x03\xF2\x03\xF2\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3" + + "\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF4" + + "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + + "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + + "\x03\xF4\x03\xF4\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5" + + "\x03\xF5\x03\xF5\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6" + + "\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + + "\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + + "\x03\xF7\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8" + + "\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF9"; + private static readonly _serializedATNSegment1: string = + "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + + "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + + "\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFB" + + "\x03\xFB\x03\xFB\x03\xFB\x03\xFB\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC" + + "\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFD\x03\xFD" + + "\x03\xFD\x03\xFD\x03\xFD\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + + "\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + + "\x03\xFE\x03\xFE\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\u0100\x03" + + "\u0100\x03\u0100\x03\u0101\x03\u0101\x03\u0102\x03\u0102\x03\u0103\x03" + + "\u0103\x03\u0104\x03\u0104\x03\u0105\x03\u0105\x03\u0106\x03\u0106\x03" + + "\u0107\x03\u0107\x03\u0108\x06\u0108\u0A19\n\u0108\r\u0108\x0E\u0108\u0A1A" + + "\x03\u0109\x06\u0109\u0A1E\n\u0109\r\u0109\x0E\u0109\u0A1F\x05\u0109\u0A22" + + "\n\u0109\x03\u0109\x03\u0109\x06\u0109\u0A26\n\u0109\r\u0109\x0E\u0109" + + "\u0A27\x03\u010A\x03\u010A\x06\u010A\u0A2C\n\u010A\r\u010A\x0E\u010A\u0A2D" + + "\x07\u010A\u0A30\n\u010A\f\u010A\x0E\u010A\u0A33\v\u010A\x03\u010B\x06" + + "\u010B\u0A36\n\u010B\r\u010B\x0E\u010B\u0A37\x03\u010B\x07\u010B\u0A3B" + + "\n\u010B\f\u010B\x0E\u010B\u0A3E\v\u010B\x03\u010C\x03\u010C\x03\u010C" + + "\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x07\u010D" + + "\u0A49\n\u010D\f\u010D\x0E\u010D\u0A4C\v\u010D\x03\u010D\x03\u010D\x03" + + "\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x07\u010E\u0A56" + + "\n\u010E\f\u010E\x0E\u010E\u0A59\v\u010E\x03\u010E\x03\u010E\x03\u010F" + + "\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x07\u010F\u0A63\n\u010F" + + "\f\u010F\x0E\u010F\u0A66\v\u010F\x03\u010F\x03\u010F\x03\u0110\x03\u0110" + + "\x03\u0111\x03\u0111\x03\u0111\x03\u0111\x03\u0A37\x02\x02\u0112\x03\x02" + + "\x03\x05\x02\x04\x07\x02\x05\t\x02\x06\v\x02\x07\r\x02\b\x0F\x02\t\x11" + + "\x02\n\x13\x02\v\x15\x02\f\x17\x02\r\x19\x02\x0E\x1B\x02\x0F\x1D\x02\x10" + + "\x1F\x02\x11!\x02\x12#\x02\x13%\x02\x14\'\x02\x15)\x02\x16+\x02\x17-\x02" + + "\x18/\x02\x191\x02\x1A3\x02\x1B5\x02\x1C7\x02\x1D9\x02\x1E;\x02\x1F=\x02" + + " ?\x02!A\x02\"C\x02#E\x02$G\x02%I\x02&K\x02\'M\x02(O\x02)Q\x02*S\x02+" + + "U\x02,W\x02-Y\x02.[\x02/]\x020_\x021a\x022c\x023e\x024g\x025i\x026k\x02" + + "7m\x028o\x029q\x02:s\x02;u\x02{\x02?}\x02@\x7F\x02A\x81\x02" + + "B\x83\x02C\x85\x02D\x87\x02E\x89\x02F\x8B\x02G\x8D\x02H\x8F\x02I\x91\x02" + + "J\x93\x02K\x95\x02L\x97\x02M\x99\x02N\x9B\x02O\x9D\x02P\x9F\x02Q\xA1\x02" + + "R\xA3\x02S\xA5\x02T\xA7\x02U\xA9\x02V\xAB\x02W\xAD\x02X\xAF\x02Y\xB1\x02" + + "Z\xB3\x02[\xB5\x02\\\xB7\x02]\xB9\x02^\xBB\x02_\xBD\x02`\xBF\x02a\xC1" + + "\x02b\xC3\x02c\xC5\x02d\xC7\x02e\xC9\x02f\xCB\x02g\xCD\x02h\xCF\x02i\xD1" + + "\x02j\xD3\x02k\xD5\x02l\xD7\x02m\xD9\x02n\xDB\x02o\xDD\x02p\xDF\x02q\xE1" + + "\x02r\xE3\x02s\xE5\x02t\xE7\x02u\xE9\x02v\xEB\x02w\xED\x02x\xEF\x02y\xF1" + + "\x02z\xF3\x02{\xF5\x02|\xF7\x02}\xF9\x02~\xFB\x02\x7F\xFD\x02\x80\xFF" + + "\x02\x81\u0101\x02\x82\u0103\x02\x83\u0105\x02\x84\u0107\x02\x85\u0109" + + "\x02\x86\u010B\x02\x87\u010D\x02\x88\u010F\x02\x89\u0111\x02\x8A\u0113" + + "\x02\x8B\u0115\x02\x8C\u0117\x02\x8D\u0119\x02\x8E\u011B\x02\x8F\u011D" + + "\x02\x90\u011F\x02\x91\u0121\x02\x92\u0123\x02\x93\u0125\x02\x94\u0127" + + "\x02\x95\u0129\x02\x96\u012B\x02\x97\u012D\x02\x98\u012F\x02\x99\u0131" + + "\x02\x9A\u0133\x02\x9B\u0135\x02\x9C\u0137\x02\x9D\u0139\x02\x9E\u013B" + + "\x02\x9F\u013D\x02\xA0\u013F\x02\xA1\u0141\x02\xA2\u0143\x02\xA3\u0145" + + "\x02\xA4\u0147\x02\xA5\u0149\x02\xA6\u014B\x02\xA7\u014D\x02\xA8\u014F" + + "\x02\xA9\u0151\x02\xAA\u0153\x02\xAB\u0155\x02\xAC\u0157\x02\xAD\u0159" + + "\x02\xAE\u015B\x02\xAF\u015D\x02\xB0\u015F\x02\xB1\u0161\x02\xB2\u0163" + + "\x02\xB3\u0165\x02\xB4\u0167\x02\xB5\u0169\x02\xB6\u016B\x02\xB7\u016D" + + "\x02\xB8\u016F\x02\xB9\u0171\x02\xBA\u0173\x02\xBB\u0175\x02\xBC\u0177" + + "\x02\xBD\u0179\x02\xBE\u017B\x02\xBF\u017D\x02\xC0\u017F\x02\xC1\u0181" + + "\x02\xC2\u0183\x02\xC3\u0185\x02\xC4\u0187\x02\xC5\u0189\x02\xC6\u018B" + + "\x02\xC7\u018D\x02\xC8\u018F\x02\xC9\u0191\x02\xCA\u0193\x02\xCB\u0195" + + "\x02\xCC\u0197\x02\xCD\u0199\x02\xCE\u019B\x02\xCF\u019D\x02\xD0\u019F" + + "\x02\xD1\u01A1\x02\xD2\u01A3\x02\xD3\u01A5\x02\xD4\u01A7\x02\xD5\u01A9" + + "\x02\xD6\u01AB\x02\xD7\u01AD\x02\xD8\u01AF\x02\xD9\u01B1\x02\xDA\u01B3" + + "\x02\xDB\u01B5\x02\xDC\u01B7\x02\xDD\u01B9\x02\xDE\u01BB\x02\xDF\u01BD" + + "\x02\xE0\u01BF\x02\xE1\u01C1\x02\xE2\u01C3\x02\xE3\u01C5\x02\xE4\u01C7" + + "\x02\xE5\u01C9\x02\xE6\u01CB\x02\xE7\u01CD\x02\xE8\u01CF\x02\xE9\u01D1" + + "\x02\xEA\u01D3\x02\xEB\u01D5\x02\xEC\u01D7\x02\xED\u01D9\x02\xEE\u01DB" + + "\x02\xEF\u01DD\x02\xF0\u01DF\x02\xF1\u01E1\x02\xF2\u01E3\x02\xF3\u01E5" + + "\x02\xF4\u01E7\x02\xF5\u01E9\x02\xF6\u01EB\x02\xF7\u01ED\x02\xF8\u01EF" + + "\x02\xF9\u01F1\x02\xFA\u01F3\x02\xFB\u01F5\x02\xFC\u01F7\x02\xFD\u01F9" + + "\x02\xFE\u01FB\x02\xFF\u01FD\x02\u0100\u01FF\x02\u0101\u0201\x02\u0102" + + "\u0203\x02\u0103\u0205\x02\u0104\u0207\x02\u0105\u0209\x02\u0106\u020B" + + "\x02\u0107\u020D\x02\u0108\u020F\x02\u0109\u0211\x02\u010A\u0213\x02\x02" + + "\u0215\x02\x02\u0217\x02\u010B\u0219\x02\u010C\u021B\x02\u010D\u021D\x02" + + "\u010E\u021F\x02\x02\u0221\x02\u010F\x03\x02\n\x03\x02/0\x04\x02,,2;\x04" + + "\x02,,B\\\x07\x02,,//2;C\\aa\x04\x02$$^^\x04\x02))^^\x04\x02^^bb\x03\x02" + + "2;\x02\u0A7C\x02\x03\x03\x02\x02\x02\x02\x05\x03\x02\x02\x02\x02\x07\x03" + + "\x02\x02\x02\x02\t\x03\x02\x02\x02\x02\v\x03\x02\x02\x02\x02\r\x03\x02" + + "\x02\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03\x02\x02\x02\x02\x13\x03\x02" + + "\x02\x02\x02\x15\x03\x02\x02\x02\x02\x17\x03\x02\x02\x02\x02\x19\x03\x02" + + "\x02\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03\x02\x02\x02\x02\x1F\x03\x02" + + "\x02\x02\x02!\x03\x02\x02\x02\x02#\x03\x02\x02\x02\x02%\x03\x02\x02\x02" + + "\x02\'\x03\x02\x02\x02\x02)\x03\x02\x02\x02\x02+\x03\x02\x02\x02\x02-" + + "\x03\x02\x02\x02\x02/\x03\x02\x02\x02\x021\x03\x02\x02\x02\x023\x03\x02" + + "\x02\x02\x025\x03\x02\x02\x02\x027\x03\x02\x02\x02\x029\x03\x02\x02\x02" + + "\x02;\x03\x02\x02\x02\x02=\x03\x02\x02\x02\x02?\x03\x02\x02\x02\x02A\x03" + + "\x02\x02\x02\x02C\x03\x02\x02\x02\x02E\x03\x02\x02\x02\x02G\x03\x02\x02" + + "\x02\x02I\x03\x02\x02\x02\x02K\x03\x02\x02\x02\x02M\x03\x02\x02\x02\x02" + + "O\x03\x02\x02\x02\x02Q\x03\x02\x02\x02\x02S\x03\x02\x02\x02\x02U\x03\x02" + + "\x02\x02\x02W\x03\x02\x02\x02\x02Y\x03\x02\x02\x02\x02[\x03\x02\x02\x02" + + "\x02]\x03\x02\x02\x02\x02_\x03\x02\x02\x02\x02a\x03\x02\x02\x02\x02c\x03" + + "\x02\x02\x02\x02e\x03\x02\x02\x02\x02g\x03\x02\x02\x02\x02i\x03\x02\x02" + + "\x02\x02k\x03\x02\x02\x02\x02m\x03\x02\x02\x02\x02o\x03\x02\x02\x02\x02" + + "q\x03\x02\x02\x02\x02s\x03\x02\x02\x02\x02u\x03\x02\x02\x02\x02w\x03\x02" + + "\x02\x02\x02y\x03\x02\x02\x02\x02{\x03\x02\x02\x02\x02}\x03\x02\x02\x02" + + "\x02\x7F\x03\x02\x02\x02\x02\x81\x03\x02\x02\x02\x02\x83\x03\x02\x02\x02" + + "\x02\x85\x03\x02\x02\x02\x02\x87\x03\x02\x02\x02\x02\x89\x03\x02\x02\x02" + + "\x02\x8B\x03\x02\x02\x02\x02\x8D\x03\x02\x02\x02\x02\x8F\x03\x02\x02\x02" + + "\x02\x91\x03\x02\x02\x02\x02\x93\x03\x02\x02\x02\x02\x95\x03\x02\x02\x02" + + "\x02\x97\x03\x02\x02\x02\x02\x99\x03\x02\x02\x02\x02\x9B\x03\x02\x02\x02" + + "\x02\x9D\x03\x02\x02\x02\x02\x9F\x03\x02\x02\x02\x02\xA1\x03\x02\x02\x02" + + "\x02\xA3\x03\x02\x02\x02\x02\xA5\x03\x02\x02\x02\x02\xA7\x03\x02\x02\x02" + + "\x02\xA9\x03\x02\x02\x02\x02\xAB\x03\x02\x02\x02\x02\xAD\x03\x02\x02\x02" + + "\x02\xAF\x03\x02\x02\x02\x02\xB1\x03\x02\x02\x02\x02\xB3\x03\x02\x02\x02" + + "\x02\xB5\x03\x02\x02\x02\x02\xB7\x03\x02\x02\x02\x02\xB9\x03\x02\x02\x02" + + "\x02\xBB\x03\x02\x02\x02\x02\xBD\x03\x02\x02\x02\x02\xBF\x03\x02\x02\x02" + + "\x02\xC1\x03\x02\x02\x02\x02\xC3\x03\x02\x02\x02\x02\xC5\x03\x02\x02\x02" + + "\x02\xC7\x03\x02\x02\x02\x02\xC9\x03\x02\x02\x02\x02\xCB\x03\x02\x02\x02" + + "\x02\xCD\x03\x02\x02\x02\x02\xCF\x03\x02\x02\x02\x02\xD1\x03\x02\x02\x02" + + "\x02\xD3\x03\x02\x02\x02\x02\xD5\x03\x02\x02\x02\x02\xD7\x03\x02\x02\x02" + + "\x02\xD9\x03\x02\x02\x02\x02\xDB\x03\x02\x02\x02\x02\xDD\x03\x02\x02\x02" + + "\x02\xDF\x03\x02\x02\x02\x02\xE1\x03\x02\x02\x02\x02\xE3\x03\x02\x02\x02" + + "\x02\xE5\x03\x02\x02\x02\x02\xE7\x03\x02\x02\x02\x02\xE9\x03\x02\x02\x02" + + "\x02\xEB\x03\x02\x02\x02\x02\xED\x03\x02\x02\x02\x02\xEF\x03\x02\x02\x02" + + "\x02\xF1\x03\x02\x02\x02\x02\xF3\x03\x02\x02\x02\x02\xF5\x03\x02\x02\x02" + + "\x02\xF7\x03\x02\x02\x02\x02\xF9\x03\x02\x02\x02\x02\xFB\x03\x02\x02\x02" + + "\x02\xFD\x03\x02\x02\x02\x02\xFF\x03\x02\x02\x02\x02\u0101\x03\x02\x02" + + "\x02\x02\u0103\x03\x02\x02\x02\x02\u0105\x03\x02\x02\x02\x02\u0107\x03" + + "\x02\x02\x02\x02\u0109\x03\x02\x02\x02\x02\u010B\x03\x02\x02\x02\x02\u010D" + + "\x03\x02\x02\x02\x02\u010F\x03\x02\x02\x02\x02\u0111\x03\x02\x02\x02\x02" + + "\u0113\x03\x02\x02\x02\x02\u0115\x03\x02\x02\x02\x02\u0117\x03\x02\x02" + + "\x02\x02\u0119\x03\x02\x02\x02\x02\u011B\x03\x02\x02\x02\x02\u011D\x03" + + "\x02\x02\x02\x02\u011F\x03\x02\x02\x02\x02\u0121\x03\x02\x02\x02\x02\u0123" + + "\x03\x02\x02\x02\x02\u0125\x03\x02\x02\x02\x02\u0127\x03\x02\x02\x02\x02" + + "\u0129\x03\x02\x02\x02\x02\u012B\x03\x02\x02\x02\x02\u012D\x03\x02\x02" + + "\x02\x02\u012F\x03\x02\x02\x02\x02\u0131\x03\x02\x02\x02\x02\u0133\x03" + + "\x02\x02\x02\x02\u0135\x03\x02\x02\x02\x02\u0137\x03\x02\x02\x02\x02\u0139" + + "\x03\x02\x02\x02\x02\u013B\x03\x02\x02\x02\x02\u013D\x03\x02\x02\x02\x02" + + "\u013F\x03\x02\x02\x02\x02\u0141\x03\x02\x02\x02\x02\u0143\x03\x02\x02" + + "\x02\x02\u0145\x03\x02\x02\x02\x02\u0147\x03\x02\x02\x02\x02\u0149\x03" + + "\x02\x02\x02\x02\u014B\x03\x02\x02\x02\x02\u014D\x03\x02\x02\x02\x02\u014F" + + "\x03\x02\x02\x02\x02\u0151\x03\x02\x02\x02\x02\u0153\x03\x02\x02\x02\x02" + + "\u0155\x03\x02\x02\x02\x02\u0157\x03\x02\x02\x02\x02\u0159\x03\x02\x02" + + "\x02\x02\u015B\x03\x02\x02\x02\x02\u015D\x03\x02\x02\x02\x02\u015F\x03" + + "\x02\x02\x02\x02\u0161\x03\x02\x02\x02\x02\u0163\x03\x02\x02\x02\x02\u0165" + + "\x03\x02\x02\x02\x02\u0167\x03\x02\x02\x02\x02\u0169\x03\x02\x02\x02\x02" + + "\u016B\x03\x02\x02\x02\x02\u016D\x03\x02\x02\x02\x02\u016F\x03\x02\x02" + + "\x02\x02\u0171\x03\x02\x02\x02\x02\u0173\x03\x02\x02\x02\x02\u0175\x03" + + "\x02\x02\x02\x02\u0177\x03\x02\x02\x02\x02\u0179\x03\x02\x02\x02\x02\u017B" + + "\x03\x02\x02\x02\x02\u017D\x03\x02\x02\x02\x02\u017F\x03\x02\x02\x02\x02" + + "\u0181\x03\x02\x02\x02\x02\u0183\x03\x02\x02\x02\x02\u0185\x03\x02\x02" + + "\x02\x02\u0187\x03\x02\x02\x02\x02\u0189\x03\x02\x02\x02\x02\u018B\x03" + + "\x02\x02\x02\x02\u018D\x03\x02\x02\x02\x02\u018F\x03\x02\x02\x02\x02\u0191" + + "\x03\x02\x02\x02\x02\u0193\x03\x02\x02\x02\x02\u0195\x03\x02\x02\x02\x02" + + "\u0197\x03\x02\x02\x02\x02\u0199\x03\x02\x02\x02\x02\u019B\x03\x02\x02" + + "\x02\x02\u019D\x03\x02\x02\x02\x02\u019F\x03\x02\x02\x02\x02\u01A1\x03" + + "\x02\x02\x02\x02\u01A3\x03\x02\x02\x02\x02\u01A5\x03\x02\x02\x02\x02\u01A7" + + "\x03\x02\x02\x02\x02\u01A9\x03\x02\x02\x02\x02\u01AB\x03\x02\x02\x02\x02" + + "\u01AD\x03\x02\x02\x02\x02\u01AF\x03\x02\x02\x02\x02\u01B1\x03\x02\x02" + + "\x02\x02\u01B3\x03\x02\x02\x02\x02\u01B5\x03\x02\x02\x02\x02\u01B7\x03" + + "\x02\x02\x02\x02\u01B9\x03\x02\x02\x02\x02\u01BB\x03\x02\x02\x02\x02\u01BD" + + "\x03\x02\x02\x02\x02\u01BF\x03\x02\x02\x02\x02\u01C1\x03\x02\x02\x02\x02" + + "\u01C3\x03\x02\x02\x02\x02\u01C5\x03\x02\x02\x02\x02\u01C7\x03\x02\x02" + + "\x02\x02\u01C9\x03\x02\x02\x02\x02\u01CB\x03\x02\x02\x02\x02\u01CD\x03" + + "\x02\x02\x02\x02\u01CF\x03\x02\x02\x02\x02\u01D1\x03\x02\x02\x02\x02\u01D3" + + "\x03\x02\x02\x02\x02\u01D5\x03\x02\x02\x02\x02\u01D7\x03\x02\x02\x02\x02" + + "\u01D9\x03\x02\x02\x02\x02\u01DB\x03\x02\x02\x02\x02\u01DD\x03\x02\x02" + + "\x02\x02\u01DF\x03\x02\x02\x02\x02\u01E1\x03\x02\x02\x02\x02\u01E3\x03" + + "\x02\x02\x02\x02\u01E5\x03\x02\x02\x02\x02\u01E7\x03\x02\x02\x02\x02\u01E9" + + "\x03\x02\x02\x02\x02\u01EB\x03\x02\x02\x02\x02\u01ED\x03\x02\x02\x02\x02" + + "\u01EF\x03\x02\x02\x02\x02\u01F1\x03\x02\x02\x02\x02\u01F3\x03\x02\x02" + + "\x02\x02\u01F5\x03\x02\x02\x02\x02\u01F7\x03\x02\x02\x02\x02\u01F9\x03" + + "\x02\x02\x02\x02\u01FB\x03\x02\x02\x02\x02\u01FD\x03\x02\x02\x02\x02\u01FF" + + "\x03\x02\x02\x02\x02\u0201\x03\x02\x02\x02\x02\u0203\x03\x02\x02\x02\x02" + + "\u0205\x03\x02\x02\x02\x02\u0207\x03\x02\x02\x02\x02\u0209\x03\x02\x02" + + "\x02\x02\u020B\x03\x02\x02\x02\x02\u020D\x03\x02\x02\x02\x02\u020F\x03" + + "\x02\x02\x02\x02\u0211\x03\x02\x02\x02\x02\u0217\x03\x02\x02\x02\x02\u0219" + + "\x03\x02\x02\x02\x02\u021B\x03\x02\x02\x02\x02\u021D\x03\x02\x02\x02\x02" + + "\u0221\x03\x02\x02\x02\x03\u0223\x03\x02\x02\x02\x05\u022A\x03\x02\x02" + + "\x02\x07\u022F\x03\x02\x02\x02\t\u0235\x03\x02\x02\x02\v\u023C\x03\x02" + + "\x02\x02\r\u0243\x03\x02\x02\x02\x0F\u0249\x03\x02\x02\x02\x11\u024F\x03" + + "\x02\x02\x02\x13\u0254\x03\x02\x02\x02\x15\u0259\x03\x02\x02\x02\x17\u025E" + + "\x03\x02\x02\x02\x19\u0262\x03\x02\x02\x02\x1B\u0267\x03\x02\x02\x02\x1D" + + "\u026D\x03\x02\x02\x02\x1F\u0274\x03\x02\x02\x02!\u0277\x03\x02\x02\x02" + + "#\u027A\x03\x02\x02\x02%\u027D\x03\x02\x02\x02\'\u0284\x03\x02\x02\x02" + + ")\u028A\x03\x02\x02\x02+\u028C\x03\x02\x02\x02-\u0291\x03\x02\x02\x02" + + "/\u0298\x03\x02\x02\x021\u029D\x03\x02\x02\x023\u02A1\x03\x02\x02\x02" + + "5\u02A4\x03\x02\x02\x027\u02A8\x03\x02\x02\x029\u02B2\x03\x02\x02\x02" + + ";\u02BE\x03\x02\x02\x02=\u02D0\x03\x02\x02\x02?\u02DB\x03\x02\x02\x02" + + "A\u02E2\x03\x02\x02\x02C\u02E8\x03\x02\x02\x02E\u02F2\x03\x02\x02\x02" + + "G\u02FD\x03\x02\x02\x02I\u030B\x03\x02\x02\x02K\u031B\x03\x02\x02\x02" + + "M\u0328\x03\x02\x02\x02O\u0334\x03\x02\x02\x02Q\u0341\x03\x02\x02\x02" + + "S\u034C\x03\x02\x02\x02U\u0359\x03\x02\x02\x02W\u0364\x03\x02\x02\x02" + + "Y\u036E\x03\x02\x02\x02[\u0381\x03\x02\x02\x02]\u0399\x03\x02\x02\x02" + + "_\u039E\x03\x02\x02\x02a\u03A1\x03\x02\x02\x02c\u03A5\x03\x02\x02\x02" + + "e\u03A8\x03\x02\x02\x02g\u03AC\x03\x02\x02\x02i\u03B0\x03\x02\x02\x02" + + "k\u03B5\x03\x02\x02\x02m\u03BB\x03\x02\x02\x02o\u03C2\x03\x02\x02\x02" + + "q\u03CB\x03\x02\x02\x02s\u03D4\x03\x02\x02\x02u\u03E0\x03\x02\x02\x02" + + "w\u03EC\x03\x02\x02\x02y\u03F3\x03\x02\x02\x02{\u03FA\x03\x02\x02\x02" + + "}\u03FF\x03\x02\x02\x02\x7F\u0403\x03\x02\x02\x02\x81\u0408\x03\x02\x02" + + "\x02\x83\u040E\x03\x02\x02\x02\x85\u0416\x03\x02\x02\x02\x87\u041B\x03" + + "\x02\x02\x02\x89\u042E\x03\x02\x02\x02\x8B\u0441\x03\x02\x02\x02\x8D\u044F" + + "\x03\x02\x02\x02\x8F\u0460\x03\x02\x02\x02\x91\u046C\x03\x02\x02\x02\x93" + + "\u0478\x03\x02\x02\x02\x95\u0488\x03\x02\x02\x02\x97\u0493\x03\x02\x02" + + "\x02\x99\u049E\x03\x02\x02\x02\x9B\u04A7\x03\x02\x02\x02\x9D\u04B2\x03" + + "\x02\x02\x02\x9F\u04BC\x03\x02\x02\x02\xA1\u04C3\x03\x02\x02\x02\xA3\u04CF" + + "\x03\x02\x02\x02\xA5\u04D3\x03\x02\x02\x02\xA7\u04DB\x03\x02\x02\x02\xA9" + + "\u04E2\x03\x02\x02\x02\xAB\u04E7\x03\x02\x02\x02\xAD\u04ED\x03\x02\x02" + + "\x02\xAF\u04F4\x03\x02\x02\x02\xB1\u04FC\x03\x02\x02\x02\xB3\u04FE\x03" + + "\x02\x02\x02\xB5\u0500\x03\x02\x02\x02\xB7\u0502\x03\x02\x02\x02\xB9\u0504" + + "\x03\x02\x02\x02\xBB\u0506\x03\x02\x02\x02\xBD\u0508\x03\x02\x02\x02\xBF" + + "\u050B\x03\x02\x02\x02\xC1\u050E\x03\x02\x02\x02\xC3\u0511\x03\x02\x02" + + "\x02\xC5\u0513\x03\x02\x02\x02\xC7\u0515\x03\x02\x02\x02\xC9\u0517\x03" + + "\x02\x02\x02\xCB\u0519\x03\x02\x02\x02\xCD\u051B\x03\x02\x02\x02\xCF\u051D" + + "\x03\x02\x02\x02\xD1\u051F\x03\x02\x02\x02\xD3\u0521\x03\x02\x02\x02\xD5" + + "\u0523\x03\x02\x02\x02\xD7\u0525\x03\x02\x02\x02\xD9\u0527\x03\x02\x02" + + "\x02\xDB\u0529\x03\x02\x02\x02\xDD\u052B\x03\x02\x02\x02\xDF\u052D\x03" + + "\x02\x02\x02\xE1\u052F\x03\x02\x02\x02\xE3\u0531\x03\x02\x02\x02\xE5\u0533" + + "\x03\x02\x02\x02\xE7\u0537\x03\x02\x02\x02\xE9\u053D\x03\x02\x02\x02\xEB" + + "\u054C\x03\x02\x02\x02\xED\u0552\x03\x02\x02\x02\xEF\u055E\x03\x02\x02" + + "\x02\xF1\u0562\x03\x02\x02\x02\xF3\u0567\x03\x02\x02\x02\xF5\u056E\x03" + + "\x02\x02\x02\xF7\u0572\x03\x02\x02\x02\xF9\u0577\x03\x02\x02\x02\xFB\u057D" + + "\x03\x02\x02\x02\xFD\u0583\x03\x02\x02\x02\xFF\u058A\x03\x02\x02\x02\u0101" + + "\u058E\x03\x02\x02\x02\u0103\u0594\x03\x02\x02\x02\u0105\u059D\x03\x02" + + "\x02\x02\u0107\u05A5\x03\x02\x02\x02\u0109\u05B1\x03\x02\x02\x02\u010B" + + "\u05BC\x03\x02\x02\x02\u010D\u05C7\x03\x02\x02\x02\u010F\u05CD\x03\x02" + + "\x02\x02\u0111\u05D2\x03\x02\x02\x02\u0113\u05D7\x03\x02\x02\x02\u0115" + + "\u05DE\x03\x02\x02\x02\u0117\u05E7\x03\x02\x02\x02\u0119\u05F5\x03\x02" + + "\x02\x02\u011B\u05FC\x03\x02\x02\x02\u011D\u0608\x03\x02\x02\x02\u011F" + + "\u0610\x03\x02\x02\x02\u0121\u0619\x03\x02\x02\x02\u0123\u0624\x03\x02" + + "\x02\x02\u0125\u062F\x03\x02\x02\x02\u0127\u0634\x03\x02\x02\x02\u0129" + + "\u063E\x03\x02\x02\x02\u012B\u0640\x03\x02\x02\x02\u012D\u0643\x03\x02" + + "\x02\x02\u012F\u0647\x03\x02\x02\x02\u0131\u064C\x03\x02\x02\x02\u0133" + + "\u0654\x03\x02\x02\x02\u0135\u0659\x03\x02\x02\x02\u0137\u065F\x03\x02" + + "\x02\x02\u0139\u0661\x03\x02\x02\x02\u013B\u0665\x03\x02\x02\x02\u013D" + + "\u066B\x03\x02\x02\x02\u013F\u066E\x03\x02\x02\x02\u0141\u0672\x03\x02" + + "\x02\x02\u0143\u0678\x03\x02\x02\x02\u0145\u067D\x03\x02\x02\x02\u0147" + + "\u0681\x03\x02\x02\x02\u0149\u0684\x03\x02\x02\x02\u014B\u0688\x03\x02" + + "\x02\x02\u014D\u068E\x03\x02\x02\x02\u014F\u0693\x03\x02\x02\x02\u0151" + + "\u0699\x03\x02\x02\x02\u0153\u069E\x03\x02\x02\x02\u0155\u06A3\x03\x02" + + "\x02\x02\u0157\u06AC\x03\x02\x02\x02\u0159\u06B1\x03\x02\x02\x02\u015B" + + "\u06B6\x03\x02\x02\x02\u015D\u06BB\x03\x02\x02\x02\u015F\u06C1\x03\x02" + + "\x02\x02\u0161\u06C5\x03\x02\x02\x02\u0163\u06C9\x03\x02\x02\x02\u0165" + + "\u06D1\x03\x02\x02\x02\u0167\u06D9\x03\x02\x02\x02\u0169\u06DD\x03\x02" + + "\x02\x02\u016B\u06E1\x03\x02\x02\x02\u016D\u06E9\x03\x02\x02\x02\u016F" + + "\u06EE\x03\x02\x02\x02\u0171\u06F7\x03\x02\x02\x02\u0173\u0700\x03\x02" + + "\x02\x02\u0175\u070B\x03\x02\x02\x02\u0177\u0715\x03\x02\x02\x02\u0179" + + "\u071F\x03\x02\x02\x02\u017B\u0727\x03\x02\x02\x02\u017D\u0731\x03\x02" + + "\x02\x02\u017F\u073B\x03\x02\x02\x02\u0181\u0743\x03\x02\x02\x02\u0183" + + "\u0748\x03\x02\x02\x02\u0185\u0754\x03\x02\x02\x02\u0187\u075E\x03\x02" + + "\x02\x02\u0189\u076A\x03\x02\x02\x02\u018B\u0772\x03\x02\x02\x02\u018D" + + "\u0779\x03\x02\x02\x02\u018F\u0783\x03\x02\x02\x02\u0191\u0789\x03\x02" + + "\x02\x02\u0193\u078F\x03\x02\x02\x02\u0195\u0794\x03\x02\x02\x02\u0197" + + "\u0797\x03\x02\x02\x02\u0199\u079D\x03\x02\x02\x02\u019B\u07A3\x03\x02" + + "\x02\x02\u019D\u07AA\x03\x02\x02\x02\u019F\u07B4\x03\x02\x02\x02\u01A1" + + "\u07BB\x03\x02\x02\x02\u01A3\u07C2\x03\x02\x02\x02\u01A5\u07C8\x03\x02" + + "\x02\x02\u01A7\u07CD\x03\x02\x02\x02\u01A9\u07D3\x03\x02\x02\x02\u01AB" + + "\u07DA\x03\x02\x02\x02\u01AD\u07E2\x03\x02\x02\x02\u01AF\u07E7\x03\x02" + + "\x02\x02\u01B1\u07EC\x03\x02\x02\x02\u01B3\u07F3\x03\x02\x02\x02\u01B5" + + "\u07FD\x03\x02\x02\x02\u01B7\u0804\x03\x02\x02\x02\u01B9\u080B\x03\x02" + + "\x02\x02\u01BB\u080E\x03\x02\x02\x02\u01BD\u0814\x03\x02\x02\x02\u01BF" + + "\u0821\x03\x02\x02\x02\u01C1\u0835\x03\x02\x02\x02\u01C3\u084C\x03\x02" + + "\x02\x02\u01C5\u085D\x03\x02\x02\x02\u01C7\u0866\x03\x02\x02\x02\u01C9" + + "\u088A\x03\x02\x02\x02\u01CB\u0890\x03\x02\x02\x02\u01CD\u08A1\x03\x02" + + "\x02\x02\u01CF\u08AF\x03\x02\x02\x02\u01D1\u08C0\x03\x02\x02\x02\u01D3" + + "\u08DB\x03\x02\x02\x02\u01D5\u08E1\x03\x02\x02\x02\u01D7\u08F6\x03\x02" + + "\x02\x02\u01D9\u090A\x03\x02\x02\x02\u01DB\u091F\x03\x02\x02\x02\u01DD" + + "\u092D\x03\x02\x02\x02\u01DF\u0937\x03\x02\x02\x02\u01E1\u093F\x03\x02" + + "\x02\x02\u01E3\u0951\x03\x02\x02\x02\u01E5\u0969\x03\x02\x02\x02\u01E7" + + "\u0978\x03\x02\x02\x02\u01E9\u098D\x03\x02\x02\x02\u01EB\u0996\x03\x02" + + "\x02\x02\u01ED\u09A2\x03\x02\x02\x02\u01EF\u09B0\x03\x02\x02\x02\u01F1" + + "\u09BF\x03\x02\x02\x02\u01F3\u09D2\x03\x02\x02\x02\u01F5\u09DA\x03\x02" + + "\x02\x02\u01F7\u09DF\x03\x02\x02\x02\u01F9\u09EB\x03\x02\x02\x02\u01FB" + + "\u09F0\x03\x02\x02\x02\u01FD\u0A01\x03\x02\x02\x02\u01FF\u0A06\x03\x02" + + "\x02\x02\u0201\u0A09\x03\x02\x02\x02\u0203\u0A0B\x03\x02\x02\x02\u0205" + + "\u0A0D\x03\x02\x02\x02\u0207\u0A0F\x03\x02\x02\x02\u0209\u0A11\x03\x02" + + "\x02\x02\u020B\u0A13\x03\x02\x02\x02\u020D\u0A15\x03\x02\x02\x02\u020F" + + "\u0A18\x03\x02\x02\x02\u0211\u0A21\x03\x02\x02\x02\u0213\u0A31\x03\x02" + + "\x02\x02\u0215\u0A35\x03\x02\x02\x02\u0217\u0A3F\x03\x02\x02\x02\u0219" + + "\u0A42\x03\x02\x02\x02\u021B\u0A4F\x03\x02\x02\x02\u021D\u0A5C\x03\x02" + + "\x02\x02\u021F\u0A69\x03\x02\x02\x02\u0221\u0A6B\x03\x02\x02\x02\u0223" + + "\u0224\x07U\x02\x02\u0224\u0225\x07G\x02\x02\u0225\u0226\x07C\x02\x02" + + "\u0226\u0227\x07T\x02\x02\u0227\u0228\x07E\x02\x02\u0228\u0229\x07J\x02" + + "\x02\u0229\x04\x03\x02\x02\x02\u022A\u022B\x07H\x02\x02\u022B\u022C\x07" + + "T\x02\x02\u022C\u022D\x07Q\x02\x02\u022D\u022E\x07O\x02\x02\u022E\x06" + + "\x03\x02\x02\x02\u022F\u0230\x07Y\x02\x02\u0230\u0231\x07J\x02\x02\u0231" + + "\u0232\x07G\x02\x02\u0232\u0233\x07T\x02\x02\u0233\u0234\x07G\x02\x02" + + "\u0234\b\x03\x02\x02\x02\u0235\u0236\x07H\x02\x02\u0236\u0237\x07K\x02" + + "\x02\u0237\u0238\x07G\x02\x02\u0238\u0239\x07N\x02\x02\u0239\u023A\x07" + + "F\x02\x02\u023A\u023B\x07U\x02\x02\u023B\n\x03\x02\x02\x02\u023C\u023D" + + "\x07T\x02\x02\u023D\u023E\x07G\x02\x02\u023E\u023F\x07P\x02\x02\u023F" + + "\u0240\x07C\x02\x02\u0240\u0241\x07O\x02\x02\u0241\u0242\x07G\x02\x02" + + "\u0242\f\x03\x02\x02\x02\u0243\u0244\x07U\x02\x02\u0244\u0245\x07V\x02" + + "\x02\u0245\u0246\x07C\x02\x02\u0246\u0247\x07V\x02\x02\u0247\u0248\x07" + + "U\x02\x02\u0248\x0E\x03\x02\x02\x02\u0249\u024A\x07F\x02\x02\u024A\u024B" + + "\x07G\x02\x02\u024B\u024C\x07F\x02\x02\u024C\u024D\x07W\x02\x02\u024D" + + "\u024E\x07R\x02\x02\u024E\x10\x03\x02\x02\x02\u024F\u0250\x07U\x02\x02" + + "\u0250\u0251\x07Q\x02\x02\u0251\u0252\x07T\x02\x02\u0252\u0253\x07V\x02" + + "\x02\u0253\x12\x03\x02\x02\x02\u0254\u0255\x07G\x02\x02\u0255\u0256\x07" + + "X\x02\x02\u0256\u0257\x07C\x02\x02\u0257\u0258\x07N\x02\x02\u0258\x14" + + "\x03\x02\x02\x02\u0259\u025A\x07J\x02\x02\u025A\u025B\x07G\x02\x02\u025B" + + "\u025C\x07C\x02\x02\u025C\u025D\x07F\x02\x02\u025D\x16\x03\x02\x02\x02" + + "\u025E\u025F\x07V\x02\x02\u025F\u0260\x07Q\x02\x02\u0260\u0261\x07R\x02" + + "\x02\u0261\x18\x03\x02\x02\x02\u0262\u0263\x07T\x02\x02\u0263\u0264\x07" + + "C\x02\x02\u0264\u0265\x07T\x02\x02\u0265\u0266\x07G\x02\x02\u0266\x1A" + + "\x03\x02\x02\x02\u0267\u0268\x07R\x02\x02\u0268\u0269\x07C\x02\x02\u0269" + + "\u026A\x07T\x02\x02\u026A\u026B\x07U\x02\x02\u026B\u026C\x07G\x02\x02" + + "\u026C\x1C\x03\x02\x02\x02\u026D\u026E\x07M\x02\x02\u026E\u026F\x07O\x02" + + "\x02\u026F\u0270\x07G\x02\x02\u0270\u0271\x07C\x02\x02\u0271\u0272\x07" + + "P\x02\x02\u0272\u0273\x07U\x02\x02\u0273\x1E\x03\x02\x02\x02\u0274\u0275" + + "\x07C\x02\x02\u0275\u0276\x07F\x02\x02\u0276 \x03\x02\x02\x02\u0277\u0278" + + "\x07"; + private static readonly _serializedATNSegment2: string = + "C\x02\x02\u0278\u0279\x07U\x02\x02\u0279\"\x03\x02\x02\x02\u027A\u027B" + + "\x07D\x02\x02\u027B\u027C\x07[\x02\x02\u027C$\x03\x02\x02\x02\u027D\u027E" + + "\x07U\x02\x02\u027E\u027F\x07Q\x02\x02\u027F\u0280\x07W\x02\x02\u0280" + + "\u0281\x07T\x02\x02\u0281\u0282\x07E\x02\x02\u0282\u0283\x07G\x02\x02" + + "\u0283&\x03\x02\x02\x02\u0284\u0285\x07K\x02\x02\u0285\u0286\x07P\x02" + + "\x02\u0286\u0287\x07F\x02\x02\u0287\u0288\x07G\x02\x02\u0288\u0289\x07" + + "Z\x02\x02\u0289(\x03\x02\x02\x02\u028A\u028B\x07F\x02\x02\u028B*\x03\x02" + + "\x02\x02\u028C\u028D\x07F\x02\x02\u028D\u028E\x07G\x02\x02\u028E\u028F" + + "\x07U\x02\x02\u028F\u0290\x07E\x02\x02\u0290,\x03\x02\x02\x02\u0291\u0292" + + "\x07U\x02\x02\u0292\u0293\x07Q\x02\x02\u0293\u0294\x07T\x02\x02\u0294" + + "\u0295\x07V\x02\x02\u0295\u0296\x07D\x02\x02\u0296\u0297\x07[\x02\x02" + + "\u0297.\x03\x02\x02\x02\u0298\u0299\x07C\x02\x02\u0299\u029A\x07W\x02" + + "\x02\u029A\u029B\x07V\x02\x02\u029B\u029C\x07Q\x02\x02\u029C0\x03\x02" + + "\x02\x02\u029D\u029E\x07U\x02\x02\u029E\u029F\x07V\x02\x02\u029F\u02A0" + + "\x07T\x02\x02\u02A02\x03\x02\x02\x02\u02A1\u02A2\x07K\x02\x02\u02A2\u02A3" + + "\x07R\x02\x02\u02A34\x03\x02\x02\x02\u02A4\u02A5\x07P\x02\x02\u02A5\u02A6" + + "\x07W\x02\x02\u02A6\u02A7\x07O\x02\x02\u02A76\x03\x02\x02\x02\u02A8\u02A9" + + "\x07M\x02\x02\u02A9\u02AA\x07G\x02\x02\u02AA\u02AB\x07G\x02\x02\u02AB" + + "\u02AC\x07R\x02\x02\u02AC\u02AD\x07G\x02\x02\u02AD\u02AE\x07O\x02\x02" + + "\u02AE\u02AF\x07R\x02\x02\u02AF\u02B0\x07V\x02\x02\u02B0\u02B1\x07[\x02" + + "\x02\u02B18\x03\x02\x02\x02\u02B2\u02B3\x07E\x02\x02\u02B3\u02B4\x07Q" + + "\x02\x02\u02B4\u02B5\x07P\x02\x02\u02B5\u02B6\x07U\x02\x02\u02B6\u02B7" + + "\x07G\x02\x02\u02B7\u02B8\x07E\x02\x02\u02B8\u02B9\x07W\x02\x02\u02B9" + + "\u02BA\x07V\x02\x02\u02BA\u02BB\x07K\x02\x02\u02BB\u02BC\x07X\x02\x02" + + "\u02BC\u02BD\x07G\x02\x02\u02BD:\x03\x02\x02\x02\u02BE\u02BF\x07F\x02" + + "\x02\u02BF\u02C0\x07G\x02\x02\u02C0\u02C1\x07F\x02\x02\u02C1\u02C2\x07" + + "W\x02\x02\u02C2\u02C3\x07R\x02\x02\u02C3\u02C4\x07a\x02\x02\u02C4\u02C5" + + "\x07U\x02\x02\u02C5\u02C6\x07R\x02\x02\u02C6\u02C7\x07N\x02\x02\u02C7" + + "\u02C8\x07K\x02\x02\u02C8\u02C9\x07V\x02\x02\u02C9\u02CA\x07X\x02\x02" + + "\u02CA\u02CB\x07C\x02\x02\u02CB\u02CC\x07N\x02\x02\u02CC\u02CD\x07W\x02" + + "\x02\u02CD\u02CE\x07G\x02\x02\u02CE\u02CF\x07U\x02\x02\u02CF<\x03\x02" + + "\x02\x02\u02D0\u02D1\x07R\x02\x02\u02D1\u02D2\x07C\x02\x02\u02D2\u02D3" + + "\x07T\x02\x02\u02D3\u02D4\x07V\x02\x02\u02D4\u02D5\x07K\x02\x02\u02D5" + + "\u02D6\x07V\x02\x02\u02D6\u02D7\x07K\x02\x02\u02D7\u02D8\x07Q\x02\x02" + + "\u02D8\u02D9\x07P\x02\x02\u02D9\u02DA\x07U\x02\x02\u02DA>\x03\x02\x02" + + "\x02\u02DB\u02DC\x07C\x02\x02\u02DC\u02DD\x07N\x02\x02\u02DD\u02DE\x07" + + "N\x02\x02\u02DE\u02DF\x07P\x02\x02\u02DF\u02E0\x07W\x02\x02\u02E0\u02E1" + + "\x07O\x02\x02\u02E1@\x03\x02\x02\x02\u02E2\u02E3\x07F\x02\x02\u02E3\u02E4" + + "\x07G\x02\x02\u02E4\u02E5\x07N\x02\x02\u02E5\u02E6\x07K\x02\x02\u02E6" + + "\u02E7\x07O\x02\x02\u02E7B\x03\x02\x02\x02\u02E8\u02E9\x07E\x02\x02\u02E9" + + "\u02EA\x07G\x02\x02\u02EA\u02EB\x07P\x02\x02\u02EB\u02EC\x07V\x02\x02" + + "\u02EC\u02ED\x07T\x02\x02\u02ED\u02EE\x07Q\x02\x02\u02EE\u02EF\x07K\x02" + + "\x02\u02EF\u02F0\x07F\x02\x02\u02F0\u02F1\x07U\x02\x02\u02F1D\x03\x02" + + "\x02\x02\u02F2\u02F3\x07K\x02\x02\u02F3\u02F4\x07V\x02\x02\u02F4\u02F5" + + "\x07G\x02\x02\u02F5\u02F6\x07T\x02\x02\u02F6\u02F7\x07C\x02\x02\u02F7" + + "\u02F8\x07V\x02\x02\u02F8\u02F9\x07K\x02\x02\u02F9\u02FA\x07Q\x02\x02" + + "\u02FA\u02FB\x07P\x02\x02\u02FB\u02FC\x07U\x02\x02\u02FCF\x03\x02\x02" + + "\x02\u02FD\u02FE\x07F\x02\x02\u02FE\u02FF\x07K\x02\x02\u02FF\u0300\x07" + + "U\x02\x02\u0300\u0301\x07V\x02\x02\u0301\u0302\x07C\x02\x02\u0302\u0303" + + "\x07P\x02\x02\u0303\u0304\x07E\x02\x02\u0304\u0305\x07G\x02\x02\u0305" + + "\u0306\x07a\x02\x02\u0306\u0307\x07V\x02\x02\u0307\u0308\x07[\x02\x02" + + "\u0308\u0309\x07R\x02\x02\u0309\u030A\x07G\x02\x02\u030AH\x03\x02\x02" + + "\x02\u030B\u030C\x07P\x02\x02\u030C\u030D\x07W\x02\x02\u030D\u030E\x07" + + "O\x02\x02\u030E\u030F\x07D\x02\x02\u030F\u0310\x07G\x02\x02\u0310\u0311" + + "\x07T\x02\x02\u0311\u0312\x07a\x02\x02\u0312\u0313\x07Q\x02\x02\u0313" + + "\u0314\x07H\x02\x02\u0314\u0315\x07a\x02\x02\u0315\u0316\x07V\x02\x02" + + "\u0316\u0317\x07T\x02\x02\u0317\u0318\x07G\x02\x02\u0318\u0319\x07G\x02" + + "\x02\u0319\u031A\x07U\x02\x02\u031AJ\x03\x02\x02\x02\u031B\u031C\x07U" + + "\x02\x02\u031C\u031D\x07J\x02\x02\u031D\u031E\x07K\x02\x02\u031E\u031F" + + "\x07P\x02\x02\u031F\u0320\x07I\x02\x02\u0320\u0321\x07N\x02\x02\u0321" + + "\u0322\x07G\x02\x02\u0322\u0323\x07a\x02\x02\u0323\u0324\x07U\x02\x02" + + "\u0324\u0325\x07K\x02\x02\u0325\u0326\x07\\\x02\x02\u0326\u0327\x07G\x02" + + "\x02\u0327L\x03\x02\x02\x02\u0328\u0329\x07U\x02\x02\u0329\u032A\x07C" + + "\x02\x02\u032A\u032B\x07O\x02\x02\u032B\u032C\x07R\x02\x02\u032C\u032D" + + "\x07N\x02\x02\u032D\u032E\x07G\x02\x02\u032E\u032F\x07a\x02\x02\u032F" + + "\u0330\x07U\x02\x02\u0330\u0331\x07K\x02\x02\u0331\u0332\x07\\\x02\x02" + + "\u0332\u0333\x07G\x02\x02\u0333N\x03\x02\x02\x02\u0334\u0335\x07Q\x02" + + "\x02\u0335\u0336\x07W\x02\x02\u0336\u0337\x07V\x02\x02\u0337\u0338\x07" + + "R\x02\x02\u0338\u0339\x07W\x02\x02\u0339\u033A\x07V\x02\x02\u033A\u033B" + + "\x07a\x02\x02\u033B\u033C\x07C\x02\x02\u033C\u033D\x07H\x02\x02\u033D" + + "\u033E\x07V\x02\x02\u033E\u033F\x07G\x02\x02\u033F\u0340\x07T\x02\x02" + + "\u0340P\x03\x02\x02\x02\u0341\u0342\x07V\x02\x02\u0342\u0343\x07K\x02" + + "\x02\u0343\u0344\x07O\x02\x02\u0344\u0345\x07G\x02\x02\u0345\u0346\x07" + + "a\x02\x02\u0346\u0347\x07F\x02\x02\u0347\u0348\x07G\x02\x02\u0348\u0349" + + "\x07E\x02\x02\u0349\u034A\x07C\x02\x02\u034A\u034B\x07[\x02\x02\u034B" + + "R\x03\x02\x02\x02\u034C\u034D\x07C\x02\x02\u034D\u034E\x07P\x02\x02\u034E" + + "\u034F\x07Q\x02\x02\u034F\u0350\x07O\x02\x02\u0350\u0351\x07C\x02\x02" + + "\u0351\u0352\x07N\x02\x02\u0352\u0353\x07[\x02\x02\u0353\u0354\x07a\x02" + + "\x02\u0354\u0355\x07T\x02\x02\u0355\u0356\x07C\x02\x02\u0356\u0357\x07" + + "V\x02\x02\u0357\u0358\x07G\x02\x02\u0358T\x03\x02\x02\x02\u0359\u035A" + + "\x07V\x02\x02\u035A\u035B\x07K\x02\x02\u035B\u035C\x07O\x02\x02\u035C" + + "\u035D\x07G\x02\x02\u035D\u035E\x07a\x02\x02\u035E\u035F\x07H\x02\x02" + + "\u035F\u0360\x07K\x02\x02\u0360\u0361\x07G\x02\x02\u0361\u0362\x07N\x02" + + "\x02\u0362\u0363\x07F\x02\x02\u0363V\x03\x02\x02\x02\u0364\u0365\x07V" + + "\x02\x02\u0365\u0366\x07K\x02\x02\u0366\u0367\x07O\x02\x02\u0367\u0368" + + "\x07G\x02\x02\u0368\u0369\x07a\x02\x02\u0369\u036A\x07\\\x02\x02\u036A" + + "\u036B\x07Q\x02\x02\u036B\u036C\x07P\x02\x02\u036C\u036D\x07G\x02\x02" + + "\u036DX\x03\x02\x02\x02\u036E\u036F\x07V\x02\x02\u036F\u0370\x07T\x02" + + "\x02\u0370\u0371\x07C\x02\x02\u0371\u0372\x07K\x02\x02\u0372\u0373\x07" + + "P\x02\x02\u0373\u0374\x07K\x02\x02\u0374\u0375\x07P\x02\x02\u0375\u0376" + + "\x07I\x02\x02\u0376\u0377\x07a\x02\x02\u0377\u0378\x07F\x02\x02\u0378" + + "\u0379\x07C\x02\x02\u0379\u037A\x07V\x02\x02\u037A\u037B\x07C\x02\x02" + + "\u037B\u037C\x07a\x02\x02\u037C\u037D\x07U\x02\x02\u037D\u037E\x07K\x02" + + "\x02\u037E\u037F\x07\\\x02\x02\u037F\u0380\x07G\x02\x02\u0380Z\x03\x02" + + "\x02\x02\u0381\u0382\x07C\x02\x02\u0382\u0383\x07P\x02\x02\u0383\u0384" + + "\x07Q\x02\x02\u0384\u0385\x07O\x02\x02\u0385\u0386\x07C\x02\x02\u0386" + + "\u0387\x07N\x02\x02\u0387\u0388\x07[\x02\x02\u0388\u0389\x07a\x02\x02" + + "\u0389\u038A\x07U\x02\x02\u038A\u038B\x07E\x02\x02\u038B\u038C\x07Q\x02" + + "\x02\u038C\u038D\x07T\x02\x02\u038D\u038E\x07G\x02\x02\u038E\u038F\x07" + + "a\x02\x02\u038F\u0390\x07V\x02\x02\u0390\u0391\x07J\x02\x02\u0391\u0392" + + "\x07T\x02\x02\u0392\u0393\x07G\x02\x02\u0393\u0394\x07U\x02\x02\u0394" + + "\u0395\x07J\x02\x02\u0395\u0396\x07Q\x02\x02\u0396\u0397\x07N\x02\x02" + + "\u0397\u0398\x07F\x02\x02\u0398\\\x03\x02\x02\x02\u0399\u039A\x07E\x02" + + "\x02\u039A\u039B\x07C\x02\x02\u039B\u039C\x07U\x02\x02\u039C\u039D\x07" + + "G\x02\x02\u039D^\x03\x02\x02\x02\u039E\u039F\x07K\x02\x02\u039F\u03A0" + + "\x07P\x02\x02\u03A0`\x03\x02\x02\x02\u03A1\u03A2\x07P\x02\x02\u03A2\u03A3" + + "\x07Q\x02\x02\u03A3\u03A4\x07V\x02\x02\u03A4b\x03\x02\x02\x02\u03A5\u03A6" + + "\x07Q\x02\x02\u03A6\u03A7\x07T\x02\x02\u03A7d\x03\x02\x02\x02\u03A8\u03A9" + + "\x07C\x02\x02\u03A9\u03AA\x07P\x02\x02\u03AA\u03AB\x07F\x02\x02\u03AB" + + "f\x03\x02\x02\x02\u03AC\u03AD\x07Z\x02\x02\u03AD\u03AE\x07Q\x02\x02\u03AE" + + "\u03AF\x07T\x02\x02\u03AFh\x03\x02\x02\x02\u03B0\u03B1\x07V\x02\x02\u03B1" + + "\u03B2\x07T\x02\x02\u03B2\u03B3\x07W\x02\x02\u03B3\u03B4\x07G\x02\x02" + + "\u03B4j\x03\x02\x02\x02\u03B5\u03B6\x07H\x02\x02\u03B6\u03B7\x07C\x02" + + "\x02\u03B7\u03B8\x07N\x02\x02\u03B8\u03B9\x07U\x02\x02\u03B9\u03BA\x07" + + "G\x02\x02\u03BAl\x03\x02\x02\x02\u03BB\u03BC\x07T\x02\x02\u03BC\u03BD" + + "\x07G\x02\x02\u03BD\u03BE\x07I\x02\x02\u03BE\u03BF\x07G\x02\x02\u03BF" + + "\u03C0\x07Z\x02\x02\u03C0\u03C1\x07R\x02\x02\u03C1n\x03\x02\x02\x02\u03C2" + + "\u03C3\x07F\x02\x02\u03C3\u03C4\x07C\x02\x02\u03C4\u03C5\x07V\x02\x02" + + "\u03C5\u03C6\x07G\x02\x02\u03C6\u03C7\x07V\x02\x02\u03C7\u03C8\x07K\x02" + + "\x02\u03C8\u03C9\x07O\x02\x02\u03C9\u03CA\x07G\x02\x02\u03CAp\x03\x02" + + "\x02\x02\u03CB\u03CC\x07K\x02\x02\u03CC\u03CD\x07P\x02\x02\u03CD\u03CE" + + "\x07V\x02\x02\u03CE\u03CF\x07G\x02\x02\u03CF\u03D0\x07T\x02\x02\u03D0" + + "\u03D1\x07X\x02\x02\u03D1\u03D2\x07C\x02\x02\u03D2\u03D3\x07N\x02\x02" + + "\u03D3r\x03\x02\x02\x02\u03D4\u03D5\x07O\x02\x02\u03D5\u03D6\x07K\x02" + + "\x02\u03D6\u03D7\x07E\x02\x02\u03D7\u03D8\x07T\x02\x02\u03D8\u03D9\x07" + + "Q\x02\x02\u03D9\u03DA\x07U\x02\x02\u03DA\u03DB\x07G\x02\x02\u03DB\u03DC" + + "\x07E\x02\x02\u03DC\u03DD\x07Q\x02\x02\u03DD\u03DE\x07P\x02\x02\u03DE" + + "\u03DF\x07F\x02\x02\u03DFt\x03\x02\x02\x02\u03E0\u03E1\x07O\x02\x02\u03E1" + + "\u03E2\x07K\x02\x02\u03E2\u03E3\x07N\x02\x02\u03E3\u03E4\x07N\x02\x02" + + "\u03E4\u03E5\x07K\x02\x02\u03E5\u03E6\x07U\x02\x02\u03E6\u03E7\x07G\x02" + + "\x02\u03E7\u03E8\x07E\x02\x02\u03E8\u03E9\x07Q\x02\x02\u03E9\u03EA\x07" + + "P\x02\x02\u03EA\u03EB\x07F\x02\x02\u03EBv\x03\x02\x02\x02\u03EC\u03ED" + + "\x07U\x02\x02\u03ED\u03EE\x07G\x02\x02\u03EE\u03EF\x07E\x02\x02\u03EF" + + "\u03F0\x07Q\x02\x02\u03F0\u03F1\x07P\x02\x02\u03F1\u03F2\x07F\x02\x02" + + "\u03F2x\x03\x02\x02\x02\u03F3\u03F4\x07O\x02\x02\u03F4\u03F5\x07K\x02" + + "\x02\u03F5\u03F6\x07P\x02\x02\u03F6\u03F7\x07W\x02\x02\u03F7\u03F8\x07" + + "V\x02\x02\u03F8\u03F9\x07G\x02\x02\u03F9z\x03\x02\x02\x02\u03FA\u03FB" + + "\x07J\x02\x02\u03FB\u03FC\x07Q\x02\x02\u03FC\u03FD\x07W\x02\x02\u03FD" + + "\u03FE\x07T\x02\x02\u03FE|\x03\x02\x02\x02\u03FF\u0400\x07F\x02\x02\u0400" + + "\u0401\x07C\x02\x02\u0401\u0402\x07[\x02\x02\u0402~\x03\x02\x02\x02\u0403" + + "\u0404\x07Y\x02\x02\u0404\u0405\x07G\x02\x02\u0405\u0406\x07G\x02\x02" + + "\u0406\u0407\x07M\x02\x02\u0407\x80\x03\x02\x02\x02\u0408\u0409\x07O\x02" + + "\x02\u0409\u040A\x07Q\x02\x02\u040A\u040B\x07P\x02\x02\u040B\u040C\x07" + + "V\x02\x02\u040C\u040D\x07J\x02\x02\u040D\x82\x03\x02\x02\x02\u040E\u040F" + + "\x07S\x02\x02\u040F\u0410\x07W\x02\x02\u0410\u0411\x07C\x02\x02\u0411" + + "\u0412\x07T\x02\x02\u0412\u0413\x07V\x02\x02\u0413\u0414\x07G\x02\x02" + + "\u0414\u0415\x07T\x02\x02\u0415\x84\x03\x02\x02\x02\u0416\u0417\x07[\x02" + + "\x02\u0417\u0418\x07G\x02\x02\u0418\u0419\x07C\x02\x02\u0419\u041A\x07" + + "T\x02\x02\u041A\x86\x03\x02\x02\x02\u041B\u041C\x07U\x02\x02\u041C\u041D" + + "\x07G\x02\x02\u041D\u041E\x07E\x02\x02\u041E\u041F\x07Q\x02\x02\u041F" + + "\u0420\x07P\x02\x02\u0420\u0421\x07F\x02\x02\u0421\u0422\x07a\x02\x02" + + "\u0422\u0423\x07O\x02\x02\u0423\u0424\x07K\x02\x02\u0424\u0425\x07E\x02" + + "\x02\u0425\u0426\x07T\x02\x02\u0426\u0427\x07Q\x02\x02\u0427\u0428\x07" + + "U\x02\x02\u0428\u0429\x07G\x02\x02\u0429\u042A\x07E\x02\x02\u042A\u042B" + + "\x07Q\x02\x02\u042B\u042C\x07P\x02\x02\u042C\u042D\x07F\x02\x02\u042D" + + "\x88\x03\x02\x02\x02\u042E\u042F\x07O\x02\x02\u042F\u0430\x07K\x02\x02" + + "\u0430\u0431\x07P\x02\x02\u0431\u0432\x07W\x02\x02\u0432\u0433\x07V\x02" + + "\x02\u0433\u0434\x07G\x02\x02\u0434\u0435\x07a\x02\x02\u0435\u0436\x07" + + "O\x02\x02\u0436\u0437\x07K\x02\x02\u0437\u0438\x07E\x02\x02\u0438\u0439" + + "\x07T\x02\x02\u0439\u043A\x07Q\x02\x02\u043A\u043B\x07U\x02\x02\u043B" + + "\u043C\x07G\x02\x02\u043C\u043D\x07E\x02\x02\u043D\u043E\x07Q\x02\x02" + + "\u043E\u043F\x07P\x02\x02\u043F\u0440\x07F\x02\x02\u0440\x8A\x03\x02\x02" + + "\x02\u0441\u0442\x07O\x02\x02\u0442\u0443\x07K\x02\x02\u0443\u0444\x07" + + "P\x02\x02\u0444\u0445\x07W\x02\x02\u0445\u0446\x07V\x02\x02\u0446\u0447" + + "\x07G\x02\x02\u0447\u0448\x07a\x02\x02\u0448\u0449\x07U\x02\x02\u0449" + + "\u044A\x07G\x02\x02\u044A\u044B\x07E\x02\x02\u044B\u044C\x07Q\x02\x02" + + "\u044C\u044D\x07P\x02\x02\u044D\u044E\x07F\x02\x02\u044E\x8C\x03\x02\x02" + + "\x02\u044F\u0450\x07J\x02\x02\u0450\u0451\x07Q\x02\x02\u0451\u0452\x07" + + "W\x02\x02\u0452\u0453\x07T\x02\x02\u0453\u0454\x07a\x02\x02\u0454\u0455" + + "\x07O\x02\x02\u0455\u0456\x07K\x02\x02\u0456\u0457\x07E\x02\x02\u0457" + + "\u0458\x07T\x02\x02\u0458\u0459\x07Q\x02\x02\u0459\u045A\x07U\x02\x02" + + "\u045A\u045B\x07G\x02\x02\u045B\u045C\x07E\x02\x02\u045C\u045D\x07Q\x02" + + "\x02\u045D\u045E\x07P\x02\x02\u045E\u045F\x07F\x02\x02\u045F\x8E\x03\x02" + + "\x02\x02\u0460\u0461\x07J\x02\x02\u0461\u0462\x07Q\x02\x02\u0462\u0463" + + "\x07W\x02\x02\u0463\u0464\x07T\x02\x02\u0464\u0465\x07a\x02\x02\u0465" + + "\u0466\x07U\x02\x02\u0466\u0467\x07G\x02\x02\u0467\u0468\x07E\x02\x02" + + "\u0468\u0469\x07Q\x02\x02\u0469\u046A\x07P\x02\x02\u046A\u046B\x07F\x02" + + "\x02\u046B\x90\x03\x02\x02\x02\u046C\u046D\x07J\x02\x02\u046D\u046E\x07" + + "Q\x02\x02\u046E\u046F\x07W\x02\x02\u046F\u0470\x07T\x02\x02\u0470\u0471" + + "\x07a\x02\x02\u0471\u0472\x07O\x02\x02\u0472\u0473\x07K\x02\x02\u0473" + + "\u0474\x07P\x02\x02\u0474\u0475\x07W\x02\x02\u0475\u0476\x07V\x02\x02" + + "\u0476\u0477\x07G\x02\x02\u0477\x92\x03\x02\x02\x02\u0478\u0479\x07F\x02" + + "\x02\u0479\u047A\x07C\x02\x02\u047A\u047B\x07[\x02\x02\u047B\u047C\x07" + + "a\x02\x02\u047C\u047D\x07O\x02\x02\u047D\u047E\x07K\x02\x02\u047E\u047F" + + "\x07E\x02\x02\u047F\u0480\x07T\x02\x02\u0480\u0481\x07Q\x02\x02\u0481" + + "\u0482\x07U\x02\x02\u0482\u0483\x07G\x02\x02\u0483\u0484\x07E\x02\x02" + + "\u0484\u0485\x07Q\x02\x02\u0485\u0486\x07P\x02\x02\u0486\u0487\x07F\x02" + + "\x02\u0487\x94\x03\x02\x02\x02\u0488\u0489\x07F\x02\x02\u0489\u048A\x07" + + "C\x02\x02\u048A\u048B\x07[\x02\x02\u048B\u048C\x07a\x02\x02\u048C\u048D" + + "\x07U\x02\x02\u048D\u048E\x07G\x02\x02\u048E\u048F\x07E\x02\x02\u048F" + + "\u0490\x07Q\x02\x02\u0490\u0491\x07P\x02\x02\u0491\u0492\x07F\x02\x02" + + "\u0492\x96\x03\x02\x02\x02\u0493\u0494\x07F\x02\x02\u0494\u0495\x07C\x02" + + "\x02\u0495\u0496\x07[\x02\x02\u0496\u0497\x07a\x02\x02\u0497\u0498\x07" + + "O\x02\x02\u0498\u0499\x07K\x02\x02\u0499\u049A\x07P\x02\x02\u049A\u049B" + + "\x07W\x02\x02\u049B\u049C\x07V\x02\x02\u049C\u049D\x07G\x02\x02\u049D" + + "\x98\x03\x02\x02\x02\u049E\u049F\x07F\x02\x02\u049F\u04A0\x07C\x02\x02" + + "\u04A0\u04A1\x07[\x02\x02\u04A1\u04A2\x07a\x02\x02\u04A2\u04A3\x07J\x02" + + "\x02\u04A3\u04A4\x07Q\x02\x02\u04A4\u04A5\x07W\x02\x02\u04A5\u04A6\x07" + + "T\x02\x02\u04A6\x9A\x03\x02\x02\x02\u04A7\u04A8\x07[\x02\x02\u04A8\u04A9" + + "\x07G\x02\x02\u04A9\u04AA\x07C\x02\x02\u04AA\u04AB\x07T\x02\x02\u04AB" + + "\u04AC\x07a\x02\x02\u04AC\u04AD\x07O\x02\x02\u04AD\u04AE\x07Q\x02\x02" + + "\u04AE\u04AF\x07P\x02\x02\u04AF\u04B0\x07V\x02\x02\u04B0\u04B1\x07J\x02" + + "\x02\u04B1\x9C\x03\x02\x02\x02\u04B2\u04B3\x07F\x02\x02\u04B3\u04B4\x07" + + "C\x02\x02\u04B4\u04B5\x07V\x02\x02\u04B5\u04B6\x07C\x02\x02\u04B6\u04B7" + + "\x07O\x02\x02\u04B7\u04B8\x07Q\x02\x02\u04B8\u04B9\x07F\x02\x02\u04B9" + + "\u04BA\x07G\x02\x02\u04BA\u04BB\x07N\x02\x02\u04BB\x9E\x03\x02\x02\x02" + + "\u04BC\u04BD\x07N\x02\x02\u04BD\u04BE\x07Q\x02\x02\u04BE\u04BF\x07Q\x02" + + "\x02\u04BF\u04C0\x07M\x02\x02\u04C0\u04C1\x07W\x02\x02\u04C1\u04C2\x07" + + "R\x02\x02\u04C2\xA0\x03\x02\x02\x02\u04C3\u04C4\x07U\x02\x02\u04C4\u04C5" + + "\x07C\x02\x02\u04C5\u04C6\x07X\x02\x02\u04C6\u04C7\x07G\x02\x02\u04C7" + + "\u04C8\x07F\x02\x02\u04C8\u04C9\x07U\x02\x02\u04C9\u04CA\x07G\x02\x02" + + "\u04CA\u04CB\x07C\x02\x02\u04CB\u04CC\x07T\x02\x02\u04CC\u04CD\x07E\x02" + + "\x02\u04CD\u04CE\x07J\x02\x02\u04CE\xA2\x03\x02\x02\x02\u04CF\u04D0\x07" + + "K\x02\x02\u04D0\u04D1\x07P\x02\x02\u04D1\u04D2\x07V\x02\x02\u04D2\xA4" + + "\x03\x02\x02\x02\u04D3\u04D4\x07K\x02\x02\u04D4\u04D5\x07P\x02\x02\u04D5" + + "\u04D6\x07V\x02\x02\u04D6\u04D7\x07G\x02\x02\u04D7\u04D8\x07I\x02\x02" + + "\u04D8\u04D9\x07G\x02\x02\u04D9\u04DA\x07T\x02\x02\u04DA\xA6\x03\x02\x02" + + "\x02\u04DB\u04DC\x07F\x02\x02\u04DC\u04DD\x07Q\x02\x02\u04DD\u04DE\x07" + + "W\x02\x02\u04DE\u04DF\x07D\x02\x02\u04DF\u04E0\x07N\x02\x02\u04E0\u04E1" + + "\x07G\x02\x02\u04E1\xA8\x03\x02\x02\x02\u04E2\u04E3\x07N\x02\x02\u04E3" + + "\u04E4\x07Q\x02\x02\u04E4\u04E5\x07P\x02\x02\u04E5\u04E6\x07I\x02\x02" + + "\u04E6\xAA\x03\x02\x02\x02\u04E7\u04E8\x07H\x02\x02\u04E8\u04E9\x07N\x02" + + "\x02\u04E9\u04EA\x07Q\x02\x02\u04EA\u04EB\x07C\x02\x02\u04EB\u04EC\x07" + + "V\x02\x02\u04EC\xAC\x03\x02\x02\x02\u04ED\u04EE\x07U\x02\x02\u04EE\u04EF" + + "\x07V\x02\x02\u04EF\u04F0\x07T\x02\x02\u04F0\u04F1\x07K\x02\x02\u04F1" + + "\u04F2\x07P\x02\x02\u04F2\u04F3\x07I\x02\x02\u04F3\xAE\x03\x02\x02\x02" + + "\u04F4\u04F5\x07D\x02\x02\u04F5\u04F6\x07Q\x02\x02\u04F6\u04F7\x07Q\x02" + + "\x02\u04F7\u04F8\x07N\x02\x02\u04F8\u04F9\x07G\x02\x02\u04F9\u04FA\x07" + + "C\x02\x02\u04FA\u04FB\x07P\x02\x02\u04FB\xB0\x03\x02\x02\x02\u04FC\u04FD" + + "\x07~\x02\x02\u04FD\xB2\x03\x02\x02\x02\u04FE\u04FF\x07.\x02\x02\u04FF" + + "\xB4\x03\x02\x02\x02\u0500\u0501\x070\x02\x02\u0501\xB6\x03\x02\x02\x02" + + "\u0502\u0503\x07?\x02\x02\u0503\xB8\x03\x02\x02\x02\u0504\u0505\x07@\x02" + + "\x02\u0505\xBA\x03\x02\x02\x02\u0506\u0507\x07>\x02\x02\u0507\xBC\x03" + + "\x02\x02\x02\u0508\u0509\x07>\x02\x02\u0509\u050A\x07?\x02\x02\u050A\xBE" + + "\x03\x02\x02\x02\u050B\u050C\x07@\x02\x02\u050C\u050D\x07?\x02\x02\u050D" + + "\xC0\x03\x02\x02\x02\u050E\u050F\x07#\x02\x02\u050F\u0510\x07?\x02\x02" + + "\u0510\xC2\x03\x02\x02\x02\u0511\u0512\x07-\x02\x02\u0512\xC4\x03\x02" + + "\x02\x02\u0513\u0514\x07/\x02\x02\u0514\xC6\x03\x02\x02\x02\u0515\u0516" + + "\x07,\x02\x02\u0516\xC8\x03\x02\x02\x02\u0517\u0518\x071\x02\x02\u0518" + + "\xCA\x03\x02\x02\x02\u0519\u051A\x07\'\x02\x02\u051A\xCC\x03\x02\x02\x02" + + "\u051B\u051C\x07#\x02\x02\u051C\xCE\x03\x02\x02\x02\u051D\u051E\x07<\x02" + + "\x02\u051E\xD0\x03\x02\x02\x02\u051F\u0520\x07*\x02\x02\u0520\xD2\x03" + + "\x02\x02\x02\u0521\u0522\x07+\x02\x02\u0522\xD4\x03\x02\x02\x02\u0523" + + "\u0524\x07]\x02\x02\u0524\xD6\x03\x02\x02\x02\u0525\u0526\x07_\x02\x02" + + "\u0526\xD8\x03\x02\x02\x02\u0527\u0528\x07)\x02\x02\u0528\xDA\x03\x02" + + "\x02\x02\u0529\u052A\x07$\x02\x02\u052A\xDC\x03\x02\x02\x02\u052B\u052C" + + "\x07b\x02\x02\u052C\xDE\x03\x02\x02\x02\u052D\u052E\x07\x80\x02\x02\u052E" + + "\xE0\x03\x02\x02\x02\u052F\u0530\x07(\x02\x02\u0530\xE2\x03\x02\x02\x02" + + "\u0531\u0532\x07`\x02\x02\u0532\xE4\x03\x02\x02\x02\u0533\u0534\x07C\x02" + + "\x02\u0534\u0535\x07X\x02\x02\u0535\u0536\x07I\x02\x02\u0536\xE6\x03\x02" + + "\x02\x02\u0537\u0538\x07E\x02\x02\u0538\u0539\x07Q\x02\x02\u0539\u053A" + + "\x07W\x02\x02\u053A\u053B\x07P\x02\x02\u053B\u053C\x07V\x02\x02\u053C" + + "\xE8\x03\x02\x02\x02\u053D\u053E\x07F\x02\x02\u053E\u053F\x07K\x02\x02" + + "\u053F\u0540\x07U\x02\x02\u0540\u0541\x07V\x02\x02\u0541\u0542\x07K\x02" + + "\x02\u0542\u0543\x07P\x02\x02\u0543\u0544\x07E\x02\x02\u0544\u0545\x07" + + "V\x02\x02\u0545\u0546\x07a\x02\x02\u0546\u0547\x07E\x02\x02\u0547\u0548" + + "\x07Q\x02\x02\u0548\u0549\x07W\x02\x02\u0549\u054A\x07P\x02\x02\u054A" + + "\u054B\x07V\x02\x02\u054B\xEA\x03\x02\x02\x02\u054C\u054D\x07G\x02\x02" + + "\u054D\u054E\x07U\x02\x02\u054E\u054F\x07V\x02\x02\u054F\u0550\x07F\x02" + + "\x02\u0550\u0551\x07E\x02\x02\u0551\xEC\x03\x02\x02\x02\u0552\u0553\x07" + + "G\x02\x02\u0553\u0554\x07U\x02\x02\u0554\u0555\x07V\x02\x02\u0555\u0556" + + "\x07F\x02\x02\u0556\u0557\x07E\x02\x02\u0557\u0558\x07a\x02\x02\u0558" + + "\u0559\x07G\x02\x02\u0559\u055A\x07T\x02\x02\u055A\u055B\x07T\x02\x02" + + "\u055B\u055C\x07Q\x02\x02\u055C\u055D\x07T\x02\x02\u055D\xEE\x03\x02\x02" + + "\x02\u055E\u055F\x07O\x02\x02\u055F\u0560\x07C\x02\x02\u0560\u0561\x07" + + "Z\x02\x02\u0561\xF0\x03\x02\x02\x02\u0562\u0563\x07O\x02\x02\u0563\u0564" + + "\x07G\x02\x02\u0564\u0565\x07C\x02\x02\u0565\u0566\x07P\x02\x02\u0566" + + "\xF2\x03\x02\x02\x02\u0567\u0568\x07O\x02\x02\u0568\u0569\x07G\x02\x02" + + "\u0569\u056A\x07F\x02\x02\u056A\u056B\x07K\x02\x02\u056B\u056C\x07C\x02" + + "\x02\u056C\u056D\x07P\x02\x02\u056D\xF4\x03\x02\x02\x02\u056E\u056F\x07" + + "O\x02\x02\u056F\u0570\x07K\x02\x02\u0570\u0571\x07P\x02\x02\u0571\xF6" + + "\x03\x02\x02\x02\u0572\u0573\x07O\x02\x02\u0573\u0574\x07Q\x02\x02\u0574" + + "\u0575\x07F\x02\x02\u0575\u0576\x07G\x02\x02\u0576\xF8\x03\x02\x02\x02" + + "\u0577\u0578\x07T\x02\x02\u0578\u0579\x07C\x02\x02\u0579\u057A\x07P\x02" + + "\x02\u057A\u057B\x07I\x02\x02\u057B\u057C\x07G\x02\x02\u057C\xFA\x03\x02" + + "\x02\x02\u057D\u057E\x07U\x02\x02\u057E\u057F\x07V\x02\x02\u057F\u0580" + + "\x07F\x02\x02\u0580\u0581\x07G\x02\x02\u0581\u0582\x07X\x02\x02\u0582" + + "\xFC\x03\x02\x02\x02\u0583\u0584\x07U\x02\x02\u0584\u0585\x07V\x02\x02" + + "\u0585\u0586\x07F\x02\x02\u0586\u0587\x07G\x02\x02\u0587\u0588\x07X\x02" + + "\x02\u0588\u0589\x07R\x02\x02\u0589\xFE\x03\x02\x02\x02\u058A\u058B\x07" + + "U\x02\x02\u058B\u058C\x07W\x02\x02\u058C\u058D\x07O\x02\x02\u058D\u0100" + + "\x03\x02\x02\x02\u058E\u058F\x07U\x02\x02\u058F\u0590\x07W\x02\x02\u0590" + + "\u0591\x07O\x02\x02\u0591\u0592\x07U\x02\x02\u0592\u0593\x07S\x02\x02" + + "\u0593\u0102\x03\x02\x02\x02\u0594\u0595\x07X\x02\x02\u0595\u0596\x07" + + "C\x02\x02\u0596\u0597\x07T\x02\x02\u0597\u0598\x07a\x02\x02\u0598\u0599" + + "\x07U\x02\x02\u0599\u059A\x07C\x02\x02\u059A\u059B\x07O\x02\x02\u059B" + + "\u059C\x07R\x02\x02\u059C\u0104\x03\x02\x02\x02\u059D\u059E\x07X\x02\x02" + + "\u059E\u059F\x07C\x02\x02\u059F\u05A0\x07T\x02\x02\u05A0\u05A1\x07a\x02" + + "\x02\u05A1\u05A2\x07R\x02\x02\u05A2\u05A3\x07Q\x02\x02\u05A3\u05A4\x07" + + "R\x02\x02\u05A4\u0106\x03\x02\x02\x02\u05A5\u05A6\x07U\x02\x02\u05A6\u05A7" + + "\x07V\x02\x02\u05A7\u05A8\x07F\x02\x02\u05A8\u05A9\x07F\x02\x02\u05A9" + + "\u05AA\x07G\x02\x02\u05AA\u05AB\x07X\x02\x02\u05AB\u05AC\x07a\x02\x02" + + "\u05AC\u05AD\x07U\x02\x02\u05AD\u05AE\x07C\x02\x02\u05AE\u05AF\x07O\x02" + + "\x02\u05AF\u05B0\x07R\x02\x02\u05B0\u0108\x03\x02\x02\x02\u05B1\u05B2" + + "\x07U\x02\x02\u05B2\u05B3\x07V\x02\x02\u05B3\u05B4\x07F\x02\x02\u05B4" + + "\u05B5\x07F\x02\x02\u05B5\u05B6\x07G\x02\x02\u05B6\u05B7\x07X\x02\x02" + + "\u05B7\u05B8\x07a\x02\x02\u05B8\u05B9\x07R\x02"; + private static readonly _serializedATNSegment3: string = + "\x02\u05B9\u05BA\x07Q\x02\x02\u05BA\u05BB\x07R\x02\x02\u05BB\u010A\x03" + + "\x02\x02\x02\u05BC\u05BD\x07R\x02\x02\u05BD\u05BE\x07G\x02\x02\u05BE\u05BF" + + "\x07T\x02\x02\u05BF\u05C0\x07E\x02\x02\u05C0\u05C1\x07G\x02\x02\u05C1" + + "\u05C2\x07P\x02\x02\u05C2\u05C3\x07V\x02\x02\u05C3\u05C4\x07K\x02\x02" + + "\u05C4\u05C5\x07N\x02\x02\u05C5\u05C6\x07G\x02\x02\u05C6\u010C\x03\x02" + + "\x02\x02\u05C7\u05C8\x07H\x02\x02\u05C8\u05C9\x07K\x02\x02\u05C9\u05CA" + + "\x07T\x02\x02\u05CA\u05CB\x07U\x02\x02\u05CB\u05CC\x07V\x02\x02\u05CC" + + "\u010E\x03\x02\x02\x02\u05CD\u05CE\x07N\x02\x02\u05CE\u05CF\x07C\x02\x02" + + "\u05CF\u05D0\x07U\x02\x02\u05D0\u05D1\x07V\x02\x02\u05D1\u0110\x03\x02" + + "\x02\x02\u05D2\u05D3\x07N\x02\x02\u05D3\u05D4\x07K\x02\x02\u05D4\u05D5" + + "\x07U\x02\x02\u05D5\u05D6\x07V\x02\x02\u05D6\u0112\x03\x02\x02\x02\u05D7" + + "\u05D8\x07X\x02\x02\u05D8\u05D9\x07C\x02\x02\u05D9\u05DA\x07N\x02\x02" + + "\u05DA\u05DB\x07W\x02\x02\u05DB\u05DC\x07G\x02\x02\u05DC\u05DD\x07U\x02" + + "\x02\u05DD\u0114\x03\x02\x02\x02\u05DE\u05DF\x07G\x02\x02\u05DF\u05E0" + + "\x07C\x02\x02\u05E0\u05E1\x07T\x02\x02\u05E1\u05E2\x07N\x02\x02\u05E2" + + "\u05E3\x07K\x02\x02\u05E3\u05E4\x07G\x02\x02\u05E4\u05E5\x07U\x02\x02" + + "\u05E5\u05E6\x07V\x02\x02\u05E6\u0116\x03\x02\x02\x02\u05E7\u05E8\x07" + + "G\x02\x02\u05E8\u05E9\x07C\x02\x02\u05E9\u05EA\x07T\x02\x02\u05EA\u05EB" + + "\x07N\x02\x02\u05EB\u05EC\x07K\x02\x02\u05EC\u05ED\x07G\x02\x02\u05ED" + + "\u05EE\x07U\x02\x02\u05EE\u05EF\x07V\x02\x02\u05EF\u05F0\x07a\x02\x02" + + "\u05F0\u05F1\x07V\x02\x02\u05F1\u05F2\x07K\x02\x02\u05F2\u05F3\x07O\x02" + + "\x02\u05F3\u05F4\x07G\x02\x02\u05F4\u0118\x03\x02\x02\x02\u05F5\u05F6" + + "\x07N\x02\x02\u05F6\u05F7\x07C\x02\x02\u05F7\u05F8\x07V\x02\x02\u05F8" + + "\u05F9\x07G\x02\x02\u05F9\u05FA\x07U\x02\x02\u05FA\u05FB\x07V\x02\x02" + + "\u05FB\u011A\x03\x02\x02\x02\u05FC\u05FD\x07N\x02\x02\u05FD\u05FE\x07" + + "C\x02\x02\u05FE\u05FF\x07V\x02\x02\u05FF\u0600\x07G\x02\x02\u0600\u0601" + + "\x07U\x02\x02\u0601\u0602\x07V\x02\x02\u0602\u0603\x07a\x02\x02\u0603" + + "\u0604\x07V\x02\x02\u0604\u0605\x07K\x02\x02\u0605\u0606\x07O\x02\x02" + + "\u0606\u0607\x07G\x02\x02\u0607\u011C\x03\x02\x02\x02\u0608\u0609\x07" + + "R\x02\x02\u0609\u060A\x07G\x02\x02\u060A\u060B\x07T\x02\x02\u060B\u060C" + + "\x07a\x02\x02\u060C\u060D\x07F\x02\x02\u060D\u060E\x07C\x02\x02\u060E" + + "\u060F\x07[\x02\x02\u060F\u011E\x03\x02\x02\x02\u0610\u0611\x07R\x02\x02" + + "\u0611\u0612\x07G\x02\x02\u0612\u0613\x07T\x02\x02\u0613\u0614\x07a\x02" + + "\x02\u0614\u0615\x07J\x02\x02\u0615\u0616\x07Q\x02\x02\u0616\u0617\x07" + + "W\x02\x02\u0617\u0618\x07T\x02\x02\u0618\u0120\x03\x02\x02\x02\u0619\u061A" + + "\x07R\x02\x02\u061A\u061B\x07G\x02\x02\u061B\u061C\x07T\x02\x02\u061C" + + "\u061D\x07a\x02\x02\u061D\u061E\x07O\x02\x02\u061E\u061F\x07K\x02\x02" + + "\u061F\u0620\x07P\x02\x02\u0620\u0621\x07W\x02\x02\u0621\u0622\x07V\x02" + + "\x02\u0622\u0623\x07G\x02\x02\u0623\u0122\x03\x02\x02\x02\u0624\u0625" + + "\x07R\x02\x02\u0625\u0626\x07G\x02\x02\u0626\u0627\x07T\x02\x02\u0627" + + "\u0628\x07a\x02\x02\u0628\u0629\x07U\x02\x02\u0629\u062A\x07G\x02\x02" + + "\u062A\u062B\x07E\x02\x02\u062B\u062C\x07Q\x02\x02\u062C\u062D\x07P\x02" + + "\x02\u062D\u062E\x07F\x02\x02\u062E\u0124\x03\x02\x02\x02\u062F\u0630" + + "\x07T\x02\x02\u0630\u0631\x07C\x02\x02\u0631\u0632\x07V\x02\x02\u0632" + + "\u0633\x07G\x02\x02\u0633\u0126\x03\x02\x02\x02\u0634\u0635\x07U\x02\x02" + + "\u0635\u0636\x07R\x02\x02\u0636\u0637\x07C\x02\x02\u0637\u0638\x07T\x02" + + "\x02\u0638\u0639\x07M\x02\x02\u0639\u063A\x07N\x02\x02\u063A\u063B\x07" + + "K\x02\x02\u063B\u063C\x07P\x02\x02\u063C\u063D\x07G\x02\x02\u063D\u0128" + + "\x03\x02\x02\x02\u063E\u063F\x07E\x02\x02\u063F\u012A\x03\x02\x02\x02" + + "\u0640\u0641\x07F\x02\x02\u0641\u0642\x07E\x02\x02\u0642\u012C\x03\x02" + + "\x02\x02\u0643\u0644\x07C\x02\x02\u0644\u0645\x07D\x02\x02\u0645\u0646" + + "\x07U\x02\x02\u0646\u012E\x03\x02\x02\x02\u0647\u0648\x07E\x02\x02\u0648" + + "\u0649\x07G\x02\x02\u0649\u064A\x07K\x02\x02\u064A\u064B\x07N\x02\x02" + + "\u064B\u0130\x03\x02\x02\x02\u064C\u064D\x07E\x02\x02\u064D\u064E\x07" + + "G\x02\x02\u064E\u064F\x07K\x02\x02\u064F\u0650\x07N\x02\x02\u0650\u0651" + + "\x07K\x02\x02\u0651\u0652\x07P\x02\x02\u0652\u0653\x07I\x02\x02\u0653" + + "\u0132\x03\x02\x02\x02\u0654\u0655\x07E\x02\x02\u0655\u0656\x07Q\x02\x02" + + "\u0656\u0657\x07P\x02\x02\u0657\u0658\x07X\x02\x02\u0658\u0134\x03\x02" + + "\x02\x02\u0659\u065A\x07E\x02\x02\u065A\u065B\x07T\x02\x02\u065B\u065C" + + "\x07E\x02\x02\u065C\u065D\x075\x02\x02\u065D\u065E\x074\x02\x02\u065E" + + "\u0136\x03\x02\x02\x02\u065F\u0660\x07G\x02\x02\u0660\u0138\x03\x02\x02" + + "\x02\u0661\u0662\x07G\x02\x02\u0662\u0663\x07Z\x02\x02\u0663\u0664\x07" + + "R\x02\x02\u0664\u013A\x03\x02\x02\x02\u0665\u0666\x07H\x02\x02\u0666\u0667" + + "\x07N\x02\x02\u0667\u0668\x07Q\x02\x02\u0668\u0669\x07Q\x02\x02\u0669" + + "\u066A\x07T\x02\x02\u066A\u013C\x03\x02\x02\x02\u066B\u066C\x07N\x02\x02" + + "\u066C\u066D\x07P\x02\x02\u066D\u013E\x03\x02\x02\x02\u066E\u066F\x07" + + "N\x02\x02\u066F\u0670\x07Q\x02\x02\u0670\u0671\x07I\x02\x02\u0671\u0140" + + "\x03\x02\x02\x02\u0672\u0673\x07N\x02\x02\u0673\u0674\x07Q\x02\x02\u0674" + + "\u0675\x07I\x02\x02\u0675\u0676\x073\x02\x02\u0676\u0677\x072\x02\x02" + + "\u0677\u0142\x03\x02\x02\x02\u0678\u0679\x07N\x02\x02\u0679\u067A\x07" + + "Q\x02\x02\u067A\u067B\x07I\x02\x02\u067B\u067C\x074\x02\x02\u067C\u0144" + + "\x03\x02\x02\x02\u067D\u067E\x07O\x02\x02\u067E\u067F\x07Q\x02\x02\u067F" + + "\u0680\x07F\x02\x02\u0680\u0146\x03\x02\x02\x02\u0681\u0682\x07R\x02\x02" + + "\u0682\u0683\x07K\x02\x02\u0683\u0148\x03\x02\x02\x02\u0684\u0685\x07" + + "R\x02\x02\u0685\u0686\x07Q\x02\x02\u0686\u0687\x07Y\x02\x02\u0687\u014A" + + "\x03\x02\x02\x02\u0688\u0689\x07R\x02\x02\u0689\u068A\x07Q\x02\x02\u068A" + + "\u068B\x07Y\x02\x02\u068B\u068C\x07G\x02\x02\u068C\u068D\x07T\x02\x02" + + "\u068D\u014C\x03\x02\x02\x02\u068E\u068F\x07T\x02\x02\u068F\u0690\x07" + + "C\x02\x02\u0690\u0691\x07P\x02\x02\u0691\u0692\x07F\x02\x02\u0692\u014E" + + "\x03\x02\x02\x02\u0693\u0694\x07T\x02\x02\u0694\u0695\x07Q\x02\x02\u0695" + + "\u0696\x07W\x02\x02\u0696\u0697\x07P\x02\x02\u0697\u0698\x07F\x02\x02" + + "\u0698\u0150\x03\x02\x02\x02\u0699\u069A\x07U\x02\x02\u069A\u069B\x07" + + "K\x02\x02\u069B\u069C\x07I\x02\x02\u069C\u069D\x07P\x02\x02\u069D\u0152" + + "\x03\x02\x02\x02\u069E\u069F\x07U\x02\x02\u069F\u06A0\x07S\x02\x02\u06A0" + + "\u06A1\x07T\x02\x02\u06A1\u06A2\x07V\x02\x02\u06A2\u0154\x03\x02\x02\x02" + + "\u06A3\u06A4\x07V\x02\x02\u06A4\u06A5\x07T\x02\x02\u06A5\u06A6\x07W\x02" + + "\x02\u06A6\u06A7\x07P\x02\x02\u06A7\u06A8\x07E\x02\x02\u06A8\u06A9\x07" + + "C\x02\x02\u06A9\u06AA\x07V\x02\x02\u06AA\u06AB\x07G\x02\x02\u06AB\u0156" + + "\x03\x02\x02\x02\u06AC\u06AD\x07C\x02\x02\u06AD\u06AE\x07E\x02\x02\u06AE" + + "\u06AF\x07Q\x02\x02\u06AF\u06B0\x07U\x02\x02\u06B0\u0158\x03\x02\x02\x02" + + "\u06B1\u06B2\x07C\x02\x02\u06B2\u06B3\x07U\x02\x02\u06B3\u06B4\x07K\x02" + + "\x02\u06B4\u06B5\x07P\x02\x02\u06B5\u015A\x03\x02\x02\x02\u06B6\u06B7" + + "\x07C\x02\x02\u06B7\u06B8\x07V\x02\x02\u06B8\u06B9\x07C\x02\x02\u06B9" + + "\u06BA\x07P\x02\x02\u06BA\u015C\x03\x02\x02\x02\u06BB\u06BC\x07C\x02\x02" + + "\u06BC\u06BD\x07V\x02\x02\u06BD\u06BE\x07C\x02\x02\u06BE\u06BF\x07P\x02" + + "\x02\u06BF\u06C0\x074\x02\x02\u06C0\u015E\x03\x02\x02\x02\u06C1\u06C2" + + "\x07E\x02\x02\u06C2\u06C3\x07Q\x02\x02\u06C3\u06C4\x07U\x02\x02\u06C4" + + "\u0160\x03\x02\x02\x02\u06C5\u06C6\x07E\x02\x02\u06C6\u06C7\x07Q\x02\x02" + + "\u06C7\u06C8\x07V\x02\x02\u06C8\u0162\x03\x02\x02\x02\u06C9\u06CA\x07" + + "F\x02\x02\u06CA\u06CB\x07G\x02\x02\u06CB\u06CC\x07I\x02\x02\u06CC\u06CD" + + "\x07T\x02\x02\u06CD\u06CE\x07G\x02\x02\u06CE\u06CF\x07G\x02\x02\u06CF" + + "\u06D0\x07U\x02\x02\u06D0\u0164\x03\x02\x02\x02\u06D1\u06D2\x07T\x02\x02" + + "\u06D2\u06D3\x07C\x02\x02\u06D3\u06D4\x07F\x02\x02\u06D4\u06D5\x07K\x02" + + "\x02\u06D5\u06D6\x07C\x02\x02\u06D6\u06D7\x07P\x02\x02\u06D7\u06D8\x07" + + "U\x02\x02\u06D8\u0166\x03\x02\x02\x02\u06D9\u06DA\x07U\x02\x02\u06DA\u06DB" + + "\x07K\x02\x02\u06DB\u06DC\x07P\x02\x02\u06DC\u0168\x03\x02\x02\x02\u06DD" + + "\u06DE\x07V\x02\x02\u06DE\u06DF\x07C\x02\x02\u06DF\u06E0\x07P\x02\x02" + + "\u06E0\u016A\x03\x02\x02\x02\u06E1\u06E2\x07C\x02\x02\u06E2\u06E3\x07" + + "F\x02\x02\u06E3\u06E4\x07F\x02\x02\u06E4\u06E5\x07F\x02\x02\u06E5\u06E6" + + "\x07C\x02\x02\u06E6\u06E7\x07V\x02\x02\u06E7\u06E8\x07G\x02\x02\u06E8" + + "\u016C\x03\x02\x02\x02\u06E9\u06EA\x07F\x02\x02\u06EA\u06EB\x07C\x02\x02" + + "\u06EB\u06EC\x07V\x02\x02\u06EC\u06ED\x07G\x02\x02\u06ED\u016E\x03\x02" + + "\x02\x02\u06EE\u06EF\x07F\x02\x02\u06EF\u06F0\x07C\x02\x02\u06F0\u06F1" + + "\x07V\x02\x02\u06F1\u06F2\x07G\x02\x02\u06F2\u06F3\x07a\x02\x02\u06F3" + + "\u06F4\x07C\x02\x02\u06F4\u06F5\x07F\x02\x02\u06F5\u06F6\x07F\x02\x02" + + "\u06F6\u0170\x03\x02\x02\x02\u06F7\u06F8\x07F\x02\x02\u06F8\u06F9\x07" + + "C\x02\x02\u06F9\u06FA\x07V\x02\x02\u06FA\u06FB\x07G\x02\x02\u06FB\u06FC" + + "\x07a\x02\x02\u06FC\u06FD\x07U\x02\x02\u06FD\u06FE\x07W\x02\x02\u06FE" + + "\u06FF\x07D\x02\x02\u06FF\u0172\x03\x02\x02\x02\u0700\u0701\x07F\x02\x02" + + "\u0701\u0702\x07C\x02\x02\u0702\u0703\x07[\x02\x02\u0703\u0704\x07Q\x02" + + "\x02\u0704\u0705\x07H\x02\x02\u0705\u0706\x07O\x02\x02\u0706\u0707\x07" + + "Q\x02\x02\u0707\u0708\x07P\x02\x02\u0708\u0709\x07V\x02\x02\u0709\u070A" + + "\x07J\x02\x02\u070A\u0174\x03\x02\x02\x02\u070B\u070C\x07F\x02\x02\u070C" + + "\u070D\x07C\x02\x02\u070D\u070E\x07[\x02\x02\u070E\u070F\x07Q\x02\x02" + + "\u070F\u0710\x07H\x02\x02\u0710\u0711\x07Y\x02\x02\u0711\u0712\x07G\x02" + + "\x02\u0712\u0713\x07G\x02\x02\u0713\u0714\x07M\x02\x02\u0714\u0176\x03" + + "\x02\x02\x02\u0715\u0716\x07F\x02\x02\u0716\u0717\x07C\x02\x02\u0717\u0718" + + "\x07[\x02\x02\u0718\u0719\x07Q\x02\x02\u0719\u071A\x07H\x02\x02\u071A" + + "\u071B\x07[\x02\x02\u071B\u071C\x07G\x02\x02\u071C\u071D\x07C\x02\x02" + + "\u071D\u071E\x07T\x02\x02\u071E\u0178\x03\x02\x02\x02\u071F\u0720\x07" + + "F\x02\x02\u0720\u0721\x07C\x02\x02\u0721\u0722\x07[\x02\x02\u0722\u0723" + + "\x07P\x02\x02\u0723\u0724\x07C\x02\x02\u0724\u0725\x07O\x02\x02\u0725" + + "\u0726\x07G\x02\x02\u0726\u017A\x03\x02\x02\x02\u0727\u0728\x07H\x02\x02" + + "\u0728\u0729\x07T\x02\x02\u0729\u072A\x07Q\x02\x02\u072A\u072B\x07O\x02" + + "\x02\u072B\u072C\x07a\x02\x02\u072C\u072D\x07F\x02\x02\u072D\u072E\x07" + + "C\x02\x02\u072E\u072F\x07[\x02\x02\u072F\u0730\x07U\x02\x02\u0730\u017C" + + "\x03\x02\x02\x02\u0731\u0732\x07O\x02\x02\u0732\u0733\x07Q\x02\x02\u0733" + + "\u0734\x07P\x02\x02\u0734\u0735\x07V\x02\x02\u0735\u0736\x07J\x02\x02" + + "\u0736\u0737\x07P\x02\x02\u0737\u0738\x07C\x02\x02\u0738\u0739\x07O\x02" + + "\x02\u0739\u073A\x07G\x02\x02\u073A\u017E\x03\x02\x02\x02\u073B\u073C" + + "\x07U\x02\x02\u073C\u073D\x07W\x02\x02\u073D\u073E\x07D\x02\x02\u073E" + + "\u073F\x07F\x02\x02\u073F\u0740\x07C\x02\x02\u0740\u0741\x07V\x02\x02" + + "\u0741\u0742\x07G\x02\x02\u0742\u0180\x03\x02\x02\x02\u0743\u0744\x07" + + "V\x02\x02\u0744\u0745\x07K\x02\x02\u0745\u0746\x07O\x02\x02\u0746\u0747" + + "\x07G\x02\x02\u0747\u0182\x03\x02\x02\x02\u0748\u0749\x07V\x02\x02\u0749" + + "\u074A\x07K\x02\x02\u074A\u074B\x07O\x02\x02\u074B\u074C\x07G\x02\x02" + + "\u074C\u074D\x07a\x02\x02\u074D\u074E\x07V\x02\x02\u074E\u074F\x07Q\x02" + + "\x02\u074F\u0750\x07a\x02\x02\u0750\u0751\x07U\x02\x02\u0751\u0752\x07" + + "G\x02\x02\u0752\u0753\x07E\x02\x02\u0753\u0184\x03\x02\x02\x02\u0754\u0755" + + "\x07V\x02\x02\u0755\u0756\x07K\x02\x02\u0756\u0757\x07O\x02\x02\u0757" + + "\u0758\x07G\x02\x02\u0758\u0759\x07U\x02\x02\u0759\u075A\x07V\x02\x02" + + "\u075A\u075B\x07C\x02\x02\u075B\u075C\x07O\x02\x02\u075C\u075D\x07R\x02" + + "\x02\u075D\u0186\x03\x02\x02\x02\u075E\u075F\x07F\x02\x02\u075F\u0760" + + "\x07C\x02\x02\u0760\u0761\x07V\x02\x02\u0761\u0762\x07G\x02\x02\u0762" + + "\u0763\x07a\x02\x02\u0763\u0764\x07H\x02\x02\u0764\u0765\x07Q\x02\x02" + + "\u0765\u0766\x07T\x02\x02\u0766\u0767\x07O\x02\x02\u0767\u0768\x07C\x02" + + "\x02\u0768\u0769\x07V\x02\x02\u0769\u0188\x03\x02\x02\x02\u076A\u076B" + + "\x07V\x02\x02\u076B\u076C\x07Q\x02\x02\u076C\u076D\x07a\x02\x02\u076D" + + "\u076E\x07F\x02\x02\u076E\u076F\x07C\x02\x02\u076F\u0770\x07[\x02\x02" + + "\u0770\u0771\x07U\x02\x02\u0771\u018A\x03\x02\x02\x02\u0772\u0773\x07" + + "U\x02\x02\u0773\u0774\x07W\x02\x02\u0774\u0775\x07D\x02\x02\u0775\u0776" + + "\x07U\x02\x02\u0776\u0777\x07V\x02\x02\u0777\u0778\x07T\x02\x02\u0778" + + "\u018C\x03\x02\x02\x02\u0779\u077A\x07U\x02\x02\u077A\u077B\x07W\x02\x02" + + "\u077B\u077C\x07D\x02\x02\u077C\u077D\x07U\x02\x02\u077D\u077E\x07V\x02" + + "\x02\u077E\u077F\x07T\x02\x02\u077F\u0780\x07K\x02\x02\u0780\u0781\x07" + + "P\x02\x02\u0781\u0782\x07I\x02\x02\u0782\u018E\x03\x02\x02\x02\u0783\u0784" + + "\x07N\x02\x02\u0784\u0785\x07V\x02\x02\u0785\u0786\x07T\x02\x02\u0786" + + "\u0787\x07K\x02\x02\u0787\u0788\x07O\x02\x02\u0788\u0190\x03\x02\x02\x02" + + "\u0789\u078A\x07T\x02\x02\u078A\u078B\x07V\x02\x02\u078B\u078C\x07T\x02" + + "\x02\u078C\u078D\x07K\x02\x02\u078D\u078E\x07O\x02\x02\u078E\u0192\x03" + + "\x02\x02\x02\u078F\u0790\x07V\x02\x02\u0790\u0791\x07T\x02\x02\u0791\u0792" + + "\x07K\x02\x02\u0792\u0793\x07O\x02\x02\u0793\u0194\x03\x02\x02\x02\u0794" + + "\u0795\x07V\x02\x02\u0795\u0796\x07Q\x02\x02\u0796\u0196\x03\x02\x02\x02" + + "\u0797\u0798\x07N\x02\x02\u0798\u0799\x07Q\x02\x02\u0799\u079A\x07Y\x02" + + "\x02\u079A\u079B\x07G\x02\x02\u079B\u079C\x07T\x02\x02\u079C\u0198\x03" + + "\x02\x02\x02\u079D\u079E\x07W\x02\x02\u079E\u079F\x07R\x02\x02\u079F\u07A0" + + "\x07R\x02\x02\u07A0\u07A1\x07G\x02\x02\u07A1\u07A2\x07T\x02\x02\u07A2" + + "\u019A\x03\x02\x02\x02\u07A3\u07A4\x07E\x02\x02\u07A4\u07A5\x07Q\x02\x02" + + "\u07A5\u07A6\x07P\x02\x02\u07A6\u07A7\x07E\x02\x02\u07A7\u07A8\x07C\x02" + + "\x02\u07A8\u07A9\x07V\x02\x02\u07A9\u019C\x03\x02\x02\x02\u07AA\u07AB" + + "\x07E\x02\x02\u07AB\u07AC\x07Q\x02\x02\u07AC\u07AD\x07P\x02\x02\u07AD" + + "\u07AE\x07E\x02\x02\u07AE\u07AF\x07C\x02\x02\u07AF\u07B0\x07V\x02\x02" + + "\u07B0\u07B1\x07a\x02\x02\u07B1\u07B2\x07Y\x02\x02\u07B2\u07B3\x07U\x02" + + "\x02\u07B3\u019E\x03\x02\x02\x02\u07B4\u07B5\x07N\x02\x02\u07B5\u07B6" + + "\x07G\x02\x02\u07B6\u07B7\x07P\x02\x02\u07B7\u07B8\x07I\x02\x02\u07B8" + + "\u07B9\x07V\x02\x02\u07B9\u07BA\x07J\x02\x02\u07BA\u01A0\x03\x02\x02\x02" + + "\u07BB\u07BC\x07U\x02\x02\u07BC\u07BD\x07V\x02\x02\u07BD\u07BE\x07T\x02" + + "\x02\u07BE\u07BF\x07E\x02\x02\u07BF\u07C0\x07O\x02\x02\u07C0\u07C1\x07" + + "R\x02\x02\u07C1\u01A2\x03\x02\x02\x02\u07C2\u07C3\x07T\x02\x02\u07C3\u07C4" + + "\x07K\x02\x02\u07C4\u07C5\x07I\x02\x02\u07C5\u07C6\x07J\x02\x02\u07C6" + + "\u07C7\x07V\x02\x02\u07C7\u01A4\x03\x02\x02\x02\u07C8\u07C9\x07N\x02\x02" + + "\u07C9\u07CA\x07G\x02\x02\u07CA\u07CB\x07H\x02\x02\u07CB\u07CC\x07V\x02" + + "\x02\u07CC\u01A6\x03\x02\x02\x02\u07CD\u07CE\x07C\x02\x02\u07CE\u07CF" + + "\x07U\x02\x02\u07CF\u07D0\x07E\x02\x02\u07D0\u07D1\x07K\x02\x02\u07D1" + + "\u07D2\x07K\x02\x02\u07D2\u01A8\x03\x02\x02\x02\u07D3\u07D4\x07N\x02\x02" + + "\u07D4\u07D5\x07Q\x02\x02\u07D5\u07D6\x07E\x02\x02\u07D6\u07D7\x07C\x02" + + "\x02\u07D7\u07D8\x07V\x02\x02\u07D8\u07D9\x07G\x02\x02\u07D9\u01AA\x03" + + "\x02\x02\x02\u07DA\u07DB\x07T\x02\x02\u07DB\u07DC\x07G\x02\x02\u07DC\u07DD" + + "\x07R\x02\x02\u07DD\u07DE\x07N\x02\x02\u07DE\u07DF\x07C\x02\x02\u07DF" + + "\u07E0\x07E\x02\x02\u07E0\u07E1\x07G\x02\x02\u07E1\u01AC\x03\x02\x02\x02" + + "\u07E2\u07E3\x07E\x02\x02\u07E3\u07E4\x07C\x02\x02\u07E4\u07E5\x07U\x02" + + "\x02\u07E5\u07E6\x07V\x02\x02\u07E6\u01AE\x03\x02\x02\x02\u07E7\u07E8" + + "\x07N\x02\x02\u07E8\u07E9\x07K\x02\x02\u07E9\u07EA\x07M\x02\x02\u07EA" + + "\u07EB\x07G\x02\x02\u07EB\u01B0\x03\x02\x02\x02\u07EC\u07ED\x07K\x02\x02" + + "\u07ED\u07EE\x07U\x02\x02\u07EE\u07EF\x07P\x02\x02\u07EF\u07F0\x07W\x02" + + "\x02\u07F0\u07F1\x07N\x02\x02\u07F1\u07F2\x07N\x02\x02\u07F2\u01B2\x03" + + "\x02\x02\x02\u07F3\u07F4\x07K\x02\x02\u07F4\u07F5\x07U\x02\x02\u07F5\u07F6" + + "\x07P\x02\x02\u07F6\u07F7\x07Q\x02\x02\u07F7\u07F8\x07V\x02\x02\u07F8" + + "\u07F9\x07P\x02\x02\u07F9\u07FA\x07W\x02\x02\u07FA\u07FB\x07N\x02\x02" + + "\u07FB\u07FC\x07N\x02\x02\u07FC\u01B4\x03\x02\x02\x02\u07FD\u07FE\x07" + + "K\x02\x02\u07FE\u07FF\x07H\x02\x02\u07FF\u0800\x07P\x02\x02\u0800\u0801" + + "\x07W\x02\x02\u0801\u0802\x07N\x02\x02\u0802\u0803\x07N\x02\x02\u0803" + + "\u01B6\x03\x02\x02\x02\u0804\u0805\x07P\x02\x02\u0805\u0806\x07W\x02\x02" + + "\u0806\u0807\x07N\x02\x02\u0807\u0808\x07N\x02\x02\u0808\u0809\x07K\x02" + + "\x02\u0809\u080A\x07H\x02\x02\u080A\u01B8\x03\x02\x02\x02\u080B\u080C" + + "\x07K\x02\x02\u080C\u080D\x07H\x02\x02\u080D\u01BA\x03\x02\x02\x02\u080E" + + "\u080F\x07O\x02\x02\u080F\u0810\x07C\x02\x02\u0810\u0811\x07V\x02\x02" + + "\u0811\u0812\x07E\x02\x02\u0812\u0813\x07J\x02\x02\u0813\u01BC\x03\x02" + + "\x02\x02\u0814\u0815\x07O\x02\x02\u0815\u0816\x07C\x02\x02\u0816\u0817" + + "\x07V\x02\x02\u0817\u0818\x07E\x02\x02\u0818\u0819\x07J\x02\x02\u0819" + + "\u081A\x07a\x02\x02\u081A\u081B\x07R\x02\x02\u081B\u081C\x07J\x02\x02" + + "\u081C\u081D\x07T\x02\x02\u081D\u081E\x07C\x02\x02\u081E\u081F\x07U\x02" + + "\x02\u081F\u0820\x07G\x02\x02\u0820\u01BE\x03\x02\x02\x02\u0821\u0822" + + "\x07U\x02\x02\u0822\u0823\x07K\x02\x02\u0823\u0824\x07O\x02\x02\u0824" + + "\u0825\x07R\x02\x02\u0825\u0826\x07N\x02\x02\u0826\u0827\x07G\x02\x02" + + "\u0827\u0828\x07a\x02\x02\u0828\u0829\x07S\x02\x02\u0829\u082A\x07W\x02" + + "\x02\u082A\u082B\x07G\x02\x02\u082B\u082C\x07T\x02\x02\u082C\u082D\x07" + + "[\x02\x02\u082D\u082E\x07a\x02\x02\u082E\u082F\x07U\x02\x02\u082F\u0830" + + "\x07V\x02\x02\u0830\u0831\x07T\x02\x02\u0831\u0832\x07K\x02\x02\u0832" + + "\u0833\x07P\x02\x02\u0833\u0834\x07I\x02\x02\u0834\u01C0\x03\x02\x02\x02" + + "\u0835\u0836\x07C\x02\x02\u0836\u0837\x07N\x02\x02\u0837\u0838\x07N\x02" + + "\x02\u0838\u0839\x07Q\x02\x02\u0839\u083A\x07Y\x02\x02\u083A\u083B\x07" + + "a\x02\x02\u083B\u083C\x07N\x02\x02\u083C\u083D\x07G\x02\x02\u083D\u083E" + + "\x07C\x02\x02\u083E\u083F\x07F\x02\x02\u083F\u0840\x07K\x02\x02\u0840" + + "\u0841\x07P\x02\x02\u0841\u0842\x07I\x02\x02\u0842\u0843\x07a\x02\x02" + + "\u0843\u0844\x07Y\x02\x02\u0844\u0845\x07K\x02\x02\u0845\u0846\x07N\x02" + + "\x02\u0846\u0847\x07F\x02\x02\u0847\u0848\x07E\x02\x02\u0848\u0849\x07" + + "C\x02\x02\u0849\u084A\x07T\x02\x02\u084A\u084B\x07F\x02\x02\u084B\u01C2" + + "\x03\x02\x02\x02\u084C\u084D\x07C\x02\x02\u084D\u084E\x07P\x02\x02\u084E" + + "\u084F\x07C\x02\x02\u084F\u0850\x07N\x02\x02\u0850\u0851\x07[\x02\x02" + + "\u0851\u0852\x07\\\x02\x02\u0852\u0853\x07G\x02\x02\u0853\u0854\x07a\x02" + + "\x02\u0854\u0855\x07Y\x02\x02\u0855\u0856\x07K\x02\x02\u0856\u0857\x07" + + "N\x02\x02\u0857\u0858\x07F\x02\x02\u0858\u0859\x07E\x02\x02\u0859\u085A" + + "\x07C\x02\x02\u085A\u085B\x07T\x02\x02\u085B\u085C\x07F\x02\x02\u085C" + + "\u01C4\x03\x02\x02\x02\u085D\u085E\x07C\x02\x02\u085E\u085F\x07P\x02\x02" + + "\u085F\u0860\x07C\x02\x02\u0860\u0861\x07N\x02\x02\u0861\u0862\x07[\x02" + + "\x02\u0862\u0863\x07\\\x02\x02\u0863\u0864\x07G\x02\x02\u0864\u0865\x07" + + "T\x02\x02\u0865\u01C6\x03\x02\x02\x02\u0866\u0867\x07C\x02\x02\u0867\u0868" + + "\x07W\x02\x02\u0868\u0869\x07V\x02\x02\u0869\u086A\x07Q\x02\x02\u086A" + + "\u086B\x07a\x02\x02\u086B\u086C\x07I\x02\x02\u086C\u086D\x07G\x02\x02" + + "\u086D\u086E\x07P\x02\x02\u086E\u086F\x07G\x02\x02\u086F\u0870\x07T\x02" + + "\x02\u0870\u0871\x07C\x02\x02\u0871\u0872\x07V\x02\x02\u0872\u0873\x07" + + "G\x02\x02\u0873\u0874\x07a\x02\x02\u0874\u0875\x07U\x02\x02\u0875\u0876" + + "\x07[\x02\x02\u0876\u0877\x07P\x02\x02\u0877\u0878\x07Q\x02\x02\u0878" + + "\u0879\x07P\x02\x02\u0879\u087A\x07[\x02\x02\u087A\u087B\x07O\x02\x02" + + "\u087B\u087C\x07U\x02\x02\u087C\u087D\x07a\x02\x02\u087D\u087E\x07R\x02" + + "\x02\u087E\u087F\x07J\x02\x02\u087F\u0880\x07T\x02\x02\u0880\u0881\x07" + + "C\x02\x02\u0881\u0882\x07U\x02\x02\u0882\u0883\x07G\x02\x02\u0883\u0884" + + "\x07a\x02\x02\u0884\u0885\x07S\x02\x02\u0885\u0886\x07W\x02\x02\u0886" + + "\u0887\x07G\x02\x02\u0887\u0888\x07T\x02\x02\u0888\u0889\x07[\x02\x02" + + "\u0889\u01C8\x03\x02\x02\x02\u088A\u088B\x07D\x02\x02\u088B\u088C\x07" + + "Q\x02\x02\u088C\u088D\x07Q\x02\x02\u088D\u088E\x07U\x02\x02\u088E\u088F" + + "\x07V\x02\x02\u088F\u01CA\x03\x02\x02\x02\u0890\u0891\x07E\x02\x02\u0891" + + "\u0892\x07W\x02\x02\u0892\u0893\x07V\x02\x02\u0893\u0894\x07Q\x02\x02" + + "\u0894\u0895\x07H\x02\x02\u0895\u0896\x07H\x02\x02\u0896\u0897\x07a\x02" + + "\x02\u0897\u0898\x07H\x02\x02\u0898\u0899\x07T\x02\x02\u0899\u089A\x07" + + "G\x02\x02\u089A\u089B\x07S\x02\x02\u089B\u089C\x07W\x02\x02\u089C\u089D" + + "\x07G\x02\x02\u089D\u089E\x07P\x02\x02\u089E\u089F\x07E\x02\x02\u089F" + + "\u08A0\x07[\x02\x02\u08A0\u01CC\x03\x02\x02\x02\u08A1\u08A2\x07F\x02\x02" + + "\u08A2\u08A3\x07G\x02\x02\u08A3\u08A4\x07H\x02\x02\u08A4\u08A5\x07C\x02" + + "\x02\u08A5\u08A6\x07W\x02\x02\u08A6\u08A7\x07N\x02\x02\u08A7\u08A8\x07" + + "V\x02\x02\u08A8\u08A9\x07a\x02\x02\u08A9\u08AA\x07H\x02\x02\u08AA\u08AB" + + "\x07K\x02\x02\u08AB\u08AC\x07G\x02\x02\u08AC\u08AD\x07N\x02\x02\u08AD" + + "\u08AE\x07F\x02\x02\u08AE\u01CE\x03\x02\x02\x02\u08AF\u08B0\x07F\x02\x02" + + "\u08B0\u08B1\x07G\x02\x02\u08B1\u08B2\x07H\x02\x02\u08B2\u08B3\x07C\x02" + + "\x02\u08B3\u08B4\x07W\x02\x02\u08B4\u08B5\x07N\x02\x02\u08B5\u08B6\x07" + + "V\x02\x02\u08B6\u08B7\x07a\x02\x02\u08B7\u08B8\x07Q\x02\x02\u08B8\u08B9" + + "\x07R\x02\x02\u08B9\u08BA\x07G\x02\x02\u08BA\u08BB\x07T\x02\x02\u08BB" + + "\u08BC\x07C\x02\x02\u08BC\u08BD\x07V\x02\x02\u08BD\u08BE\x07Q\x02\x02" + + "\u08BE\u08BF\x07T\x02\x02\u08BF\u01D0\x03\x02\x02\x02\u08C0\u08C1\x07" + + "G\x02\x02\u08C1\u08C2\x07P\x02\x02\u08C2\u08C3\x07C\x02\x02\u08C3\u08C4" + + "\x07D\x02\x02\u08C4\u08C5\x07N\x02\x02\u08C5\u08C6\x07G\x02\x02\u08C6" + + "\u08C7\x07a\x02\x02\u08C7\u08C8\x07R\x02\x02\u08C8\u08C9\x07Q\x02\x02" + + "\u08C9\u08CA\x07U\x02\x02\u08CA\u08CB\x07K\x02\x02\u08CB\u08CC\x07V\x02" + + "\x02\u08CC\u08CD\x07K\x02\x02\u08CD\u08CE\x07Q\x02\x02\u08CE\u08CF\x07" + + "P\x02\x02\u08CF\u08D0\x07a\x02\x02\u08D0\u08D1\x07K\x02\x02\u08D1\u08D2" + + "\x07P\x02\x02\u08D2\u08D3\x07E\x02\x02\u08D3\u08D4\x07T\x02\x02\u08D4" + + "\u08D5\x07G\x02\x02\u08D5\u08D6\x07O\x02\x02\u08D6\u08D7\x07G\x02\x02" + + "\u08D7\u08D8\x07P\x02\x02\u08D8\u08D9\x07V\x02\x02\u08D9\u08DA\x07U\x02" + + "\x02\u08DA\u01D2\x03\x02\x02\x02\u08DB\u08DC\x07H\x02\x02\u08DC\u08DD" + + "\x07N\x02\x02\u08DD\u08DE\x07C\x02\x02\u08DE\u08DF\x07I\x02\x02\u08DF" + + "\u08E0\x07U\x02\x02\u08E0\u01D4\x03\x02\x02\x02\u08E1\u08E2\x07H\x02\x02" + + "\u08E2\u08E3\x07W\x02\x02\u08E3\u08E4\x07\\\x02\x02\u08E4\u08E5\x07\\" + + "\x02\x02\u08E5\u08E6\x07[\x02\x02\u08E6\u08E7\x07a\x02\x02\u08E7\u08E8" + + "\x07O\x02\x02\u08E8\u08E9\x07C\x02\x02\u08E9\u08EA\x07Z\x02\x02\u08EA" + + "\u08EB\x07a\x02\x02\u08EB\u08EC\x07G\x02\x02\u08EC\u08ED\x07Z\x02\x02" + + "\u08ED\u08EE\x07R\x02\x02\u08EE\u08EF\x07C\x02\x02\u08EF\u08F0\x07P\x02" + + "\x02\u08F0\u08F1\x07U\x02\x02\u08F1\u08F2\x07K\x02\x02\u08F2\u08F3\x07" + + "Q\x02\x02\u08F3\u08F4\x07P\x02\x02\u08F4\u08F5\x07U\x02\x02\u08F5\u01D6" + + "\x03\x02\x02\x02\u08F6\u08F7\x07H\x02\x02\u08F7\u08F8\x07W\x02\x02\u08F8" + + "\u08F9\x07\\\x02\x02\u08F9\u08FA\x07\\\x02\x02\u08FA"; + private static readonly _serializedATNSegment4: string = + "\u08FB\x07[\x02\x02\u08FB\u08FC\x07a\x02\x02\u08FC\u08FD\x07R\x02\x02" + + "\u08FD\u08FE\x07T\x02\x02\u08FE\u08FF\x07G\x02\x02\u08FF\u0900\x07H\x02" + + "\x02\u0900\u0901\x07K\x02\x02\u0901\u0902\x07Z\x02\x02\u0902\u0903\x07" + + "a\x02\x02\u0903\u0904\x07N\x02\x02\u0904\u0905\x07G\x02\x02\u0905\u0906" + + "\x07P\x02\x02\u0906\u0907\x07I\x02\x02\u0907\u0908\x07V\x02\x02\u0908" + + "\u0909\x07J\x02\x02\u0909\u01D8\x03\x02\x02\x02\u090A\u090B\x07H\x02\x02" + + "\u090B\u090C\x07W\x02\x02\u090C\u090D\x07\\\x02\x02\u090D\u090E\x07\\" + + "\x02\x02\u090E\u090F\x07[\x02\x02\u090F\u0910\x07a\x02\x02\u0910\u0911" + + "\x07V\x02\x02\u0911\u0912\x07T\x02\x02\u0912\u0913\x07C\x02\x02\u0913" + + "\u0914\x07P\x02\x02\u0914\u0915\x07U\x02\x02\u0915\u0916\x07R\x02\x02" + + "\u0916\u0917\x07Q\x02\x02\u0917\u0918\x07U\x02\x02\u0918\u0919\x07K\x02" + + "\x02\u0919\u091A\x07V\x02\x02\u091A\u091B\x07K\x02\x02\u091B\u091C\x07" + + "Q\x02\x02\u091C\u091D\x07P\x02\x02\u091D\u091E\x07U\x02\x02\u091E\u01DA" + + "\x03\x02\x02\x02\u091F\u0920\x07H\x02\x02\u0920\u0921\x07W\x02\x02\u0921" + + "\u0922\x07\\\x02\x02\u0922\u0923\x07\\\x02\x02\u0923\u0924\x07[\x02\x02" + + "\u0924\u0925\x07a\x02\x02\u0925\u0926\x07T\x02\x02\u0926\u0927\x07G\x02" + + "\x02\u0927\u0928\x07Y\x02\x02\u0928\u0929\x07T\x02\x02\u0929\u092A\x07" + + "K\x02\x02\u092A\u092B\x07V\x02\x02\u092B\u092C\x07G\x02\x02\u092C\u01DC" + + "\x03\x02\x02\x02\u092D\u092E\x07H\x02\x02\u092E\u092F\x07W\x02\x02\u092F" + + "\u0930\x07\\\x02\x02\u0930\u0931\x07\\\x02\x02\u0931\u0932\x07K\x02\x02" + + "\u0932\u0933\x07P\x02\x02\u0933\u0934\x07G\x02\x02\u0934\u0935\x07U\x02" + + "\x02\u0935\u0936\x07U\x02\x02\u0936\u01DE\x03\x02\x02\x02\u0937\u0938" + + "\x07N\x02\x02\u0938\u0939\x07G\x02\x02\u0939\u093A\x07P\x02\x02\u093A" + + "\u093B\x07K\x02\x02\u093B\u093C\x07G\x02\x02\u093C\u093D\x07P\x02\x02" + + "\u093D\u093E\x07V\x02\x02\u093E\u01E0\x03\x02\x02\x02\u093F\u0940\x07" + + "N\x02\x02\u0940\u0941\x07Q\x02\x02\u0941\u0942\x07Y\x02\x02\u0942\u0943" + + "\x07a\x02\x02\u0943\u0944\x07H\x02\x02\u0944\u0945\x07T\x02\x02\u0945" + + "\u0946\x07G\x02\x02\u0946\u0947\x07S\x02\x02\u0947\u0948\x07a\x02\x02" + + "\u0948\u0949\x07Q\x02\x02\u0949\u094A\x07R\x02\x02\u094A\u094B\x07G\x02" + + "\x02\u094B\u094C\x07T\x02\x02\u094C\u094D\x07C\x02\x02\u094D\u094E\x07" + + "V\x02\x02\u094E\u094F\x07Q\x02\x02\u094F\u0950\x07T\x02\x02\u0950\u01E2" + + "\x03\x02\x02\x02\u0951\u0952\x07O\x02\x02\u0952\u0953\x07C\x02\x02\u0953" + + "\u0954\x07Z\x02\x02\u0954\u0955\x07a\x02\x02\u0955\u0956\x07F\x02\x02" + + "\u0956\u0957\x07G\x02\x02\u0957\u0958\x07V\x02\x02\u0958\u0959\x07G\x02" + + "\x02\u0959\u095A\x07T\x02\x02\u095A\u095B\x07O\x02\x02\u095B\u095C\x07" + + "K\x02\x02\u095C\u095D\x07P\x02\x02\u095D\u095E\x07K\x02\x02\u095E\u095F" + + "\x07\\\x02\x02\u095F\u0960\x07G\x02\x02\u0960\u0961\x07F\x02\x02\u0961" + + "\u0962\x07a\x02\x02\u0962\u0963\x07U\x02\x02\u0963\u0964\x07V\x02\x02" + + "\u0964\u0965\x07C\x02\x02\u0965\u0966\x07V\x02\x02\u0966\u0967\x07G\x02" + + "\x02\u0967\u0968\x07U\x02\x02\u0968\u01E4\x03\x02\x02\x02\u0969\u096A" + + "\x07O\x02\x02\u096A\u096B\x07C\x02\x02\u096B\u096C\x07Z\x02\x02\u096C" + + "\u096D\x07a\x02\x02\u096D\u096E\x07G\x02\x02\u096E\u096F\x07Z\x02\x02" + + "\u096F\u0970\x07R\x02\x02\u0970\u0971\x07C\x02\x02\u0971\u0972\x07P\x02" + + "\x02\u0972\u0973\x07U\x02\x02\u0973\u0974\x07K\x02\x02\u0974\u0975\x07" + + "Q\x02\x02\u0975\u0976\x07P\x02\x02\u0976\u0977\x07U\x02\x02\u0977\u01E6" + + "\x03\x02\x02\x02\u0978\u0979\x07O\x02\x02\u0979\u097A\x07K\x02\x02\u097A" + + "\u097B\x07P\x02\x02\u097B\u097C\x07K\x02\x02\u097C\u097D\x07O\x02\x02" + + "\u097D\u097E\x07W\x02\x02\u097E\u097F\x07O\x02\x02\u097F\u0980\x07a\x02" + + "\x02\u0980\u0981\x07U\x02\x02\u0981\u0982\x07J\x02\x02\u0982\u0983\x07" + + "Q\x02\x02\u0983\u0984\x07W\x02\x02\u0984\u0985\x07N\x02\x02\u0985\u0986" + + "\x07F\x02\x02\u0986\u0987\x07a\x02\x02\u0987\u0988\x07O\x02\x02\u0988" + + "\u0989\x07C\x02\x02\u0989\u098A\x07V\x02\x02\u098A\u098B\x07E\x02\x02" + + "\u098B\u098C\x07J\x02\x02\u098C\u01E8\x03\x02\x02\x02\u098D\u098E\x07" + + "Q\x02\x02\u098E\u098F\x07R\x02\x02\u098F\u0990\x07G\x02\x02\u0990\u0991" + + "\x07T\x02\x02\u0991\u0992\x07C\x02\x02\u0992\u0993\x07V\x02\x02\u0993" + + "\u0994\x07Q\x02\x02\u0994\u0995\x07T\x02\x02\u0995\u01EA\x03\x02\x02\x02" + + "\u0996\u0997\x07R\x02\x02\u0997\u0998\x07J\x02\x02\u0998\u0999\x07T\x02" + + "\x02\u0999\u099A\x07C\x02\x02\u099A\u099B\x07U\x02\x02\u099B\u099C\x07" + + "G\x02\x02\u099C\u099D\x07a\x02\x02\u099D\u099E\x07U\x02\x02\u099E\u099F" + + "\x07N\x02\x02\u099F\u09A0\x07Q\x02\x02\u09A0\u09A1\x07R\x02\x02\u09A1" + + "\u01EC\x03\x02\x02\x02\u09A2\u09A3\x07R\x02\x02\u09A3\u09A4\x07T\x02\x02" + + "\u09A4\u09A5\x07G\x02\x02\u09A5\u09A6\x07H\x02\x02\u09A6\u09A7\x07K\x02" + + "\x02\u09A7\u09A8\x07Z\x02\x02\u09A8\u09A9\x07a\x02\x02\u09A9\u09AA\x07" + + "N\x02\x02\u09AA\u09AB\x07G\x02\x02\u09AB\u09AC\x07P\x02\x02\u09AC\u09AD" + + "\x07I\x02\x02\u09AD\u09AE\x07V\x02\x02\u09AE\u09AF\x07J\x02\x02\u09AF" + + "\u01EE\x03\x02\x02\x02\u09B0\u09B1\x07S\x02\x02\u09B1\u09B2\x07W\x02\x02" + + "\u09B2\u09B3\x07Q\x02\x02\u09B3\u09B4\x07V\x02\x02\u09B4\u09B5\x07G\x02" + + "\x02\u09B5\u09B6\x07a\x02\x02\u09B6\u09B7\x07C\x02\x02\u09B7\u09B8\x07" + + "P\x02\x02\u09B8\u09B9\x07C\x02\x02\u09B9\u09BA\x07N\x02\x02\u09BA\u09BB" + + "\x07[\x02\x02\u09BB\u09BC\x07\\\x02\x02\u09BC\u09BD\x07G\x02\x02\u09BD" + + "\u09BE\x07T\x02\x02\u09BE\u01F0\x03\x02\x02\x02\u09BF\u09C0\x07S\x02\x02" + + "\u09C0\u09C1\x07W\x02\x02\u09C1\u09C2\x07Q\x02\x02\u09C2\u09C3\x07V\x02" + + "\x02\u09C3\u09C4\x07G\x02\x02\u09C4\u09C5\x07a\x02\x02\u09C5\u09C6\x07" + + "H\x02\x02\u09C6\u09C7\x07K\x02\x02\u09C7\u09C8\x07G\x02\x02\u09C8\u09C9" + + "\x07N\x02\x02\u09C9\u09CA\x07F\x02\x02\u09CA\u09CB\x07a\x02\x02\u09CB" + + "\u09CC\x07U\x02\x02\u09CC\u09CD\x07W\x02\x02\u09CD\u09CE\x07H\x02\x02" + + "\u09CE\u09CF\x07H\x02\x02\u09CF\u09D0\x07K\x02\x02\u09D0\u09D1\x07Z\x02" + + "\x02\u09D1\u01F2\x03\x02\x02\x02\u09D2\u09D3\x07T\x02\x02\u09D3\u09D4" + + "\x07G\x02\x02\u09D4\u09D5\x07Y\x02\x02\u09D5\u09D6\x07T\x02\x02\u09D6" + + "\u09D7\x07K\x02\x02\u09D7\u09D8\x07V\x02\x02\u09D8\u09D9\x07G\x02\x02" + + "\u09D9\u01F4\x03\x02\x02\x02\u09DA\u09DB\x07U\x02\x02\u09DB\u09DC\x07" + + "N\x02\x02\u09DC\u09DD\x07Q\x02\x02\u09DD\u09DE\x07R\x02\x02\u09DE\u01F6" + + "\x03\x02\x02\x02\u09DF\u09E0\x07V\x02\x02\u09E0\u09E1\x07K\x02\x02\u09E1" + + "\u09E2\x07G\x02\x02\u09E2\u09E3\x07a\x02\x02\u09E3\u09E4\x07D\x02\x02" + + "\u09E4\u09E5\x07T\x02\x02\u09E5\u09E6\x07G\x02\x02\u09E6\u09E7\x07C\x02" + + "\x02\u09E7\u09E8\x07M\x02\x02\u09E8\u09E9\x07G\x02\x02\u09E9\u09EA\x07" + + "T\x02\x02\u09EA\u01F8\x03\x02\x02\x02\u09EB\u09EC\x07V\x02\x02\u09EC\u09ED" + + "\x07[\x02\x02\u09ED\u09EE\x07R\x02\x02\u09EE\u09EF\x07G\x02\x02\u09EF" + + "\u01FA\x03\x02\x02\x02\u09F0\u09F1\x07\\\x02\x02\u09F1\u09F2\x07G\x02" + + "\x02\u09F2\u09F3\x07T\x02\x02\u09F3\u09F4\x07Q\x02\x02\u09F4\u09F5\x07" + + "a\x02\x02\u09F5\u09F6\x07V\x02\x02\u09F6\u09F7\x07G\x02\x02\u09F7\u09F8" + + "\x07T\x02\x02\u09F8\u09F9\x07O\x02\x02\u09F9\u09FA\x07U\x02\x02\u09FA" + + "\u09FB\x07a\x02\x02\u09FB\u09FC\x07S\x02\x02\u09FC\u09FD\x07W\x02\x02" + + "\u09FD\u09FE\x07G\x02\x02\u09FE\u09FF\x07T\x02\x02\u09FF\u0A00\x07[\x02" + + "\x02\u0A00\u01FC\x03\x02\x02\x02\u0A01\u0A02\x07U\x02\x02\u0A02\u0A03" + + "\x07R\x02\x02\u0A03\u0A04\x07C\x02\x02\u0A04\u0A05\x07P\x02\x02\u0A05" + + "\u01FE\x03\x02\x02\x02\u0A06\u0A07\x07O\x02\x02\u0A07\u0A08\x07U\x02\x02" + + "\u0A08\u0200\x03\x02\x02\x02\u0A09\u0A0A\x07U\x02\x02\u0A0A\u0202\x03" + + "\x02\x02\x02\u0A0B\u0A0C\x07O\x02\x02\u0A0C\u0204\x03\x02\x02\x02\u0A0D" + + "\u0A0E\x07J\x02\x02\u0A0E\u0206\x03\x02\x02\x02\u0A0F\u0A10\x07Y\x02\x02" + + "\u0A10\u0208\x03\x02\x02\x02\u0A11\u0A12\x07S\x02\x02\u0A12\u020A\x03" + + "\x02\x02\x02\u0A13\u0A14\x07[\x02\x02\u0A14\u020C\x03\x02\x02\x02\u0A15" + + "\u0A16\x05\u0215\u010B\x02\u0A16\u020E\x03\x02\x02\x02\u0A17\u0A19\x05" + + "\u021F\u0110\x02\u0A18\u0A17\x03\x02\x02\x02\u0A19\u0A1A\x03\x02\x02\x02" + + "\u0A1A\u0A18\x03\x02\x02\x02\u0A1A\u0A1B\x03\x02\x02\x02\u0A1B\u0210\x03" + + "\x02\x02\x02\u0A1C\u0A1E\x05\u021F\u0110\x02\u0A1D\u0A1C\x03\x02\x02\x02" + + "\u0A1E\u0A1F\x03\x02\x02\x02\u0A1F\u0A1D\x03\x02\x02\x02\u0A1F\u0A20\x03" + + "\x02\x02\x02\u0A20\u0A22\x03\x02\x02\x02\u0A21\u0A1D\x03\x02\x02\x02\u0A21" + + "\u0A22\x03\x02\x02\x02\u0A22\u0A23\x03\x02\x02\x02\u0A23\u0A25\x070\x02" + + "\x02\u0A24\u0A26\x05\u021F\u0110\x02\u0A25\u0A24\x03\x02\x02\x02\u0A26" + + "\u0A27\x03\x02\x02\x02\u0A27\u0A25\x03\x02\x02\x02\u0A27\u0A28\x03\x02" + + "\x02\x02\u0A28\u0212\x03\x02\x02\x02\u0A29\u0A2B\t\x02\x02\x02\u0A2A\u0A2C" + + "\t\x03\x02\x02\u0A2B\u0A2A\x03\x02\x02\x02\u0A2C\u0A2D\x03\x02\x02\x02" + + "\u0A2D\u0A2B\x03\x02\x02\x02\u0A2D\u0A2E\x03\x02\x02\x02\u0A2E\u0A30\x03" + + "\x02\x02\x02\u0A2F\u0A29\x03\x02\x02\x02\u0A30\u0A33\x03\x02\x02\x02\u0A31" + + "\u0A2F\x03\x02\x02\x02\u0A31\u0A32\x03\x02\x02\x02\u0A32\u0214\x03\x02" + + "\x02\x02\u0A33\u0A31\x03\x02\x02\x02\u0A34\u0A36\t\x04\x02\x02\u0A35\u0A34" + + "\x03\x02\x02\x02\u0A36\u0A37\x03\x02\x02\x02\u0A37\u0A38\x03\x02\x02\x02" + + "\u0A37\u0A35\x03\x02\x02\x02\u0A38\u0A3C\x03\x02\x02\x02\u0A39\u0A3B\t" + + "\x05\x02\x02\u0A3A\u0A39\x03\x02\x02\x02\u0A3B\u0A3E\x03\x02\x02\x02\u0A3C" + + "\u0A3A\x03\x02\x02\x02\u0A3C\u0A3D\x03\x02\x02\x02\u0A3D\u0216\x03\x02" + + "\x02\x02\u0A3E\u0A3C\x03\x02\x02\x02\u0A3F\u0A40\x05\u0215\u010B\x02\u0A40" + + "\u0A41\x05\u0213\u010A\x02\u0A41\u0218\x03\x02\x02\x02\u0A42\u0A4A\x07" + + "$\x02\x02\u0A43\u0A44\x07^\x02\x02\u0A44\u0A49\v\x02\x02\x02\u0A45\u0A46" + + "\x07$\x02\x02\u0A46\u0A49\x07$\x02\x02\u0A47\u0A49\n\x06\x02\x02\u0A48" + + "\u0A43\x03\x02\x02\x02\u0A48\u0A45\x03\x02\x02\x02\u0A48\u0A47\x03\x02" + + "\x02\x02\u0A49\u0A4C\x03\x02\x02\x02\u0A4A\u0A48\x03\x02\x02\x02\u0A4A" + + "\u0A4B\x03\x02\x02\x02\u0A4B\u0A4D\x03\x02\x02\x02\u0A4C\u0A4A\x03\x02" + + "\x02\x02\u0A4D\u0A4E\x07$\x02\x02\u0A4E\u021A\x03\x02\x02\x02\u0A4F\u0A57" + + "\x07)\x02\x02\u0A50\u0A51\x07^\x02\x02\u0A51\u0A56\v\x02\x02\x02\u0A52" + + "\u0A53\x07)\x02\x02\u0A53\u0A56\x07)\x02\x02\u0A54\u0A56\n\x07\x02\x02" + + "\u0A55\u0A50\x03\x02\x02\x02\u0A55\u0A52\x03\x02\x02\x02\u0A55\u0A54\x03" + + "\x02\x02\x02\u0A56\u0A59\x03\x02\x02\x02\u0A57\u0A55\x03\x02\x02\x02\u0A57" + + "\u0A58\x03\x02\x02\x02\u0A58\u0A5A\x03\x02\x02\x02\u0A59\u0A57\x03\x02" + + "\x02\x02\u0A5A\u0A5B\x07)\x02\x02\u0A5B\u021C\x03\x02\x02\x02\u0A5C\u0A64" + + "\x07b\x02\x02\u0A5D\u0A5E\x07^\x02\x02\u0A5E\u0A63\v\x02\x02\x02\u0A5F" + + "\u0A60\x07b\x02\x02\u0A60\u0A63\x07b\x02\x02\u0A61\u0A63\n\b\x02\x02\u0A62" + + "\u0A5D\x03\x02\x02\x02\u0A62\u0A5F\x03\x02\x02\x02\u0A62\u0A61\x03\x02" + + "\x02\x02\u0A63\u0A66\x03\x02\x02\x02\u0A64\u0A62\x03\x02\x02\x02\u0A64" + + "\u0A65\x03\x02\x02\x02\u0A65\u0A67\x03\x02\x02\x02\u0A66\u0A64\x03\x02" + + "\x02\x02\u0A67\u0A68\x07b\x02\x02\u0A68\u021E\x03\x02\x02\x02\u0A69\u0A6A" + + "\t\t\x02\x02\u0A6A\u0220\x03\x02\x02\x02\u0A6B\u0A6C\v\x02\x02\x02\u0A6C" + + "\u0A6D\x03\x02\x02\x02\u0A6D\u0A6E\b\u0111\x02\x02\u0A6E\u0222\x03\x02" + + "\x02\x02\x11\x02\u0A1A\u0A1F\u0A21\u0A27\u0A2D\u0A31\u0A37\u0A3C\u0A48" + + "\u0A4A\u0A55\u0A57\u0A62\u0A64\x03\x02\x05\x02"; + public static readonly _serializedATN: string = Utils.join( + [ + OpenSearchPPLLexer._serializedATNSegment0, + OpenSearchPPLLexer._serializedATNSegment1, + OpenSearchPPLLexer._serializedATNSegment2, + OpenSearchPPLLexer._serializedATNSegment3, + OpenSearchPPLLexer._serializedATNSegment4, + ], + "", + ); + public static __ATN: ATN; + public static get _ATN(): ATN { + if (!OpenSearchPPLLexer.__ATN) { + OpenSearchPPLLexer.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLLexer._serializedATN)); + } + + return OpenSearchPPLLexer.__ATN; + } + +} + diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp new file mode 100644 index 000000000..a9db73a19 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp @@ -0,0 +1,634 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +root +pplStatement +commands +searchCommand +whereCommand +fieldsCommand +renameCommand +statsCommand +dedupCommand +sortCommand +evalCommand +headCommand +topCommand +rareCommand +parseCommand +kmeansCommand +kmeansParameter +adCommand +adParameter +fromClause +renameClasue +byClause +statsByClause +bySpanClause +spanClause +sortbyClause +evalClause +statsAggTerm +statsFunction +statsFunctionName +percentileAggFunction +expression +logicalExpression +comparisonExpression +valueExpression +primaryExpression +booleanExpression +relevanceExpression +singleFieldRelevanceFunction +multiFieldRelevanceFunction +tableSource +fieldList +wcFieldList +sortField +sortFieldExpression +fieldExpression +wcFieldExpression +evalFunctionCall +dataTypeFunctionCall +booleanFunctionCall +convertedDataType +evalFunctionName +functionArgs +functionArg +relevanceArg +relevanceArgName +relevanceFieldAndWeight +relevanceFieldWeight +relevanceField +relevanceQuery +relevanceArgValue +mathematicalFunctionBase +trigonometricFunctionName +dateAndTimeFunctionBase +conditionFunctionBase +textFunctionBase +comparisonOperator +binaryOperator +singleFieldRelevanceFunctionName +multiFieldRelevanceFunctionName +literalValue +intervalLiteral +stringLiteral +integerLiteral +decimalLiteral +booleanLiteral +pattern +intervalUnit +timespanUnit +valueList +qualifiedName +wcQualifiedName +ident +wildcard +keywordsCanBeId + + +atn: +[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 2, 4, 66, 70, 87, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 78, 2, 80, 2, 82, 2, 84, 2, 86, 2, 88, 2, 90, 2, 92, 2, 94, 2, 96, 2, 98, 2, 100, 2, 102, 2, 104, 2, 106, 2, 108, 2, 110, 2, 112, 2, 114, 2, 116, 2, 118, 2, 120, 2, 122, 2, 124, 2, 126, 2, 128, 2, 130, 2, 132, 2, 134, 2, 136, 2, 138, 2, 140, 2, 142, 2, 144, 2, 146, 2, 148, 2, 150, 2, 152, 2, 154, 2, 156, 2, 158, 2, 160, 2, 162, 2, 164, 2, 166, 2, 168, 2, 170, 2, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts new file mode 100644 index 000000000..ddc4aeb96 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts @@ -0,0 +1,9805 @@ +// Generated from ./antlr/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ATN } from "antlr4ts/atn/ATN"; +import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; +import { FailedPredicateException } from "antlr4ts/FailedPredicateException"; +import { NotNull } from "antlr4ts/Decorators"; +import { NoViableAltException } from "antlr4ts/NoViableAltException"; +import { Override } from "antlr4ts/Decorators"; +import { Parser } from "antlr4ts/Parser"; +import { ParserRuleContext } from "antlr4ts/ParserRuleContext"; +import { ParserATNSimulator } from "antlr4ts/atn/ParserATNSimulator"; +import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; +import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; +import { RecognitionException } from "antlr4ts/RecognitionException"; +import { RuleContext } from "antlr4ts/RuleContext"; +//import { RuleVersion } from "antlr4ts/RuleVersion"; +import { TerminalNode } from "antlr4ts/tree/TerminalNode"; +import { Token } from "antlr4ts/Token"; +import { TokenStream } from "antlr4ts/TokenStream"; +import { Vocabulary } from "antlr4ts/Vocabulary"; +import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; + +import * as Utils from "antlr4ts/misc/Utils"; + +import { OpenSearchPPLParserListener } from "./OpenSearchPPLParserListener"; +import { OpenSearchPPLParserVisitor } from "./OpenSearchPPLParserVisitor"; + + +export class OpenSearchPPLParser extends Parser { + public static readonly SEARCH = 1; + public static readonly FROM = 2; + public static readonly WHERE = 3; + public static readonly FIELDS = 4; + public static readonly RENAME = 5; + public static readonly STATS = 6; + public static readonly DEDUP = 7; + public static readonly SORT = 8; + public static readonly EVAL = 9; + public static readonly HEAD = 10; + public static readonly TOP = 11; + public static readonly RARE = 12; + public static readonly PARSE = 13; + public static readonly KMEANS = 14; + public static readonly AD = 15; + public static readonly AS = 16; + public static readonly BY = 17; + public static readonly SOURCE = 18; + public static readonly INDEX = 19; + public static readonly D = 20; + public static readonly DESC = 21; + public static readonly SORTBY = 22; + public static readonly AUTO = 23; + public static readonly STR = 24; + public static readonly IP = 25; + public static readonly NUM = 26; + public static readonly KEEPEMPTY = 27; + public static readonly CONSECUTIVE = 28; + public static readonly DEDUP_SPLITVALUES = 29; + public static readonly PARTITIONS = 30; + public static readonly ALLNUM = 31; + public static readonly DELIM = 32; + public static readonly CENTROIDS = 33; + public static readonly ITERATIONS = 34; + public static readonly DISTANCE_TYPE = 35; + public static readonly NUMBER_OF_TREES = 36; + public static readonly SHINGLE_SIZE = 37; + public static readonly SAMPLE_SIZE = 38; + public static readonly OUTPUT_AFTER = 39; + public static readonly TIME_DECAY = 40; + public static readonly ANOMALY_RATE = 41; + public static readonly TIME_FIELD = 42; + public static readonly TIME_ZONE = 43; + public static readonly TRAINING_DATA_SIZE = 44; + public static readonly ANOMALY_SCORE_THRESHOLD = 45; + public static readonly CASE = 46; + public static readonly IN = 47; + public static readonly NOT = 48; + public static readonly OR = 49; + public static readonly AND = 50; + public static readonly XOR = 51; + public static readonly TRUE = 52; + public static readonly FALSE = 53; + public static readonly REGEXP = 54; + public static readonly DATETIME = 55; + public static readonly INTERVAL = 56; + public static readonly MICROSECOND = 57; + public static readonly MILLISECOND = 58; + public static readonly SECOND = 59; + public static readonly MINUTE = 60; + public static readonly HOUR = 61; + public static readonly DAY = 62; + public static readonly WEEK = 63; + public static readonly MONTH = 64; + public static readonly QUARTER = 65; + public static readonly YEAR = 66; + public static readonly SECOND_MICROSECOND = 67; + public static readonly MINUTE_MICROSECOND = 68; + public static readonly MINUTE_SECOND = 69; + public static readonly HOUR_MICROSECOND = 70; + public static readonly HOUR_SECOND = 71; + public static readonly HOUR_MINUTE = 72; + public static readonly DAY_MICROSECOND = 73; + public static readonly DAY_SECOND = 74; + public static readonly DAY_MINUTE = 75; + public static readonly DAY_HOUR = 76; + public static readonly YEAR_MONTH = 77; + public static readonly DATAMODEL = 78; + public static readonly LOOKUP = 79; + public static readonly SAVEDSEARCH = 80; + public static readonly INT = 81; + public static readonly INTEGER = 82; + public static readonly DOUBLE = 83; + public static readonly LONG = 84; + public static readonly FLOAT = 85; + public static readonly STRING = 86; + public static readonly BOOLEAN = 87; + public static readonly PIPE = 88; + public static readonly COMMA = 89; + public static readonly DOT = 90; + public static readonly EQUAL = 91; + public static readonly GREATER = 92; + public static readonly LESS = 93; + public static readonly NOT_GREATER = 94; + public static readonly NOT_LESS = 95; + public static readonly NOT_EQUAL = 96; + public static readonly PLUS = 97; + public static readonly MINUS = 98; + public static readonly STAR = 99; + public static readonly DIVIDE = 100; + public static readonly MODULE = 101; + public static readonly EXCLAMATION_SYMBOL = 102; + public static readonly COLON = 103; + public static readonly LT_PRTHS = 104; + public static readonly RT_PRTHS = 105; + public static readonly LT_SQR_PRTHS = 106; + public static readonly RT_SQR_PRTHS = 107; + public static readonly SINGLE_QUOTE = 108; + public static readonly DOUBLE_QUOTE = 109; + public static readonly BACKTICK = 110; + public static readonly BIT_NOT_OP = 111; + public static readonly BIT_AND_OP = 112; + public static readonly BIT_XOR_OP = 113; + public static readonly AVG = 114; + public static readonly COUNT = 115; + public static readonly DISTINCT_COUNT = 116; + public static readonly ESTDC = 117; + public static readonly ESTDC_ERROR = 118; + public static readonly MAX = 119; + public static readonly MEAN = 120; + public static readonly MEDIAN = 121; + public static readonly MIN = 122; + public static readonly MODE = 123; + public static readonly RANGE = 124; + public static readonly STDEV = 125; + public static readonly STDEVP = 126; + public static readonly SUM = 127; + public static readonly SUMSQ = 128; + public static readonly VAR_SAMP = 129; + public static readonly VAR_POP = 130; + public static readonly STDDEV_SAMP = 131; + public static readonly STDDEV_POP = 132; + public static readonly PERCENTILE = 133; + public static readonly FIRST = 134; + public static readonly LAST = 135; + public static readonly LIST = 136; + public static readonly VALUES = 137; + public static readonly EARLIEST = 138; + public static readonly EARLIEST_TIME = 139; + public static readonly LATEST = 140; + public static readonly LATEST_TIME = 141; + public static readonly PER_DAY = 142; + public static readonly PER_HOUR = 143; + public static readonly PER_MINUTE = 144; + public static readonly PER_SECOND = 145; + public static readonly RATE = 146; + public static readonly SPARKLINE = 147; + public static readonly C = 148; + public static readonly DC = 149; + public static readonly ABS = 150; + public static readonly CEIL = 151; + public static readonly CEILING = 152; + public static readonly CONV = 153; + public static readonly CRC32 = 154; + public static readonly E = 155; + public static readonly EXP = 156; + public static readonly FLOOR = 157; + public static readonly LN = 158; + public static readonly LOG = 159; + public static readonly LOG10 = 160; + public static readonly LOG2 = 161; + public static readonly MOD = 162; + public static readonly PI = 163; + public static readonly POW = 164; + public static readonly POWER = 165; + public static readonly RAND = 166; + public static readonly ROUND = 167; + public static readonly SIGN = 168; + public static readonly SQRT = 169; + public static readonly TRUNCATE = 170; + public static readonly ACOS = 171; + public static readonly ASIN = 172; + public static readonly ATAN = 173; + public static readonly ATAN2 = 174; + public static readonly COS = 175; + public static readonly COT = 176; + public static readonly DEGREES = 177; + public static readonly RADIANS = 178; + public static readonly SIN = 179; + public static readonly TAN = 180; + public static readonly ADDDATE = 181; + public static readonly DATE = 182; + public static readonly DATE_ADD = 183; + public static readonly DATE_SUB = 184; + public static readonly DAYOFMONTH = 185; + public static readonly DAYOFWEEK = 186; + public static readonly DAYOFYEAR = 187; + public static readonly DAYNAME = 188; + public static readonly FROM_DAYS = 189; + public static readonly MONTHNAME = 190; + public static readonly SUBDATE = 191; + public static readonly TIME = 192; + public static readonly TIME_TO_SEC = 193; + public static readonly TIMESTAMP = 194; + public static readonly DATE_FORMAT = 195; + public static readonly TO_DAYS = 196; + public static readonly SUBSTR = 197; + public static readonly SUBSTRING = 198; + public static readonly LTRIM = 199; + public static readonly RTRIM = 200; + public static readonly TRIM = 201; + public static readonly TO = 202; + public static readonly LOWER = 203; + public static readonly UPPER = 204; + public static readonly CONCAT = 205; + public static readonly CONCAT_WS = 206; + public static readonly LENGTH = 207; + public static readonly STRCMP = 208; + public static readonly RIGHT = 209; + public static readonly LEFT = 210; + public static readonly ASCII = 211; + public static readonly LOCATE = 212; + public static readonly REPLACE = 213; + public static readonly CAST = 214; + public static readonly LIKE = 215; + public static readonly ISNULL = 216; + public static readonly ISNOTNULL = 217; + public static readonly IFNULL = 218; + public static readonly NULLIF = 219; + public static readonly IF = 220; + public static readonly MATCH = 221; + public static readonly MATCH_PHRASE = 222; + public static readonly SIMPLE_QUERY_STRING = 223; + public static readonly ALLOW_LEADING_WILDCARD = 224; + public static readonly ANALYZE_WILDCARD = 225; + public static readonly ANALYZER = 226; + public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; + public static readonly BOOST = 228; + public static readonly CUTOFF_FREQUENCY = 229; + public static readonly DEFAULT_FIELD = 230; + public static readonly DEFAULT_OPERATOR = 231; + public static readonly ENABLE_POSITION_INCREMENTS = 232; + public static readonly FLAGS = 233; + public static readonly FUZZY_MAX_EXPANSIONS = 234; + public static readonly FUZZY_PREFIX_LENGTH = 235; + public static readonly FUZZY_TRANSPOSITIONS = 236; + public static readonly FUZZY_REWRITE = 237; + public static readonly FUZZINESS = 238; + public static readonly LENIENT = 239; + public static readonly LOW_FREQ_OPERATOR = 240; + public static readonly MAX_DETERMINIZED_STATES = 241; + public static readonly MAX_EXPANSIONS = 242; + public static readonly MINIMUM_SHOULD_MATCH = 243; + public static readonly OPERATOR = 244; + public static readonly PHRASE_SLOP = 245; + public static readonly PREFIX_LENGTH = 246; + public static readonly QUOTE_ANALYZER = 247; + public static readonly QUOTE_FIELD_SUFFIX = 248; + public static readonly REWRITE = 249; + public static readonly SLOP = 250; + public static readonly TIE_BREAKER = 251; + public static readonly TYPE = 252; + public static readonly ZERO_TERMS_QUERY = 253; + public static readonly SPAN = 254; + public static readonly MS = 255; + public static readonly S = 256; + public static readonly M = 257; + public static readonly H = 258; + public static readonly W = 259; + public static readonly Q = 260; + public static readonly Y = 261; + public static readonly ID = 262; + public static readonly INTEGER_LITERAL = 263; + public static readonly DECIMAL_LITERAL = 264; + public static readonly ID_DATE_SUFFIX = 265; + public static readonly DQUOTA_STRING = 266; + public static readonly SQUOTA_STRING = 267; + public static readonly BQUOTA_STRING = 268; + public static readonly ERROR_RECOGNITION = 269; + public static readonly RULE_root = 0; + public static readonly RULE_pplStatement = 1; + public static readonly RULE_commands = 2; + public static readonly RULE_searchCommand = 3; + public static readonly RULE_whereCommand = 4; + public static readonly RULE_fieldsCommand = 5; + public static readonly RULE_renameCommand = 6; + public static readonly RULE_statsCommand = 7; + public static readonly RULE_dedupCommand = 8; + public static readonly RULE_sortCommand = 9; + public static readonly RULE_evalCommand = 10; + public static readonly RULE_headCommand = 11; + public static readonly RULE_topCommand = 12; + public static readonly RULE_rareCommand = 13; + public static readonly RULE_parseCommand = 14; + public static readonly RULE_kmeansCommand = 15; + public static readonly RULE_kmeansParameter = 16; + public static readonly RULE_adCommand = 17; + public static readonly RULE_adParameter = 18; + public static readonly RULE_fromClause = 19; + public static readonly RULE_renameClasue = 20; + public static readonly RULE_byClause = 21; + public static readonly RULE_statsByClause = 22; + public static readonly RULE_bySpanClause = 23; + public static readonly RULE_spanClause = 24; + public static readonly RULE_sortbyClause = 25; + public static readonly RULE_evalClause = 26; + public static readonly RULE_statsAggTerm = 27; + public static readonly RULE_statsFunction = 28; + public static readonly RULE_statsFunctionName = 29; + public static readonly RULE_percentileAggFunction = 30; + public static readonly RULE_expression = 31; + public static readonly RULE_logicalExpression = 32; + public static readonly RULE_comparisonExpression = 33; + public static readonly RULE_valueExpression = 34; + public static readonly RULE_primaryExpression = 35; + public static readonly RULE_booleanExpression = 36; + public static readonly RULE_relevanceExpression = 37; + public static readonly RULE_singleFieldRelevanceFunction = 38; + public static readonly RULE_multiFieldRelevanceFunction = 39; + public static readonly RULE_tableSource = 40; + public static readonly RULE_fieldList = 41; + public static readonly RULE_wcFieldList = 42; + public static readonly RULE_sortField = 43; + public static readonly RULE_sortFieldExpression = 44; + public static readonly RULE_fieldExpression = 45; + public static readonly RULE_wcFieldExpression = 46; + public static readonly RULE_evalFunctionCall = 47; + public static readonly RULE_dataTypeFunctionCall = 48; + public static readonly RULE_booleanFunctionCall = 49; + public static readonly RULE_convertedDataType = 50; + public static readonly RULE_evalFunctionName = 51; + public static readonly RULE_functionArgs = 52; + public static readonly RULE_functionArg = 53; + public static readonly RULE_relevanceArg = 54; + public static readonly RULE_relevanceArgName = 55; + public static readonly RULE_relevanceFieldAndWeight = 56; + public static readonly RULE_relevanceFieldWeight = 57; + public static readonly RULE_relevanceField = 58; + public static readonly RULE_relevanceQuery = 59; + public static readonly RULE_relevanceArgValue = 60; + public static readonly RULE_mathematicalFunctionBase = 61; + public static readonly RULE_trigonometricFunctionName = 62; + public static readonly RULE_dateAndTimeFunctionBase = 63; + public static readonly RULE_conditionFunctionBase = 64; + public static readonly RULE_textFunctionBase = 65; + public static readonly RULE_comparisonOperator = 66; + public static readonly RULE_binaryOperator = 67; + public static readonly RULE_singleFieldRelevanceFunctionName = 68; + public static readonly RULE_multiFieldRelevanceFunctionName = 69; + public static readonly RULE_literalValue = 70; + public static readonly RULE_intervalLiteral = 71; + public static readonly RULE_stringLiteral = 72; + public static readonly RULE_integerLiteral = 73; + public static readonly RULE_decimalLiteral = 74; + public static readonly RULE_booleanLiteral = 75; + public static readonly RULE_pattern = 76; + public static readonly RULE_intervalUnit = 77; + public static readonly RULE_timespanUnit = 78; + public static readonly RULE_valueList = 79; + public static readonly RULE_qualifiedName = 80; + public static readonly RULE_wcQualifiedName = 81; + public static readonly RULE_ident = 82; + public static readonly RULE_wildcard = 83; + public static readonly RULE_keywordsCanBeId = 84; + // tslint:disable:no-trailing-whitespace + public static readonly ruleNames: string[] = [ + "root", "pplStatement", "commands", "searchCommand", "whereCommand", "fieldsCommand", + "renameCommand", "statsCommand", "dedupCommand", "sortCommand", "evalCommand", + "headCommand", "topCommand", "rareCommand", "parseCommand", "kmeansCommand", + "kmeansParameter", "adCommand", "adParameter", "fromClause", "renameClasue", + "byClause", "statsByClause", "bySpanClause", "spanClause", "sortbyClause", + "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", "percentileAggFunction", + "expression", "logicalExpression", "comparisonExpression", "valueExpression", + "primaryExpression", "booleanExpression", "relevanceExpression", "singleFieldRelevanceFunction", + "multiFieldRelevanceFunction", "tableSource", "fieldList", "wcFieldList", + "sortField", "sortFieldExpression", "fieldExpression", "wcFieldExpression", + "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", "convertedDataType", + "evalFunctionName", "functionArgs", "functionArg", "relevanceArg", "relevanceArgName", + "relevanceFieldAndWeight", "relevanceFieldWeight", "relevanceField", "relevanceQuery", + "relevanceArgValue", "mathematicalFunctionBase", "trigonometricFunctionName", + "dateAndTimeFunctionBase", "conditionFunctionBase", "textFunctionBase", + "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", + "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", + "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", + "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", + "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId", + ]; + + private static readonly _LITERAL_NAMES: Array = [ + undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", + "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", + "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", + "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", + "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", + "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", + "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", + "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", + "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", + "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, + undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", + "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", + "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", + "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", + "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", + "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", + "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", + "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", + "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", + "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", + "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", + "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", + "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", + "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", + "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", + "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", + "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", + "'W'", "'Q'", "'Y'", + ]; + private static readonly _SYMBOLIC_NAMES: Array = [ + undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", + "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", + "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", + "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", + "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", + "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", + "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", + "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", + "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", + "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", + ]; + public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLParser._LITERAL_NAMES, OpenSearchPPLParser._SYMBOLIC_NAMES, []); + + // @Override + // @NotNull + public get vocabulary(): Vocabulary { + return OpenSearchPPLParser.VOCABULARY; + } + // tslint:enable:no-trailing-whitespace + + // @Override + public get grammarFileName(): string { return "OpenSearchPPLParser.g4"; } + + // @Override + public get ruleNames(): string[] { return OpenSearchPPLParser.ruleNames; } + + // @Override + public get serializedATN(): string { return OpenSearchPPLParser._serializedATN; } + + protected createFailedPredicateException(predicate?: string, message?: string): FailedPredicateException { + return new FailedPredicateException(this, predicate, message); + } + + constructor(input: TokenStream) { + super(input); + this._interp = new ParserATNSimulator(OpenSearchPPLParser._ATN, this); + } + // @RuleVersion(0) + public root(): RootContext { + let _localctx: RootContext = new RootContext(this._ctx, this.state); + this.enterRule(_localctx, 0, OpenSearchPPLParser.RULE_root); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 171; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << OpenSearchPPLParser.SEARCH) | (1 << OpenSearchPPLParser.SOURCE) | (1 << OpenSearchPPLParser.INDEX) | (1 << OpenSearchPPLParser.D))) !== 0) || ((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & ((1 << (OpenSearchPPLParser.NOT - 48)) | (1 << (OpenSearchPPLParser.TRUE - 48)) | (1 << (OpenSearchPPLParser.FALSE - 48)) | (1 << (OpenSearchPPLParser.INTERVAL - 48)) | (1 << (OpenSearchPPLParser.MICROSECOND - 48)) | (1 << (OpenSearchPPLParser.MILLISECOND - 48)) | (1 << (OpenSearchPPLParser.SECOND - 48)) | (1 << (OpenSearchPPLParser.MINUTE - 48)) | (1 << (OpenSearchPPLParser.HOUR - 48)) | (1 << (OpenSearchPPLParser.DAY - 48)) | (1 << (OpenSearchPPLParser.WEEK - 48)) | (1 << (OpenSearchPPLParser.MONTH - 48)) | (1 << (OpenSearchPPLParser.QUARTER - 48)) | (1 << (OpenSearchPPLParser.YEAR - 48)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)) | (1 << (OpenSearchPPLParser.MATCH - 218)) | (1 << (OpenSearchPPLParser.MATCH_PHRASE - 218)) | (1 << (OpenSearchPPLParser.SIMPLE_QUERY_STRING - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { + { + this.state = 170; + this.pplStatement(); + } + } + + this.state = 173; + this.match(OpenSearchPPLParser.EOF); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public pplStatement(): PplStatementContext { + let _localctx: PplStatementContext = new PplStatementContext(this._ctx, this.state); + this.enterRule(_localctx, 2, OpenSearchPPLParser.RULE_pplStatement); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 175; + this.searchCommand(); + this.state = 180; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.PIPE) { + { + { + this.state = 176; + this.match(OpenSearchPPLParser.PIPE); + this.state = 177; + this.commands(); + } + } + this.state = 182; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public commands(): CommandsContext { + let _localctx: CommandsContext = new CommandsContext(this._ctx, this.state); + this.enterRule(_localctx, 4, OpenSearchPPLParser.RULE_commands); + try { + this.state = 196; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.WHERE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 183; + this.whereCommand(); + } + break; + case OpenSearchPPLParser.FIELDS: + this.enterOuterAlt(_localctx, 2); + { + this.state = 184; + this.fieldsCommand(); + } + break; + case OpenSearchPPLParser.RENAME: + this.enterOuterAlt(_localctx, 3); + { + this.state = 185; + this.renameCommand(); + } + break; + case OpenSearchPPLParser.STATS: + this.enterOuterAlt(_localctx, 4); + { + this.state = 186; + this.statsCommand(); + } + break; + case OpenSearchPPLParser.DEDUP: + this.enterOuterAlt(_localctx, 5); + { + this.state = 187; + this.dedupCommand(); + } + break; + case OpenSearchPPLParser.SORT: + this.enterOuterAlt(_localctx, 6); + { + this.state = 188; + this.sortCommand(); + } + break; + case OpenSearchPPLParser.EVAL: + this.enterOuterAlt(_localctx, 7); + { + this.state = 189; + this.evalCommand(); + } + break; + case OpenSearchPPLParser.HEAD: + this.enterOuterAlt(_localctx, 8); + { + this.state = 190; + this.headCommand(); + } + break; + case OpenSearchPPLParser.TOP: + this.enterOuterAlt(_localctx, 9); + { + this.state = 191; + this.topCommand(); + } + break; + case OpenSearchPPLParser.RARE: + this.enterOuterAlt(_localctx, 10); + { + this.state = 192; + this.rareCommand(); + } + break; + case OpenSearchPPLParser.PARSE: + this.enterOuterAlt(_localctx, 11); + { + this.state = 193; + this.parseCommand(); + } + break; + case OpenSearchPPLParser.KMEANS: + this.enterOuterAlt(_localctx, 12); + { + this.state = 194; + this.kmeansCommand(); + } + break; + case OpenSearchPPLParser.AD: + this.enterOuterAlt(_localctx, 13); + { + this.state = 195; + this.adCommand(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public searchCommand(): SearchCommandContext { + let _localctx: SearchCommandContext = new SearchCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 6, OpenSearchPPLParser.RULE_searchCommand); + let _la: number; + try { + this.state = 214; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 6, this._ctx) ) { + case 1: + _localctx = new SearchFromContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 199; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.SEARCH) { + { + this.state = 198; + this.match(OpenSearchPPLParser.SEARCH); + } + } + + this.state = 201; + this.fromClause(); + } + break; + + case 2: + _localctx = new SearchFromFilterContext(_localctx); + this.enterOuterAlt(_localctx, 2); + { + this.state = 203; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.SEARCH) { + { + this.state = 202; + this.match(OpenSearchPPLParser.SEARCH); + } + } + + this.state = 205; + this.fromClause(); + this.state = 206; + this.logicalExpression(0); + } + break; + + case 3: + _localctx = new SearchFilterFromContext(_localctx); + this.enterOuterAlt(_localctx, 3); + { + this.state = 209; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.SEARCH) { + { + this.state = 208; + this.match(OpenSearchPPLParser.SEARCH); + } + } + + this.state = 211; + this.logicalExpression(0); + this.state = 212; + this.fromClause(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public whereCommand(): WhereCommandContext { + let _localctx: WhereCommandContext = new WhereCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 8, OpenSearchPPLParser.RULE_whereCommand); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 216; + this.match(OpenSearchPPLParser.WHERE); + this.state = 217; + this.logicalExpression(0); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fieldsCommand(): FieldsCommandContext { + let _localctx: FieldsCommandContext = new FieldsCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 10, OpenSearchPPLParser.RULE_fieldsCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 219; + this.match(OpenSearchPPLParser.FIELDS); + this.state = 221; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 220; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 223; + this.fieldList(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public renameCommand(): RenameCommandContext { + let _localctx: RenameCommandContext = new RenameCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 12, OpenSearchPPLParser.RULE_renameCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 225; + this.match(OpenSearchPPLParser.RENAME); + this.state = 226; + this.renameClasue(); + this.state = 231; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 227; + this.match(OpenSearchPPLParser.COMMA); + this.state = 228; + this.renameClasue(); + } + } + this.state = 233; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsCommand(): StatsCommandContext { + let _localctx: StatsCommandContext = new StatsCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 14, OpenSearchPPLParser.RULE_statsCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 234; + this.match(OpenSearchPPLParser.STATS); + this.state = 238; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PARTITIONS) { + { + this.state = 235; + this.match(OpenSearchPPLParser.PARTITIONS); + this.state = 236; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 237; + _localctx._partitions = this.integerLiteral(); + } + } + + this.state = 243; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.ALLNUM) { + { + this.state = 240; + this.match(OpenSearchPPLParser.ALLNUM); + this.state = 241; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 242; + _localctx._allnum = this.booleanLiteral(); + } + } + + this.state = 248; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.DELIM) { + { + this.state = 245; + this.match(OpenSearchPPLParser.DELIM); + this.state = 246; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 247; + _localctx._delim = this.stringLiteral(); + } + } + + this.state = 250; + this.statsAggTerm(); + this.state = 255; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 251; + this.match(OpenSearchPPLParser.COMMA); + this.state = 252; + this.statsAggTerm(); + } + } + this.state = 257; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 259; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.BY) { + { + this.state = 258; + this.statsByClause(); + } + } + + this.state = 264; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.DEDUP_SPLITVALUES) { + { + this.state = 261; + this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); + this.state = 262; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 263; + _localctx._dedupsplit = this.booleanLiteral(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public dedupCommand(): DedupCommandContext { + let _localctx: DedupCommandContext = new DedupCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 16, OpenSearchPPLParser.RULE_dedupCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 266; + this.match(OpenSearchPPLParser.DEDUP); + this.state = 268; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { + { + this.state = 267; + _localctx._number = this.integerLiteral(); + } + } + + this.state = 270; + this.fieldList(); + this.state = 274; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.KEEPEMPTY) { + { + this.state = 271; + this.match(OpenSearchPPLParser.KEEPEMPTY); + this.state = 272; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 273; + _localctx._keepempty = this.booleanLiteral(); + } + } + + this.state = 279; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.CONSECUTIVE) { + { + this.state = 276; + this.match(OpenSearchPPLParser.CONSECUTIVE); + this.state = 277; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 278; + _localctx._consecutive = this.booleanLiteral(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortCommand(): SortCommandContext { + let _localctx: SortCommandContext = new SortCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 18, OpenSearchPPLParser.RULE_sortCommand); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 281; + this.match(OpenSearchPPLParser.SORT); + this.state = 282; + this.sortbyClause(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalCommand(): EvalCommandContext { + let _localctx: EvalCommandContext = new EvalCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 20, OpenSearchPPLParser.RULE_evalCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 284; + this.match(OpenSearchPPLParser.EVAL); + this.state = 285; + this.evalClause(); + this.state = 290; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 286; + this.match(OpenSearchPPLParser.COMMA); + this.state = 287; + this.evalClause(); + } + } + this.state = 292; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public headCommand(): HeadCommandContext { + let _localctx: HeadCommandContext = new HeadCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 22, OpenSearchPPLParser.RULE_headCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 293; + this.match(OpenSearchPPLParser.HEAD); + this.state = 295; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { + { + this.state = 294; + _localctx._number = this.integerLiteral(); + } + } + + this.state = 299; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.FROM) { + { + this.state = 297; + this.match(OpenSearchPPLParser.FROM); + this.state = 298; + _localctx._from = this.integerLiteral(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public topCommand(): TopCommandContext { + let _localctx: TopCommandContext = new TopCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 24, OpenSearchPPLParser.RULE_topCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 301; + this.match(OpenSearchPPLParser.TOP); + this.state = 303; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { + { + this.state = 302; + _localctx._number = this.integerLiteral(); + } + } + + this.state = 305; + this.fieldList(); + this.state = 307; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.BY) { + { + this.state = 306; + this.byClause(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public rareCommand(): RareCommandContext { + let _localctx: RareCommandContext = new RareCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 26, OpenSearchPPLParser.RULE_rareCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 309; + this.match(OpenSearchPPLParser.RARE); + this.state = 310; + this.fieldList(); + this.state = 312; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.BY) { + { + this.state = 311; + this.byClause(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public parseCommand(): ParseCommandContext { + let _localctx: ParseCommandContext = new ParseCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 28, OpenSearchPPLParser.RULE_parseCommand); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 314; + this.match(OpenSearchPPLParser.PARSE); + this.state = 315; + this.expression(); + this.state = 316; + this.pattern(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public kmeansCommand(): KmeansCommandContext { + let _localctx: KmeansCommandContext = new KmeansCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 30, OpenSearchPPLParser.RULE_kmeansCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 318; + this.match(OpenSearchPPLParser.KMEANS); + this.state = 322; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & ((1 << (OpenSearchPPLParser.CENTROIDS - 33)) | (1 << (OpenSearchPPLParser.ITERATIONS - 33)) | (1 << (OpenSearchPPLParser.DISTANCE_TYPE - 33)))) !== 0)) { + { + { + this.state = 319; + this.kmeansParameter(); + } + } + this.state = 324; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public kmeansParameter(): KmeansParameterContext { + let _localctx: KmeansParameterContext = new KmeansParameterContext(this._ctx, this.state); + this.enterRule(_localctx, 32, OpenSearchPPLParser.RULE_kmeansParameter); + try { + this.state = 334; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.CENTROIDS: + this.enterOuterAlt(_localctx, 1); + { + { + this.state = 325; + this.match(OpenSearchPPLParser.CENTROIDS); + this.state = 326; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 327; + _localctx._centroids = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.ITERATIONS: + this.enterOuterAlt(_localctx, 2); + { + { + this.state = 328; + this.match(OpenSearchPPLParser.ITERATIONS); + this.state = 329; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 330; + _localctx._iterations = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.DISTANCE_TYPE: + this.enterOuterAlt(_localctx, 3); + { + { + this.state = 331; + this.match(OpenSearchPPLParser.DISTANCE_TYPE); + this.state = 332; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 333; + _localctx._distance_type = this.stringLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public adCommand(): AdCommandContext { + let _localctx: AdCommandContext = new AdCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 34, OpenSearchPPLParser.RULE_adCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 336; + this.match(OpenSearchPPLParser.AD); + this.state = 340; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & ((1 << (OpenSearchPPLParser.NUMBER_OF_TREES - 36)) | (1 << (OpenSearchPPLParser.SHINGLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.SAMPLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.OUTPUT_AFTER - 36)) | (1 << (OpenSearchPPLParser.TIME_DECAY - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_RATE - 36)) | (1 << (OpenSearchPPLParser.TIME_FIELD - 36)) | (1 << (OpenSearchPPLParser.TIME_ZONE - 36)) | (1 << (OpenSearchPPLParser.TRAINING_DATA_SIZE - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD - 36)))) !== 0) || _la === OpenSearchPPLParser.DATE_FORMAT) { + { + { + this.state = 337; + this.adParameter(); + } + } + this.state = 342; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public adParameter(): AdParameterContext { + let _localctx: AdParameterContext = new AdParameterContext(this._ctx, this.state); + this.enterRule(_localctx, 36, OpenSearchPPLParser.RULE_adParameter); + try { + this.state = 376; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.NUMBER_OF_TREES: + this.enterOuterAlt(_localctx, 1); + { + { + this.state = 343; + this.match(OpenSearchPPLParser.NUMBER_OF_TREES); + this.state = 344; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 345; + _localctx._number_of_trees = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.SHINGLE_SIZE: + this.enterOuterAlt(_localctx, 2); + { + { + this.state = 346; + this.match(OpenSearchPPLParser.SHINGLE_SIZE); + this.state = 347; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 348; + _localctx._shingle_size = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.SAMPLE_SIZE: + this.enterOuterAlt(_localctx, 3); + { + { + this.state = 349; + this.match(OpenSearchPPLParser.SAMPLE_SIZE); + this.state = 350; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 351; + _localctx._sample_size = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.OUTPUT_AFTER: + this.enterOuterAlt(_localctx, 4); + { + { + this.state = 352; + this.match(OpenSearchPPLParser.OUTPUT_AFTER); + this.state = 353; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 354; + _localctx._output_after = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.TIME_DECAY: + this.enterOuterAlt(_localctx, 5); + { + { + this.state = 355; + this.match(OpenSearchPPLParser.TIME_DECAY); + this.state = 356; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 357; + _localctx._time_decay = this.decimalLiteral(); + } + } + break; + case OpenSearchPPLParser.ANOMALY_RATE: + this.enterOuterAlt(_localctx, 6); + { + { + this.state = 358; + this.match(OpenSearchPPLParser.ANOMALY_RATE); + this.state = 359; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 360; + _localctx._anomaly_rate = this.decimalLiteral(); + } + } + break; + case OpenSearchPPLParser.TIME_FIELD: + this.enterOuterAlt(_localctx, 7); + { + { + this.state = 361; + this.match(OpenSearchPPLParser.TIME_FIELD); + this.state = 362; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 363; + _localctx._time_field = this.stringLiteral(); + } + } + break; + case OpenSearchPPLParser.DATE_FORMAT: + this.enterOuterAlt(_localctx, 8); + { + { + this.state = 364; + this.match(OpenSearchPPLParser.DATE_FORMAT); + this.state = 365; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 366; + _localctx._date_format = this.stringLiteral(); + } + } + break; + case OpenSearchPPLParser.TIME_ZONE: + this.enterOuterAlt(_localctx, 9); + { + { + this.state = 367; + this.match(OpenSearchPPLParser.TIME_ZONE); + this.state = 368; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 369; + _localctx._time_zone = this.stringLiteral(); + } + } + break; + case OpenSearchPPLParser.TRAINING_DATA_SIZE: + this.enterOuterAlt(_localctx, 10); + { + { + this.state = 370; + this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); + this.state = 371; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 372; + _localctx._training_data_size = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD: + this.enterOuterAlt(_localctx, 11); + { + { + this.state = 373; + this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); + this.state = 374; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 375; + _localctx._anomaly_score_threshold = this.decimalLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fromClause(): FromClauseContext { + let _localctx: FromClauseContext = new FromClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 38, OpenSearchPPLParser.RULE_fromClause); + let _la: number; + try { + this.state = 398; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.SOURCE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 378; + this.match(OpenSearchPPLParser.SOURCE); + this.state = 379; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 380; + this.tableSource(); + this.state = 385; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 381; + this.match(OpenSearchPPLParser.COMMA); + this.state = 382; + this.tableSource(); + } + } + this.state = 387; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + break; + case OpenSearchPPLParser.INDEX: + this.enterOuterAlt(_localctx, 2); + { + this.state = 388; + this.match(OpenSearchPPLParser.INDEX); + this.state = 389; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 390; + this.tableSource(); + this.state = 395; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 391; + this.match(OpenSearchPPLParser.COMMA); + this.state = 392; + this.tableSource(); + } + } + this.state = 397; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public renameClasue(): RenameClasueContext { + let _localctx: RenameClasueContext = new RenameClasueContext(this._ctx, this.state); + this.enterRule(_localctx, 40, OpenSearchPPLParser.RULE_renameClasue); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 400; + _localctx._orignalField = this.wcFieldExpression(); + this.state = 401; + this.match(OpenSearchPPLParser.AS); + this.state = 402; + _localctx._renamedField = this.wcFieldExpression(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public byClause(): ByClauseContext { + let _localctx: ByClauseContext = new ByClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 42, OpenSearchPPLParser.RULE_byClause); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 404; + this.match(OpenSearchPPLParser.BY); + this.state = 405; + this.fieldList(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsByClause(): StatsByClauseContext { + let _localctx: StatsByClauseContext = new StatsByClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 44, OpenSearchPPLParser.RULE_statsByClause); + try { + this.state = 416; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 31, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 407; + this.match(OpenSearchPPLParser.BY); + this.state = 408; + this.fieldList(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 409; + this.match(OpenSearchPPLParser.BY); + this.state = 410; + this.bySpanClause(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 411; + this.match(OpenSearchPPLParser.BY); + this.state = 412; + this.bySpanClause(); + this.state = 413; + this.match(OpenSearchPPLParser.COMMA); + this.state = 414; + this.fieldList(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public bySpanClause(): BySpanClauseContext { + let _localctx: BySpanClauseContext = new BySpanClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 46, OpenSearchPPLParser.RULE_bySpanClause); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 418; + this.spanClause(); + this.state = 421; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.AS) { + { + this.state = 419; + this.match(OpenSearchPPLParser.AS); + this.state = 420; + _localctx._alias = this.qualifiedName(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public spanClause(): SpanClauseContext { + let _localctx: SpanClauseContext = new SpanClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 48, OpenSearchPPLParser.RULE_spanClause); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 423; + this.match(OpenSearchPPLParser.SPAN); + this.state = 424; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 425; + this.fieldExpression(); + this.state = 426; + this.match(OpenSearchPPLParser.COMMA); + this.state = 427; + _localctx._value = this.literalValue(); + this.state = 429; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0)) { + { + this.state = 428; + _localctx._unit = this.timespanUnit(); + } + } + + this.state = 431; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortbyClause(): SortbyClauseContext { + let _localctx: SortbyClauseContext = new SortbyClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 50, OpenSearchPPLParser.RULE_sortbyClause); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 433; + this.sortField(); + this.state = 438; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 434; + this.match(OpenSearchPPLParser.COMMA); + this.state = 435; + this.sortField(); + } + } + this.state = 440; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalClause(): EvalClauseContext { + let _localctx: EvalClauseContext = new EvalClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 52, OpenSearchPPLParser.RULE_evalClause); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 441; + this.fieldExpression(); + this.state = 442; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 443; + this.expression(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsAggTerm(): StatsAggTermContext { + let _localctx: StatsAggTermContext = new StatsAggTermContext(this._ctx, this.state); + this.enterRule(_localctx, 54, OpenSearchPPLParser.RULE_statsAggTerm); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 445; + this.statsFunction(); + this.state = 448; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.AS) { + { + this.state = 446; + this.match(OpenSearchPPLParser.AS); + this.state = 447; + _localctx._alias = this.wcFieldExpression(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsFunction(): StatsFunctionContext { + let _localctx: StatsFunctionContext = new StatsFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 56, OpenSearchPPLParser.RULE_statsFunction); + let _la: number; + try { + this.state = 464; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 36, this._ctx) ) { + case 1: + _localctx = new StatsFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 450; + this.statsFunctionName(); + this.state = 451; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 452; + this.valueExpression(0); + this.state = 453; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + + case 2: + _localctx = new CountAllFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 2); + { + this.state = 455; + this.match(OpenSearchPPLParser.COUNT); + this.state = 456; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 457; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + + case 3: + _localctx = new DistinctCountFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 3); + { + this.state = 458; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.DISTINCT_COUNT || _la === OpenSearchPPLParser.DC)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 459; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 460; + this.valueExpression(0); + this.state = 461; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + + case 4: + _localctx = new PercentileAggFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 4); + { + this.state = 463; + this.percentileAggFunction(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsFunctionName(): StatsFunctionNameContext { + let _localctx: StatsFunctionNameContext = new StatsFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 58, OpenSearchPPLParser.RULE_statsFunctionName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 466; + _la = this._input.LA(1); + if (!(((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & ((1 << (OpenSearchPPLParser.AVG - 114)) | (1 << (OpenSearchPPLParser.COUNT - 114)) | (1 << (OpenSearchPPLParser.MAX - 114)) | (1 << (OpenSearchPPLParser.MIN - 114)) | (1 << (OpenSearchPPLParser.SUM - 114)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 114)) | (1 << (OpenSearchPPLParser.VAR_POP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 114)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public percentileAggFunction(): PercentileAggFunctionContext { + let _localctx: PercentileAggFunctionContext = new PercentileAggFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 60, OpenSearchPPLParser.RULE_percentileAggFunction); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 468; + this.match(OpenSearchPPLParser.PERCENTILE); + this.state = 469; + this.match(OpenSearchPPLParser.LESS); + this.state = 470; + _localctx._value = this.integerLiteral(); + this.state = 471; + this.match(OpenSearchPPLParser.GREATER); + this.state = 472; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 473; + _localctx._aggField = this.fieldExpression(); + this.state = 474; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public expression(): ExpressionContext { + let _localctx: ExpressionContext = new ExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 62, OpenSearchPPLParser.RULE_expression); + try { + this.state = 479; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 37, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 476; + this.logicalExpression(0); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 477; + this.comparisonExpression(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 478; + this.valueExpression(0); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + + public logicalExpression(): LogicalExpressionContext; + public logicalExpression(_p: number): LogicalExpressionContext; + // @RuleVersion(0) + public logicalExpression(_p?: number): LogicalExpressionContext { + if (_p === undefined) { + _p = 0; + } + + let _parentctx: ParserRuleContext = this._ctx; + let _parentState: number = this.state; + let _localctx: LogicalExpressionContext = new LogicalExpressionContext(this._ctx, _parentState); + let _prevctx: LogicalExpressionContext = _localctx; + let _startState: number = 64; + this.enterRecursionRule(_localctx, 64, OpenSearchPPLParser.RULE_logicalExpression, _p); + let _la: number; + try { + let _alt: number; + this.enterOuterAlt(_localctx, 1); + { + this.state = 487; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 38, this._ctx) ) { + case 1: + { + _localctx = new ComparsionContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + + this.state = 482; + this.comparisonExpression(); + } + break; + + case 2: + { + _localctx = new LogicalNotContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 483; + this.match(OpenSearchPPLParser.NOT); + this.state = 484; + this.logicalExpression(6); + } + break; + + case 3: + { + _localctx = new BooleanExprContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 485; + this.booleanExpression(); + } + break; + + case 4: + { + _localctx = new RelevanceExprContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 486; + this.relevanceExpression(); + } + break; + } + this._ctx._stop = this._input.tryLT(-1); + this.state = 502; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = _localctx; + { + this.state = 500; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 40, this._ctx) ) { + case 1: + { + _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); + (_localctx as LogicalOrContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); + this.state = 489; + if (!(this.precpred(this._ctx, 5))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); + } + this.state = 490; + this.match(OpenSearchPPLParser.OR); + this.state = 491; + (_localctx as LogicalOrContext)._right = this.logicalExpression(6); + } + break; + + case 2: + { + _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); + (_localctx as LogicalAndContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); + this.state = 492; + if (!(this.precpred(this._ctx, 4))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); + } + this.state = 494; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.AND) { + { + this.state = 493; + this.match(OpenSearchPPLParser.AND); + } + } + + this.state = 496; + (_localctx as LogicalAndContext)._right = this.logicalExpression(5); + } + break; + + case 3: + { + _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); + (_localctx as LogicalXorContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); + this.state = 497; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 498; + this.match(OpenSearchPPLParser.XOR); + this.state = 499; + (_localctx as LogicalXorContext)._right = this.logicalExpression(4); + } + break; + } + } + } + this.state = 504; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.unrollRecursionContexts(_parentctx); + } + return _localctx; + } + // @RuleVersion(0) + public comparisonExpression(): ComparisonExpressionContext { + let _localctx: ComparisonExpressionContext = new ComparisonExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 66, OpenSearchPPLParser.RULE_comparisonExpression); + try { + this.state = 513; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 42, this._ctx) ) { + case 1: + _localctx = new CompareExprContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 505; + (_localctx as CompareExprContext)._left = this.valueExpression(0); + this.state = 506; + this.comparisonOperator(); + this.state = 507; + (_localctx as CompareExprContext)._right = this.valueExpression(0); + } + break; + + case 2: + _localctx = new InExprContext(_localctx); + this.enterOuterAlt(_localctx, 2); + { + this.state = 509; + this.valueExpression(0); + this.state = 510; + this.match(OpenSearchPPLParser.IN); + this.state = 511; + this.valueList(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + + public valueExpression(): ValueExpressionContext; + public valueExpression(_p: number): ValueExpressionContext; + // @RuleVersion(0) + public valueExpression(_p?: number): ValueExpressionContext { + if (_p === undefined) { + _p = 0; + } + + let _parentctx: ParserRuleContext = this._ctx; + let _parentState: number = this.state; + let _localctx: ValueExpressionContext = new ValueExpressionContext(this._ctx, _parentState); + let _prevctx: ValueExpressionContext = _localctx; + let _startState: number = 68; + this.enterRecursionRule(_localctx, 68, OpenSearchPPLParser.RULE_valueExpression, _p); + try { + let _alt: number; + this.enterOuterAlt(_localctx, 1); + { + this.state = 523; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.LT_PRTHS: + { + _localctx = new ParentheticBinaryArithmeticContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + + this.state = 516; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 517; + (_localctx as ParentheticBinaryArithmeticContext)._left = this.valueExpression(0); + this.state = 518; + this.binaryOperator(); + this.state = 519; + (_localctx as ParentheticBinaryArithmeticContext)._right = this.valueExpression(0); + this.state = 520; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.TRUE: + case OpenSearchPPLParser.FALSE: + case OpenSearchPPLParser.INTERVAL: + case OpenSearchPPLParser.MICROSECOND: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.PLUS: + case OpenSearchPPLParser.MINUS: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.ABS: + case OpenSearchPPLParser.CEIL: + case OpenSearchPPLParser.CEILING: + case OpenSearchPPLParser.CONV: + case OpenSearchPPLParser.CRC32: + case OpenSearchPPLParser.E: + case OpenSearchPPLParser.EXP: + case OpenSearchPPLParser.FLOOR: + case OpenSearchPPLParser.LN: + case OpenSearchPPLParser.LOG: + case OpenSearchPPLParser.LOG10: + case OpenSearchPPLParser.LOG2: + case OpenSearchPPLParser.MOD: + case OpenSearchPPLParser.PI: + case OpenSearchPPLParser.POW: + case OpenSearchPPLParser.POWER: + case OpenSearchPPLParser.RAND: + case OpenSearchPPLParser.ROUND: + case OpenSearchPPLParser.SIGN: + case OpenSearchPPLParser.SQRT: + case OpenSearchPPLParser.TRUNCATE: + case OpenSearchPPLParser.ACOS: + case OpenSearchPPLParser.ASIN: + case OpenSearchPPLParser.ATAN: + case OpenSearchPPLParser.ATAN2: + case OpenSearchPPLParser.COS: + case OpenSearchPPLParser.COT: + case OpenSearchPPLParser.DEGREES: + case OpenSearchPPLParser.RADIANS: + case OpenSearchPPLParser.SIN: + case OpenSearchPPLParser.TAN: + case OpenSearchPPLParser.ADDDATE: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.DATE_ADD: + case OpenSearchPPLParser.DATE_SUB: + case OpenSearchPPLParser.DAYOFMONTH: + case OpenSearchPPLParser.DAYOFWEEK: + case OpenSearchPPLParser.DAYOFYEAR: + case OpenSearchPPLParser.DAYNAME: + case OpenSearchPPLParser.FROM_DAYS: + case OpenSearchPPLParser.MONTHNAME: + case OpenSearchPPLParser.SUBDATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIME_TO_SEC: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.DATE_FORMAT: + case OpenSearchPPLParser.TO_DAYS: + case OpenSearchPPLParser.SUBSTR: + case OpenSearchPPLParser.SUBSTRING: + case OpenSearchPPLParser.LTRIM: + case OpenSearchPPLParser.RTRIM: + case OpenSearchPPLParser.TRIM: + case OpenSearchPPLParser.LOWER: + case OpenSearchPPLParser.UPPER: + case OpenSearchPPLParser.CONCAT: + case OpenSearchPPLParser.CONCAT_WS: + case OpenSearchPPLParser.LENGTH: + case OpenSearchPPLParser.STRCMP: + case OpenSearchPPLParser.RIGHT: + case OpenSearchPPLParser.LEFT: + case OpenSearchPPLParser.ASCII: + case OpenSearchPPLParser.LOCATE: + case OpenSearchPPLParser.REPLACE: + case OpenSearchPPLParser.CAST: + case OpenSearchPPLParser.LIKE: + case OpenSearchPPLParser.ISNULL: + case OpenSearchPPLParser.ISNOTNULL: + case OpenSearchPPLParser.IFNULL: + case OpenSearchPPLParser.NULLIF: + case OpenSearchPPLParser.IF: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.INTEGER_LITERAL: + case OpenSearchPPLParser.DECIMAL_LITERAL: + case OpenSearchPPLParser.DQUOTA_STRING: + case OpenSearchPPLParser.SQUOTA_STRING: + case OpenSearchPPLParser.BQUOTA_STRING: + { + _localctx = new ValueExpressionDefaultContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 522; + this.primaryExpression(); + } + break; + default: + throw new NoViableAltException(this); + } + this._ctx._stop = this._input.tryLT(-1); + this.state = 531; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = _localctx; + { + { + _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); + (_localctx as BinaryArithmeticContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_valueExpression); + this.state = 525; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 526; + this.binaryOperator(); + this.state = 527; + (_localctx as BinaryArithmeticContext)._right = this.valueExpression(4); + } + } + } + this.state = 533; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.unrollRecursionContexts(_parentctx); + } + return _localctx; + } + // @RuleVersion(0) + public primaryExpression(): PrimaryExpressionContext { + let _localctx: PrimaryExpressionContext = new PrimaryExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 70, OpenSearchPPLParser.RULE_primaryExpression); + try { + this.state = 538; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 45, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 534; + this.evalFunctionCall(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 535; + this.dataTypeFunctionCall(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 536; + this.fieldExpression(); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 537; + this.literalValue(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public booleanExpression(): BooleanExpressionContext { + let _localctx: BooleanExpressionContext = new BooleanExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 72, OpenSearchPPLParser.RULE_booleanExpression); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 540; + this.booleanFunctionCall(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceExpression(): RelevanceExpressionContext { + let _localctx: RelevanceExpressionContext = new RelevanceExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 74, OpenSearchPPLParser.RULE_relevanceExpression); + try { + this.state = 544; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.MATCH: + case OpenSearchPPLParser.MATCH_PHRASE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 542; + this.singleFieldRelevanceFunction(); + } + break; + case OpenSearchPPLParser.SIMPLE_QUERY_STRING: + this.enterOuterAlt(_localctx, 2); + { + this.state = 543; + this.multiFieldRelevanceFunction(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext { + let _localctx: SingleFieldRelevanceFunctionContext = new SingleFieldRelevanceFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 76, OpenSearchPPLParser.RULE_singleFieldRelevanceFunction); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 546; + this.singleFieldRelevanceFunctionName(); + this.state = 547; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 548; + _localctx._field = this.relevanceField(); + this.state = 549; + this.match(OpenSearchPPLParser.COMMA); + this.state = 550; + _localctx._query = this.relevanceQuery(); + this.state = 555; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 551; + this.match(OpenSearchPPLParser.COMMA); + this.state = 552; + this.relevanceArg(); + } + } + this.state = 557; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 558; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext { + let _localctx: MultiFieldRelevanceFunctionContext = new MultiFieldRelevanceFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 78, OpenSearchPPLParser.RULE_multiFieldRelevanceFunction); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 560; + this.multiFieldRelevanceFunctionName(); + this.state = 561; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 562; + this.match(OpenSearchPPLParser.LT_SQR_PRTHS); + this.state = 563; + _localctx._field = this.relevanceFieldAndWeight(); + this.state = 568; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 564; + this.match(OpenSearchPPLParser.COMMA); + this.state = 565; + _localctx._field = this.relevanceFieldAndWeight(); + } + } + this.state = 570; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 571; + this.match(OpenSearchPPLParser.RT_SQR_PRTHS); + this.state = 572; + this.match(OpenSearchPPLParser.COMMA); + this.state = 573; + _localctx._query = this.relevanceQuery(); + this.state = 578; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 574; + this.match(OpenSearchPPLParser.COMMA); + this.state = 575; + this.relevanceArg(); + } + } + this.state = 580; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 581; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public tableSource(): TableSourceContext { + let _localctx: TableSourceContext = new TableSourceContext(this._ctx, this.state); + this.enterRule(_localctx, 80, OpenSearchPPLParser.RULE_tableSource); + try { + this.state = 585; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 583; + this.qualifiedName(); + } + break; + case OpenSearchPPLParser.ID_DATE_SUFFIX: + this.enterOuterAlt(_localctx, 2); + { + this.state = 584; + this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fieldList(): FieldListContext { + let _localctx: FieldListContext = new FieldListContext(this._ctx, this.state); + this.enterRule(_localctx, 82, OpenSearchPPLParser.RULE_fieldList); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 587; + this.fieldExpression(); + this.state = 592; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 588; + this.match(OpenSearchPPLParser.COMMA); + this.state = 589; + this.fieldExpression(); + } + } + this.state = 594; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wcFieldList(): WcFieldListContext { + let _localctx: WcFieldListContext = new WcFieldListContext(this._ctx, this.state); + this.enterRule(_localctx, 84, OpenSearchPPLParser.RULE_wcFieldList); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 595; + this.wcFieldExpression(); + this.state = 600; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 596; + this.match(OpenSearchPPLParser.COMMA); + this.state = 597; + this.wcFieldExpression(); + } + } + this.state = 602; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortField(): SortFieldContext { + let _localctx: SortFieldContext = new SortFieldContext(this._ctx, this.state); + this.enterRule(_localctx, 86, OpenSearchPPLParser.RULE_sortField); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 604; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 603; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 606; + this.sortFieldExpression(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortFieldExpression(): SortFieldExpressionContext { + let _localctx: SortFieldExpressionContext = new SortFieldExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 88, OpenSearchPPLParser.RULE_sortFieldExpression); + try { + this.state = 629; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 608; + this.fieldExpression(); + } + break; + case OpenSearchPPLParser.AUTO: + this.enterOuterAlt(_localctx, 2); + { + this.state = 609; + this.match(OpenSearchPPLParser.AUTO); + this.state = 610; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 611; + this.fieldExpression(); + this.state = 612; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.STR: + this.enterOuterAlt(_localctx, 3); + { + this.state = 614; + this.match(OpenSearchPPLParser.STR); + this.state = 615; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 616; + this.fieldExpression(); + this.state = 617; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.IP: + this.enterOuterAlt(_localctx, 4); + { + this.state = 619; + this.match(OpenSearchPPLParser.IP); + this.state = 620; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 621; + this.fieldExpression(); + this.state = 622; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.NUM: + this.enterOuterAlt(_localctx, 5); + { + this.state = 624; + this.match(OpenSearchPPLParser.NUM); + this.state = 625; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 626; + this.fieldExpression(); + this.state = 627; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fieldExpression(): FieldExpressionContext { + let _localctx: FieldExpressionContext = new FieldExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 90, OpenSearchPPLParser.RULE_fieldExpression); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 631; + this.qualifiedName(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wcFieldExpression(): WcFieldExpressionContext { + let _localctx: WcFieldExpressionContext = new WcFieldExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 92, OpenSearchPPLParser.RULE_wcFieldExpression); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 633; + this.wcQualifiedName(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalFunctionCall(): EvalFunctionCallContext { + let _localctx: EvalFunctionCallContext = new EvalFunctionCallContext(this._ctx, this.state); + this.enterRule(_localctx, 94, OpenSearchPPLParser.RULE_evalFunctionCall); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 635; + this.evalFunctionName(); + this.state = 636; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 637; + this.functionArgs(); + this.state = 638; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public dataTypeFunctionCall(): DataTypeFunctionCallContext { + let _localctx: DataTypeFunctionCallContext = new DataTypeFunctionCallContext(this._ctx, this.state); + this.enterRule(_localctx, 96, OpenSearchPPLParser.RULE_dataTypeFunctionCall); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 640; + this.match(OpenSearchPPLParser.CAST); + this.state = 641; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 642; + this.expression(); + this.state = 643; + this.match(OpenSearchPPLParser.AS); + this.state = 644; + this.convertedDataType(); + this.state = 645; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public booleanFunctionCall(): BooleanFunctionCallContext { + let _localctx: BooleanFunctionCallContext = new BooleanFunctionCallContext(this._ctx, this.state); + this.enterRule(_localctx, 98, OpenSearchPPLParser.RULE_booleanFunctionCall); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 647; + this.conditionFunctionBase(); + this.state = 648; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 649; + this.functionArgs(); + this.state = 650; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public convertedDataType(): ConvertedDataTypeContext { + let _localctx: ConvertedDataTypeContext = new ConvertedDataTypeContext(this._ctx, this.state); + this.enterRule(_localctx, 100, OpenSearchPPLParser.RULE_convertedDataType); + try { + this.state = 662; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.DATE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 652; + _localctx._typeName = this.match(OpenSearchPPLParser.DATE); + } + break; + case OpenSearchPPLParser.TIME: + this.enterOuterAlt(_localctx, 2); + { + this.state = 653; + _localctx._typeName = this.match(OpenSearchPPLParser.TIME); + } + break; + case OpenSearchPPLParser.TIMESTAMP: + this.enterOuterAlt(_localctx, 3); + { + this.state = 654; + _localctx._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); + } + break; + case OpenSearchPPLParser.INT: + this.enterOuterAlt(_localctx, 4); + { + this.state = 655; + _localctx._typeName = this.match(OpenSearchPPLParser.INT); + } + break; + case OpenSearchPPLParser.INTEGER: + this.enterOuterAlt(_localctx, 5); + { + this.state = 656; + _localctx._typeName = this.match(OpenSearchPPLParser.INTEGER); + } + break; + case OpenSearchPPLParser.DOUBLE: + this.enterOuterAlt(_localctx, 6); + { + this.state = 657; + _localctx._typeName = this.match(OpenSearchPPLParser.DOUBLE); + } + break; + case OpenSearchPPLParser.LONG: + this.enterOuterAlt(_localctx, 7); + { + this.state = 658; + _localctx._typeName = this.match(OpenSearchPPLParser.LONG); + } + break; + case OpenSearchPPLParser.FLOAT: + this.enterOuterAlt(_localctx, 8); + { + this.state = 659; + _localctx._typeName = this.match(OpenSearchPPLParser.FLOAT); + } + break; + case OpenSearchPPLParser.STRING: + this.enterOuterAlt(_localctx, 9); + { + this.state = 660; + _localctx._typeName = this.match(OpenSearchPPLParser.STRING); + } + break; + case OpenSearchPPLParser.BOOLEAN: + this.enterOuterAlt(_localctx, 10); + { + this.state = 661; + _localctx._typeName = this.match(OpenSearchPPLParser.BOOLEAN); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalFunctionName(): EvalFunctionNameContext { + let _localctx: EvalFunctionNameContext = new EvalFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 102, OpenSearchPPLParser.RULE_evalFunctionName); + try { + this.state = 668; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.ABS: + case OpenSearchPPLParser.CEIL: + case OpenSearchPPLParser.CEILING: + case OpenSearchPPLParser.CONV: + case OpenSearchPPLParser.CRC32: + case OpenSearchPPLParser.E: + case OpenSearchPPLParser.EXP: + case OpenSearchPPLParser.FLOOR: + case OpenSearchPPLParser.LN: + case OpenSearchPPLParser.LOG: + case OpenSearchPPLParser.LOG10: + case OpenSearchPPLParser.LOG2: + case OpenSearchPPLParser.MOD: + case OpenSearchPPLParser.PI: + case OpenSearchPPLParser.POW: + case OpenSearchPPLParser.POWER: + case OpenSearchPPLParser.RAND: + case OpenSearchPPLParser.ROUND: + case OpenSearchPPLParser.SIGN: + case OpenSearchPPLParser.SQRT: + case OpenSearchPPLParser.TRUNCATE: + case OpenSearchPPLParser.ACOS: + case OpenSearchPPLParser.ASIN: + case OpenSearchPPLParser.ATAN: + case OpenSearchPPLParser.ATAN2: + case OpenSearchPPLParser.COS: + case OpenSearchPPLParser.COT: + case OpenSearchPPLParser.DEGREES: + case OpenSearchPPLParser.RADIANS: + case OpenSearchPPLParser.SIN: + case OpenSearchPPLParser.TAN: + this.enterOuterAlt(_localctx, 1); + { + this.state = 664; + this.mathematicalFunctionBase(); + } + break; + case OpenSearchPPLParser.MICROSECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.ADDDATE: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.DATE_ADD: + case OpenSearchPPLParser.DATE_SUB: + case OpenSearchPPLParser.DAYOFMONTH: + case OpenSearchPPLParser.DAYOFWEEK: + case OpenSearchPPLParser.DAYOFYEAR: + case OpenSearchPPLParser.DAYNAME: + case OpenSearchPPLParser.FROM_DAYS: + case OpenSearchPPLParser.MONTHNAME: + case OpenSearchPPLParser.SUBDATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIME_TO_SEC: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.DATE_FORMAT: + case OpenSearchPPLParser.TO_DAYS: + this.enterOuterAlt(_localctx, 2); + { + this.state = 665; + this.dateAndTimeFunctionBase(); + } + break; + case OpenSearchPPLParser.SUBSTR: + case OpenSearchPPLParser.SUBSTRING: + case OpenSearchPPLParser.LTRIM: + case OpenSearchPPLParser.RTRIM: + case OpenSearchPPLParser.TRIM: + case OpenSearchPPLParser.LOWER: + case OpenSearchPPLParser.UPPER: + case OpenSearchPPLParser.CONCAT: + case OpenSearchPPLParser.CONCAT_WS: + case OpenSearchPPLParser.LENGTH: + case OpenSearchPPLParser.STRCMP: + case OpenSearchPPLParser.RIGHT: + case OpenSearchPPLParser.LEFT: + case OpenSearchPPLParser.ASCII: + case OpenSearchPPLParser.LOCATE: + case OpenSearchPPLParser.REPLACE: + this.enterOuterAlt(_localctx, 3); + { + this.state = 666; + this.textFunctionBase(); + } + break; + case OpenSearchPPLParser.LIKE: + case OpenSearchPPLParser.ISNULL: + case OpenSearchPPLParser.ISNOTNULL: + case OpenSearchPPLParser.IFNULL: + case OpenSearchPPLParser.NULLIF: + case OpenSearchPPLParser.IF: + this.enterOuterAlt(_localctx, 4); + { + this.state = 667; + this.conditionFunctionBase(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public functionArgs(): FunctionArgsContext { + let _localctx: FunctionArgsContext = new FunctionArgsContext(this._ctx, this.state); + this.enterRule(_localctx, 104, OpenSearchPPLParser.RULE_functionArgs); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 678; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.D || ((((_la - 52)) & ~0x1F) === 0 && ((1 << (_la - 52)) & ((1 << (OpenSearchPPLParser.TRUE - 52)) | (1 << (OpenSearchPPLParser.FALSE - 52)) | (1 << (OpenSearchPPLParser.INTERVAL - 52)) | (1 << (OpenSearchPPLParser.MICROSECOND - 52)) | (1 << (OpenSearchPPLParser.MILLISECOND - 52)) | (1 << (OpenSearchPPLParser.SECOND - 52)) | (1 << (OpenSearchPPLParser.MINUTE - 52)) | (1 << (OpenSearchPPLParser.HOUR - 52)) | (1 << (OpenSearchPPLParser.DAY - 52)) | (1 << (OpenSearchPPLParser.WEEK - 52)) | (1 << (OpenSearchPPLParser.MONTH - 52)) | (1 << (OpenSearchPPLParser.QUARTER - 52)) | (1 << (OpenSearchPPLParser.YEAR - 52)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { + { + this.state = 670; + this.functionArg(); + this.state = 675; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 671; + this.match(OpenSearchPPLParser.COMMA); + this.state = 672; + this.functionArg(); + } + } + this.state = 677; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public functionArg(): FunctionArgContext { + let _localctx: FunctionArgContext = new FunctionArgContext(this._ctx, this.state); + this.enterRule(_localctx, 106, OpenSearchPPLParser.RULE_functionArg); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 680; + this.valueExpression(0); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceArg(): RelevanceArgContext { + let _localctx: RelevanceArgContext = new RelevanceArgContext(this._ctx, this.state); + this.enterRule(_localctx, 108, OpenSearchPPLParser.RULE_relevanceArg); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 682; + this.relevanceArgName(); + this.state = 683; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 684; + this.relevanceArgValue(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceArgName(): RelevanceArgNameContext { + let _localctx: RelevanceArgNameContext = new RelevanceArgNameContext(this._ctx, this.state); + this.enterRule(_localctx, 110, OpenSearchPPLParser.RULE_relevanceArgName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 686; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.FIELDS || _la === OpenSearchPPLParser.TIME_ZONE || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & ((1 << (OpenSearchPPLParser.ALLOW_LEADING_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZE_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZER - 224)) | (1 << (OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1 << (OpenSearchPPLParser.BOOST - 224)) | (1 << (OpenSearchPPLParser.CUTOFF_FREQUENCY - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_FIELD - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS - 224)) | (1 << (OpenSearchPPLParser.FLAGS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.FUZZY_TRANSPOSITIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_REWRITE - 224)) | (1 << (OpenSearchPPLParser.FUZZINESS - 224)) | (1 << (OpenSearchPPLParser.LENIENT - 224)) | (1 << (OpenSearchPPLParser.LOW_FREQ_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.MAX_DETERMINIZED_STATES - 224)) | (1 << (OpenSearchPPLParser.MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.MINIMUM_SHOULD_MATCH - 224)) | (1 << (OpenSearchPPLParser.OPERATOR - 224)) | (1 << (OpenSearchPPLParser.PHRASE_SLOP - 224)) | (1 << (OpenSearchPPLParser.PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.QUOTE_ANALYZER - 224)) | (1 << (OpenSearchPPLParser.QUOTE_FIELD_SUFFIX - 224)) | (1 << (OpenSearchPPLParser.REWRITE - 224)) | (1 << (OpenSearchPPLParser.SLOP - 224)) | (1 << (OpenSearchPPLParser.TIE_BREAKER - 224)) | (1 << (OpenSearchPPLParser.TYPE - 224)) | (1 << (OpenSearchPPLParser.ZERO_TERMS_QUERY - 224)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext { + let _localctx: RelevanceFieldAndWeightContext = new RelevanceFieldAndWeightContext(this._ctx, this.state); + this.enterRule(_localctx, 112, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); + try { + this.state = 696; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 59, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 688; + _localctx._field = this.relevanceField(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 689; + _localctx._field = this.relevanceField(); + this.state = 690; + _localctx._weight = this.relevanceFieldWeight(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 692; + _localctx._field = this.relevanceField(); + this.state = 693; + this.match(OpenSearchPPLParser.BIT_XOR_OP); + this.state = 694; + _localctx._weight = this.relevanceFieldWeight(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceFieldWeight(): RelevanceFieldWeightContext { + let _localctx: RelevanceFieldWeightContext = new RelevanceFieldWeightContext(this._ctx, this.state); + this.enterRule(_localctx, 114, OpenSearchPPLParser.RULE_relevanceFieldWeight); + try { + this.state = 700; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 60, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 698; + this.integerLiteral(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 699; + this.decimalLiteral(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceField(): RelevanceFieldContext { + let _localctx: RelevanceFieldContext = new RelevanceFieldContext(this._ctx, this.state); + this.enterRule(_localctx, 116, OpenSearchPPLParser.RULE_relevanceField); + try { + this.state = 704; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 702; + this.qualifiedName(); + } + break; + case OpenSearchPPLParser.DQUOTA_STRING: + case OpenSearchPPLParser.SQUOTA_STRING: + this.enterOuterAlt(_localctx, 2); + { + this.state = 703; + this.stringLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceQuery(): RelevanceQueryContext { + let _localctx: RelevanceQueryContext = new RelevanceQueryContext(this._ctx, this.state); + this.enterRule(_localctx, 118, OpenSearchPPLParser.RULE_relevanceQuery); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 706; + this.relevanceArgValue(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceArgValue(): RelevanceArgValueContext { + let _localctx: RelevanceArgValueContext = new RelevanceArgValueContext(this._ctx, this.state); + this.enterRule(_localctx, 120, OpenSearchPPLParser.RULE_relevanceArgValue); + try { + this.state = 710; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 708; + this.qualifiedName(); + } + break; + case OpenSearchPPLParser.TRUE: + case OpenSearchPPLParser.FALSE: + case OpenSearchPPLParser.INTERVAL: + case OpenSearchPPLParser.PLUS: + case OpenSearchPPLParser.MINUS: + case OpenSearchPPLParser.INTEGER_LITERAL: + case OpenSearchPPLParser.DECIMAL_LITERAL: + case OpenSearchPPLParser.DQUOTA_STRING: + case OpenSearchPPLParser.SQUOTA_STRING: + this.enterOuterAlt(_localctx, 2); + { + this.state = 709; + this.literalValue(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public mathematicalFunctionBase(): MathematicalFunctionBaseContext { + let _localctx: MathematicalFunctionBaseContext = new MathematicalFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 122, OpenSearchPPLParser.RULE_mathematicalFunctionBase); + try { + this.state = 734; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.ABS: + this.enterOuterAlt(_localctx, 1); + { + this.state = 712; + this.match(OpenSearchPPLParser.ABS); + } + break; + case OpenSearchPPLParser.CEIL: + this.enterOuterAlt(_localctx, 2); + { + this.state = 713; + this.match(OpenSearchPPLParser.CEIL); + } + break; + case OpenSearchPPLParser.CEILING: + this.enterOuterAlt(_localctx, 3); + { + this.state = 714; + this.match(OpenSearchPPLParser.CEILING); + } + break; + case OpenSearchPPLParser.CONV: + this.enterOuterAlt(_localctx, 4); + { + this.state = 715; + this.match(OpenSearchPPLParser.CONV); + } + break; + case OpenSearchPPLParser.CRC32: + this.enterOuterAlt(_localctx, 5); + { + this.state = 716; + this.match(OpenSearchPPLParser.CRC32); + } + break; + case OpenSearchPPLParser.E: + this.enterOuterAlt(_localctx, 6); + { + this.state = 717; + this.match(OpenSearchPPLParser.E); + } + break; + case OpenSearchPPLParser.EXP: + this.enterOuterAlt(_localctx, 7); + { + this.state = 718; + this.match(OpenSearchPPLParser.EXP); + } + break; + case OpenSearchPPLParser.FLOOR: + this.enterOuterAlt(_localctx, 8); + { + this.state = 719; + this.match(OpenSearchPPLParser.FLOOR); + } + break; + case OpenSearchPPLParser.LN: + this.enterOuterAlt(_localctx, 9); + { + this.state = 720; + this.match(OpenSearchPPLParser.LN); + } + break; + case OpenSearchPPLParser.LOG: + this.enterOuterAlt(_localctx, 10); + { + this.state = 721; + this.match(OpenSearchPPLParser.LOG); + } + break; + case OpenSearchPPLParser.LOG10: + this.enterOuterAlt(_localctx, 11); + { + this.state = 722; + this.match(OpenSearchPPLParser.LOG10); + } + break; + case OpenSearchPPLParser.LOG2: + this.enterOuterAlt(_localctx, 12); + { + this.state = 723; + this.match(OpenSearchPPLParser.LOG2); + } + break; + case OpenSearchPPLParser.MOD: + this.enterOuterAlt(_localctx, 13); + { + this.state = 724; + this.match(OpenSearchPPLParser.MOD); + } + break; + case OpenSearchPPLParser.PI: + this.enterOuterAlt(_localctx, 14); + { + this.state = 725; + this.match(OpenSearchPPLParser.PI); + } + break; + case OpenSearchPPLParser.POW: + this.enterOuterAlt(_localctx, 15); + { + this.state = 726; + this.match(OpenSearchPPLParser.POW); + } + break; + case OpenSearchPPLParser.POWER: + this.enterOuterAlt(_localctx, 16); + { + this.state = 727; + this.match(OpenSearchPPLParser.POWER); + } + break; + case OpenSearchPPLParser.RAND: + this.enterOuterAlt(_localctx, 17); + { + this.state = 728; + this.match(OpenSearchPPLParser.RAND); + } + break; + case OpenSearchPPLParser.ROUND: + this.enterOuterAlt(_localctx, 18); + { + this.state = 729; + this.match(OpenSearchPPLParser.ROUND); + } + break; + case OpenSearchPPLParser.SIGN: + this.enterOuterAlt(_localctx, 19); + { + this.state = 730; + this.match(OpenSearchPPLParser.SIGN); + } + break; + case OpenSearchPPLParser.SQRT: + this.enterOuterAlt(_localctx, 20); + { + this.state = 731; + this.match(OpenSearchPPLParser.SQRT); + } + break; + case OpenSearchPPLParser.TRUNCATE: + this.enterOuterAlt(_localctx, 21); + { + this.state = 732; + this.match(OpenSearchPPLParser.TRUNCATE); + } + break; + case OpenSearchPPLParser.ACOS: + case OpenSearchPPLParser.ASIN: + case OpenSearchPPLParser.ATAN: + case OpenSearchPPLParser.ATAN2: + case OpenSearchPPLParser.COS: + case OpenSearchPPLParser.COT: + case OpenSearchPPLParser.DEGREES: + case OpenSearchPPLParser.RADIANS: + case OpenSearchPPLParser.SIN: + case OpenSearchPPLParser.TAN: + this.enterOuterAlt(_localctx, 22); + { + this.state = 733; + this.trigonometricFunctionName(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public trigonometricFunctionName(): TrigonometricFunctionNameContext { + let _localctx: TrigonometricFunctionNameContext = new TrigonometricFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 124, OpenSearchPPLParser.RULE_trigonometricFunctionName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 736; + _la = this._input.LA(1); + if (!(((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & ((1 << (OpenSearchPPLParser.ACOS - 171)) | (1 << (OpenSearchPPLParser.ASIN - 171)) | (1 << (OpenSearchPPLParser.ATAN - 171)) | (1 << (OpenSearchPPLParser.ATAN2 - 171)) | (1 << (OpenSearchPPLParser.COS - 171)) | (1 << (OpenSearchPPLParser.COT - 171)) | (1 << (OpenSearchPPLParser.DEGREES - 171)) | (1 << (OpenSearchPPLParser.RADIANS - 171)) | (1 << (OpenSearchPPLParser.SIN - 171)) | (1 << (OpenSearchPPLParser.TAN - 171)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext { + let _localctx: DateAndTimeFunctionBaseContext = new DateAndTimeFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 126, OpenSearchPPLParser.RULE_dateAndTimeFunctionBase); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 738; + _la = this._input.LA(1); + if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)))) !== 0) || ((((_la - 181)) & ~0x1F) === 0 && ((1 << (_la - 181)) & ((1 << (OpenSearchPPLParser.ADDDATE - 181)) | (1 << (OpenSearchPPLParser.DATE - 181)) | (1 << (OpenSearchPPLParser.DATE_ADD - 181)) | (1 << (OpenSearchPPLParser.DATE_SUB - 181)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 181)) | (1 << (OpenSearchPPLParser.DAYOFWEEK - 181)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 181)) | (1 << (OpenSearchPPLParser.DAYNAME - 181)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 181)) | (1 << (OpenSearchPPLParser.MONTHNAME - 181)) | (1 << (OpenSearchPPLParser.SUBDATE - 181)) | (1 << (OpenSearchPPLParser.TIME - 181)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 181)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 181)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 181)) | (1 << (OpenSearchPPLParser.TO_DAYS - 181)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public conditionFunctionBase(): ConditionFunctionBaseContext { + let _localctx: ConditionFunctionBaseContext = new ConditionFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 128, OpenSearchPPLParser.RULE_conditionFunctionBase); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 740; + _la = this._input.LA(1); + if (!(((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & ((1 << (OpenSearchPPLParser.LIKE - 215)) | (1 << (OpenSearchPPLParser.ISNULL - 215)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 215)) | (1 << (OpenSearchPPLParser.IFNULL - 215)) | (1 << (OpenSearchPPLParser.NULLIF - 215)) | (1 << (OpenSearchPPLParser.IF - 215)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public textFunctionBase(): TextFunctionBaseContext { + let _localctx: TextFunctionBaseContext = new TextFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 130, OpenSearchPPLParser.RULE_textFunctionBase); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 742; + _la = this._input.LA(1); + if (!(((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & ((1 << (OpenSearchPPLParser.SUBSTR - 197)) | (1 << (OpenSearchPPLParser.SUBSTRING - 197)) | (1 << (OpenSearchPPLParser.LTRIM - 197)) | (1 << (OpenSearchPPLParser.RTRIM - 197)) | (1 << (OpenSearchPPLParser.TRIM - 197)) | (1 << (OpenSearchPPLParser.LOWER - 197)) | (1 << (OpenSearchPPLParser.UPPER - 197)) | (1 << (OpenSearchPPLParser.CONCAT - 197)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 197)) | (1 << (OpenSearchPPLParser.LENGTH - 197)) | (1 << (OpenSearchPPLParser.STRCMP - 197)) | (1 << (OpenSearchPPLParser.RIGHT - 197)) | (1 << (OpenSearchPPLParser.LEFT - 197)) | (1 << (OpenSearchPPLParser.ASCII - 197)) | (1 << (OpenSearchPPLParser.LOCATE - 197)) | (1 << (OpenSearchPPLParser.REPLACE - 197)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public comparisonOperator(): ComparisonOperatorContext { + let _localctx: ComparisonOperatorContext = new ComparisonOperatorContext(this._ctx, this.state); + this.enterRule(_localctx, 132, OpenSearchPPLParser.RULE_comparisonOperator); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 744; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.REGEXP || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & ((1 << (OpenSearchPPLParser.EQUAL - 91)) | (1 << (OpenSearchPPLParser.GREATER - 91)) | (1 << (OpenSearchPPLParser.LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_GREATER - 91)) | (1 << (OpenSearchPPLParser.NOT_LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_EQUAL - 91)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public binaryOperator(): BinaryOperatorContext { + let _localctx: BinaryOperatorContext = new BinaryOperatorContext(this._ctx, this.state); + this.enterRule(_localctx, 134, OpenSearchPPLParser.RULE_binaryOperator); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 746; + _la = this._input.LA(1); + if (!(((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & ((1 << (OpenSearchPPLParser.PLUS - 97)) | (1 << (OpenSearchPPLParser.MINUS - 97)) | (1 << (OpenSearchPPLParser.STAR - 97)) | (1 << (OpenSearchPPLParser.DIVIDE - 97)) | (1 << (OpenSearchPPLParser.MODULE - 97)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { + let _localctx: SingleFieldRelevanceFunctionNameContext = new SingleFieldRelevanceFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 136, OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 748; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.MATCH || _la === OpenSearchPPLParser.MATCH_PHRASE)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { + let _localctx: MultiFieldRelevanceFunctionNameContext = new MultiFieldRelevanceFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 138, OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 750; + this.match(OpenSearchPPLParser.SIMPLE_QUERY_STRING); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public literalValue(): LiteralValueContext { + let _localctx: LiteralValueContext = new LiteralValueContext(this._ctx, this.state); + this.enterRule(_localctx, 140, OpenSearchPPLParser.RULE_literalValue); + try { + this.state = 757; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 64, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 752; + this.intervalLiteral(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 753; + this.stringLiteral(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 754; + this.integerLiteral(); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 755; + this.decimalLiteral(); + } + break; + + case 5: + this.enterOuterAlt(_localctx, 5); + { + this.state = 756; + this.booleanLiteral(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public intervalLiteral(): IntervalLiteralContext { + let _localctx: IntervalLiteralContext = new IntervalLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 142, OpenSearchPPLParser.RULE_intervalLiteral); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 759; + this.match(OpenSearchPPLParser.INTERVAL); + this.state = 760; + this.valueExpression(0); + this.state = 761; + this.intervalUnit(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public stringLiteral(): StringLiteralContext { + let _localctx: StringLiteralContext = new StringLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 144, OpenSearchPPLParser.RULE_stringLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 763; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.DQUOTA_STRING || _la === OpenSearchPPLParser.SQUOTA_STRING)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public integerLiteral(): IntegerLiteralContext { + let _localctx: IntegerLiteralContext = new IntegerLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 146, OpenSearchPPLParser.RULE_integerLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 766; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 765; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 768; + this.match(OpenSearchPPLParser.INTEGER_LITERAL); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public decimalLiteral(): DecimalLiteralContext { + let _localctx: DecimalLiteralContext = new DecimalLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 148, OpenSearchPPLParser.RULE_decimalLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 771; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 770; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 773; + this.match(OpenSearchPPLParser.DECIMAL_LITERAL); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public booleanLiteral(): BooleanLiteralContext { + let _localctx: BooleanLiteralContext = new BooleanLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 150, OpenSearchPPLParser.RULE_booleanLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 775; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.TRUE || _la === OpenSearchPPLParser.FALSE)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public pattern(): PatternContext { + let _localctx: PatternContext = new PatternContext(this._ctx, this.state); + this.enterRule(_localctx, 152, OpenSearchPPLParser.RULE_pattern); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 777; + this.stringLiteral(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public intervalUnit(): IntervalUnitContext { + let _localctx: IntervalUnitContext = new IntervalUnitContext(this._ctx, this.state); + this.enterRule(_localctx, 154, OpenSearchPPLParser.RULE_intervalUnit); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 779; + _la = this._input.LA(1); + if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)) | (1 << (OpenSearchPPLParser.SECOND_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_SECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_HOUR - 57)) | (1 << (OpenSearchPPLParser.YEAR_MONTH - 57)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public timespanUnit(): TimespanUnitContext { + let _localctx: TimespanUnitContext = new TimespanUnitContext(this._ctx, this.state); + this.enterRule(_localctx, 156, OpenSearchPPLParser.RULE_timespanUnit); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 781; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public valueList(): ValueListContext { + let _localctx: ValueListContext = new ValueListContext(this._ctx, this.state); + this.enterRule(_localctx, 158, OpenSearchPPLParser.RULE_valueList); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 783; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 784; + this.literalValue(); + this.state = 789; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 785; + this.match(OpenSearchPPLParser.COMMA); + this.state = 786; + this.literalValue(); + } + } + this.state = 791; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 792; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public qualifiedName(): QualifiedNameContext { + let _localctx: QualifiedNameContext = new QualifiedNameContext(this._ctx, this.state); + this.enterRule(_localctx, 160, OpenSearchPPLParser.RULE_qualifiedName); + try { + let _alt: number; + _localctx = new IdentsAsQualifiedNameContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 794; + this.ident(); + this.state = 799; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + { + { + this.state = 795; + this.match(OpenSearchPPLParser.DOT); + this.state = 796; + this.ident(); + } + } + } + this.state = 801; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wcQualifiedName(): WcQualifiedNameContext { + let _localctx: WcQualifiedNameContext = new WcQualifiedNameContext(this._ctx, this.state); + this.enterRule(_localctx, 162, OpenSearchPPLParser.RULE_wcQualifiedName); + let _la: number; + try { + _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 802; + this.wildcard(); + this.state = 807; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.DOT) { + { + { + this.state = 803; + this.match(OpenSearchPPLParser.DOT); + this.state = 804; + this.wildcard(); + } + } + this.state = 809; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public ident(): IdentContext { + let _localctx: IdentContext = new IdentContext(this._ctx, this.state); + this.enterRule(_localctx, 164, OpenSearchPPLParser.RULE_ident); + let _la: number; + try { + this.state = 820; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.ID: + this.enterOuterAlt(_localctx, 1); + { + this.state = 811; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.DOT) { + { + this.state = 810; + this.match(OpenSearchPPLParser.DOT); + } + } + + this.state = 813; + this.match(OpenSearchPPLParser.ID); + } + break; + case OpenSearchPPLParser.BACKTICK: + this.enterOuterAlt(_localctx, 2); + { + this.state = 814; + this.match(OpenSearchPPLParser.BACKTICK); + this.state = 815; + this.ident(); + this.state = 816; + this.match(OpenSearchPPLParser.BACKTICK); + } + break; + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 3); + { + this.state = 818; + this.match(OpenSearchPPLParser.BQUOTA_STRING); + } + break; + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + this.enterOuterAlt(_localctx, 4); + { + this.state = 819; + this.keywordsCanBeId(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wildcard(): WildcardContext { + let _localctx: WildcardContext = new WildcardContext(this._ctx, this.state); + this.enterRule(_localctx, 166, OpenSearchPPLParser.RULE_wildcard); + let _la: number; + try { + let _alt: number; + this.state = 845; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 74, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 822; + this.ident(); + this.state = 827; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + { + { + this.state = 823; + this.match(OpenSearchPPLParser.MODULE); + this.state = 824; + this.ident(); + } + } + } + this.state = 829; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); + } + this.state = 831; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.MODULE) { + { + this.state = 830; + this.match(OpenSearchPPLParser.MODULE); + } + } + + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 833; + this.match(OpenSearchPPLParser.SINGLE_QUOTE); + this.state = 834; + this.wildcard(); + this.state = 835; + this.match(OpenSearchPPLParser.SINGLE_QUOTE); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 837; + this.match(OpenSearchPPLParser.DOUBLE_QUOTE); + this.state = 838; + this.wildcard(); + this.state = 839; + this.match(OpenSearchPPLParser.DOUBLE_QUOTE); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 841; + this.match(OpenSearchPPLParser.BACKTICK); + this.state = 842; + this.wildcard(); + this.state = 843; + this.match(OpenSearchPPLParser.BACKTICK); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public keywordsCanBeId(): KeywordsCanBeIdContext { + let _localctx: KeywordsCanBeIdContext = new KeywordsCanBeIdContext(this._ctx, this.state); + this.enterRule(_localctx, 168, OpenSearchPPLParser.RULE_keywordsCanBeId); + try { + this.state = 856; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 75, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 847; + this.match(OpenSearchPPLParser.D); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 848; + this.statsFunctionName(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 849; + this.match(OpenSearchPPLParser.TIMESTAMP); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 850; + this.match(OpenSearchPPLParser.DATE); + } + break; + + case 5: + this.enterOuterAlt(_localctx, 5); + { + this.state = 851; + this.match(OpenSearchPPLParser.TIME); + } + break; + + case 6: + this.enterOuterAlt(_localctx, 6); + { + this.state = 852; + this.match(OpenSearchPPLParser.FIRST); + } + break; + + case 7: + this.enterOuterAlt(_localctx, 7); + { + this.state = 853; + this.match(OpenSearchPPLParser.LAST); + } + break; + + case 8: + this.enterOuterAlt(_localctx, 8); + { + this.state = 854; + this.timespanUnit(); + } + break; + + case 9: + this.enterOuterAlt(_localctx, 9); + { + this.state = 855; + this.match(OpenSearchPPLParser.SPAN); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + + public sempred(_localctx: RuleContext, ruleIndex: number, predIndex: number): boolean { + switch (ruleIndex) { + case 32: + return this.logicalExpression_sempred(_localctx as LogicalExpressionContext, predIndex); + + case 34: + return this.valueExpression_sempred(_localctx as ValueExpressionContext, predIndex); + } + return true; + } + private logicalExpression_sempred(_localctx: LogicalExpressionContext, predIndex: number): boolean { + switch (predIndex) { + case 0: + return this.precpred(this._ctx, 5); + + case 1: + return this.precpred(this._ctx, 4); + + case 2: + return this.precpred(this._ctx, 3); + } + return true; + } + private valueExpression_sempred(_localctx: ValueExpressionContext, predIndex: number): boolean { + switch (predIndex) { + case 3: + return this.precpred(this._ctx, 3); + } + return true; + } + + private static readonly _serializedATNSegments: number = 2; + private static readonly _serializedATNSegment0: string = + "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\u010F\u035D\x04" + + "\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04" + + "\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r" + + "\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12" + + "\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t\x17" + + "\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t\x1C" + + "\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"\t\"\x04" + + "#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t*\x04+\t" + + "+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x043\t3\x04" + + "4\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04<\t<\x04" + + "=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04E\tE\x04" + + "F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04N\tN\x04" + + "O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x03\x02\x05" + + "\x02\xAE\n\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x07\x03\xB5\n\x03" + + "\f\x03\x0E\x03\xB8\v\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" + + "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x05\x04\xC7\n" + + "\x04\x03\x05\x05\x05\xCA\n\x05\x03\x05\x03\x05\x05\x05\xCE\n\x05\x03\x05" + + "\x03\x05\x03\x05\x03\x05\x05\x05\xD4\n\x05\x03\x05\x03\x05\x03\x05\x05" + + "\x05\xD9\n\x05\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x05\x07\xE0\n\x07" + + "\x03\x07\x03\x07\x03\b\x03\b\x03\b\x03\b\x07\b\xE8\n\b\f\b\x0E\b\xEB\v" + + "\b\x03\t\x03\t\x03\t\x03\t\x05\t\xF1\n\t\x03\t\x03\t\x03\t\x05\t\xF6\n" + + "\t\x03\t\x03\t\x03\t\x05\t\xFB\n\t\x03\t\x03\t\x03\t\x07\t\u0100\n\t\f" + + "\t\x0E\t\u0103\v\t\x03\t\x05\t\u0106\n\t\x03\t\x03\t\x03\t\x05\t\u010B" + + "\n\t\x03\n\x03\n\x05\n\u010F\n\n\x03\n\x03\n\x03\n\x03\n\x05\n\u0115\n" + + "\n\x03\n\x03\n\x03\n\x05\n\u011A\n\n\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + + "\f\x03\f\x07\f\u0123\n\f\f\f\x0E\f\u0126\v\f\x03\r\x03\r\x05\r\u012A\n" + + "\r\x03\r\x03\r\x05\r\u012E\n\r\x03\x0E\x03\x0E\x05\x0E\u0132\n\x0E\x03" + + "\x0E\x03\x0E\x05\x0E\u0136\n\x0E\x03\x0F\x03\x0F\x03\x0F\x05\x0F\u013B" + + "\n\x0F\x03\x10\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x07\x11\u0143\n" + + "\x11\f\x11\x0E\x11\u0146\v\x11\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12" + + "\x03\x12\x03\x12\x03\x12\x03\x12\x05\x12\u0151\n\x12\x03\x13\x03\x13\x07" + + "\x13\u0155\n\x13\f\x13\x0E\x13\u0158\v\x13\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x05\x14\u017B\n\x14\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x07\x15\u0182\n\x15\f\x15\x0E\x15\u0185\v\x15\x03\x15\x03\x15" + + "\x03\x15\x03\x15\x03\x15\x07\x15\u018C\n\x15\f\x15\x0E\x15\u018F\v\x15" + + "\x05\x15\u0191\n\x15\x03\x16\x03\x16\x03\x16\x03\x16\x03\x17\x03\x17\x03" + + "\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" + + "\x18\x05\x18\u01A3\n\x18\x03\x19\x03\x19\x03\x19\x05\x19\u01A8\n\x19\x03" + + "\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x05\x1A\u01B0\n\x1A\x03\x1A" + + "\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x07\x1B\u01B7\n\x1B\f\x1B\x0E\x1B\u01BA" + + "\v\x1B\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D\x03\x1D\x03\x1D\x05\x1D" + + "\u01C3\n\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03" + + "\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x05\x1E\u01D3\n\x1E" + + "\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03!\x03!\x03" + + "!\x05!\u01E2\n!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01EA\n\"\x03" + + "\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01F1\n\"\x03\"\x03\"\x03\"\x03\"\x07" + + "\"\u01F7\n\"\f\"\x0E\"\u01FA\v\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03" + + "#\x05#\u0204\n#\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x05$\u020E\n$" + + "\x03$\x03$\x03$\x03$\x07$\u0214\n$\f$\x0E$\u0217\v$\x03%\x03%\x03%\x03" + + "%\x05%\u021D\n%\x03&\x03&\x03\'\x03\'\x05\'\u0223\n\'\x03(\x03(\x03(\x03" + + "(\x03(\x03(\x03(\x07(\u022C\n(\f(\x0E(\u022F\v(\x03(\x03(\x03)\x03)\x03" + + ")\x03)\x03)\x03)\x07)\u0239\n)\f)\x0E)\u023C\v)\x03)\x03)\x03)\x03)\x03" + + ")\x07)\u0243\n)\f)\x0E)\u0246\v)\x03)\x03)\x03*\x03*\x05*\u024C\n*\x03" + + "+\x03+\x03+\x07+\u0251\n+\f+\x0E+\u0254\v+\x03,\x03,\x03,\x07,\u0259\n" + + ",\f,\x0E,\u025C\v,\x03-\x05-\u025F\n-\x03-\x03-\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x05.\u0278\n.\x03/\x03/\x030\x030\x031\x031\x031\x031\x03" + + "1\x032\x032\x032\x032\x032\x032\x032\x033\x033\x033\x033\x033\x034\x03" + + "4\x034\x034\x034\x034\x034\x034\x034\x034\x054\u0299\n4\x035\x035\x03" + + "5\x035\x055\u029F\n5\x036\x036\x036\x076\u02A4\n6\f6\x0E6\u02A7\v6\x05" + + "6\u02A9\n6\x037\x037\x038\x038\x038\x038\x039\x039\x03:\x03:\x03:\x03" + + ":\x03:\x03:\x03:\x03:\x05:\u02BB\n:\x03;\x03;\x05;\u02BF\n;\x03<\x03<" + + "\x05<\u02C3\n<\x03=\x03=\x03>\x03>\x05>\u02C9\n>\x03?\x03?\x03?\x03?\x03" + + "?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03" + + "?\x03?\x03?\x03?\x05?\u02E1\n?\x03@\x03@\x03A\x03A\x03B\x03B\x03C\x03" + + "C\x03D\x03D\x03E\x03E\x03F\x03F\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x05" + + "H\u02F8\nH\x03I\x03I\x03I\x03I\x03J\x03J\x03K\x05K\u0301\nK\x03K\x03K" + + "\x03L\x05L\u0306\nL\x03L\x03L\x03M\x03M\x03N\x03N\x03O\x03O\x03P\x03P" + + "\x03Q\x03Q\x03Q\x03Q\x07Q\u0316\nQ\fQ\x0EQ\u0319\vQ\x03Q\x03Q\x03R\x03" + + "R\x03R\x07R\u0320\nR\fR\x0ER\u0323\vR\x03S\x03S\x03S\x07S\u0328\nS\fS" + + "\x0ES\u032B\vS\x03T\x05T\u032E\nT\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x05" + + "T\u0337\nT\x03U\x03U\x03U\x07U\u033C\nU\fU\x0EU\u033F\vU\x03U\x05U\u0342" + + "\nU\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x05U\u0350" + + "\nU\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x05V\u035B\nV\x03V\x02" + + "\x02\x04BFW\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E\x02\x10\x02" + + "\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02 \x02\"\x02$\x02" + + "&\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02<\x02>\x02@\x02" + + "B\x02D\x02F\x02H\x02J\x02L\x02N\x02P\x02R\x02T\x02V\x02X\x02Z\x02\\\x02" + + "^\x02`\x02b\x02d\x02f\x02h\x02j\x02l\x02n\x02p\x02r\x02t\x02v\x02x\x02" + + "z\x02|\x02~\x02\x80\x02\x82\x02\x84\x02\x86\x02\x88\x02\x8A\x02\x8C\x02" + + "\x8E\x02\x90\x02\x92\x02\x94\x02\x96\x02\x98\x02\x9A\x02\x9C\x02\x9E\x02" + + "\xA0\x02\xA2\x02\xA4\x02\xA6\x02\xA8\x02\xAA\x02\x02\x11\x03\x02cd\x04" + + "\x02vv\x97\x97\x07\x02tuyy||\x81\x81\x83\x86\x05\x02\x06\x06--\xE2\xFF" + + "\x03\x02\xAD\xB6\x05\x02;;=D\xB7\xC6\x03\x02\xD9\xDE\x04\x02\xC7\xCB\xCD" + + "\xD7\x04\x0288]b\x03\x02cg\x03\x02\xDF\xE0\x03\x02\u010C\u010D\x03\x02" + + "67\x04\x02;;=O\x05\x02\x16\x16\u01D6\x03\x02\x02\x02@\u01E1\x03\x02\x02\x02B\u01E9\x03\x02\x02\x02" + + "D\u0203\x03\x02\x02\x02F\u020D\x03\x02\x02\x02H\u021C\x03\x02\x02\x02" + + "J\u021E\x03\x02\x02\x02L\u0222\x03\x02\x02\x02N\u0224\x03\x02\x02\x02" + + "P\u0232\x03\x02\x02\x02R\u024B\x03\x02\x02\x02T\u024D\x03\x02\x02\x02" + + "V\u0255\x03\x02\x02\x02X\u025E\x03\x02\x02\x02Z\u0277\x03\x02\x02\x02" + + "\\\u0279\x03\x02\x02\x02^\u027B\x03\x02\x02\x02`\u027D\x03\x02\x02\x02" + + "b\u0282\x03\x02\x02\x02d\u0289\x03\x02\x02\x02f\u0298\x03\x02\x02\x02" + + "h\u029E\x03\x02\x02\x02j\u02A8\x03\x02\x02\x02l\u02AA\x03\x02\x02\x02" + + "n\u02AC\x03\x02\x02\x02p\u02B0\x03\x02\x02\x02r\u02BA\x03\x02\x02\x02" + + "t\u02BE\x03\x02\x02\x02v\u02C2\x03\x02\x02\x02x\u02C4\x03\x02\x02\x02" + + "z\u02C8\x03\x02\x02\x02|\u02E0\x03\x02\x02\x02~\u02E2\x03\x02\x02\x02" + + "\x80\u02E4\x03\x02\x02\x02\x82\u02E6\x03\x02\x02\x02\x84\u02E8\x03\x02" + + "\x02\x02\x86\u02EA\x03\x02\x02\x02\x88\u02EC\x03\x02\x02\x02\x8A\u02EE" + + "\x03\x02\x02\x02\x8C\u02F0\x03\x02\x02\x02\x8E\u02F7\x03\x02\x02\x02\x90" + + "\u02F9\x03\x02\x02\x02\x92\u02FD\x03\x02\x02\x02\x94\u0300\x03\x02\x02" + + "\x02\x96\u0305\x03\x02\x02\x02\x98\u0309\x03\x02\x02\x02\x9A\u030B\x03" + + "\x02\x02\x02\x9C\u030D\x03\x02\x02\x02\x9E\u030F\x03\x02\x02\x02\xA0\u0311" + + "\x03\x02\x02\x02\xA2\u031C\x03\x02\x02\x02\xA4\u0324\x03\x02\x02\x02\xA6" + + "\u0336\x03\x02\x02\x02\xA8\u034F\x03\x02\x02\x02\xAA\u035A\x03\x02\x02" + + "\x02\xAC\xAE\x05\x04\x03\x02\xAD\xAC\x03\x02\x02\x02\xAD\xAE\x03\x02\x02" + + "\x02\xAE\xAF\x03\x02\x02\x02\xAF\xB0\x07\x02\x02\x03\xB0\x03\x03\x02\x02" + + "\x02\xB1\xB6\x05\b\x05\x02\xB2\xB3\x07Z\x02\x02\xB3\xB5\x05\x06\x04\x02" + + "\xB4\xB2\x03\x02\x02\x02\xB5\xB8\x03\x02\x02\x02\xB6\xB4\x03\x02\x02\x02" + + "\xB6\xB7\x03\x02\x02\x02\xB7\x05\x03\x02\x02\x02\xB8\xB6\x03\x02\x02\x02" + + "\xB9\xC7\x05\n\x06\x02\xBA\xC7\x05\f\x07\x02\xBB\xC7\x05\x0E\b\x02\xBC" + + "\xC7\x05\x10\t\x02\xBD\xC7\x05\x12\n\x02\xBE\xC7\x05\x14\v\x02\xBF\xC7" + + "\x05\x16\f\x02\xC0\xC7\x05\x18\r\x02\xC1\xC7\x05\x1A\x0E\x02\xC2\xC7\x05" + + "\x1C\x0F\x02\xC3\xC7\x05\x1E\x10\x02\xC4\xC7\x05 \x11\x02\xC5\xC7\x05" + + "$\x13\x02\xC6\xB9\x03\x02\x02\x02\xC6\xBA\x03\x02\x02\x02\xC6\xBB\x03" + + "\x02\x02\x02\xC6\xBC\x03\x02\x02\x02\xC6\xBD\x03\x02\x02\x02\xC6\xBE\x03" + + "\x02\x02\x02\xC6\xBF\x03\x02\x02\x02\xC6\xC0\x03\x02\x02\x02\xC6\xC1\x03" + + "\x02\x02\x02\xC6\xC2\x03\x02\x02\x02\xC6\xC3\x03\x02\x02\x02\xC6\xC4\x03" + + "\x02\x02\x02\xC6\xC5\x03\x02\x02\x02\xC7\x07\x03\x02\x02\x02\xC8\xCA\x07" + + "\x03\x02\x02\xC9\xC8\x03\x02\x02\x02\xC9\xCA\x03\x02\x02\x02\xCA\xCB\x03" + + "\x02\x02\x02\xCB\xD9\x05(\x15\x02\xCC\xCE\x07\x03\x02\x02\xCD\xCC\x03" + + "\x02\x02\x02\xCD\xCE\x03\x02\x02\x02\xCE\xCF\x03\x02\x02\x02\xCF\xD0\x05" + + "(\x15\x02\xD0\xD1\x05B\"\x02\xD1\xD9\x03\x02\x02\x02\xD2\xD4\x07\x03\x02" + + "\x02\xD3\xD2\x03\x02\x02\x02\xD3\xD4\x03\x02\x02\x02\xD4\xD5\x03\x02\x02" + + "\x02\xD5\xD6\x05B\"\x02\xD6\xD7\x05(\x15\x02\xD7\xD9\x03\x02\x02\x02\xD8" + + "\xC9\x03\x02\x02\x02\xD8\xCD\x03\x02\x02\x02\xD8\xD3\x03\x02\x02\x02\xD9" + + "\t\x03\x02\x02\x02\xDA\xDB\x07\x05\x02\x02\xDB\xDC\x05B\"\x02\xDC\v\x03" + + "\x02\x02\x02\xDD\xDF\x07\x06\x02\x02\xDE\xE0\t\x02\x02\x02\xDF\xDE\x03" + + "\x02\x02\x02\xDF\xE0\x03\x02\x02\x02\xE0\xE1\x03\x02\x02\x02\xE1\xE2\x05" + + "T+\x02\xE2\r\x03\x02\x02\x02\xE3\xE4\x07\x07\x02\x02\xE4\xE9\x05*\x16" + + "\x02\xE5\xE6\x07[\x02\x02\xE6\xE8\x05*\x16\x02\xE7\xE5\x03\x02\x02\x02" + + "\xE8\xEB\x03\x02\x02\x02\xE9\xE7\x03\x02\x02\x02\xE9\xEA\x03\x02\x02\x02" + + "\xEA\x0F\x03\x02\x02\x02\xEB\xE9\x03\x02\x02\x02\xEC\xF0\x07\b\x02\x02" + + "\xED\xEE\x07 \x02\x02\xEE\xEF\x07]\x02\x02\xEF\xF1\x05\x94K\x02\xF0\xED" + + "\x03\x02\x02\x02\xF0\xF1\x03\x02\x02\x02\xF1\xF5\x03\x02\x02\x02\xF2\xF3" + + "\x07!\x02\x02\xF3\xF4\x07]\x02\x02\xF4\xF6\x05\x98M\x02\xF5\xF2\x03\x02" + + "\x02\x02\xF5\xF6\x03\x02\x02\x02\xF6\xFA\x03\x02\x02\x02\xF7\xF8\x07\"" + + "\x02\x02\xF8\xF9\x07]\x02\x02\xF9\xFB\x05\x92J\x02\xFA\xF7\x03\x02\x02" + + "\x02\xFA\xFB\x03\x02\x02\x02\xFB\xFC\x03\x02\x02\x02\xFC\u0101\x058\x1D" + + "\x02\xFD\xFE\x07[\x02\x02\xFE\u0100\x058\x1D\x02\xFF\xFD\x03\x02\x02\x02" + + "\u0100\u0103\x03\x02\x02\x02\u0101\xFF\x03\x02\x02\x02\u0101\u0102\x03" + + "\x02\x02\x02\u0102\u0105\x03\x02\x02\x02\u0103\u0101\x03\x02\x02\x02\u0104" + + "\u0106\x05.\x18\x02\u0105\u0104\x03\x02\x02\x02\u0105\u0106\x03\x02\x02" + + "\x02\u0106\u010A\x03\x02\x02\x02\u0107\u0108\x07\x1F\x02\x02\u0108\u0109" + + "\x07]\x02\x02\u0109\u010B\x05\x98M\x02\u010A\u0107\x03\x02\x02\x02\u010A" + + "\u010B\x03\x02\x02\x02\u010B\x11\x03\x02\x02\x02\u010C\u010E\x07\t\x02" + + "\x02\u010D\u010F\x05\x94K\x02\u010E\u010D\x03\x02\x02\x02\u010E\u010F" + + "\x03\x02\x02\x02\u010F\u0110\x03\x02\x02\x02\u0110\u0114\x05T+\x02\u0111" + + "\u0112\x07\x1D\x02\x02\u0112\u0113\x07]\x02\x02\u0113\u0115\x05\x98M\x02" + + "\u0114\u0111\x03\x02\x02\x02\u0114\u0115\x03\x02\x02\x02\u0115\u0119\x03" + + "\x02\x02\x02\u0116\u0117\x07\x1E\x02\x02\u0117\u0118\x07]\x02\x02\u0118" + + "\u011A\x05\x98M\x02\u0119\u0116\x03\x02\x02\x02\u0119\u011A\x03\x02\x02" + + "\x02\u011A\x13\x03\x02\x02\x02\u011B\u011C\x07\n\x02\x02\u011C\u011D\x05" + + "4\x1B\x02\u011D\x15\x03\x02\x02\x02\u011E\u011F\x07\v\x02\x02\u011F\u0124" + + "\x056\x1C\x02\u0120\u0121\x07[\x02\x02\u0121\u0123\x056\x1C\x02\u0122" + + "\u0120\x03\x02\x02\x02\u0123\u0126\x03\x02\x02\x02\u0124\u0122\x03\x02" + + "\x02\x02\u0124\u0125\x03\x02\x02\x02\u0125\x17\x03\x02\x02\x02\u0126\u0124" + + "\x03\x02\x02\x02\u0127\u0129\x07\f\x02\x02\u0128\u012A\x05\x94K\x02\u0129" + + "\u0128\x03\x02\x02\x02\u0129\u012A\x03\x02\x02\x02\u012A\u012D\x03\x02" + + "\x02\x02\u012B\u012C\x07\x04\x02\x02\u012C\u012E\x05\x94K\x02\u012D\u012B" + + "\x03\x02\x02\x02\u012D\u012E\x03\x02\x02\x02\u012E\x19\x03\x02\x02\x02" + + "\u012F\u0131\x07\r\x02\x02\u0130\u0132\x05\x94K\x02\u0131\u0130\x03\x02" + + "\x02\x02\u0131\u0132\x03\x02\x02\x02\u0132\u0133\x03\x02\x02\x02\u0133" + + "\u0135\x05T+\x02\u0134\u0136\x05,\x17\x02\u0135\u0134\x03\x02\x02\x02" + + "\u0135\u0136\x03\x02\x02\x02\u0136\x1B\x03\x02\x02\x02\u0137\u0138\x07" + + "\x0E\x02\x02\u0138\u013A\x05T+\x02\u0139\u013B\x05,\x17\x02\u013A\u0139" + + "\x03\x02\x02\x02\u013A\u013B\x03\x02\x02\x02\u013B\x1D\x03\x02\x02\x02" + + "\u013C\u013D\x07\x0F\x02\x02\u013D\u013E\x05@!\x02\u013E\u013F\x05\x9A" + + "N\x02\u013F\x1F\x03\x02\x02\x02\u0140\u0144\x07\x10\x02\x02\u0141\u0143" + + "\x05\"\x12\x02\u0142\u0141\x03\x02\x02\x02\u0143\u0146\x03\x02\x02\x02" + + "\u0144\u0142\x03\x02\x02\x02\u0144\u0145\x03\x02\x02\x02\u0145!\x03\x02" + + "\x02\x02\u0146\u0144\x03\x02\x02\x02\u0147\u0148\x07#\x02\x02\u0148\u0149" + + "\x07]\x02\x02\u0149\u0151\x05\x94K\x02\u014A\u014B\x07$\x02\x02\u014B" + + "\u014C\x07]\x02\x02\u014C\u0151\x05\x94K\x02\u014D\u014E\x07%\x02\x02" + + "\u014E\u014F\x07]\x02\x02\u014F\u0151\x05\x92J\x02\u0150\u0147\x03\x02" + + "\x02\x02\u0150\u014A\x03\x02\x02\x02\u0150\u014D\x03\x02\x02\x02\u0151" + + "#\x03\x02\x02\x02\u0152\u0156\x07\x11\x02\x02\u0153\u0155\x05&\x14\x02" + + "\u0154\u0153\x03\x02\x02\x02\u0155\u0158\x03\x02\x02\x02\u0156\u0154\x03" + + "\x02\x02\x02\u0156\u0157\x03\x02\x02\x02\u0157%\x03\x02\x02\x02\u0158" + + "\u0156\x03\x02\x02\x02\u0159\u015A\x07&\x02\x02\u015A\u015B\x07]\x02\x02" + + "\u015B\u017B\x05\x94K\x02\u015C\u015D\x07\'\x02\x02\u015D\u015E\x07]\x02" + + "\x02\u015E\u017B\x05\x94K\x02\u015F\u0160\x07(\x02\x02\u0160\u0161\x07" + + "]\x02\x02\u0161\u017B\x05\x94K\x02\u0162\u0163\x07)\x02\x02\u0163\u0164" + + "\x07]\x02\x02\u0164\u017B\x05\x94K\x02\u0165\u0166\x07*\x02\x02\u0166" + + "\u0167\x07]\x02\x02\u0167\u017B\x05\x96L\x02\u0168\u0169\x07+\x02\x02" + + "\u0169\u016A\x07]\x02\x02\u016A\u017B\x05\x96L\x02\u016B\u016C\x07,\x02" + + "\x02\u016C\u016D\x07]\x02\x02\u016D\u017B\x05\x92J\x02\u016E\u016F\x07" + + "\xC5\x02\x02\u016F\u0170\x07]\x02\x02\u0170\u017B\x05\x92J\x02\u0171\u0172" + + "\x07-\x02\x02\u0172\u0173\x07]\x02\x02\u0173\u017B\x05\x92J\x02\u0174" + + "\u0175\x07.\x02\x02\u0175\u0176\x07]\x02\x02\u0176\u017B\x05\x94K\x02" + + "\u0177\u0178\x07/\x02\x02\u0178\u0179\x07]\x02\x02\u0179\u017B\x05\x96" + + "L\x02\u017A\u0159\x03\x02\x02\x02\u017A\u015C\x03\x02\x02\x02\u017A\u015F" + + "\x03\x02\x02\x02\u017A\u0162\x03\x02\x02\x02\u017A\u0165\x03\x02\x02\x02" + + "\u017A\u0168\x03\x02\x02\x02\u017A\u016B\x03\x02\x02\x02\u017A\u016E\x03" + + "\x02\x02\x02\u017A\u0171\x03\x02\x02\x02\u017A\u0174\x03\x02\x02\x02\u017A" + + "\u0177\x03\x02\x02\x02\u017B\'\x03\x02\x02\x02\u017C\u017D\x07\x14\x02" + + "\x02\u017D\u017E\x07]\x02\x02\u017E\u0183\x05R*\x02\u017F\u0180\x07[\x02" + + "\x02\u0180\u0182\x05R*\x02\u0181\u017F\x03\x02\x02\x02\u0182\u0185\x03" + + "\x02\x02\x02\u0183\u0181\x03\x02\x02\x02\u0183\u0184\x03\x02\x02\x02\u0184" + + "\u0191\x03\x02\x02\x02\u0185\u0183\x03\x02\x02\x02\u0186\u0187\x07\x15" + + "\x02\x02\u0187\u0188\x07]\x02\x02\u0188\u018D\x05R*\x02\u0189\u018A\x07" + + "[\x02\x02\u018A\u018C\x05R*\x02\u018B\u0189\x03\x02\x02\x02\u018C\u018F" + + "\x03\x02\x02\x02\u018D\u018B\x03\x02\x02\x02\u018D\u018E\x03\x02\x02\x02" + + "\u018E\u0191\x03\x02\x02\x02\u018F\u018D\x03\x02\x02\x02\u0190\u017C\x03" + + "\x02\x02\x02\u0190\u0186\x03\x02\x02\x02\u0191)\x03\x02\x02\x02\u0192" + + "\u0193\x05^0\x02\u0193\u0194\x07\x12\x02\x02\u0194\u0195\x05^0\x02\u0195" + + "+\x03\x02\x02\x02\u0196\u0197\x07\x13\x02\x02\u0197\u0198\x05T+\x02\u0198" + + "-\x03\x02\x02\x02\u0199\u019A\x07\x13\x02\x02\u019A\u01A3\x05T+\x02\u019B" + + "\u019C\x07\x13\x02\x02\u019C\u01A3\x050\x19\x02\u019D\u019E\x07\x13\x02" + + "\x02\u019E\u019F\x050\x19\x02\u019F\u01A0\x07[\x02\x02\u01A0\u01A1\x05" + + "T+\x02\u01A1\u01A3\x03\x02\x02\x02\u01A2\u0199\x03\x02\x02\x02\u01A2\u019B" + + "\x03\x02\x02\x02\u01A2\u019D\x03\x02\x02\x02\u01A3/\x03\x02\x02\x02\u01A4" + + "\u01A7\x052\x1A\x02\u01A5\u01A6\x07\x12\x02\x02\u01A6\u01A8\x05\xA2R\x02" + + "\u01A7\u01A5\x03\x02\x02\x02\u01A7\u01A8\x03\x02\x02\x02\u01A81\x03\x02" + + "\x02\x02\u01A9\u01AA\x07\u0100\x02\x02\u01AA\u01AB\x07j\x02\x02\u01AB" + + "\u01AC\x05\\/\x02\u01AC\u01AD\x07[\x02\x02\u01AD\u01AF\x05\x8EH\x02\u01AE" + + "\u01B0\x05\x9EP\x02\u01AF\u01AE\x03\x02\x02\x02\u01AF\u01B0\x03\x02\x02" + + "\x02\u01B0\u01B1\x03\x02\x02\x02\u01B1\u01B2\x07k\x02\x02\u01B23\x03\x02" + + "\x02\x02\u01B3\u01B8\x05X-\x02\u01B4\u01B5\x07[\x02\x02\u01B5\u01B7\x05" + + "X-\x02\u01B6\u01B4\x03\x02\x02\x02\u01B7\u01BA\x03\x02\x02\x02\u01B8\u01B6" + + "\x03\x02\x02\x02\u01B8\u01B9\x03\x02\x02\x02\u01B95\x03\x02\x02\x02\u01BA" + + "\u01B8\x03\x02\x02\x02\u01BB\u01BC\x05\\/\x02\u01BC\u01BD\x07]\x02\x02" + + "\u01BD\u01BE\x05@!\x02\u01BE7\x03\x02\x02\x02\u01BF\u01C2\x05:\x1E\x02" + + "\u01C0\u01C1\x07\x12\x02\x02\u01C1\u01C3\x05^0\x02\u01C2\u01C0\x03\x02" + + "\x02\x02\u01C2\u01C3\x03\x02\x02\x02\u01C39\x03\x02\x02\x02\u01C4\u01C5" + + "\x05<\x1F\x02\u01C5\u01C6\x07j\x02\x02\u01C6\u01C7\x05F$\x02\u01C7\u01C8" + + "\x07k\x02\x02\u01C8\u01D3\x03\x02\x02\x02\u01C9\u01CA\x07u\x02\x02\u01CA" + + "\u01CB\x07j\x02\x02\u01CB\u01D3\x07k\x02\x02\u01CC\u01CD\t\x03\x02\x02" + + "\u01CD\u01CE\x07j\x02\x02\u01CE\u01CF\x05F$\x02\u01CF\u01D0\x07k\x02\x02" + + "\u01D0\u01D3\x03\x02\x02\x02\u01D1\u01D3\x05> \x02\u01D2\u01C4\x03\x02" + + "\x02\x02\u01D2\u01C9\x03\x02\x02\x02\u01D2\u01CC\x03\x02\x02\x02\u01D2" + + "\u01D1\x03\x02\x02\x02\u01D3;\x03\x02\x02\x02\u01D4\u01D5\t\x04\x02\x02" + + "\u01D5=\x03\x02\x02\x02\u01D6\u01D7\x07\x87\x02\x02\u01D7\u01D8\x07_\x02" + + "\x02\u01D8\u01D9\x05\x94K\x02\u01D9\u01DA\x07^\x02\x02\u01DA\u01DB\x07" + + "j\x02\x02\u01DB\u01DC\x05\\/\x02\u01DC\u01DD\x07k\x02\x02\u01DD?\x03\x02" + + "\x02\x02\u01DE\u01E2\x05B\"\x02\u01DF\u01E2\x05D#\x02\u01E0\u01E2\x05" + + "F$\x02\u01E1\u01DE\x03\x02\x02\x02\u01E1\u01DF\x03\x02\x02\x02\u01E1\u01E0" + + "\x03\x02\x02\x02\u01E2A\x03\x02\x02\x02\u01E3\u01E4\b\"\x01\x02\u01E4" + + "\u01EA\x05D#\x02\u01E5\u01E6\x072\x02\x02\u01E6\u01EA\x05B\"\b\u01E7\u01EA" + + "\x05J&\x02\u01E8\u01EA\x05L\'\x02\u01E9\u01E3\x03\x02\x02\x02\u01E9\u01E5" + + "\x03\x02\x02\x02\u01E9\u01E7\x03\x02\x02\x02\u01E9\u01E8\x03\x02\x02\x02" + + "\u01EA\u01F8\x03\x02\x02\x02\u01EB\u01EC\f\x07\x02\x02\u01EC\u01ED\x07" + + "3\x02\x02\u01ED\u01F7\x05B\"\b\u01EE\u01F0\f\x06\x02\x02\u01EF\u01F1\x07" + + "4\x02\x02\u01F0\u01EF\x03\x02\x02\x02\u01F0\u01F1\x03\x02\x02\x02\u01F1" + + "\u01F2\x03\x02\x02\x02\u01F2\u01F7\x05B\"\x07\u01F3\u01F4\f\x05\x02\x02" + + "\u01F4\u01F5\x075\x02\x02\u01F5\u01F7\x05B\"\x06\u01F6\u01EB\x03\x02\x02" + + "\x02\u01F6\u01EE"; + private static readonly _serializedATNSegment1: string = + "\x03\x02\x02\x02\u01F6\u01F3\x03\x02\x02\x02\u01F7\u01FA\x03\x02\x02\x02" + + "\u01F8\u01F6\x03\x02\x02\x02\u01F8\u01F9\x03\x02\x02\x02\u01F9C\x03\x02" + + "\x02\x02\u01FA\u01F8\x03\x02\x02\x02\u01FB\u01FC\x05F$\x02\u01FC\u01FD" + + "\x05\x86D\x02\u01FD\u01FE\x05F$\x02\u01FE\u0204\x03\x02\x02\x02\u01FF" + + "\u0200\x05F$\x02\u0200\u0201\x071\x02\x02\u0201\u0202\x05\xA0Q\x02\u0202" + + "\u0204\x03\x02\x02\x02\u0203\u01FB\x03\x02\x02\x02\u0203\u01FF\x03\x02" + + "\x02\x02\u0204E\x03\x02\x02\x02\u0205\u0206\b$\x01\x02\u0206\u0207\x07" + + "j\x02\x02\u0207\u0208\x05F$\x02\u0208\u0209\x05\x88E\x02\u0209\u020A\x05" + + "F$\x02\u020A\u020B\x07k\x02\x02\u020B\u020E\x03\x02\x02\x02\u020C\u020E" + + "\x05H%\x02\u020D\u0205\x03\x02\x02\x02\u020D\u020C\x03\x02\x02\x02\u020E" + + "\u0215\x03\x02\x02\x02\u020F\u0210\f\x05\x02\x02\u0210\u0211\x05\x88E" + + "\x02\u0211\u0212\x05F$\x06\u0212\u0214\x03\x02\x02\x02\u0213\u020F\x03" + + "\x02\x02\x02\u0214\u0217\x03\x02\x02\x02\u0215\u0213\x03\x02\x02\x02\u0215" + + "\u0216\x03\x02\x02\x02\u0216G\x03\x02\x02\x02\u0217\u0215\x03\x02\x02" + + "\x02\u0218\u021D\x05`1\x02\u0219\u021D\x05b2\x02\u021A\u021D\x05\\/\x02" + + "\u021B\u021D\x05\x8EH\x02\u021C\u0218\x03\x02\x02\x02\u021C\u0219\x03" + + "\x02\x02\x02\u021C\u021A\x03\x02\x02\x02\u021C\u021B\x03\x02\x02\x02\u021D" + + "I\x03\x02\x02\x02\u021E\u021F\x05d3\x02\u021FK\x03\x02\x02\x02\u0220\u0223" + + "\x05N(\x02\u0221\u0223\x05P)\x02\u0222\u0220\x03\x02\x02\x02\u0222\u0221" + + "\x03\x02\x02\x02\u0223M\x03\x02\x02\x02\u0224\u0225\x05\x8AF\x02\u0225" + + "\u0226\x07j\x02\x02\u0226\u0227\x05v<\x02\u0227\u0228\x07[\x02\x02\u0228" + + "\u022D\x05x=\x02\u0229\u022A\x07[\x02\x02\u022A\u022C\x05n8\x02\u022B" + + "\u0229\x03\x02\x02\x02\u022C\u022F\x03\x02\x02\x02\u022D\u022B\x03\x02" + + "\x02\x02\u022D\u022E\x03\x02\x02\x02\u022E\u0230\x03\x02\x02\x02\u022F" + + "\u022D\x03\x02\x02\x02\u0230\u0231\x07k\x02\x02\u0231O\x03\x02\x02\x02" + + "\u0232\u0233\x05\x8CG\x02\u0233\u0234\x07j\x02\x02\u0234\u0235\x07l\x02" + + "\x02\u0235\u023A\x05r:\x02\u0236\u0237\x07[\x02\x02\u0237\u0239\x05r:" + + "\x02\u0238\u0236\x03\x02\x02\x02\u0239\u023C\x03\x02\x02\x02\u023A\u0238" + + "\x03\x02\x02\x02\u023A\u023B\x03\x02\x02\x02\u023B\u023D\x03\x02\x02\x02" + + "\u023C\u023A\x03\x02\x02\x02\u023D\u023E\x07m\x02\x02\u023E\u023F\x07" + + "[\x02\x02\u023F\u0244\x05x=\x02\u0240\u0241\x07[\x02\x02\u0241\u0243\x05" + + "n8\x02\u0242\u0240\x03\x02\x02\x02\u0243\u0246\x03\x02\x02\x02\u0244\u0242" + + "\x03\x02\x02\x02\u0244\u0245\x03\x02\x02\x02\u0245\u0247\x03\x02\x02\x02" + + "\u0246\u0244\x03\x02\x02\x02\u0247\u0248\x07k\x02\x02\u0248Q\x03\x02\x02" + + "\x02\u0249\u024C\x05\xA2R\x02\u024A\u024C\x07\u010B\x02\x02\u024B\u0249" + + "\x03\x02\x02\x02\u024B\u024A\x03\x02\x02\x02\u024CS\x03\x02\x02\x02\u024D" + + "\u0252\x05\\/\x02\u024E\u024F\x07[\x02\x02\u024F\u0251\x05\\/\x02\u0250" + + "\u024E\x03\x02\x02\x02\u0251\u0254\x03\x02\x02\x02\u0252\u0250\x03\x02" + + "\x02\x02\u0252\u0253\x03\x02\x02\x02\u0253U\x03\x02\x02\x02\u0254\u0252" + + "\x03\x02\x02\x02\u0255\u025A\x05^0\x02\u0256\u0257\x07[\x02\x02\u0257" + + "\u0259\x05^0\x02\u0258\u0256\x03\x02\x02\x02\u0259\u025C\x03\x02\x02\x02" + + "\u025A\u0258\x03\x02\x02\x02\u025A\u025B\x03\x02\x02\x02\u025BW\x03\x02" + + "\x02\x02\u025C\u025A\x03\x02\x02\x02\u025D\u025F\t\x02\x02\x02\u025E\u025D" + + "\x03\x02\x02\x02\u025E\u025F\x03\x02\x02\x02\u025F\u0260\x03\x02\x02\x02" + + "\u0260\u0261\x05Z.\x02\u0261Y\x03\x02\x02\x02\u0262\u0278\x05\\/\x02\u0263" + + "\u0264\x07\x19\x02\x02\u0264\u0265\x07j\x02\x02\u0265\u0266\x05\\/\x02" + + "\u0266\u0267\x07k\x02\x02\u0267\u0278\x03\x02\x02\x02\u0268\u0269\x07" + + "\x1A\x02\x02\u0269\u026A\x07j\x02\x02\u026A\u026B\x05\\/\x02\u026B\u026C" + + "\x07k\x02\x02\u026C\u0278\x03\x02\x02\x02\u026D\u026E\x07\x1B\x02\x02" + + "\u026E\u026F\x07j\x02\x02\u026F\u0270\x05\\/\x02\u0270\u0271\x07k\x02" + + "\x02\u0271\u0278\x03\x02\x02\x02\u0272\u0273\x07\x1C\x02\x02\u0273\u0274" + + "\x07j\x02\x02\u0274\u0275\x05\\/\x02\u0275\u0276\x07k\x02\x02\u0276\u0278" + + "\x03\x02\x02\x02\u0277\u0262\x03\x02\x02\x02\u0277\u0263\x03\x02\x02\x02" + + "\u0277\u0268\x03\x02\x02\x02\u0277\u026D\x03\x02\x02\x02\u0277\u0272\x03" + + "\x02\x02\x02\u0278[\x03\x02\x02\x02\u0279\u027A\x05\xA2R\x02\u027A]\x03" + + "\x02\x02\x02\u027B\u027C\x05\xA4S\x02\u027C_\x03\x02\x02\x02\u027D\u027E" + + "\x05h5\x02\u027E\u027F\x07j\x02\x02\u027F\u0280\x05j6\x02\u0280\u0281" + + "\x07k\x02\x02\u0281a\x03\x02\x02\x02\u0282\u0283\x07\xD8\x02\x02\u0283" + + "\u0284\x07j\x02\x02\u0284\u0285\x05@!\x02\u0285\u0286\x07\x12\x02\x02" + + "\u0286\u0287\x05f4\x02\u0287\u0288\x07k\x02\x02\u0288c\x03\x02\x02\x02" + + "\u0289\u028A\x05\x82B\x02\u028A\u028B\x07j\x02\x02\u028B\u028C\x05j6\x02" + + "\u028C\u028D\x07k\x02\x02\u028De\x03\x02\x02\x02\u028E\u0299\x07\xB8\x02" + + "\x02\u028F\u0299\x07\xC2\x02\x02\u0290\u0299\x07\xC4\x02\x02\u0291\u0299" + + "\x07S\x02\x02\u0292\u0299\x07T\x02\x02\u0293\u0299\x07U\x02\x02\u0294" + + "\u0299\x07V\x02\x02\u0295\u0299\x07W\x02\x02\u0296\u0299\x07X\x02\x02" + + "\u0297\u0299\x07Y\x02\x02\u0298\u028E\x03\x02\x02\x02\u0298\u028F\x03" + + "\x02\x02\x02\u0298\u0290\x03\x02\x02\x02\u0298\u0291\x03\x02\x02\x02\u0298" + + "\u0292\x03\x02\x02\x02\u0298\u0293\x03\x02\x02\x02\u0298\u0294\x03\x02" + + "\x02\x02\u0298\u0295\x03\x02\x02\x02\u0298\u0296\x03\x02\x02\x02\u0298" + + "\u0297\x03\x02\x02\x02\u0299g\x03\x02\x02\x02\u029A\u029F\x05|?\x02\u029B" + + "\u029F\x05\x80A\x02\u029C\u029F\x05\x84C\x02\u029D\u029F\x05\x82B\x02" + + "\u029E\u029A\x03\x02\x02\x02\u029E\u029B\x03\x02\x02\x02\u029E\u029C\x03" + + "\x02\x02\x02\u029E\u029D\x03\x02\x02\x02\u029Fi\x03\x02\x02\x02\u02A0" + + "\u02A5\x05l7\x02\u02A1\u02A2\x07[\x02\x02\u02A2\u02A4\x05l7\x02\u02A3" + + "\u02A1\x03\x02\x02\x02\u02A4\u02A7\x03\x02\x02\x02\u02A5\u02A3\x03\x02" + + "\x02\x02\u02A5\u02A6\x03\x02\x02\x02\u02A6\u02A9\x03\x02\x02\x02\u02A7" + + "\u02A5\x03\x02\x02\x02\u02A8\u02A0\x03\x02\x02\x02\u02A8\u02A9\x03\x02" + + "\x02\x02\u02A9k\x03\x02\x02\x02\u02AA\u02AB\x05F$\x02\u02ABm\x03\x02\x02" + + "\x02\u02AC\u02AD\x05p9\x02\u02AD\u02AE\x07]\x02\x02\u02AE\u02AF\x05z>" + + "\x02\u02AFo\x03\x02\x02\x02\u02B0\u02B1\t\x05\x02\x02\u02B1q\x03\x02\x02" + + "\x02\u02B2\u02BB\x05v<\x02\u02B3\u02B4\x05v<\x02\u02B4\u02B5\x05t;\x02" + + "\u02B5\u02BB\x03\x02\x02\x02\u02B6\u02B7\x05v<\x02\u02B7\u02B8\x07s\x02" + + "\x02\u02B8\u02B9\x05t;\x02\u02B9\u02BB\x03\x02\x02\x02\u02BA\u02B2\x03" + + "\x02\x02\x02\u02BA\u02B3\x03\x02\x02\x02\u02BA\u02B6\x03\x02\x02\x02\u02BB" + + "s\x03\x02\x02\x02\u02BC\u02BF\x05\x94K\x02\u02BD\u02BF\x05\x96L\x02\u02BE" + + "\u02BC\x03\x02\x02\x02\u02BE\u02BD\x03\x02\x02\x02\u02BFu\x03\x02\x02" + + "\x02\u02C0\u02C3\x05\xA2R\x02\u02C1\u02C3\x05\x92J\x02\u02C2\u02C0\x03" + + "\x02\x02\x02\u02C2\u02C1\x03\x02\x02\x02\u02C3w\x03\x02\x02\x02\u02C4" + + "\u02C5\x05z>\x02\u02C5y\x03\x02\x02\x02\u02C6\u02C9\x05\xA2R\x02\u02C7" + + "\u02C9\x05\x8EH\x02\u02C8\u02C6\x03\x02\x02\x02\u02C8\u02C7\x03\x02\x02" + + "\x02\u02C9{\x03\x02\x02\x02\u02CA\u02E1\x07\x98\x02\x02\u02CB\u02E1\x07" + + "\x99\x02\x02\u02CC\u02E1\x07\x9A\x02\x02\u02CD\u02E1\x07\x9B\x02\x02\u02CE" + + "\u02E1\x07\x9C\x02\x02\u02CF\u02E1\x07\x9D\x02\x02\u02D0\u02E1\x07\x9E" + + "\x02\x02\u02D1\u02E1\x07\x9F\x02\x02\u02D2\u02E1\x07\xA0\x02\x02\u02D3" + + "\u02E1\x07\xA1\x02\x02\u02D4\u02E1\x07\xA2\x02\x02\u02D5\u02E1\x07\xA3" + + "\x02\x02\u02D6\u02E1\x07\xA4\x02\x02\u02D7\u02E1\x07\xA5\x02\x02\u02D8" + + "\u02E1\x07\xA6\x02\x02\u02D9\u02E1\x07\xA7\x02\x02\u02DA\u02E1\x07\xA8" + + "\x02\x02\u02DB\u02E1\x07\xA9\x02\x02\u02DC\u02E1\x07\xAA\x02\x02\u02DD" + + "\u02E1\x07\xAB\x02\x02\u02DE\u02E1\x07\xAC\x02\x02\u02DF\u02E1\x05~@\x02" + + "\u02E0\u02CA\x03\x02\x02\x02\u02E0\u02CB\x03\x02\x02\x02\u02E0\u02CC\x03" + + "\x02\x02\x02\u02E0\u02CD\x03\x02\x02\x02\u02E0\u02CE\x03\x02\x02\x02\u02E0" + + "\u02CF\x03\x02\x02\x02\u02E0\u02D0\x03\x02\x02\x02\u02E0\u02D1\x03\x02" + + "\x02\x02\u02E0\u02D2\x03\x02\x02\x02\u02E0\u02D3\x03\x02\x02\x02\u02E0" + + "\u02D4\x03\x02\x02\x02\u02E0\u02D5\x03\x02\x02\x02\u02E0\u02D6\x03\x02" + + "\x02\x02\u02E0\u02D7\x03\x02\x02\x02\u02E0\u02D8\x03\x02\x02\x02\u02E0" + + "\u02D9\x03\x02\x02\x02\u02E0\u02DA\x03\x02\x02\x02\u02E0\u02DB\x03\x02" + + "\x02\x02\u02E0\u02DC\x03\x02\x02\x02\u02E0\u02DD\x03\x02\x02\x02\u02E0" + + "\u02DE\x03\x02\x02\x02\u02E0\u02DF\x03\x02\x02\x02\u02E1}\x03\x02\x02" + + "\x02\u02E2\u02E3\t\x06\x02\x02\u02E3\x7F\x03\x02\x02\x02\u02E4\u02E5\t" + + "\x07\x02\x02\u02E5\x81\x03\x02\x02\x02\u02E6\u02E7\t\b\x02\x02\u02E7\x83" + + "\x03\x02\x02\x02\u02E8\u02E9\t\t\x02\x02\u02E9\x85\x03\x02\x02\x02\u02EA" + + "\u02EB\t\n\x02\x02\u02EB\x87\x03\x02\x02\x02\u02EC\u02ED\t\v\x02\x02\u02ED" + + "\x89\x03\x02\x02\x02\u02EE\u02EF\t\f\x02\x02\u02EF\x8B\x03\x02\x02\x02" + + "\u02F0\u02F1\x07\xE1\x02\x02\u02F1\x8D\x03\x02\x02\x02\u02F2\u02F8\x05" + + "\x90I\x02\u02F3\u02F8\x05\x92J\x02\u02F4\u02F8\x05\x94K\x02\u02F5\u02F8" + + "\x05\x96L\x02\u02F6\u02F8\x05\x98M\x02\u02F7\u02F2\x03\x02\x02\x02\u02F7" + + "\u02F3\x03\x02\x02\x02\u02F7\u02F4\x03\x02\x02\x02\u02F7\u02F5\x03\x02" + + "\x02\x02\u02F7\u02F6\x03\x02\x02\x02\u02F8\x8F\x03\x02\x02\x02\u02F9\u02FA" + + "\x07:\x02\x02\u02FA\u02FB\x05F$\x02\u02FB\u02FC\x05\x9CO\x02\u02FC\x91" + + "\x03\x02\x02\x02\u02FD\u02FE\t\r\x02\x02\u02FE\x93\x03\x02\x02\x02\u02FF" + + "\u0301\t\x02\x02\x02\u0300\u02FF\x03\x02\x02\x02\u0300\u0301\x03\x02\x02" + + "\x02\u0301\u0302\x03\x02\x02\x02\u0302\u0303\x07\u0109\x02\x02\u0303\x95" + + "\x03\x02\x02\x02\u0304\u0306\t\x02\x02\x02\u0305\u0304\x03\x02\x02\x02" + + "\u0305\u0306\x03\x02\x02\x02\u0306\u0307\x03\x02\x02\x02\u0307\u0308\x07" + + "\u010A\x02\x02\u0308\x97\x03\x02\x02\x02\u0309\u030A\t\x0E\x02\x02\u030A" + + "\x99\x03\x02\x02\x02\u030B\u030C\x05\x92J\x02\u030C\x9B\x03\x02\x02\x02" + + "\u030D\u030E\t\x0F\x02\x02\u030E\x9D\x03\x02\x02\x02\u030F\u0310\t\x10" + + "\x02\x02\u0310\x9F\x03\x02\x02\x02\u0311\u0312\x07j\x02\x02\u0312\u0317" + + "\x05\x8EH\x02\u0313\u0314\x07[\x02\x02\u0314\u0316\x05\x8EH\x02\u0315" + + "\u0313\x03\x02\x02\x02\u0316\u0319\x03\x02\x02\x02\u0317\u0315\x03\x02" + + "\x02\x02\u0317\u0318\x03\x02\x02\x02\u0318\u031A\x03\x02\x02\x02\u0319" + + "\u0317\x03\x02\x02\x02\u031A\u031B\x07k\x02\x02\u031B\xA1\x03\x02\x02" + + "\x02\u031C\u0321\x05\xA6T\x02\u031D\u031E\x07\\\x02\x02\u031E\u0320\x05" + + "\xA6T\x02\u031F\u031D\x03\x02\x02\x02\u0320\u0323\x03\x02\x02\x02\u0321" + + "\u031F\x03\x02\x02\x02\u0321\u0322\x03\x02\x02\x02\u0322\xA3\x03\x02\x02" + + "\x02\u0323\u0321\x03\x02\x02\x02\u0324\u0329\x05\xA8U\x02\u0325\u0326" + + "\x07\\\x02\x02\u0326\u0328\x05\xA8U\x02\u0327\u0325\x03\x02\x02\x02\u0328" + + "\u032B\x03\x02\x02\x02\u0329\u0327\x03\x02\x02\x02\u0329\u032A\x03\x02" + + "\x02\x02\u032A\xA5\x03\x02\x02\x02\u032B\u0329\x03\x02\x02\x02\u032C\u032E" + + "\x07\\\x02\x02\u032D\u032C\x03\x02\x02\x02\u032D\u032E\x03\x02\x02\x02" + + "\u032E\u032F\x03\x02\x02\x02\u032F\u0337\x07\u0108\x02\x02\u0330\u0331" + + "\x07p\x02\x02\u0331\u0332\x05\xA6T\x02\u0332\u0333\x07p\x02\x02\u0333" + + "\u0337\x03\x02\x02\x02\u0334\u0337\x07\u010E\x02\x02\u0335\u0337\x05\xAA" + + "V\x02\u0336\u032D\x03\x02\x02\x02\u0336\u0330\x03\x02\x02\x02\u0336\u0334" + + "\x03\x02\x02\x02\u0336\u0335\x03\x02\x02\x02\u0337\xA7\x03\x02\x02\x02" + + "\u0338\u033D\x05\xA6T\x02\u0339\u033A\x07g\x02\x02\u033A\u033C\x05\xA6" + + "T\x02\u033B\u0339\x03\x02\x02\x02\u033C\u033F\x03\x02\x02\x02\u033D\u033B" + + "\x03\x02\x02\x02\u033D\u033E\x03\x02\x02\x02\u033E\u0341\x03\x02\x02\x02" + + "\u033F\u033D\x03\x02\x02\x02\u0340\u0342\x07g\x02\x02\u0341\u0340\x03" + + "\x02\x02\x02\u0341\u0342\x03\x02\x02\x02\u0342\u0350\x03\x02\x02\x02\u0343" + + "\u0344\x07n\x02\x02\u0344\u0345\x05\xA8U\x02\u0345\u0346\x07n\x02\x02" + + "\u0346\u0350\x03\x02\x02\x02\u0347\u0348\x07o\x02\x02\u0348\u0349\x05" + + "\xA8U\x02\u0349\u034A\x07o\x02\x02\u034A\u0350\x03\x02\x02\x02\u034B\u034C" + + "\x07p\x02\x02\u034C\u034D\x05\xA8U\x02\u034D\u034E\x07p\x02\x02\u034E" + + "\u0350\x03\x02\x02\x02\u034F\u0338\x03\x02\x02\x02\u034F\u0343\x03\x02" + + "\x02\x02\u034F\u0347\x03\x02\x02\x02\u034F\u034B\x03\x02\x02\x02\u0350" + + "\xA9\x03\x02\x02\x02\u0351\u035B\x07\x16\x02\x02\u0352\u035B\x05<\x1F" + + "\x02\u0353\u035B\x07\xC4\x02\x02\u0354\u035B\x07\xB8\x02\x02\u0355\u035B" + + "\x07\xC2\x02\x02\u0356\u035B\x07\x88\x02\x02\u0357\u035B\x07\x89\x02\x02" + + "\u0358\u035B\x05\x9EP\x02\u0359\u035B\x07\u0100\x02\x02\u035A\u0351\x03" + + "\x02\x02\x02\u035A\u0352\x03\x02\x02\x02\u035A\u0353\x03\x02\x02\x02\u035A" + + "\u0354\x03\x02\x02\x02\u035A\u0355\x03\x02\x02\x02\u035A\u0356\x03\x02" + + "\x02\x02\u035A\u0357\x03\x02\x02\x02\u035A\u0358\x03\x02\x02\x02\u035A" + + "\u0359\x03\x02\x02\x02\u035B\xAB\x03\x02\x02\x02N\xAD\xB6\xC6\xC9\xCD" + + "\xD3\xD8\xDF\xE9\xF0\xF5\xFA\u0101\u0105\u010A\u010E\u0114\u0119\u0124" + + "\u0129\u012D\u0131\u0135\u013A\u0144\u0150\u0156\u017A\u0183\u018D\u0190" + + "\u01A2\u01A7\u01AF\u01B8\u01C2\u01D2\u01E1\u01E9\u01F0\u01F6\u01F8\u0203" + + "\u020D\u0215\u021C\u0222\u022D\u023A\u0244\u024B\u0252\u025A\u025E\u0277" + + "\u0298\u029E\u02A5\u02A8\u02BA\u02BE\u02C2\u02C8\u02E0\u02F7\u0300\u0305" + + "\u0317\u0321\u0329\u032D\u0336\u033D\u0341\u034F\u035A"; + public static readonly _serializedATN: string = Utils.join( + [ + OpenSearchPPLParser._serializedATNSegment0, + OpenSearchPPLParser._serializedATNSegment1, + ], + "", + ); + public static __ATN: ATN; + public static get _ATN(): ATN { + if (!OpenSearchPPLParser.__ATN) { + OpenSearchPPLParser.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLParser._serializedATN)); + } + + return OpenSearchPPLParser.__ATN; + } + +} + +export class RootContext extends ParserRuleContext { + public EOF(): TerminalNode { return this.getToken(OpenSearchPPLParser.EOF, 0); } + public pplStatement(): PplStatementContext | undefined { + return this.tryGetRuleContext(0, PplStatementContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_root; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRoot) { + listener.enterRoot(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRoot) { + listener.exitRoot(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRoot) { + return visitor.visitRoot(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PplStatementContext extends ParserRuleContext { + public searchCommand(): SearchCommandContext { + return this.getRuleContext(0, SearchCommandContext); + } + public PIPE(): TerminalNode[]; + public PIPE(i: number): TerminalNode; + public PIPE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.PIPE); + } else { + return this.getToken(OpenSearchPPLParser.PIPE, i); + } + } + public commands(): CommandsContext[]; + public commands(i: number): CommandsContext; + public commands(i?: number): CommandsContext | CommandsContext[] { + if (i === undefined) { + return this.getRuleContexts(CommandsContext); + } else { + return this.getRuleContext(i, CommandsContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pplStatement; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPplStatement) { + listener.enterPplStatement(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPplStatement) { + listener.exitPplStatement(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPplStatement) { + return visitor.visitPplStatement(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class CommandsContext extends ParserRuleContext { + public whereCommand(): WhereCommandContext | undefined { + return this.tryGetRuleContext(0, WhereCommandContext); + } + public fieldsCommand(): FieldsCommandContext | undefined { + return this.tryGetRuleContext(0, FieldsCommandContext); + } + public renameCommand(): RenameCommandContext | undefined { + return this.tryGetRuleContext(0, RenameCommandContext); + } + public statsCommand(): StatsCommandContext | undefined { + return this.tryGetRuleContext(0, StatsCommandContext); + } + public dedupCommand(): DedupCommandContext | undefined { + return this.tryGetRuleContext(0, DedupCommandContext); + } + public sortCommand(): SortCommandContext | undefined { + return this.tryGetRuleContext(0, SortCommandContext); + } + public evalCommand(): EvalCommandContext | undefined { + return this.tryGetRuleContext(0, EvalCommandContext); + } + public headCommand(): HeadCommandContext | undefined { + return this.tryGetRuleContext(0, HeadCommandContext); + } + public topCommand(): TopCommandContext | undefined { + return this.tryGetRuleContext(0, TopCommandContext); + } + public rareCommand(): RareCommandContext | undefined { + return this.tryGetRuleContext(0, RareCommandContext); + } + public parseCommand(): ParseCommandContext | undefined { + return this.tryGetRuleContext(0, ParseCommandContext); + } + public kmeansCommand(): KmeansCommandContext | undefined { + return this.tryGetRuleContext(0, KmeansCommandContext); + } + public adCommand(): AdCommandContext | undefined { + return this.tryGetRuleContext(0, AdCommandContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_commands; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterCommands) { + listener.enterCommands(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitCommands) { + listener.exitCommands(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitCommands) { + return visitor.visitCommands(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SearchCommandContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_searchCommand; } + public copyFrom(ctx: SearchCommandContext): void { + super.copyFrom(ctx); + } +} +export class SearchFromContext extends SearchCommandContext { + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext); + } + public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } + constructor(ctx: SearchCommandContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSearchFrom) { + listener.enterSearchFrom(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSearchFrom) { + listener.exitSearchFrom(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSearchFrom) { + return visitor.visitSearchFrom(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SearchFromFilterContext extends SearchCommandContext { + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext); + } + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } + constructor(ctx: SearchCommandContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSearchFromFilter) { + listener.enterSearchFromFilter(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSearchFromFilter) { + listener.exitSearchFromFilter(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSearchFromFilter) { + return visitor.visitSearchFromFilter(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SearchFilterFromContext extends SearchCommandContext { + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext); + } + public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } + constructor(ctx: SearchCommandContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSearchFilterFrom) { + listener.enterSearchFilterFrom(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSearchFilterFrom) { + listener.exitSearchFilterFrom(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSearchFilterFrom) { + return visitor.visitSearchFilterFrom(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WhereCommandContext extends ParserRuleContext { + public WHERE(): TerminalNode { return this.getToken(OpenSearchPPLParser.WHERE, 0); } + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_whereCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWhereCommand) { + listener.enterWhereCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWhereCommand) { + listener.exitWhereCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWhereCommand) { + return visitor.visitWhereCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FieldsCommandContext extends ParserRuleContext { + public FIELDS(): TerminalNode { return this.getToken(OpenSearchPPLParser.FIELDS, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldsCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFieldsCommand) { + listener.enterFieldsCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFieldsCommand) { + listener.exitFieldsCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFieldsCommand) { + return visitor.visitFieldsCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RenameCommandContext extends ParserRuleContext { + public RENAME(): TerminalNode { return this.getToken(OpenSearchPPLParser.RENAME, 0); } + public renameClasue(): RenameClasueContext[]; + public renameClasue(i: number): RenameClasueContext; + public renameClasue(i?: number): RenameClasueContext | RenameClasueContext[] { + if (i === undefined) { + return this.getRuleContexts(RenameClasueContext); + } else { + return this.getRuleContext(i, RenameClasueContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRenameCommand) { + listener.enterRenameCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRenameCommand) { + listener.exitRenameCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRenameCommand) { + return visitor.visitRenameCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsCommandContext extends ParserRuleContext { + public _partitions!: IntegerLiteralContext; + public _allnum!: BooleanLiteralContext; + public _delim!: StringLiteralContext; + public _dedupsplit!: BooleanLiteralContext; + public STATS(): TerminalNode { return this.getToken(OpenSearchPPLParser.STATS, 0); } + public statsAggTerm(): StatsAggTermContext[]; + public statsAggTerm(i: number): StatsAggTermContext; + public statsAggTerm(i?: number): StatsAggTermContext | StatsAggTermContext[] { + if (i === undefined) { + return this.getRuleContexts(StatsAggTermContext); + } else { + return this.getRuleContext(i, StatsAggTermContext); + } + } + public PARTITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PARTITIONS, 0); } + public EQUAL(): TerminalNode[]; + public EQUAL(i: number): TerminalNode; + public EQUAL(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.EQUAL); + } else { + return this.getToken(OpenSearchPPLParser.EQUAL, i); + } + } + public ALLNUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLNUM, 0); } + public DELIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DELIM, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public statsByClause(): StatsByClauseContext | undefined { + return this.tryGetRuleContext(0, StatsByClauseContext); + } + public DEDUP_SPLITVALUES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public booleanLiteral(): BooleanLiteralContext[]; + public booleanLiteral(i: number): BooleanLiteralContext; + public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { + if (i === undefined) { + return this.getRuleContexts(BooleanLiteralContext); + } else { + return this.getRuleContext(i, BooleanLiteralContext); + } + } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsCommand) { + listener.enterStatsCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsCommand) { + listener.exitStatsCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsCommand) { + return visitor.visitStatsCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DedupCommandContext extends ParserRuleContext { + public _number!: IntegerLiteralContext; + public _keepempty!: BooleanLiteralContext; + public _consecutive!: BooleanLiteralContext; + public DEDUP(): TerminalNode { return this.getToken(OpenSearchPPLParser.DEDUP, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public KEEPEMPTY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.KEEPEMPTY, 0); } + public EQUAL(): TerminalNode[]; + public EQUAL(i: number): TerminalNode; + public EQUAL(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.EQUAL); + } else { + return this.getToken(OpenSearchPPLParser.EQUAL, i); + } + } + public CONSECUTIVE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONSECUTIVE, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public booleanLiteral(): BooleanLiteralContext[]; + public booleanLiteral(i: number): BooleanLiteralContext; + public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { + if (i === undefined) { + return this.getRuleContexts(BooleanLiteralContext); + } else { + return this.getRuleContext(i, BooleanLiteralContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dedupCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDedupCommand) { + listener.enterDedupCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDedupCommand) { + listener.exitDedupCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDedupCommand) { + return visitor.visitDedupCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortCommandContext extends ParserRuleContext { + public SORT(): TerminalNode { return this.getToken(OpenSearchPPLParser.SORT, 0); } + public sortbyClause(): SortbyClauseContext { + return this.getRuleContext(0, SortbyClauseContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortCommand) { + listener.enterSortCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortCommand) { + listener.exitSortCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortCommand) { + return visitor.visitSortCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalCommandContext extends ParserRuleContext { + public EVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EVAL, 0); } + public evalClause(): EvalClauseContext[]; + public evalClause(i: number): EvalClauseContext; + public evalClause(i?: number): EvalClauseContext | EvalClauseContext[] { + if (i === undefined) { + return this.getRuleContexts(EvalClauseContext); + } else { + return this.getRuleContext(i, EvalClauseContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalCommand) { + listener.enterEvalCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalCommand) { + listener.exitEvalCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalCommand) { + return visitor.visitEvalCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class HeadCommandContext extends ParserRuleContext { + public _number!: IntegerLiteralContext; + public _from!: IntegerLiteralContext; + public HEAD(): TerminalNode { return this.getToken(OpenSearchPPLParser.HEAD, 0); } + public FROM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM, 0); } + public integerLiteral(): IntegerLiteralContext[]; + public integerLiteral(i: number): IntegerLiteralContext; + public integerLiteral(i?: number): IntegerLiteralContext | IntegerLiteralContext[] { + if (i === undefined) { + return this.getRuleContexts(IntegerLiteralContext); + } else { + return this.getRuleContext(i, IntegerLiteralContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_headCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterHeadCommand) { + listener.enterHeadCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitHeadCommand) { + listener.exitHeadCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitHeadCommand) { + return visitor.visitHeadCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TopCommandContext extends ParserRuleContext { + public _number!: IntegerLiteralContext; + public TOP(): TerminalNode { return this.getToken(OpenSearchPPLParser.TOP, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public byClause(): ByClauseContext | undefined { + return this.tryGetRuleContext(0, ByClauseContext); + } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_topCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTopCommand) { + listener.enterTopCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTopCommand) { + listener.exitTopCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTopCommand) { + return visitor.visitTopCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RareCommandContext extends ParserRuleContext { + public RARE(): TerminalNode { return this.getToken(OpenSearchPPLParser.RARE, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public byClause(): ByClauseContext | undefined { + return this.tryGetRuleContext(0, ByClauseContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_rareCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRareCommand) { + listener.enterRareCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRareCommand) { + listener.exitRareCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRareCommand) { + return visitor.visitRareCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ParseCommandContext extends ParserRuleContext { + public PARSE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PARSE, 0); } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext); + } + public pattern(): PatternContext { + return this.getRuleContext(0, PatternContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_parseCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterParseCommand) { + listener.enterParseCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitParseCommand) { + listener.exitParseCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitParseCommand) { + return visitor.visitParseCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class KmeansCommandContext extends ParserRuleContext { + public KMEANS(): TerminalNode { return this.getToken(OpenSearchPPLParser.KMEANS, 0); } + public kmeansParameter(): KmeansParameterContext[]; + public kmeansParameter(i: number): KmeansParameterContext; + public kmeansParameter(i?: number): KmeansParameterContext | KmeansParameterContext[] { + if (i === undefined) { + return this.getRuleContexts(KmeansParameterContext); + } else { + return this.getRuleContext(i, KmeansParameterContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterKmeansCommand) { + listener.enterKmeansCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitKmeansCommand) { + listener.exitKmeansCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitKmeansCommand) { + return visitor.visitKmeansCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class KmeansParameterContext extends ParserRuleContext { + public _centroids!: IntegerLiteralContext; + public _iterations!: IntegerLiteralContext; + public _distance_type!: StringLiteralContext; + public CENTROIDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CENTROIDS, 0); } + public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public ITERATIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ITERATIONS, 0); } + public DISTANCE_TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansParameter; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterKmeansParameter) { + listener.enterKmeansParameter(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitKmeansParameter) { + listener.exitKmeansParameter(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitKmeansParameter) { + return visitor.visitKmeansParameter(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AdCommandContext extends ParserRuleContext { + public AD(): TerminalNode { return this.getToken(OpenSearchPPLParser.AD, 0); } + public adParameter(): AdParameterContext[]; + public adParameter(i: number): AdParameterContext; + public adParameter(i?: number): AdParameterContext | AdParameterContext[] { + if (i === undefined) { + return this.getRuleContexts(AdParameterContext); + } else { + return this.getRuleContext(i, AdParameterContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterAdCommand) { + listener.enterAdCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitAdCommand) { + listener.exitAdCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitAdCommand) { + return visitor.visitAdCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AdParameterContext extends ParserRuleContext { + public _number_of_trees!: IntegerLiteralContext; + public _shingle_size!: IntegerLiteralContext; + public _sample_size!: IntegerLiteralContext; + public _output_after!: IntegerLiteralContext; + public _time_decay!: DecimalLiteralContext; + public _anomaly_rate!: DecimalLiteralContext; + public _time_field!: StringLiteralContext; + public _date_format!: StringLiteralContext; + public _time_zone!: StringLiteralContext; + public _training_data_size!: IntegerLiteralContext; + public _anomaly_score_threshold!: DecimalLiteralContext; + public NUMBER_OF_TREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } + public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public SHINGLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } + public SAMPLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } + public OUTPUT_AFTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } + public TIME_DECAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_DECAY, 0); } + public decimalLiteral(): DecimalLiteralContext | undefined { + return this.tryGetRuleContext(0, DecimalLiteralContext); + } + public ANOMALY_RATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } + public TIME_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_FIELD, 0); } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TRAINING_DATA_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } + public ANOMALY_SCORE_THRESHOLD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adParameter; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterAdParameter) { + listener.enterAdParameter(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitAdParameter) { + listener.exitAdParameter(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitAdParameter) { + return visitor.visitAdParameter(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FromClauseContext extends ParserRuleContext { + public SOURCE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SOURCE, 0); } + public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } + public tableSource(): TableSourceContext[]; + public tableSource(i: number): TableSourceContext; + public tableSource(i?: number): TableSourceContext | TableSourceContext[] { + if (i === undefined) { + return this.getRuleContexts(TableSourceContext); + } else { + return this.getRuleContext(i, TableSourceContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public INDEX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INDEX, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fromClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFromClause) { + listener.enterFromClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFromClause) { + listener.exitFromClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFromClause) { + return visitor.visitFromClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RenameClasueContext extends ParserRuleContext { + public _orignalField!: WcFieldExpressionContext; + public _renamedField!: WcFieldExpressionContext; + public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } + public wcFieldExpression(): WcFieldExpressionContext[]; + public wcFieldExpression(i: number): WcFieldExpressionContext; + public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(WcFieldExpressionContext); + } else { + return this.getRuleContext(i, WcFieldExpressionContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameClasue; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRenameClasue) { + listener.enterRenameClasue(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRenameClasue) { + listener.exitRenameClasue(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRenameClasue) { + return visitor.visitRenameClasue(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ByClauseContext extends ParserRuleContext { + public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_byClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterByClause) { + listener.enterByClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitByClause) { + listener.exitByClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitByClause) { + return visitor.visitByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsByClauseContext extends ParserRuleContext { + public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } + public fieldList(): FieldListContext | undefined { + return this.tryGetRuleContext(0, FieldListContext); + } + public bySpanClause(): BySpanClauseContext | undefined { + return this.tryGetRuleContext(0, BySpanClauseContext); + } + public COMMA(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COMMA, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsByClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsByClause) { + listener.enterStatsByClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsByClause) { + listener.exitStatsByClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsByClause) { + return visitor.visitStatsByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BySpanClauseContext extends ParserRuleContext { + public _alias!: QualifiedNameContext; + public spanClause(): SpanClauseContext { + return this.getRuleContext(0, SpanClauseContext); + } + public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_bySpanClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBySpanClause) { + listener.enterBySpanClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBySpanClause) { + listener.exitBySpanClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBySpanClause) { + return visitor.visitBySpanClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SpanClauseContext extends ParserRuleContext { + public _value!: LiteralValueContext; + public _unit!: TimespanUnitContext; + public SPAN(): TerminalNode { return this.getToken(OpenSearchPPLParser.SPAN, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + public COMMA(): TerminalNode { return this.getToken(OpenSearchPPLParser.COMMA, 0); } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public literalValue(): LiteralValueContext { + return this.getRuleContext(0, LiteralValueContext); + } + public timespanUnit(): TimespanUnitContext | undefined { + return this.tryGetRuleContext(0, TimespanUnitContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_spanClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSpanClause) { + listener.enterSpanClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSpanClause) { + listener.exitSpanClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSpanClause) { + return visitor.visitSpanClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortbyClauseContext extends ParserRuleContext { + public sortField(): SortFieldContext[]; + public sortField(i: number): SortFieldContext; + public sortField(i?: number): SortFieldContext | SortFieldContext[] { + if (i === undefined) { + return this.getRuleContexts(SortFieldContext); + } else { + return this.getRuleContext(i, SortFieldContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortbyClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortbyClause) { + listener.enterSortbyClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortbyClause) { + listener.exitSortbyClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortbyClause) { + return visitor.visitSortbyClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalClauseContext extends ParserRuleContext { + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalClause) { + listener.enterEvalClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalClause) { + listener.exitEvalClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalClause) { + return visitor.visitEvalClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsAggTermContext extends ParserRuleContext { + public _alias!: WcFieldExpressionContext; + public statsFunction(): StatsFunctionContext { + return this.getRuleContext(0, StatsFunctionContext); + } + public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } + public wcFieldExpression(): WcFieldExpressionContext | undefined { + return this.tryGetRuleContext(0, WcFieldExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsAggTerm; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsAggTerm) { + listener.enterStatsAggTerm(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsAggTerm) { + listener.exitStatsAggTerm(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsAggTerm) { + return visitor.visitStatsAggTerm(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsFunctionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunction; } + public copyFrom(ctx: StatsFunctionContext): void { + super.copyFrom(ctx); + } +} +export class StatsFunctionCallContext extends StatsFunctionContext { + public statsFunctionName(): StatsFunctionNameContext { + return this.getRuleContext(0, StatsFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsFunctionCall) { + listener.enterStatsFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsFunctionCall) { + listener.exitStatsFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsFunctionCall) { + return visitor.visitStatsFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CountAllFunctionCallContext extends StatsFunctionContext { + public COUNT(): TerminalNode { return this.getToken(OpenSearchPPLParser.COUNT, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterCountAllFunctionCall) { + listener.enterCountAllFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitCountAllFunctionCall) { + listener.exitCountAllFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitCountAllFunctionCall) { + return visitor.visitCountAllFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DistinctCountFunctionCallContext extends StatsFunctionContext { + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public DISTINCT_COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } + public DC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DC, 0); } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDistinctCountFunctionCall) { + listener.enterDistinctCountFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDistinctCountFunctionCall) { + listener.exitDistinctCountFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDistinctCountFunctionCall) { + return visitor.visitDistinctCountFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class PercentileAggFunctionCallContext extends StatsFunctionContext { + public percentileAggFunction(): PercentileAggFunctionContext { + return this.getRuleContext(0, PercentileAggFunctionContext); + } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPercentileAggFunctionCall) { + listener.enterPercentileAggFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPercentileAggFunctionCall) { + listener.exitPercentileAggFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPercentileAggFunctionCall) { + return visitor.visitPercentileAggFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsFunctionNameContext extends ParserRuleContext { + public AVG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AVG, 0); } + public COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COUNT, 0); } + public SUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUM, 0); } + public MIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MIN, 0); } + public MAX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX, 0); } + public VAR_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_SAMP, 0); } + public VAR_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_POP, 0); } + public STDDEV_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } + public STDDEV_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_POP, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsFunctionName) { + listener.enterStatsFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsFunctionName) { + listener.exitStatsFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsFunctionName) { + return visitor.visitStatsFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PercentileAggFunctionContext extends ParserRuleContext { + public _value!: IntegerLiteralContext; + public _aggField!: FieldExpressionContext; + public PERCENTILE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PERCENTILE, 0); } + public LESS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LESS, 0); } + public GREATER(): TerminalNode { return this.getToken(OpenSearchPPLParser.GREATER, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public integerLiteral(): IntegerLiteralContext { + return this.getRuleContext(0, IntegerLiteralContext); + } + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_percentileAggFunction; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPercentileAggFunction) { + listener.enterPercentileAggFunction(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPercentileAggFunction) { + listener.exitPercentileAggFunction(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPercentileAggFunction) { + return visitor.visitPercentileAggFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ExpressionContext extends ParserRuleContext { + public logicalExpression(): LogicalExpressionContext | undefined { + return this.tryGetRuleContext(0, LogicalExpressionContext); + } + public comparisonExpression(): ComparisonExpressionContext | undefined { + return this.tryGetRuleContext(0, ComparisonExpressionContext); + } + public valueExpression(): ValueExpressionContext | undefined { + return this.tryGetRuleContext(0, ValueExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_expression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterExpression) { + listener.enterExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitExpression) { + listener.exitExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitExpression) { + return visitor.visitExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class LogicalExpressionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_logicalExpression; } + public copyFrom(ctx: LogicalExpressionContext): void { + super.copyFrom(ctx); + } +} +export class ComparsionContext extends LogicalExpressionContext { + public comparisonExpression(): ComparisonExpressionContext { + return this.getRuleContext(0, ComparisonExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterComparsion) { + listener.enterComparsion(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitComparsion) { + listener.exitComparsion(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitComparsion) { + return visitor.visitComparsion(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalNotContext extends LogicalExpressionContext { + public NOT(): TerminalNode { return this.getToken(OpenSearchPPLParser.NOT, 0); } + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalNot) { + listener.enterLogicalNot(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalNot) { + listener.exitLogicalNot(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalNot) { + return visitor.visitLogicalNot(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalOrContext extends LogicalExpressionContext { + public _left!: LogicalExpressionContext; + public _right!: LogicalExpressionContext; + public OR(): TerminalNode { return this.getToken(OpenSearchPPLParser.OR, 0); } + public logicalExpression(): LogicalExpressionContext[]; + public logicalExpression(i: number): LogicalExpressionContext; + public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(LogicalExpressionContext); + } else { + return this.getRuleContext(i, LogicalExpressionContext); + } + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalOr) { + listener.enterLogicalOr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalOr) { + listener.exitLogicalOr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalOr) { + return visitor.visitLogicalOr(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalAndContext extends LogicalExpressionContext { + public _left!: LogicalExpressionContext; + public _right!: LogicalExpressionContext; + public logicalExpression(): LogicalExpressionContext[]; + public logicalExpression(i: number): LogicalExpressionContext; + public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(LogicalExpressionContext); + } else { + return this.getRuleContext(i, LogicalExpressionContext); + } + } + public AND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AND, 0); } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalAnd) { + listener.enterLogicalAnd(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalAnd) { + listener.exitLogicalAnd(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalAnd) { + return visitor.visitLogicalAnd(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalXorContext extends LogicalExpressionContext { + public _left!: LogicalExpressionContext; + public _right!: LogicalExpressionContext; + public XOR(): TerminalNode { return this.getToken(OpenSearchPPLParser.XOR, 0); } + public logicalExpression(): LogicalExpressionContext[]; + public logicalExpression(i: number): LogicalExpressionContext; + public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(LogicalExpressionContext); + } else { + return this.getRuleContext(i, LogicalExpressionContext); + } + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalXor) { + listener.enterLogicalXor(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalXor) { + listener.exitLogicalXor(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalXor) { + return visitor.visitLogicalXor(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class BooleanExprContext extends LogicalExpressionContext { + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanExpr) { + listener.enterBooleanExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanExpr) { + listener.exitBooleanExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanExpr) { + return visitor.visitBooleanExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RelevanceExprContext extends LogicalExpressionContext { + public relevanceExpression(): RelevanceExpressionContext { + return this.getRuleContext(0, RelevanceExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceExpr) { + listener.enterRelevanceExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceExpr) { + listener.exitRelevanceExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceExpr) { + return visitor.visitRelevanceExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ComparisonExpressionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonExpression; } + public copyFrom(ctx: ComparisonExpressionContext): void { + super.copyFrom(ctx); + } +} +export class CompareExprContext extends ComparisonExpressionContext { + public _left!: ValueExpressionContext; + public _right!: ValueExpressionContext; + public comparisonOperator(): ComparisonOperatorContext { + return this.getRuleContext(0, ComparisonOperatorContext); + } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext; + public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } else { + return this.getRuleContext(i, ValueExpressionContext); + } + } + constructor(ctx: ComparisonExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterCompareExpr) { + listener.enterCompareExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitCompareExpr) { + listener.exitCompareExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitCompareExpr) { + return visitor.visitCompareExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class InExprContext extends ComparisonExpressionContext { + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public IN(): TerminalNode { return this.getToken(OpenSearchPPLParser.IN, 0); } + public valueList(): ValueListContext { + return this.getRuleContext(0, ValueListContext); + } + constructor(ctx: ComparisonExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterInExpr) { + listener.enterInExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitInExpr) { + listener.exitInExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitInExpr) { + return visitor.visitInExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ValueExpressionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueExpression; } + public copyFrom(ctx: ValueExpressionContext): void { + super.copyFrom(ctx); + } +} +export class BinaryArithmeticContext extends ValueExpressionContext { + public _left!: ValueExpressionContext; + public _right!: ValueExpressionContext; + public binaryOperator(): BinaryOperatorContext { + return this.getRuleContext(0, BinaryOperatorContext); + } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext; + public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } else { + return this.getRuleContext(i, ValueExpressionContext); + } + } + constructor(ctx: ValueExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBinaryArithmetic) { + listener.enterBinaryArithmetic(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBinaryArithmetic) { + listener.exitBinaryArithmetic(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBinaryArithmetic) { + return visitor.visitBinaryArithmetic(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ParentheticBinaryArithmeticContext extends ValueExpressionContext { + public _left!: ValueExpressionContext; + public _right!: ValueExpressionContext; + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public binaryOperator(): BinaryOperatorContext { + return this.getRuleContext(0, BinaryOperatorContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext; + public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } else { + return this.getRuleContext(i, ValueExpressionContext); + } + } + constructor(ctx: ValueExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterParentheticBinaryArithmetic) { + listener.enterParentheticBinaryArithmetic(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitParentheticBinaryArithmetic) { + listener.exitParentheticBinaryArithmetic(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitParentheticBinaryArithmetic) { + return visitor.visitParentheticBinaryArithmetic(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ValueExpressionDefaultContext extends ValueExpressionContext { + public primaryExpression(): PrimaryExpressionContext { + return this.getRuleContext(0, PrimaryExpressionContext); + } + constructor(ctx: ValueExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterValueExpressionDefault) { + listener.enterValueExpressionDefault(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitValueExpressionDefault) { + listener.exitValueExpressionDefault(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitValueExpressionDefault) { + return visitor.visitValueExpressionDefault(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PrimaryExpressionContext extends ParserRuleContext { + public evalFunctionCall(): EvalFunctionCallContext | undefined { + return this.tryGetRuleContext(0, EvalFunctionCallContext); + } + public dataTypeFunctionCall(): DataTypeFunctionCallContext | undefined { + return this.tryGetRuleContext(0, DataTypeFunctionCallContext); + } + public fieldExpression(): FieldExpressionContext | undefined { + return this.tryGetRuleContext(0, FieldExpressionContext); + } + public literalValue(): LiteralValueContext | undefined { + return this.tryGetRuleContext(0, LiteralValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_primaryExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPrimaryExpression) { + listener.enterPrimaryExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPrimaryExpression) { + listener.exitPrimaryExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPrimaryExpression) { + return visitor.visitPrimaryExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BooleanExpressionContext extends ParserRuleContext { + public booleanFunctionCall(): BooleanFunctionCallContext { + return this.getRuleContext(0, BooleanFunctionCallContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanExpression) { + listener.enterBooleanExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanExpression) { + listener.exitBooleanExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanExpression) { + return visitor.visitBooleanExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceExpressionContext extends ParserRuleContext { + public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext | undefined { + return this.tryGetRuleContext(0, SingleFieldRelevanceFunctionContext); + } + public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext | undefined { + return this.tryGetRuleContext(0, MultiFieldRelevanceFunctionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceExpression) { + listener.enterRelevanceExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceExpression) { + listener.exitRelevanceExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceExpression) { + return visitor.visitRelevanceExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SingleFieldRelevanceFunctionContext extends ParserRuleContext { + public _field!: RelevanceFieldContext; + public _query!: RelevanceQueryContext; + public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { + return this.getRuleContext(0, SingleFieldRelevanceFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public relevanceField(): RelevanceFieldContext { + return this.getRuleContext(0, RelevanceFieldContext); + } + public relevanceQuery(): RelevanceQueryContext { + return this.getRuleContext(0, RelevanceQueryContext); + } + public relevanceArg(): RelevanceArgContext[]; + public relevanceArg(i: number): RelevanceArgContext; + public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { + if (i === undefined) { + return this.getRuleContexts(RelevanceArgContext); + } else { + return this.getRuleContext(i, RelevanceArgContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunction; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSingleFieldRelevanceFunction) { + listener.enterSingleFieldRelevanceFunction(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSingleFieldRelevanceFunction) { + listener.exitSingleFieldRelevanceFunction(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSingleFieldRelevanceFunction) { + return visitor.visitSingleFieldRelevanceFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class MultiFieldRelevanceFunctionContext extends ParserRuleContext { + public _field!: RelevanceFieldAndWeightContext; + public _query!: RelevanceQueryContext; + public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { + return this.getRuleContext(0, MultiFieldRelevanceFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public LT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } + public RT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext[]; + public relevanceFieldAndWeight(i: number): RelevanceFieldAndWeightContext; + public relevanceFieldAndWeight(i?: number): RelevanceFieldAndWeightContext | RelevanceFieldAndWeightContext[] { + if (i === undefined) { + return this.getRuleContexts(RelevanceFieldAndWeightContext); + } else { + return this.getRuleContext(i, RelevanceFieldAndWeightContext); + } + } + public relevanceQuery(): RelevanceQueryContext { + return this.getRuleContext(0, RelevanceQueryContext); + } + public relevanceArg(): RelevanceArgContext[]; + public relevanceArg(i: number): RelevanceArgContext; + public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { + if (i === undefined) { + return this.getRuleContexts(RelevanceArgContext); + } else { + return this.getRuleContext(i, RelevanceArgContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunction; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterMultiFieldRelevanceFunction) { + listener.enterMultiFieldRelevanceFunction(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitMultiFieldRelevanceFunction) { + listener.exitMultiFieldRelevanceFunction(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitMultiFieldRelevanceFunction) { + return visitor.visitMultiFieldRelevanceFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableSourceContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + public ID_DATE_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_tableSource; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTableSource) { + listener.enterTableSource(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTableSource) { + listener.exitTableSource(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTableSource) { + return visitor.visitTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FieldListContext extends ParserRuleContext { + public fieldExpression(): FieldExpressionContext[]; + public fieldExpression(i: number): FieldExpressionContext; + public fieldExpression(i?: number): FieldExpressionContext | FieldExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(FieldExpressionContext); + } else { + return this.getRuleContext(i, FieldExpressionContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldList; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFieldList) { + listener.enterFieldList(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFieldList) { + listener.exitFieldList(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFieldList) { + return visitor.visitFieldList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WcFieldListContext extends ParserRuleContext { + public wcFieldExpression(): WcFieldExpressionContext[]; + public wcFieldExpression(i: number): WcFieldExpressionContext; + public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(WcFieldExpressionContext); + } else { + return this.getRuleContext(i, WcFieldExpressionContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldList; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWcFieldList) { + listener.enterWcFieldList(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWcFieldList) { + listener.exitWcFieldList(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWcFieldList) { + return visitor.visitWcFieldList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortFieldContext extends ParserRuleContext { + public sortFieldExpression(): SortFieldExpressionContext { + return this.getRuleContext(0, SortFieldExpressionContext); + } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortField; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortField) { + listener.enterSortField(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortField) { + listener.exitSortField(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortField) { + return visitor.visitSortField(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortFieldExpressionContext extends ParserRuleContext { + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + public AUTO(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO, 0); } + public LT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public RT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public STR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STR, 0); } + public IP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IP, 0); } + public NUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUM, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortFieldExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortFieldExpression) { + listener.enterSortFieldExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortFieldExpression) { + listener.exitSortFieldExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortFieldExpression) { + return visitor.visitSortFieldExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FieldExpressionContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFieldExpression) { + listener.enterFieldExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFieldExpression) { + listener.exitFieldExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFieldExpression) { + return visitor.visitFieldExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WcFieldExpressionContext extends ParserRuleContext { + public wcQualifiedName(): WcQualifiedNameContext { + return this.getRuleContext(0, WcQualifiedNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWcFieldExpression) { + listener.enterWcFieldExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWcFieldExpression) { + listener.exitWcFieldExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWcFieldExpression) { + return visitor.visitWcFieldExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalFunctionCallContext extends ParserRuleContext { + public evalFunctionName(): EvalFunctionNameContext { + return this.getRuleContext(0, EvalFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public functionArgs(): FunctionArgsContext { + return this.getRuleContext(0, FunctionArgsContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionCall; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalFunctionCall) { + listener.enterEvalFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalFunctionCall) { + listener.exitEvalFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalFunctionCall) { + return visitor.visitEvalFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DataTypeFunctionCallContext extends ParserRuleContext { + public CAST(): TerminalNode { return this.getToken(OpenSearchPPLParser.CAST, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext); + } + public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } + public convertedDataType(): ConvertedDataTypeContext { + return this.getRuleContext(0, ConvertedDataTypeContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dataTypeFunctionCall; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDataTypeFunctionCall) { + listener.enterDataTypeFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDataTypeFunctionCall) { + listener.exitDataTypeFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDataTypeFunctionCall) { + return visitor.visitDataTypeFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BooleanFunctionCallContext extends ParserRuleContext { + public conditionFunctionBase(): ConditionFunctionBaseContext { + return this.getRuleContext(0, ConditionFunctionBaseContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public functionArgs(): FunctionArgsContext { + return this.getRuleContext(0, FunctionArgsContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanFunctionCall; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanFunctionCall) { + listener.enterBooleanFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanFunctionCall) { + listener.exitBooleanFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanFunctionCall) { + return visitor.visitBooleanFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ConvertedDataTypeContext extends ParserRuleContext { + public _typeName!: Token; + public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } + public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } + public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public INT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INT, 0); } + public INTEGER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INTEGER, 0); } + public DOUBLE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOUBLE, 0); } + public LONG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LONG, 0); } + public FLOAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOAT, 0); } + public STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRING, 0); } + public BOOLEAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOLEAN, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_convertedDataType; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterConvertedDataType) { + listener.enterConvertedDataType(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitConvertedDataType) { + listener.exitConvertedDataType(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitConvertedDataType) { + return visitor.visitConvertedDataType(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalFunctionNameContext extends ParserRuleContext { + public mathematicalFunctionBase(): MathematicalFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, MathematicalFunctionBaseContext); + } + public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, DateAndTimeFunctionBaseContext); + } + public textFunctionBase(): TextFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, TextFunctionBaseContext); + } + public conditionFunctionBase(): ConditionFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, ConditionFunctionBaseContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalFunctionName) { + listener.enterEvalFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalFunctionName) { + listener.exitEvalFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalFunctionName) { + return visitor.visitEvalFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FunctionArgsContext extends ParserRuleContext { + public functionArg(): FunctionArgContext[]; + public functionArg(i: number): FunctionArgContext; + public functionArg(i?: number): FunctionArgContext | FunctionArgContext[] { + if (i === undefined) { + return this.getRuleContexts(FunctionArgContext); + } else { + return this.getRuleContext(i, FunctionArgContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArgs; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFunctionArgs) { + listener.enterFunctionArgs(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFunctionArgs) { + listener.exitFunctionArgs(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFunctionArgs) { + return visitor.visitFunctionArgs(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FunctionArgContext extends ParserRuleContext { + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArg; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFunctionArg) { + listener.enterFunctionArg(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFunctionArg) { + listener.exitFunctionArg(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFunctionArg) { + return visitor.visitFunctionArg(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceArgContext extends ParserRuleContext { + public relevanceArgName(): RelevanceArgNameContext { + return this.getRuleContext(0, RelevanceArgNameContext); + } + public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } + public relevanceArgValue(): RelevanceArgValueContext { + return this.getRuleContext(0, RelevanceArgValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArg; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceArg) { + listener.enterRelevanceArg(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceArg) { + listener.exitRelevanceArg(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceArg) { + return visitor.visitRelevanceArg(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceArgNameContext extends ParserRuleContext { + public ALLOW_LEADING_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } + public ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZER, 0); } + public ANALYZE_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } + public AUTO_GENERATE_SYNONYMS_PHRASE_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } + public BOOST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOST, 0); } + public CUTOFF_FREQUENCY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } + public DEFAULT_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } + public DEFAULT_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } + public ENABLE_POSITION_INCREMENTS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } + public FIELDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIELDS, 0); } + public FLAGS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLAGS, 0); } + public FUZZINESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZINESS, 0); } + public FUZZY_MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } + public FUZZY_PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } + public FUZZY_REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } + public FUZZY_TRANSPOSITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } + public LENIENT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENIENT, 0); } + public LOW_FREQ_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } + public MAX_DETERMINIZED_STATES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } + public MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } + public MINIMUM_SHOULD_MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } + public OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OPERATOR, 0); } + public PHRASE_SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } + public PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } + public QUOTE_ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } + public QUOTE_FIELD_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } + public REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REWRITE, 0); } + public SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SLOP, 0); } + public TIE_BREAKER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIE_BREAKER, 0); } + public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TYPE, 0); } + public ZERO_TERMS_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceArgName) { + listener.enterRelevanceArgName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceArgName) { + listener.exitRelevanceArgName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceArgName) { + return visitor.visitRelevanceArgName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceFieldAndWeightContext extends ParserRuleContext { + public _field!: RelevanceFieldContext; + public _weight!: RelevanceFieldWeightContext; + public relevanceField(): RelevanceFieldContext { + return this.getRuleContext(0, RelevanceFieldContext); + } + public relevanceFieldWeight(): RelevanceFieldWeightContext | undefined { + return this.tryGetRuleContext(0, RelevanceFieldWeightContext); + } + public BIT_XOR_OP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldAndWeight; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceFieldAndWeight) { + listener.enterRelevanceFieldAndWeight(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceFieldAndWeight) { + listener.exitRelevanceFieldAndWeight(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceFieldAndWeight) { + return visitor.visitRelevanceFieldAndWeight(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceFieldWeightContext extends ParserRuleContext { + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public decimalLiteral(): DecimalLiteralContext | undefined { + return this.tryGetRuleContext(0, DecimalLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldWeight; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceFieldWeight) { + listener.enterRelevanceFieldWeight(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceFieldWeight) { + listener.exitRelevanceFieldWeight(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceFieldWeight) { + return visitor.visitRelevanceFieldWeight(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceFieldContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceField; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceField) { + listener.enterRelevanceField(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceField) { + listener.exitRelevanceField(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceField) { + return visitor.visitRelevanceField(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceQueryContext extends ParserRuleContext { + public relevanceArgValue(): RelevanceArgValueContext { + return this.getRuleContext(0, RelevanceArgValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceQuery; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceQuery) { + listener.enterRelevanceQuery(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceQuery) { + listener.exitRelevanceQuery(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceQuery) { + return visitor.visitRelevanceQuery(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceArgValueContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + public literalValue(): LiteralValueContext | undefined { + return this.tryGetRuleContext(0, LiteralValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgValue; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceArgValue) { + listener.enterRelevanceArgValue(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceArgValue) { + listener.exitRelevanceArgValue(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceArgValue) { + return visitor.visitRelevanceArgValue(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class MathematicalFunctionBaseContext extends ParserRuleContext { + public ABS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ABS, 0); } + public CEIL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEIL, 0); } + public CEILING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEILING, 0); } + public CONV(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONV, 0); } + public CRC32(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CRC32, 0); } + public E(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.E, 0); } + public EXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EXP, 0); } + public FLOOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOOR, 0); } + public LN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LN, 0); } + public LOG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG, 0); } + public LOG10(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG10, 0); } + public LOG2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG2, 0); } + public MOD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MOD, 0); } + public PI(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PI, 0); } + public POW(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POW, 0); } + public POWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POWER, 0); } + public RAND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RAND, 0); } + public ROUND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ROUND, 0); } + public SIGN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIGN, 0); } + public SQRT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQRT, 0); } + public TRUNCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUNCATE, 0); } + public trigonometricFunctionName(): TrigonometricFunctionNameContext | undefined { + return this.tryGetRuleContext(0, TrigonometricFunctionNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_mathematicalFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterMathematicalFunctionBase) { + listener.enterMathematicalFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitMathematicalFunctionBase) { + listener.exitMathematicalFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitMathematicalFunctionBase) { + return visitor.visitMathematicalFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TrigonometricFunctionNameContext extends ParserRuleContext { + public ACOS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ACOS, 0); } + public ASIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASIN, 0); } + public ATAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN, 0); } + public ATAN2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN2, 0); } + public COS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COS, 0); } + public COT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COT, 0); } + public DEGREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEGREES, 0); } + public RADIANS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RADIANS, 0); } + public SIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIN, 0); } + public TAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TAN, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_trigonometricFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTrigonometricFunctionName) { + listener.enterTrigonometricFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTrigonometricFunctionName) { + listener.exitTrigonometricFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTrigonometricFunctionName) { + return visitor.visitTrigonometricFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DateAndTimeFunctionBaseContext extends ParserRuleContext { + public ADDDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ADDDATE, 0); } + public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } + public DATE_ADD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_ADD, 0); } + public DATE_SUB(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_SUB, 0); } + public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } + public DAYNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYNAME, 0); } + public DAYOFMONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFMONTH, 0); } + public DAYOFWEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFWEEK, 0); } + public DAYOFYEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFYEAR, 0); } + public FROM_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM_DAYS, 0); } + public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } + public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } + public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } + public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } + public MONTHNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTHNAME, 0); } + public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } + public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } + public SUBDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBDATE, 0); } + public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } + public TIME_TO_SEC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } + public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TO_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TO_DAYS, 0); } + public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } + public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } + public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dateAndTimeFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDateAndTimeFunctionBase) { + listener.enterDateAndTimeFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDateAndTimeFunctionBase) { + listener.exitDateAndTimeFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDateAndTimeFunctionBase) { + return visitor.visitDateAndTimeFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ConditionFunctionBaseContext extends ParserRuleContext { + public LIKE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LIKE, 0); } + public IF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IF, 0); } + public ISNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNULL, 0); } + public ISNOTNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNOTNULL, 0); } + public IFNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IFNULL, 0); } + public NULLIF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NULLIF, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_conditionFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterConditionFunctionBase) { + listener.enterConditionFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitConditionFunctionBase) { + listener.exitConditionFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitConditionFunctionBase) { + return visitor.visitConditionFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TextFunctionBaseContext extends ParserRuleContext { + public SUBSTR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTR, 0); } + public SUBSTRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTRING, 0); } + public TRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRIM, 0); } + public LTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LTRIM, 0); } + public RTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RTRIM, 0); } + public LOWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOWER, 0); } + public UPPER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.UPPER, 0); } + public CONCAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT, 0); } + public CONCAT_WS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT_WS, 0); } + public LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENGTH, 0); } + public STRCMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRCMP, 0); } + public RIGHT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RIGHT, 0); } + public LEFT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LEFT, 0); } + public ASCII(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASCII, 0); } + public LOCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOCATE, 0); } + public REPLACE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REPLACE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_textFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTextFunctionBase) { + listener.enterTextFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTextFunctionBase) { + listener.exitTextFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTextFunctionBase) { + return visitor.visitTextFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ComparisonOperatorContext extends ParserRuleContext { + public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } + public NOT_EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_EQUAL, 0); } + public LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LESS, 0); } + public NOT_LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_LESS, 0); } + public GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.GREATER, 0); } + public NOT_GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_GREATER, 0); } + public REGEXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REGEXP, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonOperator; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterComparisonOperator) { + listener.enterComparisonOperator(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitComparisonOperator) { + listener.exitComparisonOperator(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitComparisonOperator) { + return visitor.visitComparisonOperator(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BinaryOperatorContext extends ParserRuleContext { + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + public STAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STAR, 0); } + public DIVIDE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DIVIDE, 0); } + public MODULE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MODULE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_binaryOperator; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBinaryOperator) { + listener.enterBinaryOperator(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBinaryOperator) { + listener.exitBinaryOperator(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBinaryOperator) { + return visitor.visitBinaryOperator(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { + public MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH, 0); } + public MATCH_PHRASE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSingleFieldRelevanceFunctionName) { + listener.enterSingleFieldRelevanceFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSingleFieldRelevanceFunctionName) { + listener.exitSingleFieldRelevanceFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSingleFieldRelevanceFunctionName) { + return visitor.visitSingleFieldRelevanceFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { + public SIMPLE_QUERY_STRING(): TerminalNode { return this.getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterMultiFieldRelevanceFunctionName) { + listener.enterMultiFieldRelevanceFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitMultiFieldRelevanceFunctionName) { + listener.exitMultiFieldRelevanceFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitMultiFieldRelevanceFunctionName) { + return visitor.visitMultiFieldRelevanceFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class LiteralValueContext extends ParserRuleContext { + public intervalLiteral(): IntervalLiteralContext | undefined { + return this.tryGetRuleContext(0, IntervalLiteralContext); + } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public decimalLiteral(): DecimalLiteralContext | undefined { + return this.tryGetRuleContext(0, DecimalLiteralContext); + } + public booleanLiteral(): BooleanLiteralContext | undefined { + return this.tryGetRuleContext(0, BooleanLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_literalValue; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLiteralValue) { + listener.enterLiteralValue(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLiteralValue) { + listener.exitLiteralValue(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLiteralValue) { + return visitor.visitLiteralValue(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IntervalLiteralContext extends ParserRuleContext { + public INTERVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTERVAL, 0); } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public intervalUnit(): IntervalUnitContext { + return this.getRuleContext(0, IntervalUnitContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIntervalLiteral) { + listener.enterIntervalLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIntervalLiteral) { + listener.exitIntervalLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIntervalLiteral) { + return visitor.visitIntervalLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StringLiteralContext extends ParserRuleContext { + public DQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } + public SQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_stringLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStringLiteral) { + listener.enterStringLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStringLiteral) { + listener.exitStringLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStringLiteral) { + return visitor.visitStringLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IntegerLiteralContext extends ParserRuleContext { + public INTEGER_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_integerLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIntegerLiteral) { + listener.enterIntegerLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIntegerLiteral) { + listener.exitIntegerLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIntegerLiteral) { + return visitor.visitIntegerLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DecimalLiteralContext extends ParserRuleContext { + public DECIMAL_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_decimalLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDecimalLiteral) { + listener.enterDecimalLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDecimalLiteral) { + listener.exitDecimalLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDecimalLiteral) { + return visitor.visitDecimalLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BooleanLiteralContext extends ParserRuleContext { + public TRUE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUE, 0); } + public FALSE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FALSE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanLiteral) { + listener.enterBooleanLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanLiteral) { + listener.exitBooleanLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanLiteral) { + return visitor.visitBooleanLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PatternContext extends ParserRuleContext { + public stringLiteral(): StringLiteralContext { + return this.getRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pattern; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPattern) { + listener.enterPattern(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPattern) { + listener.exitPattern(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPattern) { + return visitor.visitPattern(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IntervalUnitContext extends ParserRuleContext { + public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } + public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } + public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } + public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } + public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } + public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } + public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } + public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } + public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } + public SECOND_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } + public MINUTE_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } + public MINUTE_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } + public HOUR_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } + public HOUR_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_SECOND, 0); } + public HOUR_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } + public DAY_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } + public DAY_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_SECOND, 0); } + public DAY_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MINUTE, 0); } + public DAY_HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_HOUR, 0); } + public YEAR_MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR_MONTH, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalUnit; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIntervalUnit) { + listener.enterIntervalUnit(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIntervalUnit) { + listener.exitIntervalUnit(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIntervalUnit) { + return visitor.visitIntervalUnit(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TimespanUnitContext extends ParserRuleContext { + public MS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MS, 0); } + public S(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.S, 0); } + public M(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.M, 0); } + public H(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.H, 0); } + public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } + public W(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.W, 0); } + public Q(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Q, 0); } + public Y(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Y, 0); } + public MILLISECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MILLISECOND, 0); } + public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } + public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } + public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } + public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } + public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } + public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } + public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } + public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_timespanUnit; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTimespanUnit) { + listener.enterTimespanUnit(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTimespanUnit) { + listener.exitTimespanUnit(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTimespanUnit) { + return visitor.visitTimespanUnit(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ValueListContext extends ParserRuleContext { + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public literalValue(): LiteralValueContext[]; + public literalValue(i: number): LiteralValueContext; + public literalValue(i?: number): LiteralValueContext | LiteralValueContext[] { + if (i === undefined) { + return this.getRuleContexts(LiteralValueContext); + } else { + return this.getRuleContext(i, LiteralValueContext); + } + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueList; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterValueList) { + listener.enterValueList(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitValueList) { + listener.exitValueList(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitValueList) { + return visitor.visitValueList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class QualifiedNameContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_qualifiedName; } + public copyFrom(ctx: QualifiedNameContext): void { + super.copyFrom(ctx); + } +} +export class IdentsAsQualifiedNameContext extends QualifiedNameContext { + public ident(): IdentContext[]; + public ident(i: number): IdentContext; + public ident(i?: number): IdentContext | IdentContext[] { + if (i === undefined) { + return this.getRuleContexts(IdentContext); + } else { + return this.getRuleContext(i, IdentContext); + } + } + public DOT(): TerminalNode[]; + public DOT(i: number): TerminalNode; + public DOT(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.DOT); + } else { + return this.getToken(OpenSearchPPLParser.DOT, i); + } + } + constructor(ctx: QualifiedNameContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIdentsAsQualifiedName) { + listener.enterIdentsAsQualifiedName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIdentsAsQualifiedName) { + listener.exitIdentsAsQualifiedName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIdentsAsQualifiedName) { + return visitor.visitIdentsAsQualifiedName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WcQualifiedNameContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcQualifiedName; } + public copyFrom(ctx: WcQualifiedNameContext): void { + super.copyFrom(ctx); + } +} +export class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { + public wildcard(): WildcardContext[]; + public wildcard(i: number): WildcardContext; + public wildcard(i?: number): WildcardContext | WildcardContext[] { + if (i === undefined) { + return this.getRuleContexts(WildcardContext); + } else { + return this.getRuleContext(i, WildcardContext); + } + } + public DOT(): TerminalNode[]; + public DOT(i: number): TerminalNode; + public DOT(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.DOT); + } else { + return this.getToken(OpenSearchPPLParser.DOT, i); + } + } + constructor(ctx: WcQualifiedNameContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIdentsAsWildcardQualifiedName) { + listener.enterIdentsAsWildcardQualifiedName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIdentsAsWildcardQualifiedName) { + listener.exitIdentsAsWildcardQualifiedName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIdentsAsWildcardQualifiedName) { + return visitor.visitIdentsAsWildcardQualifiedName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IdentContext extends ParserRuleContext { + public ID(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID, 0); } + public DOT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOT, 0); } + public BACKTICK(): TerminalNode[]; + public BACKTICK(i: number): TerminalNode; + public BACKTICK(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.BACKTICK); + } else { + return this.getToken(OpenSearchPPLParser.BACKTICK, i); + } + } + public ident(): IdentContext | undefined { + return this.tryGetRuleContext(0, IdentContext); + } + public BQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } + public keywordsCanBeId(): KeywordsCanBeIdContext | undefined { + return this.tryGetRuleContext(0, KeywordsCanBeIdContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_ident; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIdent) { + listener.enterIdent(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIdent) { + listener.exitIdent(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIdent) { + return visitor.visitIdent(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WildcardContext extends ParserRuleContext { + public ident(): IdentContext[]; + public ident(i: number): IdentContext; + public ident(i?: number): IdentContext | IdentContext[] { + if (i === undefined) { + return this.getRuleContexts(IdentContext); + } else { + return this.getRuleContext(i, IdentContext); + } + } + public MODULE(): TerminalNode[]; + public MODULE(i: number): TerminalNode; + public MODULE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.MODULE); + } else { + return this.getToken(OpenSearchPPLParser.MODULE, i); + } + } + public SINGLE_QUOTE(): TerminalNode[]; + public SINGLE_QUOTE(i: number): TerminalNode; + public SINGLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.SINGLE_QUOTE); + } else { + return this.getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); + } + } + public wildcard(): WildcardContext | undefined { + return this.tryGetRuleContext(0, WildcardContext); + } + public DOUBLE_QUOTE(): TerminalNode[]; + public DOUBLE_QUOTE(i: number): TerminalNode; + public DOUBLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); + } else { + return this.getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); + } + } + public BACKTICK(): TerminalNode[]; + public BACKTICK(i: number): TerminalNode; + public BACKTICK(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.BACKTICK); + } else { + return this.getToken(OpenSearchPPLParser.BACKTICK, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wildcard; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWildcard) { + listener.enterWildcard(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWildcard) { + listener.exitWildcard(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWildcard) { + return visitor.visitWildcard(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class KeywordsCanBeIdContext extends ParserRuleContext { + public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } + public statsFunctionName(): StatsFunctionNameContext | undefined { + return this.tryGetRuleContext(0, StatsFunctionNameContext); + } + public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } + public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } + public FIRST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIRST, 0); } + public LAST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LAST, 0); } + public timespanUnit(): TimespanUnitContext | undefined { + return this.tryGetRuleContext(0, TimespanUnitContext); + } + public SPAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SPAN, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_keywordsCanBeId; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterKeywordsCanBeId) { + listener.enterKeywordsCanBeId(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitKeywordsCanBeId) { + listener.exitKeywordsCanBeId(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitKeywordsCanBeId) { + return visitor.visitKeywordsCanBeId(this); + } else { + return visitor.visitChildren(this); + } + } +} + + diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts new file mode 100644 index 000000000..b7ccd4986 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts @@ -0,0 +1,1327 @@ +// Generated from ./antlr/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; + +import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; +import { SearchFromContext } from "./OpenSearchPPLParser"; +import { SearchFromFilterContext } from "./OpenSearchPPLParser"; +import { SearchFilterFromContext } from "./OpenSearchPPLParser"; +import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; +import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; +import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; +import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; +import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; +import { CompareExprContext } from "./OpenSearchPPLParser"; +import { InExprContext } from "./OpenSearchPPLParser"; +import { ComparsionContext } from "./OpenSearchPPLParser"; +import { LogicalNotContext } from "./OpenSearchPPLParser"; +import { LogicalOrContext } from "./OpenSearchPPLParser"; +import { LogicalAndContext } from "./OpenSearchPPLParser"; +import { LogicalXorContext } from "./OpenSearchPPLParser"; +import { BooleanExprContext } from "./OpenSearchPPLParser"; +import { RelevanceExprContext } from "./OpenSearchPPLParser"; +import { RootContext } from "./OpenSearchPPLParser"; +import { PplStatementContext } from "./OpenSearchPPLParser"; +import { CommandsContext } from "./OpenSearchPPLParser"; +import { SearchCommandContext } from "./OpenSearchPPLParser"; +import { WhereCommandContext } from "./OpenSearchPPLParser"; +import { FieldsCommandContext } from "./OpenSearchPPLParser"; +import { RenameCommandContext } from "./OpenSearchPPLParser"; +import { StatsCommandContext } from "./OpenSearchPPLParser"; +import { DedupCommandContext } from "./OpenSearchPPLParser"; +import { SortCommandContext } from "./OpenSearchPPLParser"; +import { EvalCommandContext } from "./OpenSearchPPLParser"; +import { HeadCommandContext } from "./OpenSearchPPLParser"; +import { TopCommandContext } from "./OpenSearchPPLParser"; +import { RareCommandContext } from "./OpenSearchPPLParser"; +import { ParseCommandContext } from "./OpenSearchPPLParser"; +import { KmeansCommandContext } from "./OpenSearchPPLParser"; +import { KmeansParameterContext } from "./OpenSearchPPLParser"; +import { AdCommandContext } from "./OpenSearchPPLParser"; +import { AdParameterContext } from "./OpenSearchPPLParser"; +import { FromClauseContext } from "./OpenSearchPPLParser"; +import { RenameClasueContext } from "./OpenSearchPPLParser"; +import { ByClauseContext } from "./OpenSearchPPLParser"; +import { StatsByClauseContext } from "./OpenSearchPPLParser"; +import { BySpanClauseContext } from "./OpenSearchPPLParser"; +import { SpanClauseContext } from "./OpenSearchPPLParser"; +import { SortbyClauseContext } from "./OpenSearchPPLParser"; +import { EvalClauseContext } from "./OpenSearchPPLParser"; +import { StatsAggTermContext } from "./OpenSearchPPLParser"; +import { StatsFunctionContext } from "./OpenSearchPPLParser"; +import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; +import { ExpressionContext } from "./OpenSearchPPLParser"; +import { LogicalExpressionContext } from "./OpenSearchPPLParser"; +import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; +import { ValueExpressionContext } from "./OpenSearchPPLParser"; +import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; +import { BooleanExpressionContext } from "./OpenSearchPPLParser"; +import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { TableSourceContext } from "./OpenSearchPPLParser"; +import { FieldListContext } from "./OpenSearchPPLParser"; +import { WcFieldListContext } from "./OpenSearchPPLParser"; +import { SortFieldContext } from "./OpenSearchPPLParser"; +import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; +import { FieldExpressionContext } from "./OpenSearchPPLParser"; +import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; +import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; +import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; +import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; +import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; +import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; +import { FunctionArgsContext } from "./OpenSearchPPLParser"; +import { FunctionArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldContext } from "./OpenSearchPPLParser"; +import { RelevanceQueryContext } from "./OpenSearchPPLParser"; +import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; +import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; +import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; +import { BinaryOperatorContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { LiteralValueContext } from "./OpenSearchPPLParser"; +import { IntervalLiteralContext } from "./OpenSearchPPLParser"; +import { StringLiteralContext } from "./OpenSearchPPLParser"; +import { IntegerLiteralContext } from "./OpenSearchPPLParser"; +import { DecimalLiteralContext } from "./OpenSearchPPLParser"; +import { BooleanLiteralContext } from "./OpenSearchPPLParser"; +import { PatternContext } from "./OpenSearchPPLParser"; +import { IntervalUnitContext } from "./OpenSearchPPLParser"; +import { TimespanUnitContext } from "./OpenSearchPPLParser"; +import { ValueListContext } from "./OpenSearchPPLParser"; +import { QualifiedNameContext } from "./OpenSearchPPLParser"; +import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; +import { IdentContext } from "./OpenSearchPPLParser"; +import { WildcardContext } from "./OpenSearchPPLParser"; +import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; + + +/** + * This interface defines a complete listener for a parse tree produced by + * `OpenSearchPPLParser`. + */ +export interface OpenSearchPPLParserListener extends ParseTreeListener { + /** + * Enter a parse tree produced by the `identsAsWildcardQualifiedName` + * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + enterIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; + /** + * Exit a parse tree produced by the `identsAsWildcardQualifiedName` + * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + exitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; + + /** + * Enter a parse tree produced by the `searchFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchFrom?: (ctx: SearchFromContext) => void; + /** + * Exit a parse tree produced by the `searchFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchFrom?: (ctx: SearchFromContext) => void; + + /** + * Enter a parse tree produced by the `searchFromFilter` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchFromFilter?: (ctx: SearchFromFilterContext) => void; + /** + * Exit a parse tree produced by the `searchFromFilter` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchFromFilter?: (ctx: SearchFromFilterContext) => void; + + /** + * Enter a parse tree produced by the `searchFilterFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; + /** + * Exit a parse tree produced by the `searchFilterFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; + + /** + * Enter a parse tree produced by the `statsFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `statsFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `countAllFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `countAllFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `distinctCountFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `distinctCountFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `percentileAggFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `percentileAggFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `identsAsQualifiedName` + * labeled alternative in `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + enterIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; + /** + * Exit a parse tree produced by the `identsAsQualifiedName` + * labeled alternative in `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + exitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; + + /** + * Enter a parse tree produced by the `binaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; + /** + * Exit a parse tree produced by the `binaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; + + /** + * Enter a parse tree produced by the `parentheticBinaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; + /** + * Exit a parse tree produced by the `parentheticBinaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; + + /** + * Enter a parse tree produced by the `valueExpressionDefault` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; + /** + * Exit a parse tree produced by the `valueExpressionDefault` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; + + /** + * Enter a parse tree produced by the `compareExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + enterCompareExpr?: (ctx: CompareExprContext) => void; + /** + * Exit a parse tree produced by the `compareExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + exitCompareExpr?: (ctx: CompareExprContext) => void; + + /** + * Enter a parse tree produced by the `inExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + enterInExpr?: (ctx: InExprContext) => void; + /** + * Exit a parse tree produced by the `inExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + exitInExpr?: (ctx: InExprContext) => void; + + /** + * Enter a parse tree produced by the `comparsion` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterComparsion?: (ctx: ComparsionContext) => void; + /** + * Exit a parse tree produced by the `comparsion` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitComparsion?: (ctx: ComparsionContext) => void; + + /** + * Enter a parse tree produced by the `logicalNot` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalNot?: (ctx: LogicalNotContext) => void; + /** + * Exit a parse tree produced by the `logicalNot` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalNot?: (ctx: LogicalNotContext) => void; + + /** + * Enter a parse tree produced by the `logicalOr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalOr?: (ctx: LogicalOrContext) => void; + /** + * Exit a parse tree produced by the `logicalOr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalOr?: (ctx: LogicalOrContext) => void; + + /** + * Enter a parse tree produced by the `logicalAnd` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalAnd?: (ctx: LogicalAndContext) => void; + /** + * Exit a parse tree produced by the `logicalAnd` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalAnd?: (ctx: LogicalAndContext) => void; + + /** + * Enter a parse tree produced by the `logicalXor` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalXor?: (ctx: LogicalXorContext) => void; + /** + * Exit a parse tree produced by the `logicalXor` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalXor?: (ctx: LogicalXorContext) => void; + + /** + * Enter a parse tree produced by the `booleanExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterBooleanExpr?: (ctx: BooleanExprContext) => void; + /** + * Exit a parse tree produced by the `booleanExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitBooleanExpr?: (ctx: BooleanExprContext) => void; + + /** + * Enter a parse tree produced by the `relevanceExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterRelevanceExpr?: (ctx: RelevanceExprContext) => void; + /** + * Exit a parse tree produced by the `relevanceExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitRelevanceExpr?: (ctx: RelevanceExprContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.root`. + * @param ctx the parse tree + */ + enterRoot?: (ctx: RootContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.root`. + * @param ctx the parse tree + */ + exitRoot?: (ctx: RootContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.pplStatement`. + * @param ctx the parse tree + */ + enterPplStatement?: (ctx: PplStatementContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.pplStatement`. + * @param ctx the parse tree + */ + exitPplStatement?: (ctx: PplStatementContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.commands`. + * @param ctx the parse tree + */ + enterCommands?: (ctx: CommandsContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.commands`. + * @param ctx the parse tree + */ + exitCommands?: (ctx: CommandsContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchCommand?: (ctx: SearchCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchCommand?: (ctx: SearchCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.whereCommand`. + * @param ctx the parse tree + */ + enterWhereCommand?: (ctx: WhereCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.whereCommand`. + * @param ctx the parse tree + */ + exitWhereCommand?: (ctx: WhereCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. + * @param ctx the parse tree + */ + enterFieldsCommand?: (ctx: FieldsCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. + * @param ctx the parse tree + */ + exitFieldsCommand?: (ctx: FieldsCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.renameCommand`. + * @param ctx the parse tree + */ + enterRenameCommand?: (ctx: RenameCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.renameCommand`. + * @param ctx the parse tree + */ + exitRenameCommand?: (ctx: RenameCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsCommand`. + * @param ctx the parse tree + */ + enterStatsCommand?: (ctx: StatsCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsCommand`. + * @param ctx the parse tree + */ + exitStatsCommand?: (ctx: StatsCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.dedupCommand`. + * @param ctx the parse tree + */ + enterDedupCommand?: (ctx: DedupCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. + * @param ctx the parse tree + */ + exitDedupCommand?: (ctx: DedupCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortCommand`. + * @param ctx the parse tree + */ + enterSortCommand?: (ctx: SortCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortCommand`. + * @param ctx the parse tree + */ + exitSortCommand?: (ctx: SortCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalCommand`. + * @param ctx the parse tree + */ + enterEvalCommand?: (ctx: EvalCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalCommand`. + * @param ctx the parse tree + */ + exitEvalCommand?: (ctx: EvalCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.headCommand`. + * @param ctx the parse tree + */ + enterHeadCommand?: (ctx: HeadCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.headCommand`. + * @param ctx the parse tree + */ + exitHeadCommand?: (ctx: HeadCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.topCommand`. + * @param ctx the parse tree + */ + enterTopCommand?: (ctx: TopCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.topCommand`. + * @param ctx the parse tree + */ + exitTopCommand?: (ctx: TopCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.rareCommand`. + * @param ctx the parse tree + */ + enterRareCommand?: (ctx: RareCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.rareCommand`. + * @param ctx the parse tree + */ + exitRareCommand?: (ctx: RareCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.parseCommand`. + * @param ctx the parse tree + */ + enterParseCommand?: (ctx: ParseCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.parseCommand`. + * @param ctx the parse tree + */ + exitParseCommand?: (ctx: ParseCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. + * @param ctx the parse tree + */ + enterKmeansCommand?: (ctx: KmeansCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. + * @param ctx the parse tree + */ + exitKmeansCommand?: (ctx: KmeansCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. + * @param ctx the parse tree + */ + enterKmeansParameter?: (ctx: KmeansParameterContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. + * @param ctx the parse tree + */ + exitKmeansParameter?: (ctx: KmeansParameterContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.adCommand`. + * @param ctx the parse tree + */ + enterAdCommand?: (ctx: AdCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.adCommand`. + * @param ctx the parse tree + */ + exitAdCommand?: (ctx: AdCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.adParameter`. + * @param ctx the parse tree + */ + enterAdParameter?: (ctx: AdParameterContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.adParameter`. + * @param ctx the parse tree + */ + exitAdParameter?: (ctx: AdParameterContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fromClause`. + * @param ctx the parse tree + */ + enterFromClause?: (ctx: FromClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fromClause`. + * @param ctx the parse tree + */ + exitFromClause?: (ctx: FromClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.renameClasue`. + * @param ctx the parse tree + */ + enterRenameClasue?: (ctx: RenameClasueContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.renameClasue`. + * @param ctx the parse tree + */ + exitRenameClasue?: (ctx: RenameClasueContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.byClause`. + * @param ctx the parse tree + */ + enterByClause?: (ctx: ByClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.byClause`. + * @param ctx the parse tree + */ + exitByClause?: (ctx: ByClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsByClause`. + * @param ctx the parse tree + */ + enterStatsByClause?: (ctx: StatsByClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsByClause`. + * @param ctx the parse tree + */ + exitStatsByClause?: (ctx: StatsByClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.bySpanClause`. + * @param ctx the parse tree + */ + enterBySpanClause?: (ctx: BySpanClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. + * @param ctx the parse tree + */ + exitBySpanClause?: (ctx: BySpanClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.spanClause`. + * @param ctx the parse tree + */ + enterSpanClause?: (ctx: SpanClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.spanClause`. + * @param ctx the parse tree + */ + exitSpanClause?: (ctx: SpanClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortbyClause`. + * @param ctx the parse tree + */ + enterSortbyClause?: (ctx: SortbyClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. + * @param ctx the parse tree + */ + exitSortbyClause?: (ctx: SortbyClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalClause`. + * @param ctx the parse tree + */ + enterEvalClause?: (ctx: EvalClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalClause`. + * @param ctx the parse tree + */ + exitEvalClause?: (ctx: EvalClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. + * @param ctx the parse tree + */ + enterStatsAggTerm?: (ctx: StatsAggTermContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. + * @param ctx the parse tree + */ + exitStatsAggTerm?: (ctx: StatsAggTermContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterStatsFunction?: (ctx: StatsFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitStatsFunction?: (ctx: StatsFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. + * @param ctx the parse tree + */ + enterStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. + * @param ctx the parse tree + */ + exitStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. + * @param ctx the parse tree + */ + enterPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. + * @param ctx the parse tree + */ + exitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.expression`. + * @param ctx the parse tree + */ + enterExpression?: (ctx: ExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.expression`. + * @param ctx the parse tree + */ + exitExpression?: (ctx: ExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalExpression?: (ctx: LogicalExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalExpression?: (ctx: LogicalExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + enterComparisonExpression?: (ctx: ComparisonExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + exitComparisonExpression?: (ctx: ComparisonExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterValueExpression?: (ctx: ValueExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitValueExpression?: (ctx: ValueExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.primaryExpression`. + * @param ctx the parse tree + */ + enterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. + * @param ctx the parse tree + */ + exitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.booleanExpression`. + * @param ctx the parse tree + */ + enterBooleanExpression?: (ctx: BooleanExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. + * @param ctx the parse tree + */ + exitBooleanExpression?: (ctx: BooleanExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. + * @param ctx the parse tree + */ + enterRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. + * @param ctx the parse tree + */ + exitRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. + * @param ctx the parse tree + */ + enterSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. + * @param ctx the parse tree + */ + exitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. + * @param ctx the parse tree + */ + enterMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. + * @param ctx the parse tree + */ + exitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.tableSource`. + * @param ctx the parse tree + */ + enterTableSource?: (ctx: TableSourceContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.tableSource`. + * @param ctx the parse tree + */ + exitTableSource?: (ctx: TableSourceContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fieldList`. + * @param ctx the parse tree + */ + enterFieldList?: (ctx: FieldListContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fieldList`. + * @param ctx the parse tree + */ + exitFieldList?: (ctx: FieldListContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldList`. + * @param ctx the parse tree + */ + enterWcFieldList?: (ctx: WcFieldListContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. + * @param ctx the parse tree + */ + exitWcFieldList?: (ctx: WcFieldListContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortField`. + * @param ctx the parse tree + */ + enterSortField?: (ctx: SortFieldContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortField`. + * @param ctx the parse tree + */ + exitSortField?: (ctx: SortFieldContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. + * @param ctx the parse tree + */ + enterSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. + * @param ctx the parse tree + */ + exitSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fieldExpression`. + * @param ctx the parse tree + */ + enterFieldExpression?: (ctx: FieldExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. + * @param ctx the parse tree + */ + exitFieldExpression?: (ctx: FieldExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. + * @param ctx the parse tree + */ + enterWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. + * @param ctx the parse tree + */ + exitWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. + * @param ctx the parse tree + */ + enterEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. + * @param ctx the parse tree + */ + exitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. + * @param ctx the parse tree + */ + enterDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. + * @param ctx the parse tree + */ + exitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. + * @param ctx the parse tree + */ + enterBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. + * @param ctx the parse tree + */ + exitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.convertedDataType`. + * @param ctx the parse tree + */ + enterConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. + * @param ctx the parse tree + */ + exitConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. + * @param ctx the parse tree + */ + enterEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. + * @param ctx the parse tree + */ + exitEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.functionArgs`. + * @param ctx the parse tree + */ + enterFunctionArgs?: (ctx: FunctionArgsContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.functionArgs`. + * @param ctx the parse tree + */ + exitFunctionArgs?: (ctx: FunctionArgsContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.functionArg`. + * @param ctx the parse tree + */ + enterFunctionArg?: (ctx: FunctionArgContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.functionArg`. + * @param ctx the parse tree + */ + exitFunctionArg?: (ctx: FunctionArgContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArg`. + * @param ctx the parse tree + */ + enterRelevanceArg?: (ctx: RelevanceArgContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. + * @param ctx the parse tree + */ + exitRelevanceArg?: (ctx: RelevanceArgContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. + * @param ctx the parse tree + */ + enterRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. + * @param ctx the parse tree + */ + exitRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. + * @param ctx the parse tree + */ + enterRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. + * @param ctx the parse tree + */ + exitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. + * @param ctx the parse tree + */ + enterRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. + * @param ctx the parse tree + */ + exitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceField`. + * @param ctx the parse tree + */ + enterRelevanceField?: (ctx: RelevanceFieldContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceField`. + * @param ctx the parse tree + */ + exitRelevanceField?: (ctx: RelevanceFieldContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. + * @param ctx the parse tree + */ + enterRelevanceQuery?: (ctx: RelevanceQueryContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. + * @param ctx the parse tree + */ + exitRelevanceQuery?: (ctx: RelevanceQueryContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. + * @param ctx the parse tree + */ + enterRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. + * @param ctx the parse tree + */ + exitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. + * @param ctx the parse tree + */ + enterMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. + * @param ctx the parse tree + */ + exitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. + * @param ctx the parse tree + */ + enterTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. + * @param ctx the parse tree + */ + exitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. + * @param ctx the parse tree + */ + enterDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. + * @param ctx the parse tree + */ + exitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. + * @param ctx the parse tree + */ + enterConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. + * @param ctx the parse tree + */ + exitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. + * @param ctx the parse tree + */ + enterTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. + * @param ctx the parse tree + */ + exitTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. + * @param ctx the parse tree + */ + enterComparisonOperator?: (ctx: ComparisonOperatorContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. + * @param ctx the parse tree + */ + exitComparisonOperator?: (ctx: ComparisonOperatorContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.binaryOperator`. + * @param ctx the parse tree + */ + enterBinaryOperator?: (ctx: BinaryOperatorContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. + * @param ctx the parse tree + */ + exitBinaryOperator?: (ctx: BinaryOperatorContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + enterSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + exitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + enterMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + exitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.literalValue`. + * @param ctx the parse tree + */ + enterLiteralValue?: (ctx: LiteralValueContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.literalValue`. + * @param ctx the parse tree + */ + exitLiteralValue?: (ctx: LiteralValueContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. + * @param ctx the parse tree + */ + enterIntervalLiteral?: (ctx: IntervalLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. + * @param ctx the parse tree + */ + exitIntervalLiteral?: (ctx: IntervalLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.stringLiteral`. + * @param ctx the parse tree + */ + enterStringLiteral?: (ctx: StringLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. + * @param ctx the parse tree + */ + exitStringLiteral?: (ctx: StringLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.integerLiteral`. + * @param ctx the parse tree + */ + enterIntegerLiteral?: (ctx: IntegerLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. + * @param ctx the parse tree + */ + exitIntegerLiteral?: (ctx: IntegerLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. + * @param ctx the parse tree + */ + enterDecimalLiteral?: (ctx: DecimalLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. + * @param ctx the parse tree + */ + exitDecimalLiteral?: (ctx: DecimalLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. + * @param ctx the parse tree + */ + enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. + * @param ctx the parse tree + */ + exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.pattern`. + * @param ctx the parse tree + */ + enterPattern?: (ctx: PatternContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.pattern`. + * @param ctx the parse tree + */ + exitPattern?: (ctx: PatternContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.intervalUnit`. + * @param ctx the parse tree + */ + enterIntervalUnit?: (ctx: IntervalUnitContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. + * @param ctx the parse tree + */ + exitIntervalUnit?: (ctx: IntervalUnitContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.timespanUnit`. + * @param ctx the parse tree + */ + enterTimespanUnit?: (ctx: TimespanUnitContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. + * @param ctx the parse tree + */ + exitTimespanUnit?: (ctx: TimespanUnitContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.valueList`. + * @param ctx the parse tree + */ + enterValueList?: (ctx: ValueListContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.valueList`. + * @param ctx the parse tree + */ + exitValueList?: (ctx: ValueListContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + enterQualifiedName?: (ctx: QualifiedNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + exitQualifiedName?: (ctx: QualifiedNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + enterWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + exitWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.ident`. + * @param ctx the parse tree + */ + enterIdent?: (ctx: IdentContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.ident`. + * @param ctx the parse tree + */ + exitIdent?: (ctx: IdentContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wildcard`. + * @param ctx the parse tree + */ + enterWildcard?: (ctx: WildcardContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wildcard`. + * @param ctx the parse tree + */ + exitWildcard?: (ctx: WildcardContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. + * @param ctx the parse tree + */ + enterKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. + * @param ctx the parse tree + */ + exitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; +} + diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts new file mode 100644 index 000000000..1646972b1 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts @@ -0,0 +1,885 @@ +// Generated from ./antlr/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; + +import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; +import { SearchFromContext } from "./OpenSearchPPLParser"; +import { SearchFromFilterContext } from "./OpenSearchPPLParser"; +import { SearchFilterFromContext } from "./OpenSearchPPLParser"; +import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; +import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; +import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; +import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; +import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; +import { CompareExprContext } from "./OpenSearchPPLParser"; +import { InExprContext } from "./OpenSearchPPLParser"; +import { ComparsionContext } from "./OpenSearchPPLParser"; +import { LogicalNotContext } from "./OpenSearchPPLParser"; +import { LogicalOrContext } from "./OpenSearchPPLParser"; +import { LogicalAndContext } from "./OpenSearchPPLParser"; +import { LogicalXorContext } from "./OpenSearchPPLParser"; +import { BooleanExprContext } from "./OpenSearchPPLParser"; +import { RelevanceExprContext } from "./OpenSearchPPLParser"; +import { RootContext } from "./OpenSearchPPLParser"; +import { PplStatementContext } from "./OpenSearchPPLParser"; +import { CommandsContext } from "./OpenSearchPPLParser"; +import { SearchCommandContext } from "./OpenSearchPPLParser"; +import { WhereCommandContext } from "./OpenSearchPPLParser"; +import { FieldsCommandContext } from "./OpenSearchPPLParser"; +import { RenameCommandContext } from "./OpenSearchPPLParser"; +import { StatsCommandContext } from "./OpenSearchPPLParser"; +import { DedupCommandContext } from "./OpenSearchPPLParser"; +import { SortCommandContext } from "./OpenSearchPPLParser"; +import { EvalCommandContext } from "./OpenSearchPPLParser"; +import { HeadCommandContext } from "./OpenSearchPPLParser"; +import { TopCommandContext } from "./OpenSearchPPLParser"; +import { RareCommandContext } from "./OpenSearchPPLParser"; +import { ParseCommandContext } from "./OpenSearchPPLParser"; +import { KmeansCommandContext } from "./OpenSearchPPLParser"; +import { KmeansParameterContext } from "./OpenSearchPPLParser"; +import { AdCommandContext } from "./OpenSearchPPLParser"; +import { AdParameterContext } from "./OpenSearchPPLParser"; +import { FromClauseContext } from "./OpenSearchPPLParser"; +import { RenameClasueContext } from "./OpenSearchPPLParser"; +import { ByClauseContext } from "./OpenSearchPPLParser"; +import { StatsByClauseContext } from "./OpenSearchPPLParser"; +import { BySpanClauseContext } from "./OpenSearchPPLParser"; +import { SpanClauseContext } from "./OpenSearchPPLParser"; +import { SortbyClauseContext } from "./OpenSearchPPLParser"; +import { EvalClauseContext } from "./OpenSearchPPLParser"; +import { StatsAggTermContext } from "./OpenSearchPPLParser"; +import { StatsFunctionContext } from "./OpenSearchPPLParser"; +import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; +import { ExpressionContext } from "./OpenSearchPPLParser"; +import { LogicalExpressionContext } from "./OpenSearchPPLParser"; +import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; +import { ValueExpressionContext } from "./OpenSearchPPLParser"; +import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; +import { BooleanExpressionContext } from "./OpenSearchPPLParser"; +import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { TableSourceContext } from "./OpenSearchPPLParser"; +import { FieldListContext } from "./OpenSearchPPLParser"; +import { WcFieldListContext } from "./OpenSearchPPLParser"; +import { SortFieldContext } from "./OpenSearchPPLParser"; +import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; +import { FieldExpressionContext } from "./OpenSearchPPLParser"; +import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; +import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; +import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; +import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; +import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; +import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; +import { FunctionArgsContext } from "./OpenSearchPPLParser"; +import { FunctionArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldContext } from "./OpenSearchPPLParser"; +import { RelevanceQueryContext } from "./OpenSearchPPLParser"; +import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; +import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; +import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; +import { BinaryOperatorContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { LiteralValueContext } from "./OpenSearchPPLParser"; +import { IntervalLiteralContext } from "./OpenSearchPPLParser"; +import { StringLiteralContext } from "./OpenSearchPPLParser"; +import { IntegerLiteralContext } from "./OpenSearchPPLParser"; +import { DecimalLiteralContext } from "./OpenSearchPPLParser"; +import { BooleanLiteralContext } from "./OpenSearchPPLParser"; +import { PatternContext } from "./OpenSearchPPLParser"; +import { IntervalUnitContext } from "./OpenSearchPPLParser"; +import { TimespanUnitContext } from "./OpenSearchPPLParser"; +import { ValueListContext } from "./OpenSearchPPLParser"; +import { QualifiedNameContext } from "./OpenSearchPPLParser"; +import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; +import { IdentContext } from "./OpenSearchPPLParser"; +import { WildcardContext } from "./OpenSearchPPLParser"; +import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; + + +/** + * This interface defines a complete generic visitor for a parse tree produced + * by `OpenSearchPPLParser`. + * + * @param The return type of the visit operation. Use `void` for + * operations with no return type. + */ +export interface OpenSearchPPLParserVisitor extends ParseTreeVisitor { + /** + * Visit a parse tree produced by the `identsAsWildcardQualifiedName` + * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by the `searchFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchFrom?: (ctx: SearchFromContext) => Result; + + /** + * Visit a parse tree produced by the `searchFromFilter` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchFromFilter?: (ctx: SearchFromFilterContext) => Result; + + /** + * Visit a parse tree produced by the `searchFilterFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchFilterFrom?: (ctx: SearchFilterFromContext) => Result; + + /** + * Visit a parse tree produced by the `statsFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `countAllFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `distinctCountFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `percentileAggFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `identsAsQualifiedName` + * labeled alternative in `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by the `binaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => Result; + + /** + * Visit a parse tree produced by the `parentheticBinaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => Result; + + /** + * Visit a parse tree produced by the `valueExpressionDefault` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => Result; + + /** + * Visit a parse tree produced by the `compareExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCompareExpr?: (ctx: CompareExprContext) => Result; + + /** + * Visit a parse tree produced by the `inExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitInExpr?: (ctx: InExprContext) => Result; + + /** + * Visit a parse tree produced by the `comparsion` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitComparsion?: (ctx: ComparsionContext) => Result; + + /** + * Visit a parse tree produced by the `logicalNot` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalNot?: (ctx: LogicalNotContext) => Result; + + /** + * Visit a parse tree produced by the `logicalOr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalOr?: (ctx: LogicalOrContext) => Result; + + /** + * Visit a parse tree produced by the `logicalAnd` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalAnd?: (ctx: LogicalAndContext) => Result; + + /** + * Visit a parse tree produced by the `logicalXor` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalXor?: (ctx: LogicalXorContext) => Result; + + /** + * Visit a parse tree produced by the `booleanExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanExpr?: (ctx: BooleanExprContext) => Result; + + /** + * Visit a parse tree produced by the `relevanceExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceExpr?: (ctx: RelevanceExprContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.root`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRoot?: (ctx: RootContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.pplStatement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPplStatement?: (ctx: PplStatementContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.commands`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCommands?: (ctx: CommandsContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchCommand?: (ctx: SearchCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.whereCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWhereCommand?: (ctx: WhereCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFieldsCommand?: (ctx: FieldsCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.renameCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRenameCommand?: (ctx: RenameCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsCommand?: (ctx: StatsCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDedupCommand?: (ctx: DedupCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortCommand?: (ctx: SortCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalCommand?: (ctx: EvalCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.headCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHeadCommand?: (ctx: HeadCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.topCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTopCommand?: (ctx: TopCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.rareCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRareCommand?: (ctx: RareCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.parseCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitParseCommand?: (ctx: ParseCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitKmeansCommand?: (ctx: KmeansCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. + * @param ctx the parse tree + * @return the visitor result + */ + visitKmeansParameter?: (ctx: KmeansParameterContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.adCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAdCommand?: (ctx: AdCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.adParameter`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAdParameter?: (ctx: AdParameterContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fromClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFromClause?: (ctx: FromClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.renameClasue`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRenameClasue?: (ctx: RenameClasueContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.byClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitByClause?: (ctx: ByClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsByClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsByClause?: (ctx: StatsByClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBySpanClause?: (ctx: BySpanClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.spanClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSpanClause?: (ctx: SpanClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortbyClause?: (ctx: SortbyClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalClause?: (ctx: EvalClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsAggTerm?: (ctx: StatsAggTermContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsFunction?: (ctx: StatsFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsFunctionName?: (ctx: StatsFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.expression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExpression?: (ctx: ExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalExpression?: (ctx: LogicalExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitComparisonExpression?: (ctx: ComparisonExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitValueExpression?: (ctx: ValueExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPrimaryExpression?: (ctx: PrimaryExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanExpression?: (ctx: BooleanExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceExpression?: (ctx: RelevanceExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.tableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableSource?: (ctx: TableSourceContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fieldList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFieldList?: (ctx: FieldListContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWcFieldList?: (ctx: WcFieldListContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortField`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortField?: (ctx: SortFieldContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortFieldExpression?: (ctx: SortFieldExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFieldExpression?: (ctx: FieldExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWcFieldExpression?: (ctx: WcFieldExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. + * @param ctx the parse tree + * @return the visitor result + */ + visitConvertedDataType?: (ctx: ConvertedDataTypeContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalFunctionName?: (ctx: EvalFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.functionArgs`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionArgs?: (ctx: FunctionArgsContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.functionArg`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionArg?: (ctx: FunctionArgContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceArg?: (ctx: RelevanceArgContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceArgName?: (ctx: RelevanceArgNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceField`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceField?: (ctx: RelevanceFieldContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceQuery?: (ctx: RelevanceQueryContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTextFunctionBase?: (ctx: TextFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. + * @param ctx the parse tree + * @return the visitor result + */ + visitComparisonOperator?: (ctx: ComparisonOperatorContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBinaryOperator?: (ctx: BinaryOperatorContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.literalValue`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLiteralValue?: (ctx: LiteralValueContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIntervalLiteral?: (ctx: IntervalLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStringLiteral?: (ctx: StringLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIntegerLiteral?: (ctx: IntegerLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDecimalLiteral?: (ctx: DecimalLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanLiteral?: (ctx: BooleanLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.pattern`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPattern?: (ctx: PatternContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIntervalUnit?: (ctx: IntervalUnitContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTimespanUnit?: (ctx: TimespanUnitContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.valueList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitValueList?: (ctx: ValueListContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitQualifiedName?: (ctx: QualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWcQualifiedName?: (ctx: WcQualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.ident`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIdent?: (ctx: IdentContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wildcard`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWildcard?: (ctx: WildcardContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. + * @param ctx the parse tree + * @return the visitor result + */ + visitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => Result; +} + diff --git a/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts b/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts new file mode 100644 index 000000000..bfa01a415 --- /dev/null +++ b/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts @@ -0,0 +1,31 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { CharStreams, CommonTokenStream } from 'antlr4ts'; +import { CaseInsensitiveCharStream } from '../antlr/adaptors/case_insensitive_char_stream'; +import { OpenSearchPPLLexer } from '../antlr/bin/OpenSearchPPLLexer'; +import { OpenSearchPPLParser } from '../antlr/bin/OpenSearchPPLParser'; + +/** + * PPL Syntax Parser. + */ +export class PPLSyntaxParser { + + /** + * Analyze the query syntax. + */ + + parse(query: string) { + return this.createParser(this.createLexer(query)); + } + + createLexer(query: string) { + return new OpenSearchPPLLexer(new CaseInsensitiveCharStream(CharStreams.fromString(query))); + } + + createParser(lexer: OpenSearchPPLLexer) { + return new OpenSearchPPLParser(new CommonTokenStream(lexer)); + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/builder/ast_builder.ts b/dashboards-observability/query_manager/ast/builder/ast_builder.ts new file mode 100644 index 000000000..0170f8729 --- /dev/null +++ b/dashboards-observability/query_manager/ast/builder/ast_builder.ts @@ -0,0 +1,229 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { AbstractParseTreeVisitor } from 'antlr4ts/tree/AbstractParseTreeVisitor'; +import { + RootContext, + PplStatementContext, + CommandsContext, + StatsCommandContext, + BooleanLiteralContext, + BySpanClauseContext, + FieldExpressionContext, + FieldListContext, + IntegerLiteralContext, + LiteralValueContext, + QualifiedNameContext, + SpanClauseContext, + StatsAggTermContext, + StatsByClauseContext, + StatsFunctionContext, + StatsFunctionNameContext, + StringLiteralContext, + TimespanUnitContext, + ValueExpressionContext, + WcFieldExpressionContext +} from '../../antlr/bin/OpenSearchPPLParser'; +import { OpenSearchPPLParserVisitor } from '../../antlr/bin/OpenSearchPPLParserVisitor'; +import { PPLNode } from '../node'; +import { Aggregations } from '../tree/aggragations'; +import { + AggregateFunction, + AggregateTerm, + GroupBy, + Field, + Span, + SpanExpression +} from '../expression'; + +type VisitResult = PPLNode | Array | string; + +export class StatsAstBuilder extends AbstractParseTreeVisitor implements OpenSearchPPLParserVisitor { + protected defaultResult(): PPLNode { + return new PPLNode( + 'default', + [] as Array + ); + } + + visitRoot(ctx: RootContext) { + return this.visitChildren(ctx.pplStatement()!); + } + + visitPplStatement(ctx: PplStatementContext) : PPLNode { + console.log('ctx: ', ctx); + const comandsContext = [] as Array; + let statsTree: VisitResult = this.defaultResult(); + ctx.commands().map((pplCommandContext) => { + if (this.visitChildren(pplCommandContext).getName() === 'stats_command') statsTree = this.visitChildren(pplCommandContext); + }); + return statsTree; + } + + visitCommands(ctx: CommandsContext) { + if (ctx.statsCommand()) { + return this.visitStatsCommand(ctx.statsCommand()!); + } + return this.defaultResult(); + } + + /** + * Stats command + */ + visitStatsCommand(ctx: StatsCommandContext) : PPLNode { + + return new Aggregations( + 'stats_command', + [] as Array, + ctx.PARTITIONS() && ctx.integerLiteral() ? + `${ctx.PARTITIONS()!.text} ${this.visitIntegerLiteral(ctx.integerLiteral()!)}` : '', // visit partitions partial + ctx.ALLNUM() && ctx.booleanLiteral() ? + `${ctx.ALLNUM()!.text} = ${this.visitBooleanLiteral(ctx.booleanLiteral()!)}` : '', // visit allnum partial + ctx.DELIM() && ctx.stringLiteral() ? + `${ctx.DELIM()!.text} = ${this.visitStringLiteral(ctx.stringLiteral()!)}` : '', // visit delim partial + ctx + .statsAggTerm() + .map((aggTermAlternative) => this.visitStatsAggTerm(aggTermAlternative)), // visit statsAggTerm + ctx.statsByClause() ? + this.visitStatsByClause(ctx.statsByClause()!) : {} as GroupBy, // visit group list + ctx.DEDUP_SPLITVALUES() && ctx.booleanLiteral() ? + this.visitBooleanLiteral(ctx.booleanLiteral()!) : '', // visit dedup split value + ctx.start.startIndex, + ctx.stop?.stopIndex + ); + } + + visitIntegerLiteral(ctx: IntegerLiteralContext) : string { + return ctx.text; + } + + visitBooleanLiteral(ctx: BooleanLiteralContext) : string { + return ctx.text; + } + + visitStringLiteral(ctx: StringLiteralContext) : string { + return ctx.text; + } + + visitStatsAggTerm(ctx: StatsAggTermContext) : PPLNode { + return new AggregateTerm( + 'stats_agg_term', + [] as Array, + this.visitStatsFunction(ctx.statsFunction()), + ctx.wcFieldExpression() ? this.visitWcFieldExpression(ctx.wcFieldExpression()!) : '' + ); + } + + visitWcFieldExpression(ctx: WcFieldExpressionContext) : string { + // return only text from here to all its chilren for now + return ctx.wcQualifiedName().text; + } + + visitStatsByClause(ctx: StatsByClauseContext) : PPLNode { + if (ctx.fieldList && ctx.bySpanClause()) { + return new GroupBy( + 'stats_by_clause', + [] as Array, + this.visitFieldList(ctx.fieldList()!), + this.visitBySpanClause(ctx.bySpanClause()!) + ); + } else if (ctx.bySpanClause()) { + return new GroupBy( + 'stats_by_clause', + [] as Array, + [], + this.visitBySpanClause(ctx.bySpanClause()!) + ); + } + return new GroupBy( + 'stats_by_clause', + [] as Array, + this.visitFieldList(ctx.fieldList()!), + this.defaultResult(), + ); + } + + visitBySpanClause(ctx: BySpanClauseContext) : PPLNode { + return new Span( + 'span_clause', + [] as Array, + this.visitSpanClause(ctx.spanClause()), + ctx.qualifiedName() ? this.visitQualifiedName(ctx.qualifiedName()!) : '' + ); + } + + visitSpanClause(ctx: SpanClauseContext) : PPLNode { + return new SpanExpression( + 'span_expression', + [] as Array, + this.visitFieldExpression(ctx.fieldExpression()), + this.visitLiteralValue(ctx.literalValue()), + ctx.timespanUnit() ? this.visitTimespanUnit(ctx.timespanUnit()!) : '' + ); + } + + visitLiteralValue(ctx: LiteralValueContext) : string { + return ctx.text; + } + + visitTimespanUnit(ctx: TimespanUnitContext) : string { + return ctx.text; + } + + visitStatsFunction(ctx: StatsFunctionContext) : PPLNode { + const aggToken = { + func_name: '', + value_expr: '', + raw_text: ctx.text, + }; + + if (typeof ctx.valueExpression === 'function') { + aggToken.value_expr = this.visitValueExpression(ctx.valueExpression()); + if (typeof ctx.statsFunctionName === 'function') { + aggToken.func_name = this.visitStatsFunctionName(ctx.statsFunctionName()); + } else { + aggToken.func_name = ctx.DISTINCT_COUNT() ? ctx.DISTINCT_COUNT().text : ctx.DC().text; + } + } else if (typeof ctx.percentileAggFunction === 'function') { + // for now just return plain text + } else { + aggToken.func_name = ctx.COUNT().text; + } + + return new AggregateFunction( + 'stats_function', + [] as Array, + aggToken.func_name, + aggToken.value_expr, + typeof ctx.percentileAggFunction === 'function' ? ctx.text : '' + ); + } + + visitValueExpression(ctx: ValueExpressionContext) : string { + return ctx.text; + } + + visitStatsFunctionName(ctx: StatsFunctionNameContext) : string { + return ctx.text; + } + + visitFieldList(ctx: FieldListContext) : Array { + return ctx.fieldExpression().map((fieldExprAlternative) => { + return new Field( + 'field_expression', + [] as Array, + this.visitFieldExpression(fieldExprAlternative) + ); + }); + } + + visitFieldExpression(ctx: FieldExpressionContext) : string { + return this.visitQualifiedName(ctx.qualifiedName()); + } + + visitQualifiedName(ctx: QualifiedNameContext) : string { + return ctx.text; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/builder/query_builder.ts b/dashboards-observability/query_manager/ast/builder/query_builder.ts new file mode 100644 index 000000000..3776d34e6 --- /dev/null +++ b/dashboards-observability/query_manager/ast/builder/query_builder.ts @@ -0,0 +1,3 @@ +export interface QueryBuilder { + build: () => T; +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/builder/stats_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_builder.ts new file mode 100644 index 000000000..5bb4bb627 --- /dev/null +++ b/dashboards-observability/query_manager/ast/builder/stats_builder.ts @@ -0,0 +1,120 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { QueryBuilder } from './query_builder'; +import { Aggregations } from '../tree/aggragations'; +import { PPLNode } from '../node'; +import { + AggregateFunction, + AggregateTerm, + Field, + GroupBy, + Span, + SpanExpression +} from '../expression'; + +export class StatsBuilder implements QueryBuilder { + + constructor(private statsChunck) {} + + build() { + // return a new stats subtree + return new Aggregations( + 'stats_command', + [] as Array, + this.statsChunck.partitions ? this.buildParttions(this.statsChunck.partitions) : '', + this.statsChunck.all_num ? this.buildAllNum(this.statsChunck.all_num) : '', + this.statsChunck.delim ? this.buildDelim(this.statsChunck.delim) : '', + this.statsChunck.aggregations ? this.buildAggList(this.statsChunck.aggregations) : [] as Array, + this.statsChunck.groupby ? this.buildGroupList(this.statsChunck.groupby) : new GroupBy('stats_by_clause', [] as Array, [], null), + this.statsChunck.dedup_split_value ? this.buildDedupSplitValue(this.statsChunck.dedup_split_value) : '' + ); + } + + buildParttions(partitions) { + return partitions; + } + + buildAllNum(allNum) { + return allNum; + } + + buildDelim(delim) { + return delim; + } + + /** + * Aggregation list + */ + buildAggList(aggregations) { + return aggregations.map((aggregation) => { + return this.buildAggTerm(aggregation); + }); + } + + buildAggTerm(aggTerm) { + return new AggregateTerm( + 'stats_agg_term', + [] as Array, + this.buildAggregateFunction(aggTerm.function), + aggTerm.function_alias + ); + } + + buildAggregateFunction(aggFunction) { + return new AggregateFunction( + 'stats_function', + [] as Array, + aggFunction.name, + aggFunction.value_expression, + aggFunction.percentile_agg_function + ) + } + + /** + * Group list + */ + buildGroupList(groupby) { + return new GroupBy( + 'stats_by_clause', + [] as Array, + this.buildFieldList(groupby.group_fields), + this.buildSpan(groupby.span) + ); + } + + buildFieldList(group_fields) { + return group_fields.map((gf) => { + return new Field( + 'field_expression', + [] as Array, + gf.name + ); + }); + } + + buildSpan(span) { + return new Span( + 'span_clause', + [] as Array, + this.buildeSpanExpression(span.span_expression), + span.alias + ); + } + + buildeSpanExpression(spanExpression) { + return new SpanExpression( + 'span_expression', + [] as Array, + spanExpression.field, + spanExpression.literal_value, + spanExpression.time_unit + ); + } + + buildDedupSplitValue(dedupSplitvalue) { + return dedupSplitvalue.text; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts b/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts new file mode 100644 index 000000000..3de09d764 --- /dev/null +++ b/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts @@ -0,0 +1,37 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLNode } from '../node'; + +export class AggregateFunction extends PPLNode { + constructor( + name: string, + children: Array, + private statsFunctionName: string, + private valueExpression: string, + private percentileAggFunction: string, + ) { + super(name, children); + } + + getTokens() { + return { + name: this.statsFunctionName, + value_expression: this.valueExpression, + percentile_agg_function: this.percentileAggFunction + }; + } + + toString(): string { + if (this.statsFunctionName && this.valueExpression) { + return `${this.statsFunctionName}(${this.valueExpression})` + } else if (this.statsFunctionName) { + return `${this.statsFunctionName}()`; + } else if (this.percentileAggFunction) { + return `${this.percentileAggFunction}` + } + return ''; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts b/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts new file mode 100644 index 000000000..15544de5c --- /dev/null +++ b/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts @@ -0,0 +1,31 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLNode } from '../node'; + +export class AggregateTerm extends PPLNode { + constructor( + name: string, + children: Array, + private statsFunction: PPLNode, + private alias: string + ) { + super(name, children); + } + + getTokens() { + return { + function: this.statsFunction.getTokens(), + alias: this.alias + }; + } + + toString(): string { + if (this.alias) { + return `${this.statsFunction.toString()} as ${this.alias}` + } + return `${this.statsFunction.toString()}` + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/expression/field.ts b/dashboards-observability/query_manager/ast/expression/field.ts new file mode 100644 index 000000000..5197f57a0 --- /dev/null +++ b/dashboards-observability/query_manager/ast/expression/field.ts @@ -0,0 +1,24 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLNode } from '../node'; + +export class Field extends PPLNode { + constructor( + name: string, + children: Array, + private fieldExpression: string + ) { + super(name, children); + } + + getTokens() { + return { name: this.fieldExpression ?? ''}; + } + + toString(): string { + return this.fieldExpression ?? ''; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/expression/group_by.ts b/dashboards-observability/query_manager/ast/expression/group_by.ts new file mode 100644 index 000000000..3389ebed5 --- /dev/null +++ b/dashboards-observability/query_manager/ast/expression/group_by.ts @@ -0,0 +1,29 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLNode } from '../node'; +import { Field } from './field'; + +export class GroupBy extends PPLNode { + constructor( + name: string, + children: Array, + private fields: Array, + private span: PPLNode + ) { + super(name, children); + } + + getTokens() { + return { + group_fields: this.fields.map(field => field.getTokens()), + span: this.span.getTokens() + }; + } + + toString(): string { + return `by ${this.span? `${this.span.toString()}, ` : ''}${this.fields.map((field) => field.toString()).join(', ')}`; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/expression/index.ts b/dashboards-observability/query_manager/ast/expression/index.ts new file mode 100644 index 000000000..681cfc07d --- /dev/null +++ b/dashboards-observability/query_manager/ast/expression/index.ts @@ -0,0 +1,6 @@ +export { AggregateFunction } from './AggregateFunction'; +export { AggregateTerm } from './AggregateTerm'; +export { GroupBy } from './group_by'; +export { Span } from './span'; +export { SpanExpression } from './spanExpression'; +export { Field } from './field'; \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/expression/span.ts b/dashboards-observability/query_manager/ast/expression/span.ts new file mode 100644 index 000000000..e1f5e63d3 --- /dev/null +++ b/dashboards-observability/query_manager/ast/expression/span.ts @@ -0,0 +1,28 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLNode } from '../node'; + +export class Span extends PPLNode { + constructor( + name: string, + children: Array, + private spanExpression: PPLNode, + private alias: string + ) { + super(name, children); + } + + getTokens() { + return { + span_expression: this.spanExpression.getTokens(), + alias: this.alias + }; + } + + toString(): string { + return `${this.spanExpression.toString()} as ${this.alias}`; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/expression/spanExpression.ts b/dashboards-observability/query_manager/ast/expression/spanExpression.ts new file mode 100644 index 000000000..87cc1eb75 --- /dev/null +++ b/dashboards-observability/query_manager/ast/expression/spanExpression.ts @@ -0,0 +1,30 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLNode } from '../node'; + +export class SpanExpression extends PPLNode { + constructor( + name: string, + children: Array, + private fieldExpression: string, + private literalValue: string, + private timeUnit: string + ) { + super(name, children); + } + + getTokens() { + return { + field: this.fieldExpression, + literal_value: this.literalValue, + time_unit: this.timeUnit + }; + } + + toString(): string { + return `span(${this.fieldExpression}, ${this.literalValue}${this.timeUnit})`; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/index.ts b/dashboards-observability/query_manager/ast/index.ts new file mode 100644 index 000000000..3cd854c5d --- /dev/null +++ b/dashboards-observability/query_manager/ast/index.ts @@ -0,0 +1,6 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export { PPLNode } from './node'; \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/node.ts b/dashboards-observability/query_manager/ast/node.ts new file mode 100644 index 000000000..a622167ef --- /dev/null +++ b/dashboards-observability/query_manager/ast/node.ts @@ -0,0 +1,35 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +interface PPLNodeProps { + getName: () => string; + getChildren: () => Array; + toString: () => string; + getTokens: () => any; +} + +export class PPLNode implements PPLNodeProps { + + constructor( + private name: string, + private children: Array + ) {} + + getChildren() : Array { + return this.children; + } + + getName() : string { + return this.name; + } + + toString() : string { + return ''; + } + + getTokens() : any { + return null; + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/tree/aggragations.ts b/dashboards-observability/query_manager/ast/tree/aggragations.ts new file mode 100644 index 000000000..87107e51f --- /dev/null +++ b/dashboards-observability/query_manager/ast/tree/aggragations.ts @@ -0,0 +1,47 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLNode } from '../node'; +import { GroupBy } from '../expression/group_by'; + +export class Aggregations extends PPLNode { + + constructor( + name: string, + children: Array, + private partitions: String, + private allNum: string, + private delim: string, + private aggExprList: Array, + private groupExprList: GroupBy, + private dedupSplitValue: string, + private start?: number, + private end?: number + ) { + super(name, children); + } + + getStartEndIndicesOfOriginQuery() { + return { + start: this.start, + end: this.end + } + } + + getTokens() { + return { + partitions: this.partitions, + all_num: this.allNum, + delim: this.delim, + aggregations: this.aggExprList.map((aggTerm) => aggTerm.getTokens()), + groupby: this.groupExprList.getTokens(), + dedup_split_value: this.dedupSplitValue + } + } + + toString() { + return `stats ${this.partitions ?? ''} ${this.allNum ?? ''} ${this.delim ?? ''} ${this.aggExprList.map((aggTerm) => aggTerm.toString()).join(', ')} ${this.groupExprList.toString()} ${this.dedupSplitValue ?? ''}` + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp new file mode 100644 index 000000000..68b2f0fd1 --- /dev/null +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp @@ -0,0 +1,831 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +DATE_SUFFIX +ID_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +DEC_DIGIT +ERROR_RECOGNITION + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN +null +null +WHITESPACE +ERRORCHANNEL + +mode names: +DEFAULT_MODE + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 274, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 2, 533, 2, 535, 267, 537, 268, 539, 269, 541, 270, 543, 2, 545, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java new file mode 100644 index 000000000..5e81fb13c --- /dev/null +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java @@ -0,0 +1,1277 @@ +// Generated from /Users/menwe/code/OpenSearch-Dashboards/.observability/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.2 +import org.antlr.v4.runtime.Lexer; +import org.antlr.v4.runtime.CharStream; +import org.antlr.v4.runtime.Token; +import org.antlr.v4.runtime.TokenStream; +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.atn.*; +import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.misc.*; + +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) +public class OpenSearchPPLLexer extends Lexer { + static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, + EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, + SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, + NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, + ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, + SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, + TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, + CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, + DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, + HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, + MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, + HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, + YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, + DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, + DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, + PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, + COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, + SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, + BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, + MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, + STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, + STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, + EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, + PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, + C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, + EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, + POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, + ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, + RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, + DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, + MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, + DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, + TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, + STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, + LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, + MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, + ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, + BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, + ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, + FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, + LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, + MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, + QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, + TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, + W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, + ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, + ERROR_RECOGNITION=269; + public static final int + WHITESPACE=2, ERRORCHANNEL=3; + public static String[] channelNames = { + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL" + }; + + public static String[] modeNames = { + "DEFAULT_MODE" + }; + + private static String[] makeRuleNames() { + return new String[] { + "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", + "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", + "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", + "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", + "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", + "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", + "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", + "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "DATE_SUFFIX", + "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", + "DEC_DIGIT", "ERROR_RECOGNITION" + }; + } + public static final String[] ruleNames = makeRuleNames(); + + private static String[] makeLiteralNames() { + return new String[] { + null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", + "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", + "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", + "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", + "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", + "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", + "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", + "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", + "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", + "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", + "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", + "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", + "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", + "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", + "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", + "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", + "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", + "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", + "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", + "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", + "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", + "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", + "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", + "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", + "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", + "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", + "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", + "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" + }; + } + private static final String[] _LITERAL_NAMES = makeLiteralNames(); + private static String[] makeSymbolicNames() { + return new String[] { + null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", + "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", + "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", + "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" + }; + } + private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + + public OpenSearchPPLLexer(CharStream input) { + super(input); + _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + + @Override + public String getGrammarFileName() { return "OpenSearchPPLLexer.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public String[] getChannelNames() { return channelNames; } + + @Override + public String[] getModeNames() { return modeNames; } + + @Override + public ATN getATN() { return _ATN; } + + private static final int _serializedATNSegments = 2; + private static final String _serializedATNSegment0 = + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u010f\u0a6f\b\1\4"+ + "\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n"+ + "\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+ + "\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+ + "\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+ + " \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+ + "+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+ + "\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t"+ + "=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4"+ + "I\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\t"+ + "T\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_"+ + "\4`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k"+ + "\tk\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv"+ + "\4w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t"+ + "\u0080\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084"+ + "\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089"+ + "\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+ + "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ + "\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095\t\u0095\4\u0096\t\u0096"+ + "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a\4\u009b"+ + "\t\u009b\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f\t\u009f"+ + "\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3\4\u00a4"+ + "\t\u00a4\4\u00a5\t\u00a5\4\u00a6\t\u00a6\4\u00a7\t\u00a7\4\u00a8\t\u00a8"+ + "\4\u00a9\t\u00a9\4\u00aa\t\u00aa\4\u00ab\t\u00ab\4\u00ac\t\u00ac\4\u00ad"+ + "\t\u00ad\4\u00ae\t\u00ae\4\u00af\t\u00af\4\u00b0\t\u00b0\4\u00b1\t\u00b1"+ + "\4\u00b2\t\u00b2\4\u00b3\t\u00b3\4\u00b4\t\u00b4\4\u00b5\t\u00b5\4\u00b6"+ + "\t\u00b6\4\u00b7\t\u00b7\4\u00b8\t\u00b8\4\u00b9\t\u00b9\4\u00ba\t\u00ba"+ + "\4\u00bb\t\u00bb\4\u00bc\t\u00bc\4\u00bd\t\u00bd\4\u00be\t\u00be\4\u00bf"+ + "\t\u00bf\4\u00c0\t\u00c0\4\u00c1\t\u00c1\4\u00c2\t\u00c2\4\u00c3\t\u00c3"+ + "\4\u00c4\t\u00c4\4\u00c5\t\u00c5\4\u00c6\t\u00c6\4\u00c7\t\u00c7\4\u00c8"+ + "\t\u00c8\4\u00c9\t\u00c9\4\u00ca\t\u00ca\4\u00cb\t\u00cb\4\u00cc\t\u00cc"+ + "\4\u00cd\t\u00cd\4\u00ce\t\u00ce\4\u00cf\t\u00cf\4\u00d0\t\u00d0\4\u00d1"+ + "\t\u00d1\4\u00d2\t\u00d2\4\u00d3\t\u00d3\4\u00d4\t\u00d4\4\u00d5\t\u00d5"+ + "\4\u00d6\t\u00d6\4\u00d7\t\u00d7\4\u00d8\t\u00d8\4\u00d9\t\u00d9\4\u00da"+ + "\t\u00da\4\u00db\t\u00db\4\u00dc\t\u00dc\4\u00dd\t\u00dd\4\u00de\t\u00de"+ + "\4\u00df\t\u00df\4\u00e0\t\u00e0\4\u00e1\t\u00e1\4\u00e2\t\u00e2\4\u00e3"+ + "\t\u00e3\4\u00e4\t\u00e4\4\u00e5\t\u00e5\4\u00e6\t\u00e6\4\u00e7\t\u00e7"+ + "\4\u00e8\t\u00e8\4\u00e9\t\u00e9\4\u00ea\t\u00ea\4\u00eb\t\u00eb\4\u00ec"+ + "\t\u00ec\4\u00ed\t\u00ed\4\u00ee\t\u00ee\4\u00ef\t\u00ef\4\u00f0\t\u00f0"+ + "\4\u00f1\t\u00f1\4\u00f2\t\u00f2\4\u00f3\t\u00f3\4\u00f4\t\u00f4\4\u00f5"+ + "\t\u00f5\4\u00f6\t\u00f6\4\u00f7\t\u00f7\4\u00f8\t\u00f8\4\u00f9\t\u00f9"+ + "\4\u00fa\t\u00fa\4\u00fb\t\u00fb\4\u00fc\t\u00fc\4\u00fd\t\u00fd\4\u00fe"+ + "\t\u00fe\4\u00ff\t\u00ff\4\u0100\t\u0100\4\u0101\t\u0101\4\u0102\t\u0102"+ + "\4\u0103\t\u0103\4\u0104\t\u0104\4\u0105\t\u0105\4\u0106\t\u0106\4\u0107"+ + "\t\u0107\4\u0108\t\u0108\4\u0109\t\u0109\4\u010a\t\u010a\4\u010b\t\u010b"+ + "\4\u010c\t\u010c\4\u010d\t\u010d\4\u010e\t\u010e\4\u010f\t\u010f\4\u0110"+ + "\t\u0110\4\u0111\t\u0111\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\3\3"+ + "\3\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6"+ + "\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3"+ + "\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3"+ + "\f\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3"+ + "\17\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\21\3\22\3\22\3\22\3\23\3"+ + "\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3"+ + "\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3"+ + "\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3"+ + "\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3"+ + "\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\3"+ + "\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3!\3"+ + "!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3"+ + "#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+ + "&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3"+ + "(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3"+ + "*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3,\3,\3"+ + ",\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3"+ + "-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ + ".\3.\3.\3.\3.\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\62\3"+ + "\62\3\62\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3"+ + "\65\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3"+ + "8\38\38\38\38\38\38\38\38\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3"+ + ":\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3"+ + "<\3<\3<\3=\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3?\3?\3?\3?\3@\3@\3@\3@\3"+ + "@\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3"+ + "D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3"+ + "E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3"+ + "F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3"+ + "H\3H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3J\3J\3"+ + "J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3K\3"+ + "K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3M\3N\3"+ + "N\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3"+ + "P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3S\3S\3S\3"+ + "S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3"+ + "W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Z\3Z\3[\3[\3\\\3\\"+ + "\3]\3]\3^\3^\3_\3_\3_\3`\3`\3`\3a\3a\3a\3b\3b\3c\3c\3d\3d\3e\3e\3f\3f"+ + "\3g\3g\3h\3h\3i\3i\3j\3j\3k\3k\3l\3l\3m\3m\3n\3n\3o\3o\3p\3p\3q\3q\3r"+ + "\3r\3s\3s\3s\3s\3t\3t\3t\3t\3t\3t\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u"+ + "\3u\3u\3u\3v\3v\3v\3v\3v\3v\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3x\3x"+ + "\3x\3x\3y\3y\3y\3y\3y\3z\3z\3z\3z\3z\3z\3z\3{\3{\3{\3{\3|\3|\3|\3|\3|"+ + "\3}\3}\3}\3}\3}\3}\3~\3~\3~\3~\3~\3~\3\177\3\177\3\177\3\177\3\177\3\177"+ + "\3\177\3\u0080\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082"+ + "\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083"+ + "\3\u0083\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ + "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085"+ + "\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086"+ + "\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0087"+ + "\3\u0087\3\u0087\3\u0087\3\u0087\3\u0087\3\u0088\3\u0088\3\u0088\3\u0088"+ + "\3\u0088\3\u0089\3\u0089\3\u0089\3\u0089\3\u0089\3\u008a\3\u008a\3\u008a"+ + "\3\u008a\3\u008a\3\u008a\3\u008a\3\u008b\3\u008b\3\u008b\3\u008b\3\u008b"+ + "\3\u008b\3\u008b\3\u008b\3\u008b\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ + "\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ + "\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008e\3\u008e"+ + "\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e"+ + "\3\u008e\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f"+ + "\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090"+ + "\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091"+ + "\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092"+ + "\3\u0092\3\u0092\3\u0092\3\u0092\3\u0093\3\u0093\3\u0093\3\u0093\3\u0093"+ + "\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094"+ + "\3\u0094\3\u0095\3\u0095\3\u0096\3\u0096\3\u0096\3\u0097\3\u0097\3\u0097"+ + "\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\3\u0098\3\u0099\3\u0099\3\u0099"+ + "\3\u0099\3\u0099\3\u0099\3\u0099\3\u0099\3\u009a\3\u009a\3\u009a\3\u009a"+ + "\3\u009a\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009c\3\u009c"+ + "\3\u009d\3\u009d\3\u009d\3\u009d\3\u009e\3\u009e\3\u009e\3\u009e\3\u009e"+ + "\3\u009e\3\u009f\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a1"+ + "\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a2\3\u00a2"+ + "\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4\3\u00a5"+ + "\3\u00a5\3\u00a5\3\u00a5\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6"+ + "\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a8\3\u00a8"+ + "\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00aa\3\u00aa"+ + "\3\u00aa\3\u00aa\3\u00aa\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab"+ + "\3\u00ab\3\u00ab\3\u00ab\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ad"+ + "\3\u00ad\3\u00ad\3\u00ad\3\u00ad\3\u00ae\3\u00ae\3\u00ae\3\u00ae\3\u00ae"+ + "\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00b0\3\u00b0\3\u00b0"+ + "\3\u00b0\3\u00b1\3\u00b1\3\u00b1\3\u00b1\3\u00b2\3\u00b2\3\u00b2\3\u00b2"+ + "\3\u00b2\3\u00b2\3\u00b2\3\u00b2\3\u00b3\3\u00b3\3\u00b3\3\u00b3\3\u00b3"+ + "\3\u00b3\3\u00b3\3\u00b3\3\u00b4\3\u00b4\3\u00b4\3\u00b4\3\u00b5\3\u00b5"+ + "\3\u00b5\3\u00b5\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6"+ + "\3\u00b6\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b8\3\u00b8\3\u00b8"+ + "\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b9\3\u00b9\3\u00b9"+ + "\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00ba\3\u00ba\3\u00ba"+ + "\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00bb"+ + "\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb"+ + "\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc"+ + "\3\u00bc\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd"+ + "\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be"+ + "\3\u00be\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf"+ + "\3\u00bf\3\u00bf\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0"+ + "\3\u00c0\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c2\3\u00c2\3\u00c2"+ + "\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2"+ + "\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3"+ + "\3\u00c3\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4"+ + "\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c5\3\u00c5\3\u00c5\3\u00c5\3\u00c5"+ + "\3\u00c5\3\u00c5\3\u00c5\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6"+ + "\3\u00c6\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7"+ + "\3\u00c7\3\u00c7\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c9"+ + "\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00ca\3\u00ca\3\u00ca\3\u00ca"+ + "\3\u00ca\3\u00cb\3\u00cb\3\u00cb\3\u00cc\3\u00cc\3\u00cc\3\u00cc\3\u00cc"+ + "\3\u00cc\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00ce\3\u00ce"+ + "\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00cf\3\u00cf\3\u00cf\3\u00cf"+ + "\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00d0\3\u00d0\3\u00d0"+ + "\3\u00d0\3\u00d0\3\u00d0\3\u00d0\3\u00d1\3\u00d1\3\u00d1\3\u00d1\3\u00d1"+ + "\3\u00d1\3\u00d1\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d3"+ + "\3\u00d3\3\u00d3\3\u00d3\3\u00d3\3\u00d4\3\u00d4\3\u00d4\3\u00d4\3\u00d4"+ + "\3\u00d4\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d6"+ + "\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d7\3\u00d7"+ + "\3\u00d7\3\u00d7\3\u00d7\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d9"+ + "\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00da\3\u00da\3\u00da"+ + "\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00db\3\u00db"+ + "\3\u00db\3\u00db\3\u00db\3\u00db\3\u00db\3\u00dc\3\u00dc\3\u00dc\3\u00dc"+ + "\3\u00dc\3\u00dc\3\u00dc\3\u00dd\3\u00dd\3\u00dd\3\u00de\3\u00de\3\u00de"+ + "\3\u00de\3\u00de\3\u00de\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df"+ + "\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00e0\3\u00e0"+ + "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ + "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ + "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ + "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e3"+ + "\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e5\3\u00e5\3\u00e5\3\u00e5\3\u00e5"+ + "\3\u00e5\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ + "\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ + "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7"+ + "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ + "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ + "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00ea\3\u00ea\3\u00ea\3\u00ea\3\u00ea"+ + "\3\u00ea\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ + "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ + "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ + "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ + "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee"+ + "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ef\3\u00ef\3\u00ef\3\u00ef"+ + "\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00f0\3\u00f0\3\u00f0"+ + "\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ + "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ + "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3"+ + "\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5"+ + "\3\u00f5\3\u00f5\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6"+ + "\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ + "\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ + "\3\u00f7\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8"+ + "\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f9\3\u00f9"+ + "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9"+ + "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00fa"+ + "\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fb\3\u00fb"+ + "\3\u00fb\3\u00fb\3\u00fb\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc"+ + "\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fd\3\u00fd\3\u00fd"+ + "\3\u00fd\3\u00fd\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ + "\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ + "\3\u00fe\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u0100\3\u0100\3\u0100"+ + "\3\u0101\3\u0101\3\u0102\3\u0102\3\u0103\3\u0103\3\u0104\3\u0104\3\u0105"+ + "\3\u0105\3\u0106\3\u0106\3\u0107\3\u0107\3\u0108\6\u0108\u0a19\n\u0108"+ + "\r\u0108\16\u0108\u0a1a\3\u0109\6\u0109\u0a1e\n\u0109\r\u0109\16\u0109"+ + "\u0a1f\5\u0109\u0a22\n\u0109\3\u0109\3\u0109\6\u0109\u0a26\n\u0109\r\u0109"+ + "\16\u0109\u0a27\3\u010a\3\u010a\6\u010a\u0a2c\n\u010a\r\u010a\16\u010a"+ + "\u0a2d\7\u010a\u0a30\n\u010a\f\u010a\16\u010a\u0a33\13\u010a\3\u010b\6"+ + "\u010b\u0a36\n\u010b\r\u010b\16\u010b\u0a37\3\u010b\7\u010b\u0a3b\n\u010b"+ + "\f\u010b\16\u010b\u0a3e\13\u010b\3\u010c\3\u010c\3\u010c\3\u010d\3\u010d"+ + "\3\u010d\3\u010d\3\u010d\3\u010d\7\u010d\u0a49\n\u010d\f\u010d\16\u010d"+ + "\u0a4c\13\u010d\3\u010d\3\u010d\3\u010e\3\u010e\3\u010e\3\u010e\3\u010e"+ + "\3\u010e\7\u010e\u0a56\n\u010e\f\u010e\16\u010e\u0a59\13\u010e\3\u010e"+ + "\3\u010e\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\7\u010f\u0a63"+ + "\n\u010f\f\u010f\16\u010f\u0a66\13\u010f\3\u010f\3\u010f\3\u0110\3\u0110"+ + "\3\u0111\3\u0111\3\u0111\3\u0111\3\u0a37\2\u0112\3\3\5\4\7\5\t\6\13\7"+ + "\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25"+ + ")\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O"+ + ")Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081"+ + "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095"+ + "L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9"+ + "V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd"+ + "`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1"+ + "j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5"+ + "t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9"+ + "~\u00fb\177\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105\u0084"+ + "\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111\u008a"+ + "\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d\u0090"+ + "\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129\u0096"+ + "\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135\u009c"+ + "\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141\u00a2"+ + "\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d\u00a8"+ + "\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159\u00ae"+ + "\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165\u00b4"+ + "\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171\u00ba"+ + "\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d\u00c0"+ + "\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189\u00c6"+ + "\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195\u00cc"+ + "\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1\u00d2"+ + "\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8"+ + "\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9\u00de"+ + "\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4"+ + "\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea"+ + "\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd\u00f0"+ + "\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6"+ + "\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc"+ + "\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201\u0102"+ + "\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d\u0108"+ + "\u020f\u0109\u0211\u010a\u0213\2\u0215\2\u0217\u010b\u0219\u010c\u021b"+ + "\u010d\u021d\u010e\u021f\2\u0221\u010f\3\2\n\3\2/\60\4\2,,\62;\4\2,,B"+ + "\\\7\2,,//\62;C\\aa\4\2$$^^\4\2))^^\4\2^^bb\3\2\62;\2\u0a7c\2\3\3\2\2"+ + "\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3"+ + "\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2"+ + "\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2"+ + "\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2"+ + "\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3"+ + "\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2"+ + "\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2"+ + "W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3"+ + "\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2"+ + "\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2"+ + "}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2"+ + "\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f"+ + "\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2"+ + "\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1"+ + "\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2"+ + "\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3"+ + "\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2"+ + "\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5"+ + "\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2"+ + "\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7"+ + "\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2"+ + "\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9"+ + "\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2"+ + "\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb"+ + "\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103\3\2\2"+ + "\2\2\u0105\3\2\2\2\2\u0107\3\2\2\2\2\u0109\3\2\2\2\2\u010b\3\2\2\2\2\u010d"+ + "\3\2\2\2\2\u010f\3\2\2\2\2\u0111\3\2\2\2\2\u0113\3\2\2\2\2\u0115\3\2\2"+ + "\2\2\u0117\3\2\2\2\2\u0119\3\2\2\2\2\u011b\3\2\2\2\2\u011d\3\2\2\2\2\u011f"+ + "\3\2\2\2\2\u0121\3\2\2\2\2\u0123\3\2\2\2\2\u0125\3\2\2\2\2\u0127\3\2\2"+ + "\2\2\u0129\3\2\2\2\2\u012b\3\2\2\2\2\u012d\3\2\2\2\2\u012f\3\2\2\2\2\u0131"+ + "\3\2\2\2\2\u0133\3\2\2\2\2\u0135\3\2\2\2\2\u0137\3\2\2\2\2\u0139\3\2\2"+ + "\2\2\u013b\3\2\2\2\2\u013d\3\2\2\2\2\u013f\3\2\2\2\2\u0141\3\2\2\2\2\u0143"+ + "\3\2\2\2\2\u0145\3\2\2\2\2\u0147\3\2\2\2\2\u0149\3\2\2\2\2\u014b\3\2\2"+ + "\2\2\u014d\3\2\2\2\2\u014f\3\2\2\2\2\u0151\3\2\2\2\2\u0153\3\2\2\2\2\u0155"+ + "\3\2\2\2\2\u0157\3\2\2\2\2\u0159\3\2\2\2\2\u015b\3\2\2\2\2\u015d\3\2\2"+ + "\2\2\u015f\3\2\2\2\2\u0161\3\2\2\2\2\u0163\3\2\2\2\2\u0165\3\2\2\2\2\u0167"+ + "\3\2\2\2\2\u0169\3\2\2\2\2\u016b\3\2\2\2\2\u016d\3\2\2\2\2\u016f\3\2\2"+ + "\2\2\u0171\3\2\2\2\2\u0173\3\2\2\2\2\u0175\3\2\2\2\2\u0177\3\2\2\2\2\u0179"+ + "\3\2\2\2\2\u017b\3\2\2\2\2\u017d\3\2\2\2\2\u017f\3\2\2\2\2\u0181\3\2\2"+ + "\2\2\u0183\3\2\2\2\2\u0185\3\2\2\2\2\u0187\3\2\2\2\2\u0189\3\2\2\2\2\u018b"+ + "\3\2\2\2\2\u018d\3\2\2\2\2\u018f\3\2\2\2\2\u0191\3\2\2\2\2\u0193\3\2\2"+ + "\2\2\u0195\3\2\2\2\2\u0197\3\2\2\2\2\u0199\3\2\2\2\2\u019b\3\2\2\2\2\u019d"+ + "\3\2\2\2\2\u019f\3\2\2\2\2\u01a1\3\2\2\2\2\u01a3\3\2\2\2\2\u01a5\3\2\2"+ + "\2\2\u01a7\3\2\2\2\2\u01a9\3\2\2\2\2\u01ab\3\2\2\2\2\u01ad\3\2\2\2\2\u01af"+ + "\3\2\2\2\2\u01b1\3\2\2\2\2\u01b3\3\2\2\2\2\u01b5\3\2\2\2\2\u01b7\3\2\2"+ + "\2\2\u01b9\3\2\2\2\2\u01bb\3\2\2\2\2\u01bd\3\2\2\2\2\u01bf\3\2\2\2\2\u01c1"+ + "\3\2\2\2\2\u01c3\3\2\2\2\2\u01c5\3\2\2\2\2\u01c7\3\2\2\2\2\u01c9\3\2\2"+ + "\2\2\u01cb\3\2\2\2\2\u01cd\3\2\2\2\2\u01cf\3\2\2\2\2\u01d1\3\2\2\2\2\u01d3"+ + "\3\2\2\2\2\u01d5\3\2\2\2\2\u01d7\3\2\2\2\2\u01d9\3\2\2\2\2\u01db\3\2\2"+ + "\2\2\u01dd\3\2\2\2\2\u01df\3\2\2\2\2\u01e1\3\2\2\2\2\u01e3\3\2\2\2\2\u01e5"+ + "\3\2\2\2\2\u01e7\3\2\2\2\2\u01e9\3\2\2\2\2\u01eb\3\2\2\2\2\u01ed\3\2\2"+ + "\2\2\u01ef\3\2\2\2\2\u01f1\3\2\2\2\2\u01f3\3\2\2\2\2\u01f5\3\2\2\2\2\u01f7"+ + "\3\2\2\2\2\u01f9\3\2\2\2\2\u01fb\3\2\2\2\2\u01fd\3\2\2\2\2\u01ff\3\2\2"+ + "\2\2\u0201\3\2\2\2\2\u0203\3\2\2\2\2\u0205\3\2\2\2\2\u0207\3\2\2\2\2\u0209"+ + "\3\2\2\2\2\u020b\3\2\2\2\2\u020d\3\2\2\2\2\u020f\3\2\2\2\2\u0211\3\2\2"+ + "\2\2\u0217\3\2\2\2\2\u0219\3\2\2\2\2\u021b\3\2\2\2\2\u021d\3\2\2\2\2\u0221"+ + "\3\2\2\2\3\u0223\3\2\2\2\5\u022a\3\2\2\2\7\u022f\3\2\2\2\t\u0235\3\2\2"+ + "\2\13\u023c\3\2\2\2\r\u0243\3\2\2\2\17\u0249\3\2\2\2\21\u024f\3\2\2\2"+ + "\23\u0254\3\2\2\2\25\u0259\3\2\2\2\27\u025e\3\2\2\2\31\u0262\3\2\2\2\33"+ + "\u0267\3\2\2\2\35\u026d\3\2\2\2\37\u0274\3\2\2\2!\u0277\3\2\2\2#\u027a"+ + "\3\2\2\2%\u027d\3\2\2\2\'\u0284\3\2\2\2)\u028a\3\2\2\2+\u028c\3\2\2\2"+ + "-\u0291\3\2\2\2/\u0298\3\2\2\2\61\u029d\3\2\2\2\63\u02a1\3\2\2\2\65\u02a4"+ + "\3\2\2\2\67\u02a8\3\2\2\29\u02b2\3\2\2\2;\u02be\3\2\2\2=\u02d0\3\2\2\2"+ + "?\u02db\3\2\2\2A\u02e2\3\2\2\2C\u02e8\3\2\2\2E\u02f2\3\2\2\2G\u02fd\3"+ + "\2\2\2I\u030b\3\2\2\2K\u031b\3\2\2\2M\u0328\3\2\2\2O\u0334\3\2\2\2Q\u0341"+ + "\3\2\2\2S\u034c\3\2\2\2U\u0359\3\2\2\2W\u0364\3\2\2\2Y\u036e\3\2\2\2["+ + "\u0381\3\2\2\2]\u0399\3\2\2\2_\u039e\3\2\2\2a\u03a1\3\2\2\2c\u03a5\3\2"+ + "\2\2e\u03a8\3\2\2\2g\u03ac\3\2\2\2i\u03b0\3\2\2\2k\u03b5\3\2\2\2m\u03bb"+ + "\3\2\2\2o\u03c2\3\2\2\2q\u03cb\3\2\2\2s\u03d4\3\2\2\2u\u03e0\3\2\2\2w"+ + "\u03ec\3\2\2\2y\u03f3\3\2\2\2{\u03fa\3\2\2\2}\u03ff\3\2\2\2\177\u0403"+ + "\3\2\2\2\u0081\u0408\3\2\2\2\u0083\u040e\3\2\2\2\u0085\u0416\3\2\2\2\u0087"+ + "\u041b\3\2\2\2\u0089\u042e\3\2\2\2\u008b\u0441\3\2\2\2\u008d\u044f\3\2"+ + "\2\2\u008f\u0460\3\2\2\2\u0091\u046c\3\2\2\2\u0093\u0478\3\2\2\2\u0095"+ + "\u0488\3\2\2\2\u0097\u0493\3\2\2\2\u0099\u049e\3\2\2\2\u009b\u04a7\3\2"+ + "\2\2\u009d\u04b2\3\2\2\2\u009f\u04bc\3\2\2\2\u00a1\u04c3\3\2\2\2\u00a3"+ + "\u04cf\3\2\2\2\u00a5\u04d3\3\2\2\2\u00a7\u04db\3\2\2\2\u00a9\u04e2\3\2"+ + "\2\2\u00ab\u04e7\3\2\2\2\u00ad\u04ed\3\2\2\2\u00af\u04f4\3\2\2\2\u00b1"+ + "\u04fc\3\2\2\2\u00b3\u04fe\3\2\2\2\u00b5\u0500\3\2\2\2\u00b7\u0502\3\2"+ + "\2\2\u00b9\u0504\3\2\2\2\u00bb\u0506\3\2\2\2\u00bd\u0508\3\2\2\2\u00bf"+ + "\u050b\3\2\2\2\u00c1\u050e\3\2\2\2\u00c3\u0511\3\2\2\2\u00c5\u0513\3\2"+ + "\2\2\u00c7\u0515\3\2\2\2\u00c9\u0517\3\2\2\2\u00cb\u0519\3\2\2\2\u00cd"+ + "\u051b\3\2\2\2\u00cf\u051d\3\2\2\2\u00d1\u051f\3\2\2\2\u00d3\u0521\3\2"+ + "\2\2\u00d5\u0523\3\2\2\2\u00d7\u0525\3\2\2\2\u00d9\u0527\3\2\2\2\u00db"+ + "\u0529\3\2\2\2\u00dd\u052b\3\2\2\2\u00df\u052d\3\2\2\2\u00e1\u052f\3\2"+ + "\2\2\u00e3\u0531\3\2\2\2\u00e5\u0533\3\2\2\2\u00e7\u0537\3\2\2\2\u00e9"+ + "\u053d\3\2\2\2\u00eb\u054c\3\2\2\2\u00ed\u0552\3\2\2\2\u00ef\u055e\3\2"+ + "\2\2\u00f1\u0562\3\2\2\2\u00f3\u0567\3\2\2\2\u00f5\u056e\3\2\2\2\u00f7"+ + "\u0572\3\2\2\2\u00f9\u0577\3\2\2\2\u00fb\u057d\3\2\2\2\u00fd\u0583\3\2"+ + "\2\2\u00ff\u058a\3\2\2\2\u0101\u058e\3\2\2\2\u0103\u0594\3\2\2\2\u0105"+ + "\u059d\3\2\2\2\u0107\u05a5\3\2\2\2\u0109\u05b1\3\2\2\2\u010b\u05bc\3\2"+ + "\2\2\u010d\u05c7\3\2\2\2\u010f\u05cd\3\2\2\2\u0111\u05d2\3\2\2\2\u0113"+ + "\u05d7\3\2\2\2\u0115\u05de\3\2\2\2\u0117\u05e7\3\2\2\2\u0119\u05f5\3\2"+ + "\2\2\u011b\u05fc\3\2\2\2\u011d\u0608\3\2\2\2\u011f\u0610\3\2\2\2\u0121"+ + "\u0619\3\2\2\2\u0123\u0624\3\2\2\2\u0125\u062f\3\2\2\2\u0127\u0634\3\2"+ + "\2\2\u0129\u063e\3\2\2\2\u012b\u0640\3\2\2\2\u012d\u0643\3\2\2\2\u012f"+ + "\u0647\3\2\2\2\u0131\u064c\3\2\2\2\u0133\u0654\3\2\2\2\u0135\u0659\3\2"+ + "\2\2\u0137\u065f\3\2\2\2\u0139\u0661\3\2\2\2\u013b\u0665\3\2\2\2\u013d"+ + "\u066b\3\2\2\2\u013f\u066e\3\2\2\2\u0141\u0672\3\2\2\2\u0143\u0678\3\2"+ + "\2\2\u0145\u067d\3\2\2\2\u0147\u0681\3\2\2\2\u0149\u0684\3\2\2\2\u014b"+ + "\u0688\3\2\2\2\u014d\u068e\3\2\2\2\u014f\u0693\3\2\2\2\u0151\u0699\3\2"+ + "\2\2\u0153\u069e\3\2\2\2\u0155\u06a3\3\2\2\2\u0157\u06ac\3\2\2\2\u0159"+ + "\u06b1\3\2\2\2\u015b\u06b6\3\2\2\2\u015d\u06bb\3\2\2\2\u015f\u06c1\3\2"+ + "\2\2\u0161\u06c5\3\2\2\2\u0163\u06c9\3\2\2\2\u0165\u06d1\3\2\2\2\u0167"+ + "\u06d9\3\2\2\2\u0169\u06dd\3\2\2\2\u016b\u06e1\3\2\2\2\u016d\u06e9\3\2"+ + "\2\2\u016f\u06ee\3\2\2\2\u0171\u06f7\3\2\2\2\u0173\u0700\3\2\2\2\u0175"+ + "\u070b\3\2\2\2\u0177\u0715\3\2\2\2\u0179\u071f\3\2\2\2\u017b\u0727\3\2"+ + "\2\2\u017d\u0731\3\2\2\2\u017f\u073b\3\2\2\2\u0181\u0743\3\2\2\2\u0183"+ + "\u0748\3\2\2\2\u0185\u0754\3\2\2\2\u0187\u075e\3\2\2\2\u0189\u076a\3\2"+ + "\2\2\u018b\u0772\3\2\2\2\u018d\u0779\3\2\2\2\u018f\u0783\3\2\2\2\u0191"+ + "\u0789\3\2\2\2\u0193\u078f\3\2\2\2\u0195\u0794\3\2\2\2\u0197\u0797\3\2"+ + "\2\2\u0199\u079d\3\2\2\2\u019b\u07a3\3\2\2\2\u019d\u07aa\3\2\2\2\u019f"+ + "\u07b4\3\2\2\2\u01a1\u07bb\3\2\2\2\u01a3\u07c2\3\2\2\2\u01a5\u07c8\3\2"+ + "\2\2\u01a7\u07cd\3\2\2\2\u01a9\u07d3\3\2\2\2\u01ab\u07da\3\2\2\2\u01ad"+ + "\u07e2\3\2\2\2\u01af\u07e7\3\2\2\2\u01b1\u07ec\3\2\2\2\u01b3\u07f3\3\2"+ + "\2\2\u01b5\u07fd\3\2\2\2\u01b7\u0804\3\2\2\2\u01b9\u080b\3\2\2\2\u01bb"+ + "\u080e\3\2\2\2\u01bd\u0814\3\2\2\2\u01bf\u0821\3\2\2\2\u01c1\u0835\3\2"+ + "\2\2\u01c3\u084c\3\2\2\2\u01c5\u085d\3\2\2\2\u01c7\u0866\3\2\2\2\u01c9"+ + "\u088a\3\2\2\2\u01cb\u0890\3\2\2\2\u01cd\u08a1\3\2\2\2\u01cf\u08af\3\2"+ + "\2\2\u01d1\u08c0\3\2\2\2\u01d3\u08db\3\2\2\2\u01d5\u08e1\3\2\2\2\u01d7"+ + "\u08f6\3\2\2\2\u01d9\u090a\3\2\2\2\u01db\u091f\3\2\2\2\u01dd\u092d\3\2"+ + "\2\2\u01df\u0937\3\2\2\2\u01e1\u093f\3\2\2\2\u01e3\u0951\3\2\2\2\u01e5"+ + "\u0969\3\2\2\2\u01e7\u0978\3\2\2\2\u01e9\u098d\3\2\2\2\u01eb\u0996\3\2"+ + "\2\2\u01ed\u09a2\3\2\2\2\u01ef\u09b0\3\2\2\2\u01f1\u09bf\3\2\2\2\u01f3"+ + "\u09d2\3\2\2\2\u01f5\u09da\3\2\2\2\u01f7\u09df\3\2\2\2\u01f9\u09eb\3\2"+ + "\2\2\u01fb\u09f0\3\2\2\2\u01fd\u0a01\3\2\2\2\u01ff\u0a06\3\2\2\2\u0201"+ + "\u0a09\3\2\2\2\u0203\u0a0b\3\2\2\2\u0205\u0a0d\3\2\2\2\u0207\u0a0f\3\2"+ + "\2\2\u0209\u0a11\3\2\2\2\u020b\u0a13\3\2\2\2\u020d\u0a15\3\2\2\2\u020f"+ + "\u0a18\3\2\2\2\u0211\u0a21\3\2\2\2\u0213\u0a31\3\2\2\2\u0215\u0a35\3\2"+ + "\2\2\u0217\u0a3f\3\2\2\2\u0219\u0a42\3\2\2\2\u021b\u0a4f\3\2\2\2\u021d"+ + "\u0a5c\3\2\2\2\u021f\u0a69\3\2\2\2\u0221\u0a6b\3\2\2\2\u0223\u0224\7U"+ + "\2\2\u0224\u0225\7G\2\2\u0225\u0226\7C\2\2\u0226\u0227\7T\2\2\u0227\u0228"+ + "\7E\2\2\u0228\u0229\7J\2\2\u0229\4\3\2\2\2\u022a\u022b\7H\2\2\u022b\u022c"+ + "\7T\2\2\u022c\u022d\7Q\2\2\u022d\u022e\7O\2\2\u022e\6\3\2\2\2\u022f\u0230"+ + "\7Y\2\2\u0230\u0231\7J\2\2\u0231\u0232\7G\2\2\u0232\u0233\7T\2\2\u0233"+ + "\u0234\7G\2\2\u0234\b\3\2\2\2\u0235\u0236\7H\2\2\u0236\u0237\7K\2\2\u0237"+ + "\u0238\7G\2\2\u0238\u0239\7N\2\2\u0239\u023a\7F\2\2\u023a\u023b\7U\2\2"+ + "\u023b\n\3\2\2\2\u023c\u023d\7T\2\2\u023d\u023e\7G\2\2\u023e\u023f\7P"+ + "\2\2\u023f\u0240\7C\2\2\u0240\u0241\7O\2\2\u0241\u0242\7G\2\2\u0242\f"+ + "\3\2\2\2\u0243\u0244\7U\2\2\u0244\u0245\7V\2\2\u0245\u0246\7C\2\2\u0246"+ + "\u0247\7V\2\2\u0247\u0248\7U\2\2\u0248\16\3\2\2\2\u0249\u024a\7F\2\2\u024a"+ + "\u024b\7G\2\2\u024b\u024c\7F\2\2\u024c\u024d\7W\2\2\u024d\u024e\7R\2\2"+ + "\u024e\20\3\2\2\2\u024f\u0250\7U\2\2\u0250\u0251\7Q\2\2\u0251\u0252\7"+ + "T\2\2\u0252\u0253\7V\2\2\u0253\22\3\2\2\2\u0254\u0255\7G\2\2\u0255\u0256"+ + "\7X\2\2\u0256\u0257\7C\2\2\u0257\u0258\7N\2\2\u0258\24\3\2\2\2\u0259\u025a"+ + "\7J\2\2\u025a\u025b\7G\2\2\u025b\u025c\7C\2\2\u025c\u025d\7F\2\2\u025d"+ + "\26\3\2\2\2\u025e\u025f\7V\2\2\u025f\u0260\7Q\2\2\u0260\u0261\7R\2\2\u0261"+ + "\30\3\2\2\2\u0262\u0263\7T\2\2\u0263\u0264\7C\2\2\u0264\u0265\7T\2\2\u0265"+ + "\u0266\7G\2\2\u0266\32\3\2\2\2\u0267\u0268\7R\2\2\u0268\u0269\7C\2\2\u0269"+ + "\u026a\7T\2\2\u026a\u026b\7U\2\2\u026b\u026c\7G\2\2\u026c\34\3\2\2\2\u026d"+ + "\u026e\7M\2\2\u026e\u026f\7O\2\2\u026f\u0270\7G\2\2\u0270\u0271\7C\2\2"+ + "\u0271\u0272\7P\2\2\u0272\u0273\7U\2\2\u0273\36\3\2\2\2\u0274\u0275\7"+ + "C\2\2\u0275\u0276\7F\2\2\u0276 \3\2\2\2\u0277\u0278\7C\2\2\u0278\u0279"+ + "\7U\2\2\u0279\"\3\2\2\2\u027a\u027b\7D\2\2\u027b\u027c\7[\2\2\u027c$\3"+ + "\2\2\2\u027d\u027e\7U\2\2\u027e\u027f\7Q\2\2\u027f\u0280\7W\2\2\u0280"+ + "\u0281\7T\2\2\u0281\u0282\7E\2\2\u0282\u0283\7G\2\2\u0283&\3\2\2\2\u0284"+ + "\u0285\7K\2\2\u0285\u0286\7P\2\2\u0286\u0287\7F\2\2\u0287\u0288\7G\2\2"+ + "\u0288\u0289\7Z\2\2\u0289(\3\2\2\2\u028a\u028b\7F\2\2\u028b*\3\2\2\2\u028c"+ + "\u028d\7F\2\2\u028d\u028e\7G\2\2\u028e\u028f\7U\2\2\u028f\u0290\7E\2\2"+ + "\u0290,\3\2\2\2\u0291\u0292\7U\2\2\u0292\u0293\7Q\2\2\u0293\u0294\7T\2"+ + "\2\u0294\u0295\7V\2\2\u0295\u0296\7D\2\2\u0296\u0297\7[\2\2\u0297.\3\2"+ + "\2\2\u0298\u0299\7C\2\2\u0299\u029a\7W\2\2\u029a\u029b\7V\2\2\u029b\u029c"+ + "\7Q\2\2\u029c\60\3\2\2\2\u029d\u029e\7U\2\2\u029e\u029f\7V\2\2\u029f\u02a0"+ + "\7T\2\2\u02a0\62\3\2\2\2\u02a1\u02a2\7K\2\2\u02a2\u02a3\7R\2\2\u02a3\64"+ + "\3\2\2\2\u02a4\u02a5\7P\2\2\u02a5\u02a6\7W\2\2\u02a6\u02a7\7O\2\2\u02a7"+ + "\66\3\2\2\2\u02a8\u02a9\7M\2\2\u02a9\u02aa\7G\2\2\u02aa\u02ab\7G\2\2\u02ab"+ + "\u02ac\7R\2\2\u02ac\u02ad\7G\2\2\u02ad\u02ae\7O\2\2\u02ae\u02af\7R\2\2"+ + "\u02af\u02b0\7V\2\2\u02b0\u02b1\7[\2\2\u02b18\3\2\2\2\u02b2\u02b3\7E\2"+ + "\2\u02b3\u02b4\7Q\2\2\u02b4\u02b5\7P\2\2\u02b5\u02b6\7U\2\2\u02b6\u02b7"+ + "\7G\2\2\u02b7\u02b8\7E\2\2\u02b8\u02b9\7W\2\2\u02b9\u02ba\7V\2\2\u02ba"+ + "\u02bb\7K\2\2\u02bb\u02bc\7X\2\2\u02bc\u02bd\7G\2\2\u02bd:\3\2\2\2\u02be"+ + "\u02bf\7F\2\2\u02bf\u02c0\7G\2\2\u02c0\u02c1\7F\2\2\u02c1\u02c2\7W\2\2"+ + "\u02c2\u02c3\7R\2\2\u02c3\u02c4\7a\2\2\u02c4\u02c5\7U\2\2\u02c5\u02c6"+ + "\7R\2\2\u02c6\u02c7\7N\2\2\u02c7\u02c8\7K\2\2\u02c8\u02c9\7V\2\2\u02c9"+ + "\u02ca\7X\2\2\u02ca\u02cb\7C\2\2\u02cb\u02cc\7N\2\2\u02cc\u02cd\7W\2\2"+ + "\u02cd\u02ce\7G\2\2\u02ce\u02cf\7U\2\2\u02cf<\3\2\2\2\u02d0\u02d1\7R\2"+ + "\2\u02d1\u02d2\7C\2\2\u02d2\u02d3\7T\2\2\u02d3\u02d4\7V\2\2\u02d4\u02d5"+ + "\7K\2\2\u02d5\u02d6\7V\2\2\u02d6\u02d7\7K\2\2\u02d7\u02d8\7Q\2\2\u02d8"+ + "\u02d9\7P\2\2\u02d9\u02da\7U\2\2\u02da>\3\2\2\2\u02db\u02dc\7C\2\2\u02dc"+ + "\u02dd\7N\2\2\u02dd\u02de\7N\2\2\u02de\u02df\7P\2\2\u02df\u02e0\7W\2\2"+ + "\u02e0\u02e1\7O\2\2\u02e1@\3\2\2\2\u02e2\u02e3\7F\2\2\u02e3\u02e4\7G\2"+ + "\2\u02e4\u02e5\7N\2\2\u02e5\u02e6\7K\2\2\u02e6\u02e7\7O\2\2\u02e7B\3\2"+ + "\2\2\u02e8\u02e9\7E\2\2\u02e9\u02ea\7G\2\2\u02ea\u02eb\7P\2\2\u02eb\u02ec"+ + "\7V\2\2\u02ec\u02ed\7T\2\2\u02ed\u02ee\7Q\2\2\u02ee\u02ef\7K\2\2\u02ef"+ + "\u02f0\7F\2\2\u02f0\u02f1\7U\2\2\u02f1D\3\2\2\2\u02f2\u02f3\7K\2\2\u02f3"+ + "\u02f4\7V\2\2\u02f4\u02f5\7G\2\2\u02f5\u02f6\7T\2\2\u02f6\u02f7\7C\2\2"+ + "\u02f7\u02f8\7V\2\2\u02f8\u02f9\7K\2\2\u02f9\u02fa\7Q\2\2\u02fa\u02fb"+ + "\7P\2\2\u02fb\u02fc\7U\2\2\u02fcF\3\2\2\2\u02fd\u02fe\7F\2\2\u02fe\u02ff"+ + "\7K\2\2\u02ff\u0300\7U\2\2\u0300\u0301\7V\2\2\u0301\u0302\7C\2\2\u0302"+ + "\u0303\7P\2\2\u0303\u0304\7E\2\2\u0304\u0305\7G\2\2\u0305\u0306\7a\2\2"+ + "\u0306\u0307\7V\2\2\u0307\u0308\7[\2\2\u0308\u0309\7R\2\2\u0309\u030a"+ + "\7G\2\2\u030aH\3\2\2\2\u030b\u030c\7P\2\2\u030c\u030d\7W\2\2\u030d\u030e"+ + "\7O\2\2\u030e\u030f\7D\2\2\u030f\u0310\7G\2\2\u0310\u0311\7T\2\2\u0311"+ + "\u0312\7a\2\2\u0312\u0313\7Q\2\2\u0313\u0314\7H\2\2\u0314\u0315\7a\2\2"+ + "\u0315\u0316\7V\2\2\u0316\u0317\7T\2\2\u0317\u0318\7G\2\2\u0318\u0319"+ + "\7G\2\2\u0319\u031a\7U\2\2\u031aJ\3\2\2\2\u031b\u031c\7U\2\2\u031c\u031d"+ + "\7J\2\2\u031d\u031e\7K\2\2\u031e\u031f\7P\2\2\u031f\u0320\7I\2\2\u0320"+ + "\u0321\7N\2\2\u0321\u0322\7G\2\2\u0322\u0323\7a\2\2\u0323\u0324\7U\2\2"+ + "\u0324\u0325\7K\2\2\u0325\u0326\7\\\2\2\u0326\u0327\7G\2\2\u0327L\3\2"+ + "\2\2\u0328\u0329\7U\2\2\u0329\u032a\7C\2\2\u032a\u032b\7O\2\2\u032b\u032c"+ + "\7R\2\2\u032c\u032d\7N\2\2\u032d\u032e\7G\2\2\u032e\u032f\7a\2\2\u032f"+ + "\u0330\7U\2\2\u0330\u0331\7K\2\2\u0331\u0332\7\\\2\2\u0332\u0333\7G\2"+ + "\2\u0333N\3\2\2\2\u0334\u0335\7Q\2\2\u0335\u0336\7W\2\2\u0336\u0337\7"+ + "V\2\2\u0337\u0338\7R\2\2\u0338\u0339\7W\2\2\u0339\u033a\7V\2\2\u033a\u033b"+ + "\7a\2\2\u033b\u033c\7C\2\2\u033c\u033d\7H\2\2\u033d\u033e\7V\2\2\u033e"+ + "\u033f\7G\2\2\u033f\u0340\7T\2\2\u0340P\3\2\2\2\u0341\u0342\7V\2\2\u0342"+ + "\u0343\7K\2\2\u0343\u0344\7O\2\2\u0344\u0345\7G\2\2\u0345\u0346\7a\2\2"+ + "\u0346\u0347\7F\2\2\u0347\u0348\7G\2\2\u0348\u0349\7E\2\2\u0349\u034a"+ + "\7C\2\2\u034a\u034b\7[\2\2\u034bR\3\2\2\2\u034c\u034d\7C\2\2\u034d\u034e"+ + "\7P\2\2\u034e\u034f\7Q\2\2\u034f\u0350\7O\2\2\u0350\u0351\7C\2\2\u0351"+ + "\u0352\7N\2\2\u0352\u0353\7[\2\2\u0353\u0354\7a\2\2\u0354\u0355\7T\2\2"+ + "\u0355\u0356\7C\2\2\u0356\u0357\7V\2\2\u0357\u0358\7G\2\2\u0358T\3\2\2"+ + "\2\u0359\u035a\7V\2\2\u035a\u035b\7K\2\2\u035b\u035c\7O\2\2\u035c\u035d"+ + "\7G\2\2\u035d\u035e\7a\2\2\u035e\u035f\7H\2\2\u035f\u0360\7K\2\2\u0360"+ + "\u0361\7G\2\2\u0361\u0362\7N\2\2\u0362\u0363\7F\2\2\u0363V\3\2\2\2\u0364"+ + "\u0365\7V\2\2\u0365\u0366\7K\2\2\u0366\u0367\7O\2\2\u0367\u0368\7G\2\2"+ + "\u0368\u0369\7a\2\2\u0369\u036a\7\\\2\2\u036a\u036b\7Q\2\2\u036b\u036c"+ + "\7P\2\2\u036c\u036d\7G\2\2\u036dX\3\2\2\2\u036e\u036f\7V\2\2\u036f\u0370"+ + "\7T\2\2\u0370\u0371\7C\2\2\u0371\u0372\7K\2\2\u0372\u0373\7P\2\2\u0373"+ + "\u0374\7K\2\2\u0374\u0375\7P\2\2\u0375\u0376\7I\2\2\u0376\u0377\7a\2\2"+ + "\u0377\u0378\7F\2\2\u0378\u0379\7C\2\2\u0379\u037a\7V\2\2\u037a\u037b"+ + "\7C\2\2\u037b\u037c\7a\2\2\u037c\u037d\7U\2\2\u037d\u037e\7K\2\2\u037e"+ + "\u037f\7\\\2\2\u037f\u0380\7G\2\2\u0380Z\3\2\2\2\u0381\u0382\7C\2\2\u0382"+ + "\u0383\7P\2\2\u0383\u0384\7Q\2\2\u0384\u0385\7O\2\2\u0385\u0386\7C\2\2"+ + "\u0386\u0387\7N\2\2\u0387\u0388\7[\2\2\u0388\u0389\7a\2\2\u0389\u038a"+ + "\7U\2\2\u038a\u038b\7E\2\2\u038b\u038c\7Q\2\2\u038c\u038d\7T\2\2\u038d"+ + "\u038e\7G\2\2\u038e\u038f\7a\2\2\u038f\u0390\7V\2\2\u0390\u0391\7J\2\2"+ + "\u0391\u0392\7T\2\2\u0392\u0393\7G\2\2\u0393\u0394\7U\2\2\u0394\u0395"+ + "\7J\2\2\u0395\u0396\7Q\2\2\u0396\u0397\7N\2\2\u0397\u0398\7F\2\2\u0398"+ + "\\\3\2\2\2\u0399\u039a\7E\2\2\u039a\u039b\7C\2\2\u039b\u039c\7U\2\2\u039c"+ + "\u039d\7G\2\2\u039d^\3\2\2\2\u039e\u039f\7K\2\2\u039f\u03a0\7P\2\2\u03a0"+ + "`\3\2\2\2\u03a1\u03a2\7P\2\2\u03a2\u03a3\7Q\2\2\u03a3\u03a4\7V\2\2\u03a4"+ + "b\3\2\2\2\u03a5\u03a6\7Q\2\2\u03a6\u03a7\7T\2\2\u03a7d\3\2\2\2\u03a8\u03a9"+ + "\7C\2\2\u03a9\u03aa\7P\2\2\u03aa\u03ab\7F\2\2\u03abf\3\2\2\2\u03ac\u03ad"+ + "\7Z\2\2\u03ad\u03ae\7Q\2\2\u03ae\u03af\7T\2\2\u03afh\3\2\2\2\u03b0\u03b1"+ + "\7V\2\2\u03b1\u03b2\7T\2\2\u03b2\u03b3\7W\2\2\u03b3\u03b4\7G\2\2\u03b4"+ + "j\3\2\2\2\u03b5\u03b6\7H\2\2\u03b6\u03b7\7C\2\2\u03b7\u03b8\7N\2\2\u03b8"+ + "\u03b9\7U\2\2\u03b9\u03ba\7G\2\2\u03bal\3\2\2\2\u03bb\u03bc\7T\2\2\u03bc"+ + "\u03bd\7G\2\2\u03bd\u03be\7I\2\2\u03be\u03bf\7G\2\2\u03bf\u03c0\7Z\2\2"+ + "\u03c0\u03c1\7R\2\2\u03c1n\3\2\2\2\u03c2\u03c3\7F\2\2\u03c3\u03c4\7C\2"+ + "\2\u03c4\u03c5\7V\2\2\u03c5\u03c6\7G\2\2\u03c6\u03c7\7V\2\2\u03c7\u03c8"+ + "\7K\2\2\u03c8\u03c9\7O\2\2\u03c9\u03ca\7G\2\2\u03cap\3\2\2\2\u03cb\u03cc"+ + "\7K\2\2\u03cc\u03cd\7P\2\2\u03cd\u03ce\7V\2\2\u03ce\u03cf\7G\2\2\u03cf"+ + "\u03d0\7T\2\2\u03d0\u03d1\7X\2\2\u03d1\u03d2\7C\2\2\u03d2\u03d3\7N\2\2"+ + "\u03d3r\3\2\2\2\u03d4\u03d5\7O\2\2\u03d5\u03d6\7K\2\2\u03d6\u03d7\7E\2"+ + "\2\u03d7\u03d8\7T\2\2\u03d8\u03d9\7Q\2\2\u03d9\u03da\7U\2\2\u03da\u03db"+ + "\7G\2\2\u03db\u03dc\7E\2\2\u03dc\u03dd\7Q\2\2\u03dd\u03de\7P\2\2\u03de"+ + "\u03df\7F\2\2\u03dft\3\2\2\2\u03e0\u03e1\7O\2\2\u03e1\u03e2\7K\2\2\u03e2"+ + "\u03e3\7N\2\2\u03e3\u03e4\7N\2\2\u03e4\u03e5\7K\2\2\u03e5\u03e6\7U\2\2"+ + "\u03e6\u03e7\7G\2\2\u03e7\u03e8\7E\2\2\u03e8\u03e9\7Q\2\2\u03e9\u03ea"+ + "\7P\2\2\u03ea\u03eb\7F\2\2\u03ebv\3\2\2\2\u03ec\u03ed\7U\2\2\u03ed\u03ee"+ + "\7G\2\2\u03ee\u03ef\7E\2\2\u03ef\u03f0\7Q\2\2\u03f0\u03f1\7P\2\2\u03f1"+ + "\u03f2\7F\2\2\u03f2x\3\2\2\2\u03f3\u03f4\7O\2\2\u03f4\u03f5\7K\2\2\u03f5"+ + "\u03f6\7P\2\2\u03f6\u03f7\7W\2\2\u03f7\u03f8\7V\2\2\u03f8\u03f9\7G\2\2"+ + "\u03f9z\3\2\2\2\u03fa\u03fb\7J\2\2\u03fb\u03fc\7Q\2\2\u03fc\u03fd\7W\2"+ + "\2\u03fd\u03fe\7T\2\2\u03fe|\3\2\2\2\u03ff\u0400\7F\2\2\u0400\u0401\7"+ + "C\2\2\u0401\u0402\7[\2\2\u0402~\3\2\2\2\u0403\u0404\7Y\2\2\u0404\u0405"+ + "\7G\2\2\u0405\u0406\7G\2\2\u0406\u0407\7M\2\2\u0407\u0080\3\2\2\2\u0408"+ + "\u0409\7O\2\2\u0409\u040a\7Q\2\2\u040a\u040b\7P\2\2\u040b\u040c\7V\2\2"+ + "\u040c\u040d\7J\2\2\u040d\u0082\3\2\2\2\u040e\u040f\7S\2\2\u040f\u0410"+ + "\7W\2\2\u0410\u0411\7C\2\2\u0411\u0412\7T\2\2\u0412\u0413\7V\2\2\u0413"+ + "\u0414\7G\2\2\u0414\u0415\7T\2\2\u0415\u0084\3\2\2\2\u0416\u0417\7[\2"+ + "\2\u0417\u0418\7G\2\2\u0418\u0419\7C\2\2\u0419\u041a\7T\2\2\u041a\u0086"+ + "\3\2\2\2\u041b\u041c\7U\2\2\u041c\u041d\7G\2\2\u041d\u041e\7E\2\2\u041e"+ + "\u041f\7Q\2\2\u041f\u0420\7P\2\2\u0420\u0421\7F\2\2\u0421\u0422\7a\2\2"+ + "\u0422\u0423\7O\2\2\u0423\u0424\7K\2\2\u0424\u0425\7E\2\2\u0425\u0426"+ + "\7T\2\2\u0426\u0427\7Q\2\2\u0427\u0428\7U\2\2\u0428\u0429\7G\2\2\u0429"+ + "\u042a\7E\2\2\u042a\u042b\7Q\2\2\u042b\u042c\7P\2\2\u042c\u042d\7F\2\2"+ + "\u042d\u0088\3\2\2\2\u042e\u042f\7O\2\2\u042f\u0430\7K\2\2\u0430\u0431"+ + "\7P\2\2\u0431\u0432\7W\2\2\u0432\u0433\7V\2\2\u0433\u0434\7G\2\2\u0434"+ + "\u0435\7a\2\2\u0435\u0436\7O\2\2\u0436\u0437\7K\2\2\u0437\u0438\7E\2\2"+ + "\u0438\u0439\7T\2\2\u0439\u043a\7Q\2\2\u043a\u043b\7U\2\2\u043b\u043c"+ + "\7G\2\2\u043c\u043d\7E\2\2\u043d\u043e\7Q\2\2\u043e\u043f\7P\2\2\u043f"+ + "\u0440\7F\2\2\u0440\u008a\3\2\2\2\u0441\u0442\7O\2\2\u0442\u0443\7K\2"+ + "\2\u0443\u0444\7P\2\2\u0444\u0445\7W\2\2\u0445\u0446\7V\2\2\u0446\u0447"+ + "\7G\2\2\u0447\u0448\7a\2\2\u0448\u0449\7U\2\2\u0449\u044a\7G\2\2\u044a"+ + "\u044b\7E\2\2\u044b\u044c\7Q\2\2\u044c\u044d\7P\2\2\u044d\u044e\7F\2\2"+ + "\u044e\u008c\3\2\2\2\u044f\u0450\7J\2\2\u0450\u0451\7Q\2\2\u0451\u0452"+ + "\7W\2\2\u0452\u0453\7T\2\2\u0453\u0454\7a\2\2\u0454\u0455\7O\2\2\u0455"+ + "\u0456\7K\2\2\u0456\u0457\7E\2\2\u0457\u0458\7T\2\2\u0458\u0459\7Q\2\2"+ + "\u0459\u045a\7U\2\2\u045a\u045b\7G\2\2\u045b\u045c\7E\2\2\u045c\u045d"+ + "\7Q\2\2\u045d\u045e\7P\2\2\u045e\u045f\7F\2\2\u045f\u008e\3\2\2\2\u0460"+ + "\u0461\7J\2\2\u0461\u0462\7Q\2\2\u0462\u0463\7W\2\2\u0463\u0464\7T\2\2"+ + "\u0464\u0465\7a\2\2\u0465\u0466\7U\2\2\u0466\u0467\7G\2\2\u0467\u0468"+ + "\7E\2\2\u0468\u0469\7Q\2\2\u0469\u046a\7P\2\2\u046a\u046b\7F\2\2\u046b"+ + "\u0090\3\2\2\2\u046c\u046d\7J\2\2\u046d\u046e\7Q\2\2\u046e\u046f\7W\2"+ + "\2\u046f\u0470\7T\2\2\u0470\u0471\7a\2\2\u0471\u0472\7O\2\2\u0472\u0473"+ + "\7K\2\2\u0473\u0474\7P\2\2\u0474\u0475\7W\2\2\u0475\u0476\7V\2\2\u0476"+ + "\u0477\7G\2\2\u0477\u0092\3\2\2\2\u0478\u0479\7F\2\2\u0479\u047a\7C\2"+ + "\2\u047a\u047b\7[\2\2\u047b\u047c\7a\2\2\u047c\u047d\7O\2\2\u047d\u047e"+ + "\7K\2\2\u047e\u047f\7E\2\2\u047f\u0480\7T\2\2\u0480\u0481\7Q\2\2\u0481"+ + "\u0482\7U\2\2\u0482\u0483\7G\2\2\u0483\u0484\7E\2\2\u0484\u0485\7Q\2\2"+ + "\u0485\u0486\7P\2\2\u0486\u0487\7F\2\2\u0487\u0094\3\2\2\2\u0488\u0489"+ + "\7F\2\2\u0489\u048a\7C\2\2\u048a\u048b\7[\2\2\u048b\u048c\7a\2\2\u048c"+ + "\u048d\7U\2\2\u048d\u048e\7G\2\2\u048e\u048f\7E\2\2\u048f\u0490\7Q\2\2"+ + "\u0490\u0491\7P\2\2\u0491\u0492\7F\2\2\u0492\u0096\3\2\2\2\u0493\u0494"+ + "\7F\2\2\u0494\u0495\7C\2\2\u0495\u0496\7[\2\2\u0496\u0497\7a\2\2\u0497"+ + "\u0498\7O\2\2\u0498\u0499\7K\2\2\u0499\u049a\7P\2\2\u049a\u049b\7W\2\2"+ + "\u049b\u049c\7V\2\2\u049c\u049d\7G\2\2\u049d\u0098\3\2\2\2\u049e\u049f"+ + "\7F\2\2\u049f\u04a0\7C\2\2\u04a0\u04a1\7[\2\2\u04a1\u04a2\7a\2\2\u04a2"+ + "\u04a3\7J\2\2\u04a3\u04a4\7Q\2\2\u04a4\u04a5\7W\2\2\u04a5\u04a6\7T\2\2"+ + "\u04a6\u009a\3\2\2\2\u04a7\u04a8\7[\2\2\u04a8\u04a9\7G\2\2\u04a9\u04aa"+ + "\7C\2\2\u04aa\u04ab\7T\2\2\u04ab\u04ac\7a\2\2\u04ac\u04ad\7O\2\2\u04ad"+ + "\u04ae\7Q\2\2\u04ae\u04af\7P\2\2\u04af\u04b0\7V\2\2\u04b0\u04b1\7J\2\2"+ + "\u04b1\u009c\3\2\2\2\u04b2\u04b3\7F\2\2\u04b3\u04b4\7C\2\2\u04b4\u04b5"+ + "\7V\2\2\u04b5\u04b6\7C\2\2\u04b6\u04b7\7O\2\2\u04b7\u04b8\7Q\2\2\u04b8"+ + "\u04b9\7F\2\2\u04b9\u04ba\7G\2\2\u04ba\u04bb\7N\2\2\u04bb\u009e\3\2\2"+ + "\2\u04bc\u04bd\7N\2\2\u04bd\u04be\7Q\2\2\u04be\u04bf\7Q\2\2\u04bf\u04c0"+ + "\7M\2\2\u04c0\u04c1\7W\2\2\u04c1\u04c2\7R\2\2\u04c2\u00a0\3\2\2\2\u04c3"+ + "\u04c4\7U\2\2\u04c4\u04c5\7C\2\2\u04c5\u04c6\7X\2\2\u04c6\u04c7\7G\2\2"+ + "\u04c7\u04c8\7F\2\2\u04c8\u04c9\7U\2\2\u04c9\u04ca\7G\2\2\u04ca\u04cb"+ + "\7C\2\2\u04cb\u04cc\7T\2\2\u04cc\u04cd\7E\2\2\u04cd\u04ce\7J\2\2\u04ce"+ + "\u00a2\3\2\2\2\u04cf\u04d0\7K\2\2\u04d0\u04d1\7P\2\2\u04d1\u04d2\7V\2"+ + "\2\u04d2\u00a4\3\2\2\2\u04d3\u04d4\7K\2\2\u04d4\u04d5\7P\2\2\u04d5\u04d6"+ + "\7V\2\2\u04d6\u04d7\7G\2\2\u04d7\u04d8\7I\2\2\u04d8\u04d9\7G\2\2\u04d9"+ + "\u04da\7T\2\2\u04da\u00a6\3\2\2\2\u04db\u04dc\7F\2\2\u04dc\u04dd\7Q\2"+ + "\2\u04dd\u04de\7W\2\2\u04de\u04df\7D\2\2\u04df\u04e0\7N\2\2\u04e0\u04e1"+ + "\7G\2\2\u04e1\u00a8\3\2\2\2\u04e2\u04e3\7N\2\2\u04e3\u04e4\7Q\2\2\u04e4"+ + "\u04e5\7P\2\2\u04e5\u04e6\7I\2\2\u04e6\u00aa\3\2\2\2\u04e7\u04e8\7H\2"+ + "\2\u04e8\u04e9\7N\2\2\u04e9\u04ea\7Q\2\2\u04ea\u04eb\7C\2\2\u04eb\u04ec"+ + "\7V\2\2\u04ec\u00ac\3\2\2\2\u04ed\u04ee\7U\2\2\u04ee\u04ef\7V\2\2\u04ef"+ + "\u04f0\7T\2\2\u04f0\u04f1\7K\2\2\u04f1\u04f2\7P\2\2\u04f2\u04f3\7I\2\2"+ + "\u04f3\u00ae\3\2\2\2\u04f4\u04f5\7D\2\2\u04f5\u04f6\7Q\2\2\u04f6\u04f7"+ + "\7Q\2\2\u04f7\u04f8\7N\2\2\u04f8\u04f9\7G\2\2\u04f9\u04fa\7C\2\2\u04fa"+ + "\u04fb\7P\2\2\u04fb\u00b0\3\2\2\2\u04fc\u04fd\7~\2\2\u04fd\u00b2\3\2\2"+ + "\2\u04fe\u04ff\7.\2\2\u04ff\u00b4\3\2\2\2\u0500\u0501\7\60\2\2\u0501\u00b6"+ + "\3\2\2\2\u0502\u0503\7?\2\2\u0503\u00b8\3\2\2\2\u0504\u0505\7@\2\2\u0505"+ + "\u00ba\3\2\2\2\u0506\u0507\7>\2\2\u0507\u00bc\3\2\2\2\u0508\u0509\7>\2"+ + "\2\u0509\u050a\7?\2\2\u050a\u00be\3\2\2\2\u050b\u050c\7@\2\2\u050c\u050d"+ + "\7?\2\2\u050d\u00c0\3\2\2\2\u050e\u050f\7#\2\2\u050f\u0510\7?\2\2\u0510"+ + "\u00c2\3\2\2\2\u0511\u0512\7-\2\2\u0512\u00c4\3\2\2\2\u0513\u0514\7/\2"+ + "\2\u0514\u00c6\3\2\2\2\u0515\u0516\7,\2\2\u0516\u00c8\3\2\2\2\u0517\u0518"+ + "\7\61\2\2\u0518\u00ca\3\2\2\2\u0519\u051a\7\'\2\2\u051a\u00cc\3\2\2\2"+ + "\u051b\u051c\7#\2\2\u051c\u00ce\3\2\2\2\u051d\u051e\7<\2\2\u051e\u00d0"+ + "\3\2\2\2\u051f\u0520\7*\2\2\u0520\u00d2\3\2\2\2\u0521\u0522\7+\2\2\u0522"+ + "\u00d4\3\2\2\2\u0523\u0524\7]\2\2\u0524\u00d6\3\2\2\2\u0525\u0526\7_\2"+ + "\2\u0526\u00d8\3\2\2\2\u0527\u0528\7)\2\2\u0528\u00da\3\2\2\2\u0529\u052a"+ + "\7$\2\2\u052a\u00dc\3\2\2\2\u052b\u052c\7b\2\2\u052c\u00de\3\2\2\2\u052d"+ + "\u052e\7\u0080\2\2\u052e\u00e0\3\2\2\2\u052f\u0530\7(\2\2\u0530\u00e2"+ + "\3\2\2\2\u0531\u0532\7`\2\2\u0532\u00e4\3\2\2\2\u0533\u0534\7C\2\2\u0534"+ + "\u0535\7X\2\2\u0535\u0536\7I\2\2\u0536\u00e6\3\2\2\2\u0537\u0538\7E\2"+ + "\2\u0538\u0539\7Q\2\2\u0539\u053a\7W\2\2\u053a\u053b\7P\2\2\u053b\u053c"+ + "\7V\2\2\u053c\u00e8\3\2\2\2\u053d\u053e\7F\2\2\u053e\u053f\7K\2\2\u053f"+ + "\u0540\7U\2\2\u0540\u0541\7V\2\2\u0541\u0542\7K\2\2\u0542\u0543\7P\2\2"+ + "\u0543\u0544\7E\2\2\u0544\u0545\7V\2\2\u0545\u0546\7a\2\2\u0546\u0547"+ + "\7E\2\2\u0547\u0548\7Q\2\2\u0548\u0549\7W\2\2\u0549\u054a\7P\2\2\u054a"+ + "\u054b\7V\2\2\u054b\u00ea\3\2\2\2\u054c\u054d\7G\2\2\u054d\u054e\7U\2"+ + "\2\u054e\u054f\7V\2\2\u054f\u0550\7F\2\2\u0550\u0551\7E\2\2\u0551\u00ec"+ + "\3\2\2\2\u0552\u0553\7G\2\2\u0553\u0554\7U\2\2\u0554\u0555\7V\2\2\u0555"+ + "\u0556\7F\2\2\u0556\u0557\7E\2\2\u0557\u0558\7a\2\2\u0558\u0559\7G\2\2"+ + "\u0559\u055a\7T\2\2\u055a\u055b\7T\2\2\u055b\u055c\7Q\2\2\u055c\u055d"+ + "\7T\2\2\u055d\u00ee\3\2\2\2\u055e\u055f\7O\2\2\u055f\u0560\7C\2\2\u0560"+ + "\u0561\7Z\2\2\u0561\u00f0\3\2\2\2\u0562\u0563\7O\2\2\u0563\u0564\7G\2"+ + "\2\u0564\u0565\7C\2\2\u0565\u0566\7P\2\2\u0566\u00f2\3\2\2\2\u0567\u0568"+ + "\7O\2\2\u0568\u0569\7G\2\2\u0569\u056a\7F\2\2\u056a\u056b\7K\2\2\u056b"+ + "\u056c\7C\2\2\u056c\u056d\7P\2\2\u056d\u00f4\3\2\2\2\u056e\u056f\7O\2"+ + "\2\u056f\u0570\7K\2\2\u0570\u0571\7P\2\2\u0571\u00f6\3\2\2\2\u0572\u0573"+ + "\7O\2\2\u0573\u0574\7Q\2\2\u0574\u0575\7F\2\2\u0575\u0576\7G\2\2\u0576"+ + "\u00f8\3\2\2\2\u0577\u0578\7T\2\2\u0578\u0579\7C\2\2\u0579\u057a\7P\2"+ + "\2\u057a\u057b\7I\2\2\u057b\u057c\7G\2\2\u057c\u00fa\3\2\2\2\u057d\u057e"+ + "\7U\2\2\u057e\u057f\7V\2\2\u057f\u0580\7F\2\2\u0580\u0581\7G\2\2\u0581"+ + "\u0582\7X\2\2\u0582\u00fc\3\2\2\2\u0583\u0584\7U\2\2\u0584\u0585\7V\2"+ + "\2\u0585\u0586\7F\2\2\u0586\u0587\7G\2\2\u0587\u0588\7X\2\2\u0588\u0589"+ + "\7R\2\2\u0589\u00fe\3\2\2\2\u058a\u058b\7U\2\2\u058b\u058c\7W\2\2\u058c"+ + "\u058d\7O\2\2\u058d\u0100\3\2\2\2\u058e\u058f\7U\2\2\u058f\u0590\7W\2"+ + "\2\u0590\u0591\7O\2\2\u0591\u0592\7U\2\2\u0592\u0593\7S\2\2\u0593\u0102"+ + "\3\2\2\2\u0594\u0595\7X\2\2\u0595\u0596\7C\2\2\u0596\u0597\7T\2\2\u0597"+ + "\u0598\7a\2\2\u0598\u0599\7U\2\2\u0599\u059a\7C\2\2\u059a\u059b\7O\2\2"+ + "\u059b\u059c\7R\2\2\u059c\u0104\3\2\2\2\u059d\u059e\7X\2\2\u059e\u059f"+ + "\7C\2\2\u059f\u05a0\7T\2\2\u05a0\u05a1\7a\2\2\u05a1\u05a2\7R\2\2\u05a2"+ + "\u05a3\7Q\2\2\u05a3\u05a4\7R\2\2\u05a4\u0106\3\2\2\2\u05a5\u05a6\7U\2"+ + "\2\u05a6\u05a7\7V\2\2\u05a7\u05a8\7F\2\2\u05a8\u05a9\7F\2\2\u05a9\u05aa"+ + "\7G\2\2\u05aa\u05ab\7X\2\2\u05ab\u05ac\7a\2\2\u05ac\u05ad\7U\2\2\u05ad"+ + "\u05ae\7C\2\2\u05ae\u05af\7O\2\2\u05af\u05b0\7R\2\2\u05b0\u0108\3\2\2"+ + "\2\u05b1\u05b2\7U\2\2\u05b2\u05b3\7V\2\2\u05b3\u05b4\7F\2\2\u05b4\u05b5"+ + "\7F\2\2\u05b5\u05b6\7G\2\2\u05b6\u05b7\7X\2\2\u05b7\u05b8\7a\2\2\u05b8"+ + "\u05b9\7R\2\2\u05b9\u05ba\7Q\2\2\u05ba\u05bb\7R\2\2\u05bb\u010a\3\2\2"+ + "\2\u05bc\u05bd\7R\2\2\u05bd\u05be\7G\2\2\u05be\u05bf\7T\2\2\u05bf\u05c0"+ + "\7E\2\2\u05c0\u05c1\7G\2\2\u05c1\u05c2\7P\2\2\u05c2\u05c3\7V\2\2\u05c3"+ + "\u05c4\7K\2\2\u05c4\u05c5\7N\2\2\u05c5\u05c6\7G\2\2\u05c6\u010c\3\2\2"+ + "\2\u05c7\u05c8\7H\2\2\u05c8\u05c9\7K\2\2\u05c9\u05ca\7T\2\2\u05ca\u05cb"+ + "\7U\2\2\u05cb\u05cc\7V\2\2\u05cc\u010e\3\2\2\2\u05cd\u05ce\7N\2\2\u05ce"+ + "\u05cf\7C\2\2\u05cf\u05d0\7U\2\2\u05d0\u05d1\7V\2\2\u05d1\u0110\3\2\2"+ + "\2\u05d2\u05d3\7N\2\2\u05d3\u05d4\7K\2\2\u05d4\u05d5\7U\2\2\u05d5\u05d6"+ + "\7V\2\2\u05d6\u0112\3\2\2\2\u05d7\u05d8\7X\2\2\u05d8\u05d9\7C\2\2\u05d9"+ + "\u05da\7N\2\2\u05da\u05db\7W\2\2\u05db\u05dc\7G\2\2\u05dc\u05dd\7U\2\2"+ + "\u05dd\u0114\3\2\2\2\u05de\u05df\7G\2\2\u05df\u05e0\7C\2\2\u05e0\u05e1"+ + "\7T\2\2\u05e1\u05e2\7N\2\2\u05e2\u05e3\7K\2\2\u05e3\u05e4\7G\2\2\u05e4"+ + "\u05e5\7U\2\2\u05e5\u05e6\7V\2\2\u05e6\u0116\3\2\2\2\u05e7\u05e8\7G\2"+ + "\2\u05e8\u05e9\7C\2\2\u05e9\u05ea\7T\2\2\u05ea\u05eb\7N\2\2\u05eb\u05ec"+ + "\7K\2\2\u05ec\u05ed\7G\2\2\u05ed\u05ee\7U\2\2\u05ee\u05ef\7V\2\2\u05ef"+ + "\u05f0\7a\2\2\u05f0\u05f1\7V\2\2\u05f1\u05f2\7K\2\2\u05f2\u05f3\7O\2\2"+ + "\u05f3\u05f4\7G\2\2\u05f4\u0118\3\2\2\2\u05f5\u05f6\7N\2\2\u05f6\u05f7"+ + "\7C\2\2\u05f7\u05f8\7V\2\2\u05f8\u05f9\7G\2\2\u05f9\u05fa\7U\2\2\u05fa"+ + "\u05fb\7V\2\2\u05fb\u011a\3\2\2\2\u05fc\u05fd\7N\2\2\u05fd\u05fe\7C\2"+ + "\2\u05fe\u05ff\7V\2\2\u05ff\u0600\7G\2\2\u0600\u0601\7U\2\2\u0601\u0602"+ + "\7V\2\2\u0602\u0603\7a\2\2\u0603\u0604\7V\2\2\u0604\u0605\7K\2\2\u0605"+ + "\u0606\7O\2\2\u0606\u0607\7G\2\2\u0607\u011c\3\2\2\2\u0608\u0609\7R\2"+ + "\2\u0609\u060a\7G\2\2\u060a\u060b\7T\2\2\u060b\u060c\7a\2\2\u060c\u060d"+ + "\7F\2\2\u060d\u060e\7C\2\2\u060e\u060f\7[\2\2\u060f\u011e\3\2\2\2\u0610"+ + "\u0611\7R\2\2\u0611\u0612\7G\2\2\u0612\u0613\7T\2\2\u0613\u0614\7a\2\2"+ + "\u0614\u0615\7J\2\2\u0615\u0616\7Q\2\2\u0616\u0617\7W\2\2\u0617\u0618"+ + "\7T\2\2\u0618\u0120\3\2\2\2\u0619\u061a\7R\2\2\u061a\u061b\7G\2\2\u061b"+ + "\u061c\7T\2\2\u061c\u061d\7a\2\2\u061d\u061e\7O\2\2\u061e\u061f\7K\2\2"+ + "\u061f\u0620\7P\2\2\u0620\u0621\7W\2\2\u0621\u0622\7V\2\2\u0622\u0623"+ + "\7G\2\2\u0623\u0122\3\2\2\2\u0624\u0625\7R\2\2\u0625\u0626\7G\2\2\u0626"+ + "\u0627\7T\2\2\u0627\u0628\7a\2\2\u0628\u0629\7U\2\2\u0629\u062a\7G\2\2"+ + "\u062a\u062b\7E\2\2\u062b\u062c\7Q\2\2\u062c\u062d\7P\2\2\u062d\u062e"+ + "\7F\2\2\u062e\u0124\3\2\2\2\u062f\u0630\7T\2\2\u0630\u0631\7C\2\2\u0631"+ + "\u0632\7V\2\2\u0632\u0633\7G\2\2\u0633\u0126\3\2\2\2\u0634\u0635\7U\2"+ + "\2\u0635\u0636\7R\2\2\u0636\u0637\7C\2\2\u0637\u0638\7T\2\2\u0638\u0639"+ + "\7M\2\2\u0639\u063a\7N\2\2\u063a\u063b\7K\2\2\u063b\u063c\7P\2\2\u063c"+ + "\u063d\7G\2\2\u063d\u0128\3\2\2\2\u063e\u063f\7E\2\2\u063f\u012a\3\2\2"+ + "\2\u0640\u0641\7F\2\2\u0641\u0642\7E\2\2\u0642\u012c\3\2\2\2\u0643\u0644"+ + "\7C\2\2\u0644\u0645\7D\2\2\u0645\u0646\7U\2\2\u0646\u012e\3\2\2\2\u0647"+ + "\u0648\7E\2\2\u0648\u0649\7G\2\2\u0649\u064a\7K\2\2\u064a\u064b\7N\2\2"+ + "\u064b\u0130\3\2\2\2\u064c\u064d\7E\2\2\u064d\u064e\7G\2\2\u064e\u064f"+ + "\7K\2\2\u064f\u0650\7N\2\2\u0650\u0651\7K\2\2\u0651\u0652\7P\2\2\u0652"+ + "\u0653\7I\2\2\u0653\u0132\3\2\2\2\u0654\u0655\7E\2\2\u0655\u0656\7Q\2"+ + "\2\u0656\u0657\7P\2\2\u0657\u0658\7X\2\2\u0658\u0134\3\2\2\2\u0659\u065a"+ + "\7E\2\2\u065a\u065b\7T\2\2\u065b\u065c\7E\2\2\u065c\u065d\7\65\2\2\u065d"+ + "\u065e\7\64\2\2\u065e\u0136\3\2\2\2\u065f\u0660\7G\2\2\u0660\u0138\3\2"+ + "\2\2\u0661\u0662\7G\2\2\u0662\u0663\7Z\2\2\u0663\u0664\7R\2\2\u0664\u013a"+ + "\3\2\2\2\u0665\u0666\7H\2\2\u0666\u0667\7N\2\2\u0667\u0668\7Q\2\2\u0668"+ + "\u0669\7Q\2\2\u0669\u066a\7T\2\2\u066a\u013c\3\2\2\2\u066b\u066c\7N\2"+ + "\2\u066c\u066d\7P\2\2\u066d\u013e\3\2\2\2\u066e\u066f\7N\2\2\u066f\u0670"+ + "\7Q\2\2\u0670\u0671\7I\2\2\u0671\u0140\3\2\2\2\u0672\u0673\7N\2\2\u0673"+ + "\u0674\7Q\2\2\u0674\u0675\7I\2\2\u0675\u0676\7\63\2\2\u0676\u0677\7\62"+ + "\2\2\u0677\u0142\3\2\2\2\u0678\u0679\7N\2\2\u0679\u067a\7Q\2\2\u067a\u067b"+ + "\7I\2\2\u067b\u067c\7\64\2\2\u067c\u0144\3\2\2\2\u067d\u067e\7O\2\2\u067e"+ + "\u067f\7Q\2\2\u067f\u0680\7F\2\2\u0680\u0146\3\2\2\2\u0681\u0682\7R\2"+ + "\2\u0682\u0683\7K\2\2\u0683\u0148\3\2\2\2\u0684\u0685\7R\2\2\u0685\u0686"+ + "\7Q\2\2\u0686\u0687\7Y\2\2\u0687\u014a\3\2\2\2\u0688\u0689\7R\2\2\u0689"+ + "\u068a\7Q\2\2\u068a\u068b\7Y\2\2\u068b\u068c\7G\2\2\u068c\u068d\7T\2\2"+ + "\u068d\u014c\3\2\2\2\u068e\u068f\7T\2\2\u068f\u0690\7C\2\2\u0690\u0691"+ + "\7P\2\2\u0691\u0692\7F\2\2\u0692\u014e\3\2\2\2\u0693\u0694\7T\2\2\u0694"+ + "\u0695\7Q\2\2\u0695\u0696\7W\2\2\u0696\u0697\7P\2\2\u0697\u0698\7F\2\2"+ + "\u0698\u0150\3\2\2\2\u0699\u069a\7U\2\2\u069a\u069b\7K\2\2\u069b\u069c"+ + "\7I\2\2\u069c\u069d\7P\2\2\u069d\u0152\3\2\2\2\u069e\u069f\7U\2\2\u069f"+ + "\u06a0\7S\2\2\u06a0\u06a1\7T\2\2\u06a1\u06a2\7V\2\2\u06a2\u0154\3\2\2"+ + "\2\u06a3\u06a4\7V\2\2\u06a4\u06a5\7T\2\2\u06a5\u06a6\7W\2\2\u06a6\u06a7"+ + "\7P\2\2\u06a7\u06a8\7E\2\2\u06a8\u06a9\7C\2\2\u06a9\u06aa\7V\2\2\u06aa"+ + "\u06ab\7G\2\2\u06ab\u0156\3\2\2\2\u06ac\u06ad\7C\2\2\u06ad\u06ae\7E\2"+ + "\2\u06ae\u06af\7Q\2\2\u06af\u06b0\7U\2\2\u06b0\u0158\3\2\2\2\u06b1\u06b2"+ + "\7C\2\2\u06b2\u06b3\7U\2\2\u06b3\u06b4\7K\2\2\u06b4\u06b5\7P\2\2\u06b5"+ + "\u015a\3\2\2\2\u06b6\u06b7\7C\2\2\u06b7\u06b8\7V\2\2\u06b8\u06b9\7C\2"+ + "\2\u06b9\u06ba\7P\2\2\u06ba\u015c\3\2\2\2\u06bb\u06bc\7C\2\2\u06bc\u06bd"+ + "\7V\2\2\u06bd\u06be\7C\2\2\u06be\u06bf\7P\2\2\u06bf\u06c0\7\64\2\2\u06c0"+ + "\u015e\3\2\2\2\u06c1\u06c2\7E\2\2\u06c2\u06c3\7Q\2\2\u06c3\u06c4\7U\2"+ + "\2\u06c4\u0160\3\2\2\2\u06c5\u06c6\7E\2\2\u06c6\u06c7\7Q\2\2\u06c7\u06c8"+ + "\7V\2\2\u06c8\u0162\3\2\2\2\u06c9\u06ca\7F\2\2\u06ca\u06cb\7G\2\2\u06cb"+ + "\u06cc\7I\2\2\u06cc\u06cd\7T\2\2\u06cd\u06ce\7G\2\2\u06ce\u06cf\7G\2\2"+ + "\u06cf\u06d0\7U\2\2\u06d0\u0164\3\2\2\2\u06d1\u06d2\7T\2\2\u06d2\u06d3"+ + "\7C\2\2\u06d3\u06d4\7F\2\2\u06d4\u06d5\7K\2\2\u06d5\u06d6\7C\2\2\u06d6"+ + "\u06d7\7P\2\2\u06d7\u06d8\7U\2\2\u06d8\u0166\3\2\2\2\u06d9\u06da\7U\2"+ + "\2\u06da\u06db\7K\2\2\u06db\u06dc\7P\2\2\u06dc\u0168\3\2\2\2\u06dd\u06de"+ + "\7V\2\2\u06de\u06df\7C\2\2\u06df\u06e0\7P\2\2\u06e0\u016a\3\2\2\2\u06e1"+ + "\u06e2\7C\2\2\u06e2\u06e3\7F\2\2\u06e3\u06e4\7F\2\2\u06e4\u06e5\7F\2\2"+ + "\u06e5\u06e6\7C\2\2\u06e6\u06e7\7V\2\2\u06e7\u06e8\7G\2\2\u06e8\u016c"+ + "\3\2\2\2\u06e9\u06ea\7F\2\2\u06ea\u06eb\7C\2\2\u06eb\u06ec\7V\2\2\u06ec"+ + "\u06ed\7G\2\2\u06ed\u016e\3\2\2\2\u06ee\u06ef\7F\2\2\u06ef\u06f0\7C\2"+ + "\2\u06f0\u06f1\7V\2\2\u06f1\u06f2\7G\2\2\u06f2\u06f3\7a\2\2\u06f3\u06f4"+ + "\7C\2\2\u06f4\u06f5\7F\2\2\u06f5\u06f6\7F\2\2\u06f6\u0170\3\2\2\2\u06f7"+ + "\u06f8\7F\2\2\u06f8\u06f9\7C\2\2\u06f9\u06fa\7V\2\2\u06fa\u06fb\7G\2\2"+ + "\u06fb\u06fc\7a\2\2\u06fc\u06fd\7U\2\2\u06fd\u06fe\7W\2\2\u06fe\u06ff"+ + "\7D\2\2\u06ff\u0172\3\2\2\2\u0700\u0701\7F\2\2\u0701\u0702\7C\2\2\u0702"+ + "\u0703\7[\2\2\u0703\u0704\7Q\2\2\u0704\u0705\7H\2\2\u0705\u0706\7O\2\2"+ + "\u0706\u0707\7Q\2\2\u0707\u0708\7P\2\2\u0708\u0709\7V\2\2\u0709\u070a"+ + "\7J\2\2\u070a\u0174\3\2\2\2\u070b\u070c\7F\2\2\u070c\u070d\7C\2\2\u070d"+ + "\u070e\7[\2\2\u070e\u070f\7Q\2\2\u070f\u0710\7H\2\2\u0710\u0711\7Y\2\2"+ + "\u0711\u0712\7G\2\2\u0712\u0713\7G\2\2\u0713\u0714\7M\2\2\u0714\u0176"+ + "\3\2\2\2\u0715\u0716\7F\2\2\u0716\u0717\7C\2\2\u0717\u0718\7[\2\2\u0718"+ + "\u0719\7Q\2\2\u0719\u071a\7H\2\2\u071a\u071b\7[\2\2\u071b\u071c\7G\2\2"+ + "\u071c\u071d\7C\2\2\u071d\u071e\7T\2\2\u071e\u0178\3\2\2\2\u071f\u0720"+ + "\7F\2\2\u0720\u0721\7C\2\2\u0721\u0722\7[\2\2\u0722\u0723\7P\2\2\u0723"+ + "\u0724\7C\2\2\u0724\u0725\7O\2\2\u0725\u0726\7G\2\2\u0726\u017a\3\2\2"+ + "\2\u0727\u0728\7H\2\2\u0728\u0729\7T\2\2\u0729\u072a\7Q\2\2\u072a\u072b"+ + "\7O\2\2\u072b\u072c\7a\2\2\u072c\u072d\7F\2\2\u072d\u072e\7C\2\2\u072e"+ + "\u072f\7[\2\2\u072f\u0730\7U\2\2\u0730\u017c\3\2\2\2\u0731\u0732\7O\2"+ + "\2\u0732\u0733\7Q\2\2\u0733\u0734\7P\2\2\u0734\u0735\7V\2\2\u0735\u0736"+ + "\7J\2\2\u0736\u0737\7P\2\2\u0737\u0738\7C\2\2\u0738\u0739\7O\2\2\u0739"+ + "\u073a\7G\2\2\u073a\u017e\3\2\2\2\u073b\u073c\7U\2\2\u073c\u073d\7W\2"+ + "\2\u073d\u073e\7D\2\2\u073e\u073f\7F\2\2\u073f\u0740\7C\2\2\u0740\u0741"+ + "\7V\2\2\u0741\u0742\7G\2\2\u0742\u0180\3\2\2\2\u0743\u0744\7V\2\2\u0744"+ + "\u0745\7K\2\2\u0745\u0746\7O\2\2\u0746\u0747\7G\2\2\u0747\u0182\3\2\2"+ + "\2\u0748\u0749\7V\2\2\u0749\u074a\7K\2\2\u074a\u074b\7O\2\2\u074b\u074c"+ + "\7G\2\2\u074c\u074d\7a\2\2\u074d\u074e\7V\2\2\u074e\u074f\7Q\2\2\u074f"+ + "\u0750\7a\2\2\u0750\u0751\7U\2\2\u0751\u0752\7G\2\2\u0752\u0753\7E\2\2"+ + "\u0753\u0184\3\2\2\2\u0754\u0755\7V\2\2\u0755\u0756\7K\2\2\u0756\u0757"+ + "\7O\2\2\u0757\u0758\7G\2\2\u0758\u0759\7U\2\2\u0759\u075a\7V\2\2\u075a"+ + "\u075b\7C\2\2\u075b\u075c\7O\2\2\u075c\u075d\7R\2\2\u075d\u0186\3\2\2"+ + "\2\u075e\u075f\7F\2\2\u075f\u0760\7C\2\2\u0760\u0761\7V\2\2\u0761\u0762"+ + "\7G\2\2\u0762\u0763\7a\2\2\u0763\u0764\7H\2\2\u0764\u0765\7Q\2\2\u0765"+ + "\u0766\7T\2\2\u0766\u0767\7O\2\2\u0767\u0768\7C\2\2\u0768\u0769\7V\2\2"+ + "\u0769\u0188\3\2\2\2\u076a\u076b\7V\2\2\u076b\u076c\7Q\2\2\u076c\u076d"+ + "\7a\2\2\u076d\u076e\7F\2\2\u076e\u076f\7C\2\2\u076f\u0770\7[\2\2\u0770"+ + "\u0771\7U\2\2\u0771\u018a\3\2\2\2\u0772\u0773\7U\2\2\u0773\u0774\7W\2"+ + "\2\u0774\u0775\7D\2\2\u0775\u0776\7U\2\2\u0776\u0777\7V\2\2\u0777\u0778"+ + "\7T\2\2\u0778\u018c\3\2\2\2\u0779\u077a\7U\2\2\u077a\u077b\7W\2\2\u077b"+ + "\u077c\7D\2\2\u077c\u077d\7U\2\2\u077d\u077e\7V\2\2\u077e\u077f\7T\2\2"+ + "\u077f\u0780\7K\2\2\u0780\u0781\7P\2\2\u0781\u0782\7I\2\2\u0782\u018e"+ + "\3\2\2\2\u0783\u0784\7N\2\2\u0784\u0785\7V\2\2\u0785\u0786\7T\2\2\u0786"+ + "\u0787\7K\2\2\u0787\u0788\7O\2\2\u0788\u0190\3\2\2\2\u0789\u078a\7T\2"+ + "\2\u078a\u078b\7V\2\2\u078b\u078c\7T\2\2\u078c\u078d\7K\2\2\u078d\u078e"+ + "\7O\2\2\u078e\u0192\3\2\2\2\u078f\u0790\7V\2\2\u0790\u0791\7T\2\2\u0791"+ + "\u0792\7K\2\2\u0792\u0793\7O\2\2\u0793\u0194\3\2\2\2\u0794\u0795\7V\2"+ + "\2\u0795\u0796\7Q\2\2\u0796\u0196\3\2\2\2\u0797\u0798\7N\2\2\u0798\u0799"+ + "\7Q\2\2\u0799\u079a\7Y\2\2\u079a\u079b\7G\2\2\u079b\u079c\7T\2\2\u079c"+ + "\u0198\3\2\2\2\u079d\u079e\7W\2\2\u079e\u079f\7R\2\2\u079f\u07a0\7R\2"+ + "\2\u07a0\u07a1\7G\2\2\u07a1\u07a2\7T\2\2\u07a2\u019a\3\2\2\2\u07a3\u07a4"+ + "\7E\2\2\u07a4\u07a5\7Q\2\2\u07a5\u07a6\7P\2\2\u07a6\u07a7\7E\2\2\u07a7"+ + "\u07a8\7C\2\2\u07a8\u07a9\7V\2\2\u07a9\u019c\3\2\2\2\u07aa\u07ab\7E\2"+ + "\2\u07ab\u07ac\7Q\2\2\u07ac\u07ad\7P\2\2\u07ad\u07ae\7E\2\2\u07ae\u07af"+ + "\7C\2\2\u07af\u07b0\7V\2\2\u07b0\u07b1\7a\2\2\u07b1\u07b2\7Y\2\2\u07b2"+ + "\u07b3\7U\2\2\u07b3\u019e\3\2\2\2\u07b4\u07b5\7N\2\2\u07b5\u07b6\7G\2"+ + "\2\u07b6\u07b7\7P\2\2\u07b7\u07b8\7I\2\2\u07b8\u07b9\7V\2\2\u07b9\u07ba"+ + "\7J\2\2\u07ba\u01a0\3\2\2\2\u07bb\u07bc\7U\2\2\u07bc\u07bd\7V\2\2\u07bd"+ + "\u07be\7T\2\2\u07be\u07bf\7E\2\2\u07bf\u07c0\7O\2\2\u07c0\u07c1\7R\2\2"+ + "\u07c1\u01a2\3\2\2\2\u07c2\u07c3\7T\2\2\u07c3\u07c4\7K\2\2\u07c4\u07c5"+ + "\7I\2\2\u07c5\u07c6\7J\2\2\u07c6\u07c7\7V\2\2\u07c7\u01a4\3\2\2\2\u07c8"+ + "\u07c9\7N\2\2\u07c9\u07ca\7G\2\2\u07ca\u07cb\7H\2\2\u07cb\u07cc\7V\2\2"+ + "\u07cc\u01a6\3\2\2\2\u07cd\u07ce\7C\2\2\u07ce\u07cf\7U\2\2\u07cf\u07d0"+ + "\7E\2\2\u07d0\u07d1\7K\2\2\u07d1\u07d2\7K\2\2\u07d2\u01a8\3\2\2\2\u07d3"+ + "\u07d4\7N\2\2\u07d4\u07d5\7Q\2\2\u07d5\u07d6\7E\2\2\u07d6\u07d7\7C\2\2"+ + "\u07d7\u07d8\7V\2\2\u07d8\u07d9\7G\2\2\u07d9\u01aa\3\2\2\2\u07da\u07db"+ + "\7T\2\2\u07db\u07dc\7G\2\2\u07dc\u07dd\7R\2\2\u07dd\u07de\7N\2\2\u07de"+ + "\u07df\7C\2\2\u07df\u07e0\7E\2\2\u07e0\u07e1\7G\2\2\u07e1\u01ac\3\2\2"+ + "\2\u07e2\u07e3\7E\2\2\u07e3\u07e4\7C\2\2\u07e4\u07e5\7U\2\2\u07e5\u07e6"+ + "\7V\2\2\u07e6\u01ae\3\2\2\2\u07e7\u07e8\7N\2\2\u07e8\u07e9\7K\2\2\u07e9"+ + "\u07ea\7M\2\2\u07ea\u07eb\7G\2\2\u07eb\u01b0\3\2\2\2\u07ec\u07ed\7K\2"+ + "\2\u07ed\u07ee\7U\2\2\u07ee\u07ef\7P\2\2\u07ef\u07f0\7W\2\2\u07f0\u07f1"+ + "\7N\2\2\u07f1\u07f2\7N\2\2\u07f2\u01b2\3\2\2\2\u07f3\u07f4\7K\2\2\u07f4"+ + "\u07f5\7U\2\2\u07f5\u07f6\7P\2\2\u07f6\u07f7\7Q\2\2\u07f7\u07f8\7V\2\2"+ + "\u07f8\u07f9\7P\2\2\u07f9\u07fa\7W\2\2\u07fa\u07fb\7N\2\2\u07fb\u07fc"+ + "\7N\2\2\u07fc\u01b4\3\2\2\2\u07fd\u07fe\7K\2\2\u07fe\u07ff\7H\2\2\u07ff"+ + "\u0800\7P\2\2\u0800\u0801\7W\2\2\u0801\u0802\7N\2\2\u0802\u0803\7N\2\2"+ + "\u0803\u01b6\3\2\2\2\u0804\u0805\7P\2\2\u0805\u0806\7W\2\2\u0806\u0807"+ + "\7N\2\2\u0807\u0808\7N\2\2\u0808\u0809\7K\2\2\u0809\u080a\7H\2\2\u080a"+ + "\u01b8\3\2\2\2\u080b\u080c\7K\2\2\u080c\u080d\7H\2\2\u080d\u01ba\3\2\2"+ + "\2\u080e\u080f\7O\2\2\u080f\u0810\7C\2\2\u0810\u0811\7V\2\2\u0811\u0812"+ + "\7E\2\2\u0812\u0813\7J\2\2\u0813\u01bc\3\2\2\2\u0814\u0815\7O\2\2\u0815"+ + "\u0816\7C\2\2\u0816\u0817\7V\2\2\u0817\u0818\7E\2\2\u0818\u0819\7J\2\2"+ + "\u0819\u081a\7a\2\2\u081a\u081b\7R\2\2\u081b\u081c\7J\2\2\u081c\u081d"+ + "\7T\2\2\u081d\u081e\7C\2\2\u081e\u081f\7U\2\2\u081f\u0820\7G\2\2\u0820"+ + "\u01be\3\2\2\2\u0821\u0822\7U\2\2\u0822\u0823\7K\2\2\u0823\u0824\7O\2"+ + "\2\u0824\u0825\7R\2\2\u0825\u0826\7N\2\2\u0826\u0827\7G\2\2\u0827\u0828"+ + "\7a\2\2\u0828\u0829\7S\2\2\u0829\u082a\7W\2\2\u082a\u082b\7G\2\2\u082b"+ + "\u082c\7T\2\2\u082c\u082d\7[\2\2\u082d\u082e\7a\2\2\u082e\u082f\7U\2\2"+ + "\u082f\u0830\7V\2\2\u0830\u0831\7T\2\2\u0831\u0832\7K\2\2\u0832\u0833"+ + "\7P\2\2\u0833\u0834\7I\2\2\u0834\u01c0\3\2\2\2\u0835\u0836\7C\2\2\u0836"+ + "\u0837\7N\2\2\u0837\u0838\7N\2\2\u0838\u0839\7Q\2\2\u0839\u083a\7Y\2\2"+ + "\u083a\u083b\7a\2\2\u083b\u083c\7N\2\2\u083c\u083d\7G\2\2\u083d\u083e"+ + "\7C\2\2\u083e\u083f\7F\2\2\u083f\u0840\7K\2\2\u0840\u0841\7P\2\2\u0841"+ + "\u0842\7I\2\2\u0842\u0843\7a\2\2\u0843\u0844\7Y\2\2\u0844\u0845\7K\2\2"+ + "\u0845\u0846\7N\2\2\u0846\u0847\7F\2\2\u0847\u0848\7E\2\2\u0848\u0849"+ + "\7C\2\2\u0849\u084a\7T\2\2\u084a\u084b\7F\2\2\u084b\u01c2\3\2\2\2\u084c"+ + "\u084d\7C\2\2\u084d\u084e\7P\2\2\u084e\u084f\7C\2\2\u084f\u0850\7N\2\2"+ + "\u0850\u0851\7[\2\2\u0851\u0852\7\\\2\2\u0852\u0853\7G\2\2\u0853\u0854"+ + "\7a\2\2\u0854\u0855\7Y\2\2\u0855\u0856\7K\2\2\u0856\u0857\7N\2\2\u0857"+ + "\u0858\7F\2\2\u0858\u0859\7E\2\2\u0859\u085a\7C\2\2\u085a\u085b\7T\2\2"+ + "\u085b\u085c\7F\2\2\u085c\u01c4\3\2\2\2\u085d\u085e\7C\2\2\u085e\u085f"+ + "\7P\2\2\u085f\u0860\7C\2\2\u0860\u0861\7N\2\2\u0861\u0862\7[\2\2\u0862"+ + "\u0863\7\\\2\2\u0863\u0864\7G\2\2\u0864\u0865\7T\2\2\u0865\u01c6\3\2\2"+ + "\2\u0866\u0867\7C\2\2\u0867\u0868\7W\2\2\u0868\u0869\7V\2\2\u0869\u086a"+ + "\7Q\2\2\u086a\u086b\7a\2\2\u086b\u086c\7I\2\2\u086c\u086d\7G\2\2\u086d"+ + "\u086e\7P\2\2\u086e\u086f\7G\2\2\u086f\u0870\7T\2\2\u0870\u0871\7C\2\2"+ + "\u0871\u0872\7V\2\2\u0872\u0873\7G\2\2\u0873\u0874\7a\2\2\u0874\u0875"+ + "\7U\2\2\u0875\u0876\7[\2\2\u0876\u0877\7P\2\2\u0877\u0878\7Q\2\2\u0878"+ + "\u0879\7P\2\2\u0879\u087a\7[\2\2\u087a\u087b\7O\2\2\u087b\u087c\7U\2\2"+ + "\u087c\u087d\7a\2\2\u087d\u087e\7R\2\2\u087e\u087f\7J\2\2\u087f\u0880"+ + "\7T\2\2\u0880\u0881\7C\2\2\u0881\u0882\7U\2\2\u0882\u0883\7G\2\2\u0883"+ + "\u0884\7a\2\2\u0884\u0885\7S\2\2\u0885\u0886\7W\2\2\u0886\u0887\7G\2\2"+ + "\u0887\u0888\7T\2\2\u0888\u0889\7[\2\2\u0889\u01c8\3\2\2\2\u088a\u088b"+ + "\7D\2\2\u088b\u088c\7Q\2\2\u088c\u088d\7Q\2\2\u088d\u088e\7U\2\2\u088e"+ + "\u088f\7V\2\2\u088f\u01ca\3\2\2\2\u0890\u0891\7E\2\2\u0891\u0892\7W\2"+ + "\2\u0892\u0893\7V\2\2\u0893\u0894\7Q\2\2\u0894\u0895\7H\2\2\u0895\u0896"+ + "\7H\2\2\u0896\u0897\7a\2\2\u0897\u0898\7H\2\2\u0898\u0899\7T\2\2\u0899"+ + "\u089a\7G\2\2\u089a\u089b\7S\2\2\u089b\u089c\7W\2\2\u089c\u089d\7G\2\2"+ + "\u089d\u089e\7P\2\2\u089e\u089f\7E\2\2\u089f\u08a0\7[\2\2\u08a0\u01cc"+ + "\3\2\2\2\u08a1\u08a2\7F\2\2\u08a2\u08a3\7G\2\2\u08a3\u08a4\7H\2\2\u08a4"+ + "\u08a5\7C\2\2\u08a5\u08a6\7W\2\2\u08a6\u08a7\7N\2\2\u08a7\u08a8\7V\2\2"+ + "\u08a8\u08a9\7a\2\2\u08a9\u08aa\7H\2\2\u08aa\u08ab\7K\2\2\u08ab\u08ac"+ + "\7G\2\2\u08ac\u08ad\7N\2\2\u08ad\u08ae\7F\2\2\u08ae\u01ce\3\2\2\2\u08af"+ + "\u08b0\7F\2\2\u08b0\u08b1\7G\2\2\u08b1\u08b2\7H\2\2\u08b2\u08b3\7C\2\2"+ + "\u08b3\u08b4\7W\2\2\u08b4\u08b5\7N\2\2\u08b5\u08b6\7V\2\2\u08b6\u08b7"+ + "\7a\2\2\u08b7\u08b8\7Q\2\2\u08b8\u08b9\7R\2\2\u08b9\u08ba\7G\2\2\u08ba"+ + "\u08bb\7T\2\2\u08bb\u08bc\7C\2\2\u08bc\u08bd\7V\2\2\u08bd\u08be\7Q\2\2"+ + "\u08be\u08bf\7T\2\2\u08bf\u01d0\3\2\2\2\u08c0\u08c1\7G\2\2\u08c1\u08c2"+ + "\7P\2\2\u08c2\u08c3\7C\2\2\u08c3\u08c4\7D\2\2\u08c4\u08c5\7N\2\2\u08c5"+ + "\u08c6\7G\2\2\u08c6\u08c7\7a\2\2\u08c7\u08c8\7R\2\2\u08c8\u08c9\7Q\2\2"+ + "\u08c9\u08ca\7U\2\2\u08ca\u08cb\7K\2\2\u08cb\u08cc\7V\2\2\u08cc\u08cd"+ + "\7K\2\2\u08cd\u08ce\7Q\2\2\u08ce\u08cf\7P\2\2\u08cf\u08d0\7a\2\2\u08d0"+ + "\u08d1\7K\2\2\u08d1\u08d2\7P\2\2\u08d2\u08d3\7E\2\2\u08d3\u08d4\7T\2\2"+ + "\u08d4\u08d5\7G\2\2\u08d5\u08d6\7O\2\2\u08d6\u08d7\7G\2\2\u08d7\u08d8"+ + "\7P\2\2\u08d8\u08d9\7V\2\2\u08d9\u08da\7U\2\2\u08da\u01d2\3\2\2\2\u08db"+ + "\u08dc\7H\2\2\u08dc\u08dd\7N\2\2\u08dd\u08de\7C\2\2\u08de\u08df\7I\2\2"+ + "\u08df\u08e0\7U\2\2\u08e0\u01d4\3\2\2\2\u08e1\u08e2\7H\2\2\u08e2\u08e3"+ + "\7W\2\2\u08e3\u08e4\7\\\2\2\u08e4\u08e5\7\\\2\2\u08e5\u08e6\7[\2\2\u08e6"+ + "\u08e7\7a\2\2\u08e7\u08e8\7O\2\2\u08e8\u08e9\7C\2\2\u08e9\u08ea\7Z\2\2"+ + "\u08ea\u08eb\7a\2\2\u08eb\u08ec\7G\2\2\u08ec\u08ed\7Z\2\2\u08ed\u08ee"+ + "\7R\2\2\u08ee\u08ef\7C\2\2\u08ef\u08f0\7P\2\2\u08f0\u08f1\7U\2\2\u08f1"+ + "\u08f2\7K\2\2\u08f2\u08f3\7Q\2\2\u08f3\u08f4\7P\2\2\u08f4\u08f5\7U\2\2"+ + "\u08f5\u01d6\3\2\2\2\u08f6\u08f7\7H\2\2\u08f7\u08f8\7W\2\2\u08f8\u08f9"+ + "\7\\\2\2\u08f9\u08fa\7\\\2\2\u08fa\u08fb\7[\2\2\u08fb\u08fc\7a\2\2\u08fc"+ + "\u08fd\7R\2\2\u08fd\u08fe\7T\2\2\u08fe\u08ff\7G\2\2\u08ff\u0900\7H\2\2"+ + "\u0900\u0901\7K\2\2\u0901\u0902\7Z\2\2\u0902\u0903\7a\2\2\u0903\u0904"+ + "\7N\2\2\u0904\u0905\7G\2\2\u0905\u0906\7P\2\2\u0906\u0907\7I\2\2\u0907"+ + "\u0908\7V\2\2\u0908\u0909\7J\2\2\u0909\u01d8\3\2\2\2\u090a\u090b\7H\2"+ + "\2\u090b\u090c\7W\2\2\u090c\u090d\7\\\2\2\u090d\u090e\7\\\2\2\u090e\u090f"+ + "\7[\2\2\u090f\u0910\7a\2\2\u0910\u0911\7V\2\2\u0911\u0912\7T\2\2\u0912"+ + "\u0913\7C\2\2\u0913\u0914\7P\2\2\u0914\u0915\7U\2\2\u0915\u0916\7R\2\2"+ + "\u0916\u0917\7Q\2\2\u0917\u0918\7U\2\2\u0918\u0919\7K\2\2\u0919\u091a"+ + "\7V\2\2\u091a\u091b\7K\2\2\u091b\u091c\7Q\2\2\u091c\u091d\7P\2\2\u091d"+ + "\u091e\7U\2\2\u091e\u01da\3\2\2\2\u091f\u0920\7H\2\2\u0920\u0921\7W\2"+ + "\2\u0921\u0922\7\\\2\2\u0922\u0923\7\\\2\2\u0923\u0924\7[\2\2\u0924\u0925"+ + "\7a\2\2\u0925\u0926\7T\2\2\u0926\u0927\7G\2\2\u0927\u0928\7Y\2\2\u0928"+ + "\u0929\7T\2\2\u0929\u092a\7K\2\2\u092a\u092b\7V\2\2\u092b\u092c\7G\2\2"+ + "\u092c\u01dc\3\2\2\2\u092d\u092e\7H\2\2\u092e\u092f\7W\2\2\u092f\u0930"+ + "\7\\\2\2\u0930\u0931\7\\\2\2\u0931\u0932\7K\2\2\u0932\u0933\7P\2\2\u0933"+ + "\u0934\7G\2\2\u0934\u0935\7U\2\2\u0935\u0936\7U\2\2\u0936\u01de\3\2\2"+ + "\2\u0937\u0938\7N\2\2\u0938\u0939\7G\2\2\u0939\u093a\7P\2\2\u093a\u093b"+ + "\7K\2\2\u093b\u093c\7G\2\2\u093c\u093d\7P\2\2\u093d\u093e\7V\2\2\u093e"+ + "\u01e0\3\2\2\2\u093f\u0940\7N\2\2\u0940\u0941\7Q\2\2\u0941\u0942\7Y\2"+ + "\2\u0942\u0943\7a\2\2\u0943\u0944\7H\2\2\u0944\u0945\7T\2\2\u0945\u0946"+ + "\7G\2\2\u0946\u0947\7S\2\2\u0947\u0948\7a\2\2\u0948\u0949\7Q\2\2\u0949"+ + "\u094a\7R\2\2\u094a\u094b\7G\2\2\u094b\u094c\7T\2\2\u094c\u094d\7C\2\2"+ + "\u094d\u094e\7V\2\2\u094e\u094f\7Q\2\2\u094f\u0950\7T\2\2\u0950\u01e2"+ + "\3\2\2\2\u0951\u0952\7O\2\2\u0952\u0953\7C\2\2\u0953\u0954\7Z\2\2\u0954"+ + "\u0955\7a\2\2\u0955\u0956\7F\2\2\u0956\u0957\7G\2\2\u0957\u0958\7V\2\2"+ + "\u0958\u0959\7G\2\2\u0959\u095a\7T\2\2\u095a\u095b\7O\2\2\u095b\u095c"+ + "\7K\2\2\u095c\u095d\7P\2\2\u095d\u095e\7K\2\2\u095e\u095f\7\\\2\2\u095f"+ + "\u0960\7G\2\2\u0960\u0961\7F\2\2\u0961\u0962\7a\2\2\u0962\u0963\7U\2\2"+ + "\u0963\u0964\7V\2\2\u0964\u0965\7C\2\2\u0965\u0966\7V\2\2\u0966\u0967"+ + "\7G\2\2\u0967\u0968\7U\2\2\u0968\u01e4\3\2\2\2\u0969\u096a\7O\2\2\u096a"+ + "\u096b\7C\2\2\u096b\u096c\7Z\2\2\u096c\u096d\7a\2\2\u096d\u096e\7G\2\2"+ + "\u096e\u096f\7Z\2\2\u096f\u0970\7R\2\2\u0970\u0971\7C\2\2\u0971\u0972"+ + "\7P\2\2\u0972\u0973\7U\2\2\u0973\u0974\7K\2\2\u0974\u0975\7Q\2\2\u0975"+ + "\u0976\7P\2\2\u0976\u0977\7U\2\2\u0977\u01e6\3\2\2\2\u0978\u0979\7O\2"+ + "\2\u0979\u097a\7K\2\2\u097a\u097b\7P\2\2\u097b\u097c\7K\2\2\u097c\u097d"+ + "\7O\2\2\u097d\u097e\7W\2\2\u097e\u097f\7O\2\2\u097f\u0980\7a\2\2\u0980"+ + "\u0981\7U\2\2\u0981\u0982\7J\2\2\u0982\u0983\7Q\2\2\u0983\u0984\7W\2\2"+ + "\u0984\u0985\7N\2\2\u0985\u0986\7F\2\2\u0986\u0987\7a\2\2\u0987\u0988"+ + "\7O\2\2\u0988\u0989\7C\2\2\u0989\u098a\7V\2\2\u098a\u098b\7E\2\2\u098b"+ + "\u098c\7J\2\2\u098c\u01e8\3\2\2\2\u098d\u098e\7Q\2\2\u098e\u098f\7R\2"+ + "\2\u098f\u0990\7G\2\2\u0990\u0991\7T\2\2\u0991\u0992\7C\2\2\u0992\u0993"+ + "\7V\2\2\u0993\u0994\7Q\2\2\u0994\u0995\7T\2\2\u0995\u01ea\3\2\2\2\u0996"+ + "\u0997\7R\2\2\u0997\u0998\7J\2\2\u0998\u0999\7T\2\2\u0999\u099a\7C\2\2"+ + "\u099a\u099b\7U\2\2\u099b\u099c\7G\2\2\u099c\u099d\7a\2\2\u099d\u099e"+ + "\7U\2\2\u099e\u099f\7N\2\2\u099f\u09a0\7Q\2\2\u09a0\u09a1\7R\2\2\u09a1"+ + "\u01ec\3\2\2\2\u09a2\u09a3\7R\2\2\u09a3\u09a4\7T\2\2\u09a4\u09a5\7G\2"+ + "\2\u09a5\u09a6\7H\2\2\u09a6\u09a7\7K\2\2\u09a7\u09a8\7Z\2\2\u09a8\u09a9"+ + "\7a\2\2\u09a9\u09aa\7N\2\2\u09aa\u09ab\7G\2\2\u09ab\u09ac\7P\2\2\u09ac"+ + "\u09ad\7I\2\2\u09ad\u09ae\7V\2\2\u09ae\u09af\7J\2\2\u09af\u01ee\3\2\2"+ + "\2\u09b0\u09b1\7S\2\2\u09b1\u09b2\7W\2\2\u09b2\u09b3\7Q\2\2\u09b3\u09b4"+ + "\7V\2\2\u09b4\u09b5\7G\2\2\u09b5\u09b6\7a\2\2\u09b6\u09b7\7C\2\2\u09b7"+ + "\u09b8\7P\2\2\u09b8\u09b9\7C\2\2\u09b9\u09ba\7N\2\2\u09ba\u09bb\7[\2\2"+ + "\u09bb\u09bc\7\\\2\2\u09bc\u09bd\7G\2\2\u09bd\u09be\7T\2\2\u09be\u01f0"+ + "\3\2\2\2\u09bf\u09c0\7S\2\2\u09c0\u09c1\7W\2\2\u09c1\u09c2\7Q\2\2\u09c2"+ + "\u09c3\7V\2\2\u09c3\u09c4\7G\2\2\u09c4\u09c5\7a\2\2\u09c5\u09c6\7H\2\2"+ + "\u09c6\u09c7\7K\2\2\u09c7\u09c8\7G\2\2\u09c8\u09c9\7N\2\2\u09c9\u09ca"+ + "\7F\2\2\u09ca\u09cb\7a\2\2\u09cb\u09cc\7U\2\2\u09cc\u09cd\7W\2\2\u09cd"+ + "\u09ce\7H\2\2\u09ce\u09cf\7H\2\2\u09cf\u09d0\7K\2\2\u09d0\u09d1\7Z\2\2"+ + "\u09d1\u01f2\3\2\2\2\u09d2\u09d3\7T\2\2\u09d3\u09d4\7G\2\2\u09d4\u09d5"+ + "\7Y\2\2\u09d5\u09d6\7T\2\2\u09d6\u09d7\7K\2\2\u09d7\u09d8\7V\2\2\u09d8"+ + "\u09d9\7G\2\2\u09d9\u01f4\3\2\2\2\u09da\u09db\7U\2\2\u09db\u09dc\7N\2"+ + "\2\u09dc\u09dd\7Q\2\2\u09dd\u09de\7R\2\2\u09de\u01f6\3\2\2\2\u09df\u09e0"+ + "\7V\2\2\u09e0\u09e1\7K\2\2\u09e1\u09e2\7G\2\2\u09e2\u09e3\7a\2\2\u09e3"+ + "\u09e4\7D\2\2\u09e4\u09e5\7T\2\2\u09e5\u09e6\7G\2\2\u09e6\u09e7\7C\2\2"+ + "\u09e7\u09e8\7M\2\2\u09e8\u09e9\7G\2\2\u09e9\u09ea\7T\2\2\u09ea\u01f8"+ + "\3\2\2\2\u09eb\u09ec\7V\2\2\u09ec\u09ed\7[\2\2\u09ed\u09ee\7R\2\2\u09ee"+ + "\u09ef\7G\2\2\u09ef\u01fa\3\2\2\2\u09f0\u09f1\7\\\2\2\u09f1\u09f2\7G\2"+ + "\2\u09f2\u09f3\7T\2\2\u09f3\u09f4\7Q\2\2\u09f4\u09f5\7a\2\2\u09f5\u09f6"+ + "\7V\2\2\u09f6\u09f7\7G\2\2\u09f7\u09f8\7T\2\2\u09f8\u09f9\7O\2\2\u09f9"+ + "\u09fa\7U\2\2\u09fa\u09fb\7a\2\2\u09fb\u09fc\7S\2\2\u09fc\u09fd\7W\2\2"+ + "\u09fd\u09fe\7G\2\2\u09fe\u09ff\7T\2\2\u09ff\u0a00\7[\2\2\u0a00\u01fc"+ + "\3\2\2\2\u0a01\u0a02\7U\2\2\u0a02\u0a03\7R\2\2\u0a03\u0a04\7C\2\2\u0a04"+ + "\u0a05\7P\2\2\u0a05\u01fe\3\2\2\2\u0a06\u0a07\7O\2\2\u0a07\u0a08\7U\2"+ + "\2\u0a08\u0200\3\2\2\2\u0a09\u0a0a\7U\2\2\u0a0a\u0202\3\2\2\2\u0a0b\u0a0c"+ + "\7O\2\2\u0a0c\u0204\3\2\2\2\u0a0d\u0a0e\7J\2\2\u0a0e\u0206\3\2\2\2\u0a0f"+ + "\u0a10\7Y\2\2\u0a10\u0208\3\2\2\2\u0a11\u0a12\7S\2\2\u0a12\u020a\3\2\2"+ + "\2\u0a13\u0a14\7[\2\2\u0a14\u020c\3\2\2\2\u0a15\u0a16\5\u0215\u010b\2"+ + "\u0a16\u020e\3\2\2\2\u0a17\u0a19\5\u021f\u0110\2\u0a18\u0a17\3\2\2\2\u0a19"+ + "\u0a1a\3\2\2\2\u0a1a\u0a18\3\2\2\2\u0a1a\u0a1b\3\2\2\2\u0a1b\u0210\3\2"+ + "\2\2\u0a1c\u0a1e\5\u021f\u0110\2\u0a1d\u0a1c\3\2\2\2\u0a1e\u0a1f\3\2\2"+ + "\2\u0a1f\u0a1d\3\2\2\2\u0a1f\u0a20\3\2\2\2\u0a20\u0a22\3\2\2\2\u0a21\u0a1d"+ + "\3\2\2\2\u0a21\u0a22\3\2\2\2\u0a22\u0a23\3\2\2\2\u0a23\u0a25\7\60\2\2"+ + "\u0a24\u0a26\5\u021f\u0110\2\u0a25\u0a24\3\2\2\2\u0a26\u0a27\3\2\2\2\u0a27"+ + "\u0a25\3\2\2\2\u0a27\u0a28\3\2\2\2\u0a28\u0212\3\2\2\2\u0a29\u0a2b\t\2"+ + "\2\2\u0a2a\u0a2c\t\3\2\2\u0a2b\u0a2a\3\2\2\2\u0a2c\u0a2d\3\2\2\2\u0a2d"+ + "\u0a2b\3\2\2\2\u0a2d\u0a2e\3\2\2\2\u0a2e\u0a30\3\2\2\2\u0a2f\u0a29\3\2"+ + "\2\2\u0a30\u0a33\3\2\2\2\u0a31\u0a2f\3\2\2\2\u0a31\u0a32\3\2\2\2\u0a32"+ + "\u0214\3\2\2\2\u0a33\u0a31\3\2\2\2\u0a34\u0a36\t\4\2\2\u0a35\u0a34\3\2"+ + "\2\2\u0a36\u0a37\3\2\2\2\u0a37\u0a38\3\2\2\2\u0a37\u0a35\3\2\2\2\u0a38"+ + "\u0a3c\3\2\2\2\u0a39\u0a3b\t\5\2\2\u0a3a\u0a39\3\2\2\2\u0a3b\u0a3e\3\2"+ + "\2\2\u0a3c\u0a3a\3\2\2\2\u0a3c\u0a3d\3\2\2\2\u0a3d\u0216\3\2\2\2\u0a3e"+ + "\u0a3c\3\2\2\2\u0a3f\u0a40\5\u0215\u010b\2\u0a40\u0a41\5\u0213\u010a\2"+ + "\u0a41\u0218\3\2\2\2\u0a42\u0a4a\7$\2\2\u0a43\u0a44\7^\2\2\u0a44\u0a49"+ + "\13\2\2\2\u0a45\u0a46\7$\2\2\u0a46\u0a49\7$\2\2\u0a47\u0a49\n\6\2\2\u0a48"+ + "\u0a43\3\2\2\2\u0a48\u0a45\3\2\2\2\u0a48\u0a47\3\2\2\2\u0a49\u0a4c\3\2"+ + "\2\2\u0a4a\u0a48\3\2\2\2\u0a4a\u0a4b\3\2\2\2\u0a4b\u0a4d\3\2\2\2\u0a4c"+ + "\u0a4a\3\2\2\2\u0a4d\u0a4e\7$\2\2\u0a4e\u021a\3\2\2\2\u0a4f\u0a57\7)\2"+ + "\2\u0a50"; + private static final String _serializedATNSegment1 = + "\u0a51\7^\2\2\u0a51\u0a56\13\2\2\2\u0a52\u0a53\7)\2\2\u0a53\u0a56\7)\2"+ + "\2\u0a54\u0a56\n\7\2\2\u0a55\u0a50\3\2\2\2\u0a55\u0a52\3\2\2\2\u0a55\u0a54"+ + "\3\2\2\2\u0a56\u0a59\3\2\2\2\u0a57\u0a55\3\2\2\2\u0a57\u0a58\3\2\2\2\u0a58"+ + "\u0a5a\3\2\2\2\u0a59\u0a57\3\2\2\2\u0a5a\u0a5b\7)\2\2\u0a5b\u021c\3\2"+ + "\2\2\u0a5c\u0a64\7b\2\2\u0a5d\u0a5e\7^\2\2\u0a5e\u0a63\13\2\2\2\u0a5f"+ + "\u0a60\7b\2\2\u0a60\u0a63\7b\2\2\u0a61\u0a63\n\b\2\2\u0a62\u0a5d\3\2\2"+ + "\2\u0a62\u0a5f\3\2\2\2\u0a62\u0a61\3\2\2\2\u0a63\u0a66\3\2\2\2\u0a64\u0a62"+ + "\3\2\2\2\u0a64\u0a65\3\2\2\2\u0a65\u0a67\3\2\2\2\u0a66\u0a64\3\2\2\2\u0a67"+ + "\u0a68\7b\2\2\u0a68\u021e\3\2\2\2\u0a69\u0a6a\t\t\2\2\u0a6a\u0220\3\2"+ + "\2\2\u0a6b\u0a6c\13\2\2\2\u0a6c\u0a6d\3\2\2\2\u0a6d\u0a6e\b\u0111\2\2"+ + "\u0a6e\u0222\3\2\2\2\21\2\u0a1a\u0a1f\u0a21\u0a27\u0a2d\u0a31\u0a37\u0a3c"+ + "\u0a48\u0a4a\u0a55\u0a57\u0a62\u0a64\3\2\5\2"; + public static final String _serializedATN = Utils.join( + new String[] { + _serializedATNSegment0, + _serializedATNSegment1 + }, + "" + ); + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp new file mode 100644 index 000000000..8078132b4 --- /dev/null +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp @@ -0,0 +1,634 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +root +pplStatement +commands +searchCommand +whereCommand +fieldsCommand +renameCommand +statsCommand +dedupCommand +sortCommand +evalCommand +headCommand +topCommand +rareCommand +parseCommand +kmeansCommand +kmeansParameter +adCommand +adParameter +fromClause +renameClasue +byClause +statsByClause +bySpanClause +spanClause +sortbyClause +evalClause +statsAggTerm +statsFunction +statsFunctionName +percentileAggFunction +expression +logicalExpression +comparisonExpression +valueExpression +primaryExpression +booleanExpression +relevanceExpression +singleFieldRelevanceFunction +multiFieldRelevanceFunction +tableSource +fieldList +wcFieldList +sortField +sortFieldExpression +fieldExpression +wcFieldExpression +evalFunctionCall +dataTypeFunctionCall +booleanFunctionCall +convertedDataType +evalFunctionName +functionArgs +functionArg +relevanceArg +relevanceArgName +relevanceFieldAndWeight +relevanceFieldWeight +relevanceField +relevanceQuery +relevanceArgValue +mathematicalFunctionBase +trigonometricFunctionName +dateAndTimeFunctionBase +conditionFunctionBase +textFunctionBase +comparisonOperator +binaryOperator +singleFieldRelevanceFunctionName +multiFieldRelevanceFunctionName +literalValue +intervalLiteral +stringLiteral +integerLiteral +decimalLiteral +booleanLiteral +pattern +intervalUnit +timespanUnit +valueList +qualifiedName +wcQualifiedName +ident +wildcard +keywordsCanBeId + + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 4, 66, 70, 87, 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, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java new file mode 100644 index 000000000..06424ae08 --- /dev/null +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java @@ -0,0 +1,6612 @@ +// Generated from /Users/menwe/code/OpenSearch-Dashboards/.observability/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.2 +import org.antlr.v4.runtime.atn.*; +import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.misc.*; +import org.antlr.v4.runtime.tree.*; +import java.util.List; +import java.util.Iterator; +import java.util.ArrayList; + +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) +public class OpenSearchPPLParser extends Parser { + static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, + EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, + SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, + NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, + ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, + SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, + TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, + CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, + DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, + HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, + MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, + HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, + YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, + DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, + DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, + PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, + COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, + SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, + BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, + MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, + STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, + STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, + EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, + PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, + C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, + EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, + POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, + ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, + RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, + DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, + MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, + DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, + TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, + STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, + LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, + MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, + ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, + BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, + ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, + FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, + LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, + MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, + QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, + TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, + W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, + ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, + ERROR_RECOGNITION=269; + public static final int + RULE_root = 0, RULE_pplStatement = 1, RULE_commands = 2, RULE_searchCommand = 3, + RULE_whereCommand = 4, RULE_fieldsCommand = 5, RULE_renameCommand = 6, + RULE_statsCommand = 7, RULE_dedupCommand = 8, RULE_sortCommand = 9, RULE_evalCommand = 10, + RULE_headCommand = 11, RULE_topCommand = 12, RULE_rareCommand = 13, RULE_parseCommand = 14, + RULE_kmeansCommand = 15, RULE_kmeansParameter = 16, RULE_adCommand = 17, + RULE_adParameter = 18, RULE_fromClause = 19, RULE_renameClasue = 20, RULE_byClause = 21, + RULE_statsByClause = 22, RULE_bySpanClause = 23, RULE_spanClause = 24, + RULE_sortbyClause = 25, RULE_evalClause = 26, RULE_statsAggTerm = 27, + RULE_statsFunction = 28, RULE_statsFunctionName = 29, RULE_percentileAggFunction = 30, + RULE_expression = 31, RULE_logicalExpression = 32, RULE_comparisonExpression = 33, + RULE_valueExpression = 34, RULE_primaryExpression = 35, RULE_booleanExpression = 36, + RULE_relevanceExpression = 37, RULE_singleFieldRelevanceFunction = 38, + RULE_multiFieldRelevanceFunction = 39, RULE_tableSource = 40, RULE_fieldList = 41, + RULE_wcFieldList = 42, RULE_sortField = 43, RULE_sortFieldExpression = 44, + RULE_fieldExpression = 45, RULE_wcFieldExpression = 46, RULE_evalFunctionCall = 47, + RULE_dataTypeFunctionCall = 48, RULE_booleanFunctionCall = 49, RULE_convertedDataType = 50, + RULE_evalFunctionName = 51, RULE_functionArgs = 52, RULE_functionArg = 53, + RULE_relevanceArg = 54, RULE_relevanceArgName = 55, RULE_relevanceFieldAndWeight = 56, + RULE_relevanceFieldWeight = 57, RULE_relevanceField = 58, RULE_relevanceQuery = 59, + RULE_relevanceArgValue = 60, RULE_mathematicalFunctionBase = 61, RULE_trigonometricFunctionName = 62, + RULE_dateAndTimeFunctionBase = 63, RULE_conditionFunctionBase = 64, RULE_textFunctionBase = 65, + RULE_comparisonOperator = 66, RULE_binaryOperator = 67, RULE_singleFieldRelevanceFunctionName = 68, + RULE_multiFieldRelevanceFunctionName = 69, RULE_literalValue = 70, RULE_intervalLiteral = 71, + RULE_stringLiteral = 72, RULE_integerLiteral = 73, RULE_decimalLiteral = 74, + RULE_booleanLiteral = 75, RULE_pattern = 76, RULE_intervalUnit = 77, RULE_timespanUnit = 78, + RULE_valueList = 79, RULE_qualifiedName = 80, RULE_wcQualifiedName = 81, + RULE_ident = 82, RULE_wildcard = 83, RULE_keywordsCanBeId = 84; + private static String[] makeRuleNames() { + return new String[] { + "root", "pplStatement", "commands", "searchCommand", "whereCommand", + "fieldsCommand", "renameCommand", "statsCommand", "dedupCommand", "sortCommand", + "evalCommand", "headCommand", "topCommand", "rareCommand", "parseCommand", + "kmeansCommand", "kmeansParameter", "adCommand", "adParameter", "fromClause", + "renameClasue", "byClause", "statsByClause", "bySpanClause", "spanClause", + "sortbyClause", "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", + "percentileAggFunction", "expression", "logicalExpression", "comparisonExpression", + "valueExpression", "primaryExpression", "booleanExpression", "relevanceExpression", + "singleFieldRelevanceFunction", "multiFieldRelevanceFunction", "tableSource", + "fieldList", "wcFieldList", "sortField", "sortFieldExpression", "fieldExpression", + "wcFieldExpression", "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", + "convertedDataType", "evalFunctionName", "functionArgs", "functionArg", + "relevanceArg", "relevanceArgName", "relevanceFieldAndWeight", "relevanceFieldWeight", + "relevanceField", "relevanceQuery", "relevanceArgValue", "mathematicalFunctionBase", + "trigonometricFunctionName", "dateAndTimeFunctionBase", "conditionFunctionBase", + "textFunctionBase", "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", + "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", + "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", + "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", + "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId" + }; + } + public static final String[] ruleNames = makeRuleNames(); + + private static String[] makeLiteralNames() { + return new String[] { + null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", + "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", + "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", + "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", + "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", + "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", + "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", + "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", + "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", + "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", + "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", + "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", + "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", + "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", + "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", + "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", + "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", + "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", + "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", + "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", + "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", + "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", + "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", + "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", + "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", + "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", + "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", + "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" + }; + } + private static final String[] _LITERAL_NAMES = makeLiteralNames(); + private static String[] makeSymbolicNames() { + return new String[] { + null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", + "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", + "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", + "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" + }; + } + private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + @Override + public String getGrammarFileName() { return "OpenSearchPPLParser.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public ATN getATN() { return _ATN; } + + public OpenSearchPPLParser(TokenStream input) { + super(input); + _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + + public static class RootContext extends ParserRuleContext { + public TerminalNode EOF() { return getToken(OpenSearchPPLParser.EOF, 0); } + public PplStatementContext pplStatement() { + return getRuleContext(PplStatementContext.class,0); + } + public RootContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_root; } + } + + public final RootContext root() throws RecognitionException { + RootContext _localctx = new RootContext(_ctx, getState()); + enterRule(_localctx, 0, RULE_root); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(171); + _errHandler.sync(this); + _la = _input.LA(1); + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << SEARCH) | (1L << SOURCE) | (1L << INDEX) | (1L << D) | (1L << NOT) | (1L << TRUE) | (1L << FALSE) | (1L << INTERVAL) | (1L << MICROSECOND) | (1L << MILLISECOND) | (1L << SECOND) | (1L << MINUTE) | (1L << HOUR) | (1L << DAY) | (1L << WEEK))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (MONTH - 64)) | (1L << (QUARTER - 64)) | (1L << (YEAR - 64)) | (1L << (DOT - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (LT_PRTHS - 64)) | (1L << (BACKTICK - 64)) | (1L << (AVG - 64)) | (1L << (COUNT - 64)) | (1L << (MAX - 64)) | (1L << (MIN - 64)) | (1L << (SUM - 64)))) != 0) || ((((_la - 129)) & ~0x3f) == 0 && ((1L << (_la - 129)) & ((1L << (VAR_SAMP - 129)) | (1L << (VAR_POP - 129)) | (1L << (STDDEV_SAMP - 129)) | (1L << (STDDEV_POP - 129)) | (1L << (FIRST - 129)) | (1L << (LAST - 129)) | (1L << (ABS - 129)) | (1L << (CEIL - 129)) | (1L << (CEILING - 129)) | (1L << (CONV - 129)) | (1L << (CRC32 - 129)) | (1L << (E - 129)) | (1L << (EXP - 129)) | (1L << (FLOOR - 129)) | (1L << (LN - 129)) | (1L << (LOG - 129)) | (1L << (LOG10 - 129)) | (1L << (LOG2 - 129)) | (1L << (MOD - 129)) | (1L << (PI - 129)) | (1L << (POW - 129)) | (1L << (POWER - 129)) | (1L << (RAND - 129)) | (1L << (ROUND - 129)) | (1L << (SIGN - 129)) | (1L << (SQRT - 129)) | (1L << (TRUNCATE - 129)) | (1L << (ACOS - 129)) | (1L << (ASIN - 129)) | (1L << (ATAN - 129)) | (1L << (ATAN2 - 129)) | (1L << (COS - 129)) | (1L << (COT - 129)) | (1L << (DEGREES - 129)) | (1L << (RADIANS - 129)) | (1L << (SIN - 129)) | (1L << (TAN - 129)) | (1L << (ADDDATE - 129)) | (1L << (DATE - 129)) | (1L << (DATE_ADD - 129)) | (1L << (DATE_SUB - 129)) | (1L << (DAYOFMONTH - 129)) | (1L << (DAYOFWEEK - 129)) | (1L << (DAYOFYEAR - 129)) | (1L << (DAYNAME - 129)) | (1L << (FROM_DAYS - 129)) | (1L << (MONTHNAME - 129)) | (1L << (SUBDATE - 129)) | (1L << (TIME - 129)))) != 0) || ((((_la - 193)) & ~0x3f) == 0 && ((1L << (_la - 193)) & ((1L << (TIME_TO_SEC - 193)) | (1L << (TIMESTAMP - 193)) | (1L << (DATE_FORMAT - 193)) | (1L << (TO_DAYS - 193)) | (1L << (SUBSTR - 193)) | (1L << (SUBSTRING - 193)) | (1L << (LTRIM - 193)) | (1L << (RTRIM - 193)) | (1L << (TRIM - 193)) | (1L << (LOWER - 193)) | (1L << (UPPER - 193)) | (1L << (CONCAT - 193)) | (1L << (CONCAT_WS - 193)) | (1L << (LENGTH - 193)) | (1L << (STRCMP - 193)) | (1L << (RIGHT - 193)) | (1L << (LEFT - 193)) | (1L << (ASCII - 193)) | (1L << (LOCATE - 193)) | (1L << (REPLACE - 193)) | (1L << (CAST - 193)) | (1L << (LIKE - 193)) | (1L << (ISNULL - 193)) | (1L << (ISNOTNULL - 193)) | (1L << (IFNULL - 193)) | (1L << (NULLIF - 193)) | (1L << (IF - 193)) | (1L << (MATCH - 193)) | (1L << (MATCH_PHRASE - 193)) | (1L << (SIMPLE_QUERY_STRING - 193)) | (1L << (SPAN - 193)) | (1L << (MS - 193)) | (1L << (S - 193)))) != 0) || ((((_la - 257)) & ~0x3f) == 0 && ((1L << (_la - 257)) & ((1L << (M - 257)) | (1L << (H - 257)) | (1L << (W - 257)) | (1L << (Q - 257)) | (1L << (Y - 257)) | (1L << (ID - 257)) | (1L << (INTEGER_LITERAL - 257)) | (1L << (DECIMAL_LITERAL - 257)) | (1L << (DQUOTA_STRING - 257)) | (1L << (SQUOTA_STRING - 257)) | (1L << (BQUOTA_STRING - 257)))) != 0)) { + { + setState(170); + pplStatement(); + } + } + + setState(173); + match(EOF); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PplStatementContext extends ParserRuleContext { + public SearchCommandContext searchCommand() { + return getRuleContext(SearchCommandContext.class,0); + } + public List PIPE() { return getTokens(OpenSearchPPLParser.PIPE); } + public TerminalNode PIPE(int i) { + return getToken(OpenSearchPPLParser.PIPE, i); + } + public List commands() { + return getRuleContexts(CommandsContext.class); + } + public CommandsContext commands(int i) { + return getRuleContext(CommandsContext.class,i); + } + public PplStatementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_pplStatement; } + } + + public final PplStatementContext pplStatement() throws RecognitionException { + PplStatementContext _localctx = new PplStatementContext(_ctx, getState()); + enterRule(_localctx, 2, RULE_pplStatement); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(175); + searchCommand(); + setState(180); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==PIPE) { + { + { + setState(176); + match(PIPE); + setState(177); + commands(); + } + } + setState(182); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class CommandsContext extends ParserRuleContext { + public WhereCommandContext whereCommand() { + return getRuleContext(WhereCommandContext.class,0); + } + public FieldsCommandContext fieldsCommand() { + return getRuleContext(FieldsCommandContext.class,0); + } + public RenameCommandContext renameCommand() { + return getRuleContext(RenameCommandContext.class,0); + } + public StatsCommandContext statsCommand() { + return getRuleContext(StatsCommandContext.class,0); + } + public DedupCommandContext dedupCommand() { + return getRuleContext(DedupCommandContext.class,0); + } + public SortCommandContext sortCommand() { + return getRuleContext(SortCommandContext.class,0); + } + public EvalCommandContext evalCommand() { + return getRuleContext(EvalCommandContext.class,0); + } + public HeadCommandContext headCommand() { + return getRuleContext(HeadCommandContext.class,0); + } + public TopCommandContext topCommand() { + return getRuleContext(TopCommandContext.class,0); + } + public RareCommandContext rareCommand() { + return getRuleContext(RareCommandContext.class,0); + } + public ParseCommandContext parseCommand() { + return getRuleContext(ParseCommandContext.class,0); + } + public KmeansCommandContext kmeansCommand() { + return getRuleContext(KmeansCommandContext.class,0); + } + public AdCommandContext adCommand() { + return getRuleContext(AdCommandContext.class,0); + } + public CommandsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_commands; } + } + + public final CommandsContext commands() throws RecognitionException { + CommandsContext _localctx = new CommandsContext(_ctx, getState()); + enterRule(_localctx, 4, RULE_commands); + try { + setState(196); + _errHandler.sync(this); + switch (_input.LA(1)) { + case WHERE: + enterOuterAlt(_localctx, 1); + { + setState(183); + whereCommand(); + } + break; + case FIELDS: + enterOuterAlt(_localctx, 2); + { + setState(184); + fieldsCommand(); + } + break; + case RENAME: + enterOuterAlt(_localctx, 3); + { + setState(185); + renameCommand(); + } + break; + case STATS: + enterOuterAlt(_localctx, 4); + { + setState(186); + statsCommand(); + } + break; + case DEDUP: + enterOuterAlt(_localctx, 5); + { + setState(187); + dedupCommand(); + } + break; + case SORT: + enterOuterAlt(_localctx, 6); + { + setState(188); + sortCommand(); + } + break; + case EVAL: + enterOuterAlt(_localctx, 7); + { + setState(189); + evalCommand(); + } + break; + case HEAD: + enterOuterAlt(_localctx, 8); + { + setState(190); + headCommand(); + } + break; + case TOP: + enterOuterAlt(_localctx, 9); + { + setState(191); + topCommand(); + } + break; + case RARE: + enterOuterAlt(_localctx, 10); + { + setState(192); + rareCommand(); + } + break; + case PARSE: + enterOuterAlt(_localctx, 11); + { + setState(193); + parseCommand(); + } + break; + case KMEANS: + enterOuterAlt(_localctx, 12); + { + setState(194); + kmeansCommand(); + } + break; + case AD: + enterOuterAlt(_localctx, 13); + { + setState(195); + adCommand(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SearchCommandContext extends ParserRuleContext { + public SearchCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_searchCommand; } + + public SearchCommandContext() { } + public void copyFrom(SearchCommandContext ctx) { + super.copyFrom(ctx); + } + } + public static class SearchFromFilterContext extends SearchCommandContext { + public FromClauseContext fromClause() { + return getRuleContext(FromClauseContext.class,0); + } + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } + public SearchFromFilterContext(SearchCommandContext ctx) { copyFrom(ctx); } + } + public static class SearchFromContext extends SearchCommandContext { + public FromClauseContext fromClause() { + return getRuleContext(FromClauseContext.class,0); + } + public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } + public SearchFromContext(SearchCommandContext ctx) { copyFrom(ctx); } + } + public static class SearchFilterFromContext extends SearchCommandContext { + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public FromClauseContext fromClause() { + return getRuleContext(FromClauseContext.class,0); + } + public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } + public SearchFilterFromContext(SearchCommandContext ctx) { copyFrom(ctx); } + } + + public final SearchCommandContext searchCommand() throws RecognitionException { + SearchCommandContext _localctx = new SearchCommandContext(_ctx, getState()); + enterRule(_localctx, 6, RULE_searchCommand); + int _la; + try { + setState(214); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { + case 1: + _localctx = new SearchFromContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(199); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==SEARCH) { + { + setState(198); + match(SEARCH); + } + } + + setState(201); + fromClause(); + } + break; + case 2: + _localctx = new SearchFromFilterContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(203); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==SEARCH) { + { + setState(202); + match(SEARCH); + } + } + + setState(205); + fromClause(); + setState(206); + logicalExpression(0); + } + break; + case 3: + _localctx = new SearchFilterFromContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(209); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==SEARCH) { + { + setState(208); + match(SEARCH); + } + } + + setState(211); + logicalExpression(0); + setState(212); + fromClause(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WhereCommandContext extends ParserRuleContext { + public TerminalNode WHERE() { return getToken(OpenSearchPPLParser.WHERE, 0); } + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public WhereCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_whereCommand; } + } + + public final WhereCommandContext whereCommand() throws RecognitionException { + WhereCommandContext _localctx = new WhereCommandContext(_ctx, getState()); + enterRule(_localctx, 8, RULE_whereCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(216); + match(WHERE); + setState(217); + logicalExpression(0); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FieldsCommandContext extends ParserRuleContext { + public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public FieldsCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fieldsCommand; } + } + + public final FieldsCommandContext fieldsCommand() throws RecognitionException { + FieldsCommandContext _localctx = new FieldsCommandContext(_ctx, getState()); + enterRule(_localctx, 10, RULE_fieldsCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(219); + match(FIELDS); + setState(221); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(220); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(223); + fieldList(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RenameCommandContext extends ParserRuleContext { + public TerminalNode RENAME() { return getToken(OpenSearchPPLParser.RENAME, 0); } + public List renameClasue() { + return getRuleContexts(RenameClasueContext.class); + } + public RenameClasueContext renameClasue(int i) { + return getRuleContext(RenameClasueContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public RenameCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_renameCommand; } + } + + public final RenameCommandContext renameCommand() throws RecognitionException { + RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); + enterRule(_localctx, 12, RULE_renameCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(225); + match(RENAME); + setState(226); + renameClasue(); + setState(231); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(227); + match(COMMA); + setState(228); + renameClasue(); + } + } + setState(233); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsCommandContext extends ParserRuleContext { + public IntegerLiteralContext partitions; + public BooleanLiteralContext allnum; + public StringLiteralContext delim; + public BooleanLiteralContext dedupsplit; + public TerminalNode STATS() { return getToken(OpenSearchPPLParser.STATS, 0); } + public List statsAggTerm() { + return getRuleContexts(StatsAggTermContext.class); + } + public StatsAggTermContext statsAggTerm(int i) { + return getRuleContext(StatsAggTermContext.class,i); + } + public TerminalNode PARTITIONS() { return getToken(OpenSearchPPLParser.PARTITIONS, 0); } + public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } + public TerminalNode EQUAL(int i) { + return getToken(OpenSearchPPLParser.EQUAL, i); + } + public TerminalNode ALLNUM() { return getToken(OpenSearchPPLParser.ALLNUM, 0); } + public TerminalNode DELIM() { return getToken(OpenSearchPPLParser.DELIM, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public StatsByClauseContext statsByClause() { + return getRuleContext(StatsByClauseContext.class,0); + } + public TerminalNode DEDUP_SPLITVALUES() { return getToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public List booleanLiteral() { + return getRuleContexts(BooleanLiteralContext.class); + } + public BooleanLiteralContext booleanLiteral(int i) { + return getRuleContext(BooleanLiteralContext.class,i); + } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public StatsCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsCommand; } + } + + public final StatsCommandContext statsCommand() throws RecognitionException { + StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState()); + enterRule(_localctx, 14, RULE_statsCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(234); + match(STATS); + setState(238); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PARTITIONS) { + { + setState(235); + match(PARTITIONS); + setState(236); + match(EQUAL); + setState(237); + ((StatsCommandContext)_localctx).partitions = integerLiteral(); + } + } + + setState(243); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==ALLNUM) { + { + setState(240); + match(ALLNUM); + setState(241); + match(EQUAL); + setState(242); + ((StatsCommandContext)_localctx).allnum = booleanLiteral(); + } + } + + setState(248); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==DELIM) { + { + setState(245); + match(DELIM); + setState(246); + match(EQUAL); + setState(247); + ((StatsCommandContext)_localctx).delim = stringLiteral(); + } + } + + setState(250); + statsAggTerm(); + setState(255); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(251); + match(COMMA); + setState(252); + statsAggTerm(); + } + } + setState(257); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(259); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==BY) { + { + setState(258); + statsByClause(); + } + } + + setState(264); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==DEDUP_SPLITVALUES) { + { + setState(261); + match(DEDUP_SPLITVALUES); + setState(262); + match(EQUAL); + setState(263); + ((StatsCommandContext)_localctx).dedupsplit = booleanLiteral(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DedupCommandContext extends ParserRuleContext { + public IntegerLiteralContext number; + public BooleanLiteralContext keepempty; + public BooleanLiteralContext consecutive; + public TerminalNode DEDUP() { return getToken(OpenSearchPPLParser.DEDUP, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public TerminalNode KEEPEMPTY() { return getToken(OpenSearchPPLParser.KEEPEMPTY, 0); } + public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } + public TerminalNode EQUAL(int i) { + return getToken(OpenSearchPPLParser.EQUAL, i); + } + public TerminalNode CONSECUTIVE() { return getToken(OpenSearchPPLParser.CONSECUTIVE, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public List booleanLiteral() { + return getRuleContexts(BooleanLiteralContext.class); + } + public BooleanLiteralContext booleanLiteral(int i) { + return getRuleContext(BooleanLiteralContext.class,i); + } + public DedupCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dedupCommand; } + } + + public final DedupCommandContext dedupCommand() throws RecognitionException { + DedupCommandContext _localctx = new DedupCommandContext(_ctx, getState()); + enterRule(_localctx, 16, RULE_dedupCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(266); + match(DEDUP); + setState(268); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { + { + setState(267); + ((DedupCommandContext)_localctx).number = integerLiteral(); + } + } + + setState(270); + fieldList(); + setState(274); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==KEEPEMPTY) { + { + setState(271); + match(KEEPEMPTY); + setState(272); + match(EQUAL); + setState(273); + ((DedupCommandContext)_localctx).keepempty = booleanLiteral(); + } + } + + setState(279); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==CONSECUTIVE) { + { + setState(276); + match(CONSECUTIVE); + setState(277); + match(EQUAL); + setState(278); + ((DedupCommandContext)_localctx).consecutive = booleanLiteral(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortCommandContext extends ParserRuleContext { + public TerminalNode SORT() { return getToken(OpenSearchPPLParser.SORT, 0); } + public SortbyClauseContext sortbyClause() { + return getRuleContext(SortbyClauseContext.class,0); + } + public SortCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortCommand; } + } + + public final SortCommandContext sortCommand() throws RecognitionException { + SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); + enterRule(_localctx, 18, RULE_sortCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(281); + match(SORT); + setState(282); + sortbyClause(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalCommandContext extends ParserRuleContext { + public TerminalNode EVAL() { return getToken(OpenSearchPPLParser.EVAL, 0); } + public List evalClause() { + return getRuleContexts(EvalClauseContext.class); + } + public EvalClauseContext evalClause(int i) { + return getRuleContext(EvalClauseContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public EvalCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalCommand; } + } + + public final EvalCommandContext evalCommand() throws RecognitionException { + EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState()); + enterRule(_localctx, 20, RULE_evalCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(284); + match(EVAL); + setState(285); + evalClause(); + setState(290); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(286); + match(COMMA); + setState(287); + evalClause(); + } + } + setState(292); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class HeadCommandContext extends ParserRuleContext { + public IntegerLiteralContext number; + public IntegerLiteralContext from; + public TerminalNode HEAD() { return getToken(OpenSearchPPLParser.HEAD, 0); } + public TerminalNode FROM() { return getToken(OpenSearchPPLParser.FROM, 0); } + public List integerLiteral() { + return getRuleContexts(IntegerLiteralContext.class); + } + public IntegerLiteralContext integerLiteral(int i) { + return getRuleContext(IntegerLiteralContext.class,i); + } + public HeadCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_headCommand; } + } + + public final HeadCommandContext headCommand() throws RecognitionException { + HeadCommandContext _localctx = new HeadCommandContext(_ctx, getState()); + enterRule(_localctx, 22, RULE_headCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(293); + match(HEAD); + setState(295); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { + { + setState(294); + ((HeadCommandContext)_localctx).number = integerLiteral(); + } + } + + setState(299); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==FROM) { + { + setState(297); + match(FROM); + setState(298); + ((HeadCommandContext)_localctx).from = integerLiteral(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TopCommandContext extends ParserRuleContext { + public IntegerLiteralContext number; + public TerminalNode TOP() { return getToken(OpenSearchPPLParser.TOP, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public ByClauseContext byClause() { + return getRuleContext(ByClauseContext.class,0); + } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public TopCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_topCommand; } + } + + public final TopCommandContext topCommand() throws RecognitionException { + TopCommandContext _localctx = new TopCommandContext(_ctx, getState()); + enterRule(_localctx, 24, RULE_topCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(301); + match(TOP); + setState(303); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { + { + setState(302); + ((TopCommandContext)_localctx).number = integerLiteral(); + } + } + + setState(305); + fieldList(); + setState(307); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==BY) { + { + setState(306); + byClause(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RareCommandContext extends ParserRuleContext { + public TerminalNode RARE() { return getToken(OpenSearchPPLParser.RARE, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public ByClauseContext byClause() { + return getRuleContext(ByClauseContext.class,0); + } + public RareCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_rareCommand; } + } + + public final RareCommandContext rareCommand() throws RecognitionException { + RareCommandContext _localctx = new RareCommandContext(_ctx, getState()); + enterRule(_localctx, 26, RULE_rareCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(309); + match(RARE); + setState(310); + fieldList(); + setState(312); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==BY) { + { + setState(311); + byClause(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ParseCommandContext extends ParserRuleContext { + public TerminalNode PARSE() { return getToken(OpenSearchPPLParser.PARSE, 0); } + public ExpressionContext expression() { + return getRuleContext(ExpressionContext.class,0); + } + public PatternContext pattern() { + return getRuleContext(PatternContext.class,0); + } + public ParseCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_parseCommand; } + } + + public final ParseCommandContext parseCommand() throws RecognitionException { + ParseCommandContext _localctx = new ParseCommandContext(_ctx, getState()); + enterRule(_localctx, 28, RULE_parseCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(314); + match(PARSE); + setState(315); + expression(); + setState(316); + pattern(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class KmeansCommandContext extends ParserRuleContext { + public TerminalNode KMEANS() { return getToken(OpenSearchPPLParser.KMEANS, 0); } + public List kmeansParameter() { + return getRuleContexts(KmeansParameterContext.class); + } + public KmeansParameterContext kmeansParameter(int i) { + return getRuleContext(KmeansParameterContext.class,i); + } + public KmeansCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_kmeansCommand; } + } + + public final KmeansCommandContext kmeansCommand() throws RecognitionException { + KmeansCommandContext _localctx = new KmeansCommandContext(_ctx, getState()); + enterRule(_localctx, 30, RULE_kmeansCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(318); + match(KMEANS); + setState(322); + _errHandler.sync(this); + _la = _input.LA(1); + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CENTROIDS) | (1L << ITERATIONS) | (1L << DISTANCE_TYPE))) != 0)) { + { + { + setState(319); + kmeansParameter(); + } + } + setState(324); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class KmeansParameterContext extends ParserRuleContext { + public IntegerLiteralContext centroids; + public IntegerLiteralContext iterations; + public StringLiteralContext distance_type; + public TerminalNode CENTROIDS() { return getToken(OpenSearchPPLParser.CENTROIDS, 0); } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public TerminalNode ITERATIONS() { return getToken(OpenSearchPPLParser.ITERATIONS, 0); } + public TerminalNode DISTANCE_TYPE() { return getToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public KmeansParameterContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_kmeansParameter; } + } + + public final KmeansParameterContext kmeansParameter() throws RecognitionException { + KmeansParameterContext _localctx = new KmeansParameterContext(_ctx, getState()); + enterRule(_localctx, 32, RULE_kmeansParameter); + try { + setState(334); + _errHandler.sync(this); + switch (_input.LA(1)) { + case CENTROIDS: + enterOuterAlt(_localctx, 1); + { + { + setState(325); + match(CENTROIDS); + setState(326); + match(EQUAL); + setState(327); + ((KmeansParameterContext)_localctx).centroids = integerLiteral(); + } + } + break; + case ITERATIONS: + enterOuterAlt(_localctx, 2); + { + { + setState(328); + match(ITERATIONS); + setState(329); + match(EQUAL); + setState(330); + ((KmeansParameterContext)_localctx).iterations = integerLiteral(); + } + } + break; + case DISTANCE_TYPE: + enterOuterAlt(_localctx, 3); + { + { + setState(331); + match(DISTANCE_TYPE); + setState(332); + match(EQUAL); + setState(333); + ((KmeansParameterContext)_localctx).distance_type = stringLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AdCommandContext extends ParserRuleContext { + public TerminalNode AD() { return getToken(OpenSearchPPLParser.AD, 0); } + public List adParameter() { + return getRuleContexts(AdParameterContext.class); + } + public AdParameterContext adParameter(int i) { + return getRuleContext(AdParameterContext.class,i); + } + public AdCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_adCommand; } + } + + public final AdCommandContext adCommand() throws RecognitionException { + AdCommandContext _localctx = new AdCommandContext(_ctx, getState()); + enterRule(_localctx, 34, RULE_adCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(336); + match(AD); + setState(340); + _errHandler.sync(this); + _la = _input.LA(1); + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << NUMBER_OF_TREES) | (1L << SHINGLE_SIZE) | (1L << SAMPLE_SIZE) | (1L << OUTPUT_AFTER) | (1L << TIME_DECAY) | (1L << ANOMALY_RATE) | (1L << TIME_FIELD) | (1L << TIME_ZONE) | (1L << TRAINING_DATA_SIZE) | (1L << ANOMALY_SCORE_THRESHOLD))) != 0) || _la==DATE_FORMAT) { + { + { + setState(337); + adParameter(); + } + } + setState(342); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class AdParameterContext extends ParserRuleContext { + public IntegerLiteralContext number_of_trees; + public IntegerLiteralContext shingle_size; + public IntegerLiteralContext sample_size; + public IntegerLiteralContext output_after; + public DecimalLiteralContext time_decay; + public DecimalLiteralContext anomaly_rate; + public StringLiteralContext time_field; + public StringLiteralContext date_format; + public StringLiteralContext time_zone; + public IntegerLiteralContext training_data_size; + public DecimalLiteralContext anomaly_score_threshold; + public TerminalNode NUMBER_OF_TREES() { return getToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public TerminalNode SHINGLE_SIZE() { return getToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } + public TerminalNode SAMPLE_SIZE() { return getToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } + public TerminalNode OUTPUT_AFTER() { return getToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } + public TerminalNode TIME_DECAY() { return getToken(OpenSearchPPLParser.TIME_DECAY, 0); } + public DecimalLiteralContext decimalLiteral() { + return getRuleContext(DecimalLiteralContext.class,0); + } + public TerminalNode ANOMALY_RATE() { return getToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } + public TerminalNode TIME_FIELD() { return getToken(OpenSearchPPLParser.TIME_FIELD, 0); } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TerminalNode TRAINING_DATA_SIZE() { return getToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } + public TerminalNode ANOMALY_SCORE_THRESHOLD() { return getToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } + public AdParameterContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_adParameter; } + } + + public final AdParameterContext adParameter() throws RecognitionException { + AdParameterContext _localctx = new AdParameterContext(_ctx, getState()); + enterRule(_localctx, 36, RULE_adParameter); + try { + setState(376); + _errHandler.sync(this); + switch (_input.LA(1)) { + case NUMBER_OF_TREES: + enterOuterAlt(_localctx, 1); + { + { + setState(343); + match(NUMBER_OF_TREES); + setState(344); + match(EQUAL); + setState(345); + ((AdParameterContext)_localctx).number_of_trees = integerLiteral(); + } + } + break; + case SHINGLE_SIZE: + enterOuterAlt(_localctx, 2); + { + { + setState(346); + match(SHINGLE_SIZE); + setState(347); + match(EQUAL); + setState(348); + ((AdParameterContext)_localctx).shingle_size = integerLiteral(); + } + } + break; + case SAMPLE_SIZE: + enterOuterAlt(_localctx, 3); + { + { + setState(349); + match(SAMPLE_SIZE); + setState(350); + match(EQUAL); + setState(351); + ((AdParameterContext)_localctx).sample_size = integerLiteral(); + } + } + break; + case OUTPUT_AFTER: + enterOuterAlt(_localctx, 4); + { + { + setState(352); + match(OUTPUT_AFTER); + setState(353); + match(EQUAL); + setState(354); + ((AdParameterContext)_localctx).output_after = integerLiteral(); + } + } + break; + case TIME_DECAY: + enterOuterAlt(_localctx, 5); + { + { + setState(355); + match(TIME_DECAY); + setState(356); + match(EQUAL); + setState(357); + ((AdParameterContext)_localctx).time_decay = decimalLiteral(); + } + } + break; + case ANOMALY_RATE: + enterOuterAlt(_localctx, 6); + { + { + setState(358); + match(ANOMALY_RATE); + setState(359); + match(EQUAL); + setState(360); + ((AdParameterContext)_localctx).anomaly_rate = decimalLiteral(); + } + } + break; + case TIME_FIELD: + enterOuterAlt(_localctx, 7); + { + { + setState(361); + match(TIME_FIELD); + setState(362); + match(EQUAL); + setState(363); + ((AdParameterContext)_localctx).time_field = stringLiteral(); + } + } + break; + case DATE_FORMAT: + enterOuterAlt(_localctx, 8); + { + { + setState(364); + match(DATE_FORMAT); + setState(365); + match(EQUAL); + setState(366); + ((AdParameterContext)_localctx).date_format = stringLiteral(); + } + } + break; + case TIME_ZONE: + enterOuterAlt(_localctx, 9); + { + { + setState(367); + match(TIME_ZONE); + setState(368); + match(EQUAL); + setState(369); + ((AdParameterContext)_localctx).time_zone = stringLiteral(); + } + } + break; + case TRAINING_DATA_SIZE: + enterOuterAlt(_localctx, 10); + { + { + setState(370); + match(TRAINING_DATA_SIZE); + setState(371); + match(EQUAL); + setState(372); + ((AdParameterContext)_localctx).training_data_size = integerLiteral(); + } + } + break; + case ANOMALY_SCORE_THRESHOLD: + enterOuterAlt(_localctx, 11); + { + { + setState(373); + match(ANOMALY_SCORE_THRESHOLD); + setState(374); + match(EQUAL); + setState(375); + ((AdParameterContext)_localctx).anomaly_score_threshold = decimalLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FromClauseContext extends ParserRuleContext { + public TerminalNode SOURCE() { return getToken(OpenSearchPPLParser.SOURCE, 0); } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public List tableSource() { + return getRuleContexts(TableSourceContext.class); + } + public TableSourceContext tableSource(int i) { + return getRuleContext(TableSourceContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public TerminalNode INDEX() { return getToken(OpenSearchPPLParser.INDEX, 0); } + public FromClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fromClause; } + } + + public final FromClauseContext fromClause() throws RecognitionException { + FromClauseContext _localctx = new FromClauseContext(_ctx, getState()); + enterRule(_localctx, 38, RULE_fromClause); + int _la; + try { + setState(398); + _errHandler.sync(this); + switch (_input.LA(1)) { + case SOURCE: + enterOuterAlt(_localctx, 1); + { + setState(378); + match(SOURCE); + setState(379); + match(EQUAL); + setState(380); + tableSource(); + setState(385); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(381); + match(COMMA); + setState(382); + tableSource(); + } + } + setState(387); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + break; + case INDEX: + enterOuterAlt(_localctx, 2); + { + setState(388); + match(INDEX); + setState(389); + match(EQUAL); + setState(390); + tableSource(); + setState(395); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(391); + match(COMMA); + setState(392); + tableSource(); + } + } + setState(397); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RenameClasueContext extends ParserRuleContext { + public WcFieldExpressionContext orignalField; + public WcFieldExpressionContext renamedField; + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public List wcFieldExpression() { + return getRuleContexts(WcFieldExpressionContext.class); + } + public WcFieldExpressionContext wcFieldExpression(int i) { + return getRuleContext(WcFieldExpressionContext.class,i); + } + public RenameClasueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_renameClasue; } + } + + public final RenameClasueContext renameClasue() throws RecognitionException { + RenameClasueContext _localctx = new RenameClasueContext(_ctx, getState()); + enterRule(_localctx, 40, RULE_renameClasue); + try { + enterOuterAlt(_localctx, 1); + { + setState(400); + ((RenameClasueContext)_localctx).orignalField = wcFieldExpression(); + setState(401); + match(AS); + setState(402); + ((RenameClasueContext)_localctx).renamedField = wcFieldExpression(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ByClauseContext extends ParserRuleContext { + public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public ByClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_byClause; } + } + + public final ByClauseContext byClause() throws RecognitionException { + ByClauseContext _localctx = new ByClauseContext(_ctx, getState()); + enterRule(_localctx, 42, RULE_byClause); + try { + enterOuterAlt(_localctx, 1); + { + setState(404); + match(BY); + setState(405); + fieldList(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsByClauseContext extends ParserRuleContext { + public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } + public FieldListContext fieldList() { + return getRuleContext(FieldListContext.class,0); + } + public BySpanClauseContext bySpanClause() { + return getRuleContext(BySpanClauseContext.class,0); + } + public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } + public StatsByClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsByClause; } + } + + public final StatsByClauseContext statsByClause() throws RecognitionException { + StatsByClauseContext _localctx = new StatsByClauseContext(_ctx, getState()); + enterRule(_localctx, 44, RULE_statsByClause); + try { + setState(416); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(407); + match(BY); + setState(408); + fieldList(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(409); + match(BY); + setState(410); + bySpanClause(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(411); + match(BY); + setState(412); + bySpanClause(); + setState(413); + match(COMMA); + setState(414); + fieldList(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BySpanClauseContext extends ParserRuleContext { + public QualifiedNameContext alias; + public SpanClauseContext spanClause() { + return getRuleContext(SpanClauseContext.class,0); + } + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public BySpanClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_bySpanClause; } + } + + public final BySpanClauseContext bySpanClause() throws RecognitionException { + BySpanClauseContext _localctx = new BySpanClauseContext(_ctx, getState()); + enterRule(_localctx, 46, RULE_bySpanClause); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(418); + spanClause(); + setState(421); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AS) { + { + setState(419); + match(AS); + setState(420); + ((BySpanClauseContext)_localctx).alias = qualifiedName(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SpanClauseContext extends ParserRuleContext { + public LiteralValueContext value; + public TimespanUnitContext unit; + public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public LiteralValueContext literalValue() { + return getRuleContext(LiteralValueContext.class,0); + } + public TimespanUnitContext timespanUnit() { + return getRuleContext(TimespanUnitContext.class,0); + } + public SpanClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_spanClause; } + } + + public final SpanClauseContext spanClause() throws RecognitionException { + SpanClauseContext _localctx = new SpanClauseContext(_ctx, getState()); + enterRule(_localctx, 48, RULE_spanClause); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(423); + match(SPAN); + setState(424); + match(LT_PRTHS); + setState(425); + fieldExpression(); + setState(426); + match(COMMA); + setState(427); + ((SpanClauseContext)_localctx).value = literalValue(); + setState(429); + _errHandler.sync(this); + _la = _input.LA(1); + if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) { + { + setState(428); + ((SpanClauseContext)_localctx).unit = timespanUnit(); + } + } + + setState(431); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortbyClauseContext extends ParserRuleContext { + public List sortField() { + return getRuleContexts(SortFieldContext.class); + } + public SortFieldContext sortField(int i) { + return getRuleContext(SortFieldContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public SortbyClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortbyClause; } + } + + public final SortbyClauseContext sortbyClause() throws RecognitionException { + SortbyClauseContext _localctx = new SortbyClauseContext(_ctx, getState()); + enterRule(_localctx, 50, RULE_sortbyClause); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(433); + sortField(); + setState(438); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(434); + match(COMMA); + setState(435); + sortField(); + } + } + setState(440); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalClauseContext extends ParserRuleContext { + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public ExpressionContext expression() { + return getRuleContext(ExpressionContext.class,0); + } + public EvalClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalClause; } + } + + public final EvalClauseContext evalClause() throws RecognitionException { + EvalClauseContext _localctx = new EvalClauseContext(_ctx, getState()); + enterRule(_localctx, 52, RULE_evalClause); + try { + enterOuterAlt(_localctx, 1); + { + setState(441); + fieldExpression(); + setState(442); + match(EQUAL); + setState(443); + expression(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsAggTermContext extends ParserRuleContext { + public WcFieldExpressionContext alias; + public StatsFunctionContext statsFunction() { + return getRuleContext(StatsFunctionContext.class,0); + } + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public WcFieldExpressionContext wcFieldExpression() { + return getRuleContext(WcFieldExpressionContext.class,0); + } + public StatsAggTermContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsAggTerm; } + } + + public final StatsAggTermContext statsAggTerm() throws RecognitionException { + StatsAggTermContext _localctx = new StatsAggTermContext(_ctx, getState()); + enterRule(_localctx, 54, RULE_statsAggTerm); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(445); + statsFunction(); + setState(448); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AS) { + { + setState(446); + match(AS); + setState(447); + ((StatsAggTermContext)_localctx).alias = wcFieldExpression(); + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsFunctionContext extends ParserRuleContext { + public StatsFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsFunction; } + + public StatsFunctionContext() { } + public void copyFrom(StatsFunctionContext ctx) { + super.copyFrom(ctx); + } + } + public static class DistinctCountFunctionCallContext extends StatsFunctionContext { + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public TerminalNode DISTINCT_COUNT() { return getToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } + public TerminalNode DC() { return getToken(OpenSearchPPLParser.DC, 0); } + public DistinctCountFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + public static class StatsFunctionCallContext extends StatsFunctionContext { + public StatsFunctionNameContext statsFunctionName() { + return getRuleContext(StatsFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public StatsFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + public static class CountAllFunctionCallContext extends StatsFunctionContext { + public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public CountAllFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + public static class PercentileAggFunctionCallContext extends StatsFunctionContext { + public PercentileAggFunctionContext percentileAggFunction() { + return getRuleContext(PercentileAggFunctionContext.class,0); + } + public PercentileAggFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } + } + + public final StatsFunctionContext statsFunction() throws RecognitionException { + StatsFunctionContext _localctx = new StatsFunctionContext(_ctx, getState()); + enterRule(_localctx, 56, RULE_statsFunction); + int _la; + try { + setState(464); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { + case 1: + _localctx = new StatsFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(450); + statsFunctionName(); + setState(451); + match(LT_PRTHS); + setState(452); + valueExpression(0); + setState(453); + match(RT_PRTHS); + } + break; + case 2: + _localctx = new CountAllFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(455); + match(COUNT); + setState(456); + match(LT_PRTHS); + setState(457); + match(RT_PRTHS); + } + break; + case 3: + _localctx = new DistinctCountFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(458); + _la = _input.LA(1); + if ( !(_la==DISTINCT_COUNT || _la==DC) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(459); + match(LT_PRTHS); + setState(460); + valueExpression(0); + setState(461); + match(RT_PRTHS); + } + break; + case 4: + _localctx = new PercentileAggFunctionCallContext(_localctx); + enterOuterAlt(_localctx, 4); + { + setState(463); + percentileAggFunction(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StatsFunctionNameContext extends ParserRuleContext { + public TerminalNode AVG() { return getToken(OpenSearchPPLParser.AVG, 0); } + public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } + public TerminalNode SUM() { return getToken(OpenSearchPPLParser.SUM, 0); } + public TerminalNode MIN() { return getToken(OpenSearchPPLParser.MIN, 0); } + public TerminalNode MAX() { return getToken(OpenSearchPPLParser.MAX, 0); } + public TerminalNode VAR_SAMP() { return getToken(OpenSearchPPLParser.VAR_SAMP, 0); } + public TerminalNode VAR_POP() { return getToken(OpenSearchPPLParser.VAR_POP, 0); } + public TerminalNode STDDEV_SAMP() { return getToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } + public TerminalNode STDDEV_POP() { return getToken(OpenSearchPPLParser.STDDEV_POP, 0); } + public StatsFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsFunctionName; } + } + + public final StatsFunctionNameContext statsFunctionName() throws RecognitionException { + StatsFunctionNameContext _localctx = new StatsFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 58, RULE_statsFunctionName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(466); + _la = _input.LA(1); + if ( !(((((_la - 114)) & ~0x3f) == 0 && ((1L << (_la - 114)) & ((1L << (AVG - 114)) | (1L << (COUNT - 114)) | (1L << (MAX - 114)) | (1L << (MIN - 114)) | (1L << (SUM - 114)) | (1L << (VAR_SAMP - 114)) | (1L << (VAR_POP - 114)) | (1L << (STDDEV_SAMP - 114)) | (1L << (STDDEV_POP - 114)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PercentileAggFunctionContext extends ParserRuleContext { + public IntegerLiteralContext value; + public FieldExpressionContext aggField; + public TerminalNode PERCENTILE() { return getToken(OpenSearchPPLParser.PERCENTILE, 0); } + public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } + public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public PercentileAggFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_percentileAggFunction; } + } + + public final PercentileAggFunctionContext percentileAggFunction() throws RecognitionException { + PercentileAggFunctionContext _localctx = new PercentileAggFunctionContext(_ctx, getState()); + enterRule(_localctx, 60, RULE_percentileAggFunction); + try { + enterOuterAlt(_localctx, 1); + { + setState(468); + match(PERCENTILE); + setState(469); + match(LESS); + setState(470); + ((PercentileAggFunctionContext)_localctx).value = integerLiteral(); + setState(471); + match(GREATER); + setState(472); + match(LT_PRTHS); + setState(473); + ((PercentileAggFunctionContext)_localctx).aggField = fieldExpression(); + setState(474); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ExpressionContext extends ParserRuleContext { + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public ComparisonExpressionContext comparisonExpression() { + return getRuleContext(ComparisonExpressionContext.class,0); + } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public ExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_expression; } + } + + public final ExpressionContext expression() throws RecognitionException { + ExpressionContext _localctx = new ExpressionContext(_ctx, getState()); + enterRule(_localctx, 62, RULE_expression); + try { + setState(479); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(476); + logicalExpression(0); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(477); + comparisonExpression(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(478); + valueExpression(0); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LogicalExpressionContext extends ParserRuleContext { + public LogicalExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_logicalExpression; } + + public LogicalExpressionContext() { } + public void copyFrom(LogicalExpressionContext ctx) { + super.copyFrom(ctx); + } + } + public static class RelevanceExprContext extends LogicalExpressionContext { + public RelevanceExpressionContext relevanceExpression() { + return getRuleContext(RelevanceExpressionContext.class,0); + } + public RelevanceExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalNotContext extends LogicalExpressionContext { + public TerminalNode NOT() { return getToken(OpenSearchPPLParser.NOT, 0); } + public LogicalExpressionContext logicalExpression() { + return getRuleContext(LogicalExpressionContext.class,0); + } + public LogicalNotContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class BooleanExprContext extends LogicalExpressionContext { + public BooleanExpressionContext booleanExpression() { + return getRuleContext(BooleanExpressionContext.class,0); + } + public BooleanExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalAndContext extends LogicalExpressionContext { + public LogicalExpressionContext left; + public LogicalExpressionContext right; + public List logicalExpression() { + return getRuleContexts(LogicalExpressionContext.class); + } + public LogicalExpressionContext logicalExpression(int i) { + return getRuleContext(LogicalExpressionContext.class,i); + } + public TerminalNode AND() { return getToken(OpenSearchPPLParser.AND, 0); } + public LogicalAndContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class ComparsionContext extends LogicalExpressionContext { + public ComparisonExpressionContext comparisonExpression() { + return getRuleContext(ComparisonExpressionContext.class,0); + } + public ComparsionContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalXorContext extends LogicalExpressionContext { + public LogicalExpressionContext left; + public LogicalExpressionContext right; + public TerminalNode XOR() { return getToken(OpenSearchPPLParser.XOR, 0); } + public List logicalExpression() { + return getRuleContexts(LogicalExpressionContext.class); + } + public LogicalExpressionContext logicalExpression(int i) { + return getRuleContext(LogicalExpressionContext.class,i); + } + public LogicalXorContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + public static class LogicalOrContext extends LogicalExpressionContext { + public LogicalExpressionContext left; + public LogicalExpressionContext right; + public TerminalNode OR() { return getToken(OpenSearchPPLParser.OR, 0); } + public List logicalExpression() { + return getRuleContexts(LogicalExpressionContext.class); + } + public LogicalExpressionContext logicalExpression(int i) { + return getRuleContext(LogicalExpressionContext.class,i); + } + public LogicalOrContext(LogicalExpressionContext ctx) { copyFrom(ctx); } + } + + public final LogicalExpressionContext logicalExpression() throws RecognitionException { + return logicalExpression(0); + } + + private LogicalExpressionContext logicalExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + LogicalExpressionContext _localctx = new LogicalExpressionContext(_ctx, _parentState); + LogicalExpressionContext _prevctx = _localctx; + int _startState = 64; + enterRecursionRule(_localctx, 64, RULE_logicalExpression, _p); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(487); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + case 1: + { + _localctx = new ComparsionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(482); + comparisonExpression(); + } + break; + case 2: + { + _localctx = new LogicalNotContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(483); + match(NOT); + setState(484); + logicalExpression(6); + } + break; + case 3: + { + _localctx = new BooleanExprContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(485); + booleanExpression(); + } + break; + case 4: + { + _localctx = new RelevanceExprContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(486); + relevanceExpression(); + } + break; + } + _ctx.stop = _input.LT(-1); + setState(502); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + setState(500); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { + case 1: + { + _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); + ((LogicalOrContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); + setState(489); + if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); + setState(490); + match(OR); + setState(491); + ((LogicalOrContext)_localctx).right = logicalExpression(6); + } + break; + case 2: + { + _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); + ((LogicalAndContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); + setState(492); + if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); + setState(494); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==AND) { + { + setState(493); + match(AND); + } + } + + setState(496); + ((LogicalAndContext)_localctx).right = logicalExpression(5); + } + break; + case 3: + { + _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); + ((LogicalXorContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); + setState(497); + if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); + setState(498); + match(XOR); + setState(499); + ((LogicalXorContext)_localctx).right = logicalExpression(4); + } + break; + } + } + } + setState(504); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + unrollRecursionContexts(_parentctx); + } + return _localctx; + } + + public static class ComparisonExpressionContext extends ParserRuleContext { + public ComparisonExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_comparisonExpression; } + + public ComparisonExpressionContext() { } + public void copyFrom(ComparisonExpressionContext ctx) { + super.copyFrom(ctx); + } + } + public static class InExprContext extends ComparisonExpressionContext { + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public TerminalNode IN() { return getToken(OpenSearchPPLParser.IN, 0); } + public ValueListContext valueList() { + return getRuleContext(ValueListContext.class,0); + } + public InExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } + } + public static class CompareExprContext extends ComparisonExpressionContext { + public ValueExpressionContext left; + public ValueExpressionContext right; + public ComparisonOperatorContext comparisonOperator() { + return getRuleContext(ComparisonOperatorContext.class,0); + } + public List valueExpression() { + return getRuleContexts(ValueExpressionContext.class); + } + public ValueExpressionContext valueExpression(int i) { + return getRuleContext(ValueExpressionContext.class,i); + } + public CompareExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } + } + + public final ComparisonExpressionContext comparisonExpression() throws RecognitionException { + ComparisonExpressionContext _localctx = new ComparisonExpressionContext(_ctx, getState()); + enterRule(_localctx, 66, RULE_comparisonExpression); + try { + setState(513); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { + case 1: + _localctx = new CompareExprContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(505); + ((CompareExprContext)_localctx).left = valueExpression(0); + setState(506); + comparisonOperator(); + setState(507); + ((CompareExprContext)_localctx).right = valueExpression(0); + } + break; + case 2: + _localctx = new InExprContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(509); + valueExpression(0); + setState(510); + match(IN); + setState(511); + valueList(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ValueExpressionContext extends ParserRuleContext { + public ValueExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_valueExpression; } + + public ValueExpressionContext() { } + public void copyFrom(ValueExpressionContext ctx) { + super.copyFrom(ctx); + } + } + public static class ValueExpressionDefaultContext extends ValueExpressionContext { + public PrimaryExpressionContext primaryExpression() { + return getRuleContext(PrimaryExpressionContext.class,0); + } + public ValueExpressionDefaultContext(ValueExpressionContext ctx) { copyFrom(ctx); } + } + public static class ParentheticBinaryArithmeticContext extends ValueExpressionContext { + public ValueExpressionContext left; + public ValueExpressionContext right; + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public BinaryOperatorContext binaryOperator() { + return getRuleContext(BinaryOperatorContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public List valueExpression() { + return getRuleContexts(ValueExpressionContext.class); + } + public ValueExpressionContext valueExpression(int i) { + return getRuleContext(ValueExpressionContext.class,i); + } + public ParentheticBinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } + } + public static class BinaryArithmeticContext extends ValueExpressionContext { + public ValueExpressionContext left; + public ValueExpressionContext right; + public BinaryOperatorContext binaryOperator() { + return getRuleContext(BinaryOperatorContext.class,0); + } + public List valueExpression() { + return getRuleContexts(ValueExpressionContext.class); + } + public ValueExpressionContext valueExpression(int i) { + return getRuleContext(ValueExpressionContext.class,i); + } + public BinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } + } + + public final ValueExpressionContext valueExpression() throws RecognitionException { + return valueExpression(0); + } + + private ValueExpressionContext valueExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, _parentState); + ValueExpressionContext _prevctx = _localctx; + int _startState = 68; + enterRecursionRule(_localctx, 68, RULE_valueExpression, _p); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(523); + _errHandler.sync(this); + switch (_input.LA(1)) { + case LT_PRTHS: + { + _localctx = new ParentheticBinaryArithmeticContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(516); + match(LT_PRTHS); + setState(517); + ((ParentheticBinaryArithmeticContext)_localctx).left = valueExpression(0); + setState(518); + binaryOperator(); + setState(519); + ((ParentheticBinaryArithmeticContext)_localctx).right = valueExpression(0); + setState(520); + match(RT_PRTHS); + } + break; + case D: + case TRUE: + case FALSE: + case INTERVAL: + case MICROSECOND: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case PLUS: + case MINUS: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case ABS: + case CEIL: + case CEILING: + case CONV: + case CRC32: + case E: + case EXP: + case FLOOR: + case LN: + case LOG: + case LOG10: + case LOG2: + case MOD: + case PI: + case POW: + case POWER: + case RAND: + case ROUND: + case SIGN: + case SQRT: + case TRUNCATE: + case ACOS: + case ASIN: + case ATAN: + case ATAN2: + case COS: + case COT: + case DEGREES: + case RADIANS: + case SIN: + case TAN: + case ADDDATE: + case DATE: + case DATE_ADD: + case DATE_SUB: + case DAYOFMONTH: + case DAYOFWEEK: + case DAYOFYEAR: + case DAYNAME: + case FROM_DAYS: + case MONTHNAME: + case SUBDATE: + case TIME: + case TIME_TO_SEC: + case TIMESTAMP: + case DATE_FORMAT: + case TO_DAYS: + case SUBSTR: + case SUBSTRING: + case LTRIM: + case RTRIM: + case TRIM: + case LOWER: + case UPPER: + case CONCAT: + case CONCAT_WS: + case LENGTH: + case STRCMP: + case RIGHT: + case LEFT: + case ASCII: + case LOCATE: + case REPLACE: + case CAST: + case LIKE: + case ISNULL: + case ISNOTNULL: + case IFNULL: + case NULLIF: + case IF: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case INTEGER_LITERAL: + case DECIMAL_LITERAL: + case DQUOTA_STRING: + case SQUOTA_STRING: + case BQUOTA_STRING: + { + _localctx = new ValueExpressionDefaultContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(522); + primaryExpression(); + } + break; + default: + throw new NoViableAltException(this); + } + _ctx.stop = _input.LT(-1); + setState(531); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + { + _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); + ((BinaryArithmeticContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_valueExpression); + setState(525); + if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); + setState(526); + binaryOperator(); + setState(527); + ((BinaryArithmeticContext)_localctx).right = valueExpression(4); + } + } + } + setState(533); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + unrollRecursionContexts(_parentctx); + } + return _localctx; + } + + public static class PrimaryExpressionContext extends ParserRuleContext { + public EvalFunctionCallContext evalFunctionCall() { + return getRuleContext(EvalFunctionCallContext.class,0); + } + public DataTypeFunctionCallContext dataTypeFunctionCall() { + return getRuleContext(DataTypeFunctionCallContext.class,0); + } + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public LiteralValueContext literalValue() { + return getRuleContext(LiteralValueContext.class,0); + } + public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_primaryExpression; } + } + + public final PrimaryExpressionContext primaryExpression() throws RecognitionException { + PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, getState()); + enterRule(_localctx, 70, RULE_primaryExpression); + try { + setState(538); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(534); + evalFunctionCall(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(535); + dataTypeFunctionCall(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(536); + fieldExpression(); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(537); + literalValue(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BooleanExpressionContext extends ParserRuleContext { + public BooleanFunctionCallContext booleanFunctionCall() { + return getRuleContext(BooleanFunctionCallContext.class,0); + } + public BooleanExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_booleanExpression; } + } + + public final BooleanExpressionContext booleanExpression() throws RecognitionException { + BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, getState()); + enterRule(_localctx, 72, RULE_booleanExpression); + try { + enterOuterAlt(_localctx, 1); + { + setState(540); + booleanFunctionCall(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceExpressionContext extends ParserRuleContext { + public SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() { + return getRuleContext(SingleFieldRelevanceFunctionContext.class,0); + } + public MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() { + return getRuleContext(MultiFieldRelevanceFunctionContext.class,0); + } + public RelevanceExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceExpression; } + } + + public final RelevanceExpressionContext relevanceExpression() throws RecognitionException { + RelevanceExpressionContext _localctx = new RelevanceExpressionContext(_ctx, getState()); + enterRule(_localctx, 74, RULE_relevanceExpression); + try { + setState(544); + _errHandler.sync(this); + switch (_input.LA(1)) { + case MATCH: + case MATCH_PHRASE: + enterOuterAlt(_localctx, 1); + { + setState(542); + singleFieldRelevanceFunction(); + } + break; + case SIMPLE_QUERY_STRING: + enterOuterAlt(_localctx, 2); + { + setState(543); + multiFieldRelevanceFunction(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SingleFieldRelevanceFunctionContext extends ParserRuleContext { + public RelevanceFieldContext field; + public RelevanceQueryContext query; + public SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() { + return getRuleContext(SingleFieldRelevanceFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public RelevanceFieldContext relevanceField() { + return getRuleContext(RelevanceFieldContext.class,0); + } + public RelevanceQueryContext relevanceQuery() { + return getRuleContext(RelevanceQueryContext.class,0); + } + public List relevanceArg() { + return getRuleContexts(RelevanceArgContext.class); + } + public RelevanceArgContext relevanceArg(int i) { + return getRuleContext(RelevanceArgContext.class,i); + } + public SingleFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunction; } + } + + public final SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() throws RecognitionException { + SingleFieldRelevanceFunctionContext _localctx = new SingleFieldRelevanceFunctionContext(_ctx, getState()); + enterRule(_localctx, 76, RULE_singleFieldRelevanceFunction); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(546); + singleFieldRelevanceFunctionName(); + setState(547); + match(LT_PRTHS); + setState(548); + ((SingleFieldRelevanceFunctionContext)_localctx).field = relevanceField(); + setState(549); + match(COMMA); + setState(550); + ((SingleFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); + setState(555); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(551); + match(COMMA); + setState(552); + relevanceArg(); + } + } + setState(557); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(558); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class MultiFieldRelevanceFunctionContext extends ParserRuleContext { + public RelevanceFieldAndWeightContext field; + public RelevanceQueryContext query; + public MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() { + return getRuleContext(MultiFieldRelevanceFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode LT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } + public TerminalNode RT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public List relevanceFieldAndWeight() { + return getRuleContexts(RelevanceFieldAndWeightContext.class); + } + public RelevanceFieldAndWeightContext relevanceFieldAndWeight(int i) { + return getRuleContext(RelevanceFieldAndWeightContext.class,i); + } + public RelevanceQueryContext relevanceQuery() { + return getRuleContext(RelevanceQueryContext.class,0); + } + public List relevanceArg() { + return getRuleContexts(RelevanceArgContext.class); + } + public RelevanceArgContext relevanceArg(int i) { + return getRuleContext(RelevanceArgContext.class,i); + } + public MultiFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunction; } + } + + public final MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() throws RecognitionException { + MultiFieldRelevanceFunctionContext _localctx = new MultiFieldRelevanceFunctionContext(_ctx, getState()); + enterRule(_localctx, 78, RULE_multiFieldRelevanceFunction); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(560); + multiFieldRelevanceFunctionName(); + setState(561); + match(LT_PRTHS); + setState(562); + match(LT_SQR_PRTHS); + setState(563); + ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); + setState(568); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(564); + match(COMMA); + setState(565); + ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); + } + } + setState(570); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(571); + match(RT_SQR_PRTHS); + setState(572); + match(COMMA); + setState(573); + ((MultiFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); + setState(578); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(574); + match(COMMA); + setState(575); + relevanceArg(); + } + } + setState(580); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(581); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TableSourceContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public TerminalNode ID_DATE_SUFFIX() { return getToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } + public TableSourceContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_tableSource; } + } + + public final TableSourceContext tableSource() throws RecognitionException { + TableSourceContext _localctx = new TableSourceContext(_ctx, getState()); + enterRule(_localctx, 80, RULE_tableSource); + try { + setState(585); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(583); + qualifiedName(); + } + break; + case ID_DATE_SUFFIX: + enterOuterAlt(_localctx, 2); + { + setState(584); + match(ID_DATE_SUFFIX); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FieldListContext extends ParserRuleContext { + public List fieldExpression() { + return getRuleContexts(FieldExpressionContext.class); + } + public FieldExpressionContext fieldExpression(int i) { + return getRuleContext(FieldExpressionContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public FieldListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fieldList; } + } + + public final FieldListContext fieldList() throws RecognitionException { + FieldListContext _localctx = new FieldListContext(_ctx, getState()); + enterRule(_localctx, 82, RULE_fieldList); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(587); + fieldExpression(); + setState(592); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(588); + match(COMMA); + setState(589); + fieldExpression(); + } + } + setState(594); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WcFieldListContext extends ParserRuleContext { + public List wcFieldExpression() { + return getRuleContexts(WcFieldExpressionContext.class); + } + public WcFieldExpressionContext wcFieldExpression(int i) { + return getRuleContext(WcFieldExpressionContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public WcFieldListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wcFieldList; } + } + + public final WcFieldListContext wcFieldList() throws RecognitionException { + WcFieldListContext _localctx = new WcFieldListContext(_ctx, getState()); + enterRule(_localctx, 84, RULE_wcFieldList); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(595); + wcFieldExpression(); + setState(600); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(596); + match(COMMA); + setState(597); + wcFieldExpression(); + } + } + setState(602); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortFieldContext extends ParserRuleContext { + public SortFieldExpressionContext sortFieldExpression() { + return getRuleContext(SortFieldExpressionContext.class,0); + } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public SortFieldContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortField; } + } + + public final SortFieldContext sortField() throws RecognitionException { + SortFieldContext _localctx = new SortFieldContext(_ctx, getState()); + enterRule(_localctx, 86, RULE_sortField); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(604); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(603); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(606); + sortFieldExpression(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SortFieldExpressionContext extends ParserRuleContext { + public FieldExpressionContext fieldExpression() { + return getRuleContext(FieldExpressionContext.class,0); + } + public TerminalNode AUTO() { return getToken(OpenSearchPPLParser.AUTO, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public TerminalNode STR() { return getToken(OpenSearchPPLParser.STR, 0); } + public TerminalNode IP() { return getToken(OpenSearchPPLParser.IP, 0); } + public TerminalNode NUM() { return getToken(OpenSearchPPLParser.NUM, 0); } + public SortFieldExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_sortFieldExpression; } + } + + public final SortFieldExpressionContext sortFieldExpression() throws RecognitionException { + SortFieldExpressionContext _localctx = new SortFieldExpressionContext(_ctx, getState()); + enterRule(_localctx, 88, RULE_sortFieldExpression); + try { + setState(629); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(608); + fieldExpression(); + } + break; + case AUTO: + enterOuterAlt(_localctx, 2); + { + setState(609); + match(AUTO); + setState(610); + match(LT_PRTHS); + setState(611); + fieldExpression(); + setState(612); + match(RT_PRTHS); + } + break; + case STR: + enterOuterAlt(_localctx, 3); + { + setState(614); + match(STR); + setState(615); + match(LT_PRTHS); + setState(616); + fieldExpression(); + setState(617); + match(RT_PRTHS); + } + break; + case IP: + enterOuterAlt(_localctx, 4); + { + setState(619); + match(IP); + setState(620); + match(LT_PRTHS); + setState(621); + fieldExpression(); + setState(622); + match(RT_PRTHS); + } + break; + case NUM: + enterOuterAlt(_localctx, 5); + { + setState(624); + match(NUM); + setState(625); + match(LT_PRTHS); + setState(626); + fieldExpression(); + setState(627); + match(RT_PRTHS); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FieldExpressionContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public FieldExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fieldExpression; } + } + + public final FieldExpressionContext fieldExpression() throws RecognitionException { + FieldExpressionContext _localctx = new FieldExpressionContext(_ctx, getState()); + enterRule(_localctx, 90, RULE_fieldExpression); + try { + enterOuterAlt(_localctx, 1); + { + setState(631); + qualifiedName(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WcFieldExpressionContext extends ParserRuleContext { + public WcQualifiedNameContext wcQualifiedName() { + return getRuleContext(WcQualifiedNameContext.class,0); + } + public WcFieldExpressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wcFieldExpression; } + } + + public final WcFieldExpressionContext wcFieldExpression() throws RecognitionException { + WcFieldExpressionContext _localctx = new WcFieldExpressionContext(_ctx, getState()); + enterRule(_localctx, 92, RULE_wcFieldExpression); + try { + enterOuterAlt(_localctx, 1); + { + setState(633); + wcQualifiedName(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalFunctionCallContext extends ParserRuleContext { + public EvalFunctionNameContext evalFunctionName() { + return getRuleContext(EvalFunctionNameContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public FunctionArgsContext functionArgs() { + return getRuleContext(FunctionArgsContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public EvalFunctionCallContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalFunctionCall; } + } + + public final EvalFunctionCallContext evalFunctionCall() throws RecognitionException { + EvalFunctionCallContext _localctx = new EvalFunctionCallContext(_ctx, getState()); + enterRule(_localctx, 94, RULE_evalFunctionCall); + try { + enterOuterAlt(_localctx, 1); + { + setState(635); + evalFunctionName(); + setState(636); + match(LT_PRTHS); + setState(637); + functionArgs(); + setState(638); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DataTypeFunctionCallContext extends ParserRuleContext { + public TerminalNode CAST() { return getToken(OpenSearchPPLParser.CAST, 0); } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public ExpressionContext expression() { + return getRuleContext(ExpressionContext.class,0); + } + public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } + public ConvertedDataTypeContext convertedDataType() { + return getRuleContext(ConvertedDataTypeContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public DataTypeFunctionCallContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dataTypeFunctionCall; } + } + + public final DataTypeFunctionCallContext dataTypeFunctionCall() throws RecognitionException { + DataTypeFunctionCallContext _localctx = new DataTypeFunctionCallContext(_ctx, getState()); + enterRule(_localctx, 96, RULE_dataTypeFunctionCall); + try { + enterOuterAlt(_localctx, 1); + { + setState(640); + match(CAST); + setState(641); + match(LT_PRTHS); + setState(642); + expression(); + setState(643); + match(AS); + setState(644); + convertedDataType(); + setState(645); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BooleanFunctionCallContext extends ParserRuleContext { + public ConditionFunctionBaseContext conditionFunctionBase() { + return getRuleContext(ConditionFunctionBaseContext.class,0); + } + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public FunctionArgsContext functionArgs() { + return getRuleContext(FunctionArgsContext.class,0); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public BooleanFunctionCallContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_booleanFunctionCall; } + } + + public final BooleanFunctionCallContext booleanFunctionCall() throws RecognitionException { + BooleanFunctionCallContext _localctx = new BooleanFunctionCallContext(_ctx, getState()); + enterRule(_localctx, 98, RULE_booleanFunctionCall); + try { + enterOuterAlt(_localctx, 1); + { + setState(647); + conditionFunctionBase(); + setState(648); + match(LT_PRTHS); + setState(649); + functionArgs(); + setState(650); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ConvertedDataTypeContext extends ParserRuleContext { + public Token typeName; + public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } + public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } + public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TerminalNode INT() { return getToken(OpenSearchPPLParser.INT, 0); } + public TerminalNode INTEGER() { return getToken(OpenSearchPPLParser.INTEGER, 0); } + public TerminalNode DOUBLE() { return getToken(OpenSearchPPLParser.DOUBLE, 0); } + public TerminalNode LONG() { return getToken(OpenSearchPPLParser.LONG, 0); } + public TerminalNode FLOAT() { return getToken(OpenSearchPPLParser.FLOAT, 0); } + public TerminalNode STRING() { return getToken(OpenSearchPPLParser.STRING, 0); } + public TerminalNode BOOLEAN() { return getToken(OpenSearchPPLParser.BOOLEAN, 0); } + public ConvertedDataTypeContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_convertedDataType; } + } + + public final ConvertedDataTypeContext convertedDataType() throws RecognitionException { + ConvertedDataTypeContext _localctx = new ConvertedDataTypeContext(_ctx, getState()); + enterRule(_localctx, 100, RULE_convertedDataType); + try { + setState(662); + _errHandler.sync(this); + switch (_input.LA(1)) { + case DATE: + enterOuterAlt(_localctx, 1); + { + setState(652); + ((ConvertedDataTypeContext)_localctx).typeName = match(DATE); + } + break; + case TIME: + enterOuterAlt(_localctx, 2); + { + setState(653); + ((ConvertedDataTypeContext)_localctx).typeName = match(TIME); + } + break; + case TIMESTAMP: + enterOuterAlt(_localctx, 3); + { + setState(654); + ((ConvertedDataTypeContext)_localctx).typeName = match(TIMESTAMP); + } + break; + case INT: + enterOuterAlt(_localctx, 4); + { + setState(655); + ((ConvertedDataTypeContext)_localctx).typeName = match(INT); + } + break; + case INTEGER: + enterOuterAlt(_localctx, 5); + { + setState(656); + ((ConvertedDataTypeContext)_localctx).typeName = match(INTEGER); + } + break; + case DOUBLE: + enterOuterAlt(_localctx, 6); + { + setState(657); + ((ConvertedDataTypeContext)_localctx).typeName = match(DOUBLE); + } + break; + case LONG: + enterOuterAlt(_localctx, 7); + { + setState(658); + ((ConvertedDataTypeContext)_localctx).typeName = match(LONG); + } + break; + case FLOAT: + enterOuterAlt(_localctx, 8); + { + setState(659); + ((ConvertedDataTypeContext)_localctx).typeName = match(FLOAT); + } + break; + case STRING: + enterOuterAlt(_localctx, 9); + { + setState(660); + ((ConvertedDataTypeContext)_localctx).typeName = match(STRING); + } + break; + case BOOLEAN: + enterOuterAlt(_localctx, 10); + { + setState(661); + ((ConvertedDataTypeContext)_localctx).typeName = match(BOOLEAN); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class EvalFunctionNameContext extends ParserRuleContext { + public MathematicalFunctionBaseContext mathematicalFunctionBase() { + return getRuleContext(MathematicalFunctionBaseContext.class,0); + } + public DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() { + return getRuleContext(DateAndTimeFunctionBaseContext.class,0); + } + public TextFunctionBaseContext textFunctionBase() { + return getRuleContext(TextFunctionBaseContext.class,0); + } + public ConditionFunctionBaseContext conditionFunctionBase() { + return getRuleContext(ConditionFunctionBaseContext.class,0); + } + public EvalFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_evalFunctionName; } + } + + public final EvalFunctionNameContext evalFunctionName() throws RecognitionException { + EvalFunctionNameContext _localctx = new EvalFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 102, RULE_evalFunctionName); + try { + setState(668); + _errHandler.sync(this); + switch (_input.LA(1)) { + case ABS: + case CEIL: + case CEILING: + case CONV: + case CRC32: + case E: + case EXP: + case FLOOR: + case LN: + case LOG: + case LOG10: + case LOG2: + case MOD: + case PI: + case POW: + case POWER: + case RAND: + case ROUND: + case SIGN: + case SQRT: + case TRUNCATE: + case ACOS: + case ASIN: + case ATAN: + case ATAN2: + case COS: + case COT: + case DEGREES: + case RADIANS: + case SIN: + case TAN: + enterOuterAlt(_localctx, 1); + { + setState(664); + mathematicalFunctionBase(); + } + break; + case MICROSECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case ADDDATE: + case DATE: + case DATE_ADD: + case DATE_SUB: + case DAYOFMONTH: + case DAYOFWEEK: + case DAYOFYEAR: + case DAYNAME: + case FROM_DAYS: + case MONTHNAME: + case SUBDATE: + case TIME: + case TIME_TO_SEC: + case TIMESTAMP: + case DATE_FORMAT: + case TO_DAYS: + enterOuterAlt(_localctx, 2); + { + setState(665); + dateAndTimeFunctionBase(); + } + break; + case SUBSTR: + case SUBSTRING: + case LTRIM: + case RTRIM: + case TRIM: + case LOWER: + case UPPER: + case CONCAT: + case CONCAT_WS: + case LENGTH: + case STRCMP: + case RIGHT: + case LEFT: + case ASCII: + case LOCATE: + case REPLACE: + enterOuterAlt(_localctx, 3); + { + setState(666); + textFunctionBase(); + } + break; + case LIKE: + case ISNULL: + case ISNOTNULL: + case IFNULL: + case NULLIF: + case IF: + enterOuterAlt(_localctx, 4); + { + setState(667); + conditionFunctionBase(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FunctionArgsContext extends ParserRuleContext { + public List functionArg() { + return getRuleContexts(FunctionArgContext.class); + } + public FunctionArgContext functionArg(int i) { + return getRuleContext(FunctionArgContext.class,i); + } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public FunctionArgsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_functionArgs; } + } + + public final FunctionArgsContext functionArgs() throws RecognitionException { + FunctionArgsContext _localctx = new FunctionArgsContext(_ctx, getState()); + enterRule(_localctx, 104, RULE_functionArgs); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(678); + _errHandler.sync(this); + _la = _input.LA(1); + if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (TRUE - 20)) | (1L << (FALSE - 20)) | (1L << (INTERVAL - 20)) | (1L << (MICROSECOND - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 90)) & ~0x3f) == 0 && ((1L << (_la - 90)) & ((1L << (DOT - 90)) | (1L << (PLUS - 90)) | (1L << (MINUS - 90)) | (1L << (LT_PRTHS - 90)) | (1L << (BACKTICK - 90)) | (1L << (AVG - 90)) | (1L << (COUNT - 90)) | (1L << (MAX - 90)) | (1L << (MIN - 90)) | (1L << (SUM - 90)) | (1L << (VAR_SAMP - 90)) | (1L << (VAR_POP - 90)) | (1L << (STDDEV_SAMP - 90)) | (1L << (STDDEV_POP - 90)) | (1L << (FIRST - 90)) | (1L << (LAST - 90)) | (1L << (ABS - 90)) | (1L << (CEIL - 90)) | (1L << (CEILING - 90)) | (1L << (CONV - 90)))) != 0) || ((((_la - 154)) & ~0x3f) == 0 && ((1L << (_la - 154)) & ((1L << (CRC32 - 154)) | (1L << (E - 154)) | (1L << (EXP - 154)) | (1L << (FLOOR - 154)) | (1L << (LN - 154)) | (1L << (LOG - 154)) | (1L << (LOG10 - 154)) | (1L << (LOG2 - 154)) | (1L << (MOD - 154)) | (1L << (PI - 154)) | (1L << (POW - 154)) | (1L << (POWER - 154)) | (1L << (RAND - 154)) | (1L << (ROUND - 154)) | (1L << (SIGN - 154)) | (1L << (SQRT - 154)) | (1L << (TRUNCATE - 154)) | (1L << (ACOS - 154)) | (1L << (ASIN - 154)) | (1L << (ATAN - 154)) | (1L << (ATAN2 - 154)) | (1L << (COS - 154)) | (1L << (COT - 154)) | (1L << (DEGREES - 154)) | (1L << (RADIANS - 154)) | (1L << (SIN - 154)) | (1L << (TAN - 154)) | (1L << (ADDDATE - 154)) | (1L << (DATE - 154)) | (1L << (DATE_ADD - 154)) | (1L << (DATE_SUB - 154)) | (1L << (DAYOFMONTH - 154)) | (1L << (DAYOFWEEK - 154)) | (1L << (DAYOFYEAR - 154)) | (1L << (DAYNAME - 154)) | (1L << (FROM_DAYS - 154)) | (1L << (MONTHNAME - 154)) | (1L << (SUBDATE - 154)) | (1L << (TIME - 154)) | (1L << (TIME_TO_SEC - 154)) | (1L << (TIMESTAMP - 154)) | (1L << (DATE_FORMAT - 154)) | (1L << (TO_DAYS - 154)) | (1L << (SUBSTR - 154)) | (1L << (SUBSTRING - 154)) | (1L << (LTRIM - 154)) | (1L << (RTRIM - 154)) | (1L << (TRIM - 154)) | (1L << (LOWER - 154)) | (1L << (UPPER - 154)) | (1L << (CONCAT - 154)) | (1L << (CONCAT_WS - 154)) | (1L << (LENGTH - 154)) | (1L << (STRCMP - 154)) | (1L << (RIGHT - 154)) | (1L << (LEFT - 154)) | (1L << (ASCII - 154)) | (1L << (LOCATE - 154)) | (1L << (REPLACE - 154)) | (1L << (CAST - 154)) | (1L << (LIKE - 154)) | (1L << (ISNULL - 154)) | (1L << (ISNOTNULL - 154)))) != 0) || ((((_la - 218)) & ~0x3f) == 0 && ((1L << (_la - 218)) & ((1L << (IFNULL - 218)) | (1L << (NULLIF - 218)) | (1L << (IF - 218)) | (1L << (SPAN - 218)) | (1L << (MS - 218)) | (1L << (S - 218)) | (1L << (M - 218)) | (1L << (H - 218)) | (1L << (W - 218)) | (1L << (Q - 218)) | (1L << (Y - 218)) | (1L << (ID - 218)) | (1L << (INTEGER_LITERAL - 218)) | (1L << (DECIMAL_LITERAL - 218)) | (1L << (DQUOTA_STRING - 218)) | (1L << (SQUOTA_STRING - 218)) | (1L << (BQUOTA_STRING - 218)))) != 0)) { + { + setState(670); + functionArg(); + setState(675); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(671); + match(COMMA); + setState(672); + functionArg(); + } + } + setState(677); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FunctionArgContext extends ParserRuleContext { + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public FunctionArgContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_functionArg; } + } + + public final FunctionArgContext functionArg() throws RecognitionException { + FunctionArgContext _localctx = new FunctionArgContext(_ctx, getState()); + enterRule(_localctx, 106, RULE_functionArg); + try { + enterOuterAlt(_localctx, 1); + { + setState(680); + valueExpression(0); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceArgContext extends ParserRuleContext { + public RelevanceArgNameContext relevanceArgName() { + return getRuleContext(RelevanceArgNameContext.class,0); + } + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public RelevanceArgValueContext relevanceArgValue() { + return getRuleContext(RelevanceArgValueContext.class,0); + } + public RelevanceArgContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceArg; } + } + + public final RelevanceArgContext relevanceArg() throws RecognitionException { + RelevanceArgContext _localctx = new RelevanceArgContext(_ctx, getState()); + enterRule(_localctx, 108, RULE_relevanceArg); + try { + enterOuterAlt(_localctx, 1); + { + setState(682); + relevanceArgName(); + setState(683); + match(EQUAL); + setState(684); + relevanceArgValue(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceArgNameContext extends ParserRuleContext { + public TerminalNode ALLOW_LEADING_WILDCARD() { return getToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } + public TerminalNode ANALYZER() { return getToken(OpenSearchPPLParser.ANALYZER, 0); } + public TerminalNode ANALYZE_WILDCARD() { return getToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } + public TerminalNode AUTO_GENERATE_SYNONYMS_PHRASE_QUERY() { return getToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } + public TerminalNode BOOST() { return getToken(OpenSearchPPLParser.BOOST, 0); } + public TerminalNode CUTOFF_FREQUENCY() { return getToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } + public TerminalNode DEFAULT_FIELD() { return getToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } + public TerminalNode DEFAULT_OPERATOR() { return getToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } + public TerminalNode ENABLE_POSITION_INCREMENTS() { return getToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } + public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } + public TerminalNode FLAGS() { return getToken(OpenSearchPPLParser.FLAGS, 0); } + public TerminalNode FUZZINESS() { return getToken(OpenSearchPPLParser.FUZZINESS, 0); } + public TerminalNode FUZZY_MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } + public TerminalNode FUZZY_PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } + public TerminalNode FUZZY_REWRITE() { return getToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } + public TerminalNode FUZZY_TRANSPOSITIONS() { return getToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } + public TerminalNode LENIENT() { return getToken(OpenSearchPPLParser.LENIENT, 0); } + public TerminalNode LOW_FREQ_OPERATOR() { return getToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } + public TerminalNode MAX_DETERMINIZED_STATES() { return getToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } + public TerminalNode MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } + public TerminalNode MINIMUM_SHOULD_MATCH() { return getToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } + public TerminalNode OPERATOR() { return getToken(OpenSearchPPLParser.OPERATOR, 0); } + public TerminalNode PHRASE_SLOP() { return getToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } + public TerminalNode PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } + public TerminalNode QUOTE_ANALYZER() { return getToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } + public TerminalNode QUOTE_FIELD_SUFFIX() { return getToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } + public TerminalNode REWRITE() { return getToken(OpenSearchPPLParser.REWRITE, 0); } + public TerminalNode SLOP() { return getToken(OpenSearchPPLParser.SLOP, 0); } + public TerminalNode TIE_BREAKER() { return getToken(OpenSearchPPLParser.TIE_BREAKER, 0); } + public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TerminalNode TYPE() { return getToken(OpenSearchPPLParser.TYPE, 0); } + public TerminalNode ZERO_TERMS_QUERY() { return getToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } + public RelevanceArgNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceArgName; } + } + + public final RelevanceArgNameContext relevanceArgName() throws RecognitionException { + RelevanceArgNameContext _localctx = new RelevanceArgNameContext(_ctx, getState()); + enterRule(_localctx, 110, RULE_relevanceArgName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(686); + _la = _input.LA(1); + if ( !(_la==FIELDS || _la==TIME_ZONE || ((((_la - 224)) & ~0x3f) == 0 && ((1L << (_la - 224)) & ((1L << (ALLOW_LEADING_WILDCARD - 224)) | (1L << (ANALYZE_WILDCARD - 224)) | (1L << (ANALYZER - 224)) | (1L << (AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1L << (BOOST - 224)) | (1L << (CUTOFF_FREQUENCY - 224)) | (1L << (DEFAULT_FIELD - 224)) | (1L << (DEFAULT_OPERATOR - 224)) | (1L << (ENABLE_POSITION_INCREMENTS - 224)) | (1L << (FLAGS - 224)) | (1L << (FUZZY_MAX_EXPANSIONS - 224)) | (1L << (FUZZY_PREFIX_LENGTH - 224)) | (1L << (FUZZY_TRANSPOSITIONS - 224)) | (1L << (FUZZY_REWRITE - 224)) | (1L << (FUZZINESS - 224)) | (1L << (LENIENT - 224)) | (1L << (LOW_FREQ_OPERATOR - 224)) | (1L << (MAX_DETERMINIZED_STATES - 224)) | (1L << (MAX_EXPANSIONS - 224)) | (1L << (MINIMUM_SHOULD_MATCH - 224)) | (1L << (OPERATOR - 224)) | (1L << (PHRASE_SLOP - 224)) | (1L << (PREFIX_LENGTH - 224)) | (1L << (QUOTE_ANALYZER - 224)) | (1L << (QUOTE_FIELD_SUFFIX - 224)) | (1L << (REWRITE - 224)) | (1L << (SLOP - 224)) | (1L << (TIE_BREAKER - 224)) | (1L << (TYPE - 224)) | (1L << (ZERO_TERMS_QUERY - 224)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceFieldAndWeightContext extends ParserRuleContext { + public RelevanceFieldContext field; + public RelevanceFieldWeightContext weight; + public RelevanceFieldContext relevanceField() { + return getRuleContext(RelevanceFieldContext.class,0); + } + public RelevanceFieldWeightContext relevanceFieldWeight() { + return getRuleContext(RelevanceFieldWeightContext.class,0); + } + public TerminalNode BIT_XOR_OP() { return getToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } + public RelevanceFieldAndWeightContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceFieldAndWeight; } + } + + public final RelevanceFieldAndWeightContext relevanceFieldAndWeight() throws RecognitionException { + RelevanceFieldAndWeightContext _localctx = new RelevanceFieldAndWeightContext(_ctx, getState()); + enterRule(_localctx, 112, RULE_relevanceFieldAndWeight); + try { + setState(696); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(688); + ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(689); + ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); + setState(690); + ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(692); + ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); + setState(693); + match(BIT_XOR_OP); + setState(694); + ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceFieldWeightContext extends ParserRuleContext { + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public DecimalLiteralContext decimalLiteral() { + return getRuleContext(DecimalLiteralContext.class,0); + } + public RelevanceFieldWeightContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceFieldWeight; } + } + + public final RelevanceFieldWeightContext relevanceFieldWeight() throws RecognitionException { + RelevanceFieldWeightContext _localctx = new RelevanceFieldWeightContext(_ctx, getState()); + enterRule(_localctx, 114, RULE_relevanceFieldWeight); + try { + setState(700); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(698); + integerLiteral(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(699); + decimalLiteral(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceFieldContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public RelevanceFieldContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceField; } + } + + public final RelevanceFieldContext relevanceField() throws RecognitionException { + RelevanceFieldContext _localctx = new RelevanceFieldContext(_ctx, getState()); + enterRule(_localctx, 116, RULE_relevanceField); + try { + setState(704); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(702); + qualifiedName(); + } + break; + case DQUOTA_STRING: + case SQUOTA_STRING: + enterOuterAlt(_localctx, 2); + { + setState(703); + stringLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceQueryContext extends ParserRuleContext { + public RelevanceArgValueContext relevanceArgValue() { + return getRuleContext(RelevanceArgValueContext.class,0); + } + public RelevanceQueryContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceQuery; } + } + + public final RelevanceQueryContext relevanceQuery() throws RecognitionException { + RelevanceQueryContext _localctx = new RelevanceQueryContext(_ctx, getState()); + enterRule(_localctx, 118, RULE_relevanceQuery); + try { + enterOuterAlt(_localctx, 1); + { + setState(706); + relevanceArgValue(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RelevanceArgValueContext extends ParserRuleContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public LiteralValueContext literalValue() { + return getRuleContext(LiteralValueContext.class,0); + } + public RelevanceArgValueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_relevanceArgValue; } + } + + public final RelevanceArgValueContext relevanceArgValue() throws RecognitionException { + RelevanceArgValueContext _localctx = new RelevanceArgValueContext(_ctx, getState()); + enterRule(_localctx, 120, RULE_relevanceArgValue); + try { + setState(710); + _errHandler.sync(this); + switch (_input.LA(1)) { + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case DOT: + case BACKTICK: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + case ID: + case BQUOTA_STRING: + enterOuterAlt(_localctx, 1); + { + setState(708); + qualifiedName(); + } + break; + case TRUE: + case FALSE: + case INTERVAL: + case PLUS: + case MINUS: + case INTEGER_LITERAL: + case DECIMAL_LITERAL: + case DQUOTA_STRING: + case SQUOTA_STRING: + enterOuterAlt(_localctx, 2); + { + setState(709); + literalValue(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class MathematicalFunctionBaseContext extends ParserRuleContext { + public TerminalNode ABS() { return getToken(OpenSearchPPLParser.ABS, 0); } + public TerminalNode CEIL() { return getToken(OpenSearchPPLParser.CEIL, 0); } + public TerminalNode CEILING() { return getToken(OpenSearchPPLParser.CEILING, 0); } + public TerminalNode CONV() { return getToken(OpenSearchPPLParser.CONV, 0); } + public TerminalNode CRC32() { return getToken(OpenSearchPPLParser.CRC32, 0); } + public TerminalNode E() { return getToken(OpenSearchPPLParser.E, 0); } + public TerminalNode EXP() { return getToken(OpenSearchPPLParser.EXP, 0); } + public TerminalNode FLOOR() { return getToken(OpenSearchPPLParser.FLOOR, 0); } + public TerminalNode LN() { return getToken(OpenSearchPPLParser.LN, 0); } + public TerminalNode LOG() { return getToken(OpenSearchPPLParser.LOG, 0); } + public TerminalNode LOG10() { return getToken(OpenSearchPPLParser.LOG10, 0); } + public TerminalNode LOG2() { return getToken(OpenSearchPPLParser.LOG2, 0); } + public TerminalNode MOD() { return getToken(OpenSearchPPLParser.MOD, 0); } + public TerminalNode PI() { return getToken(OpenSearchPPLParser.PI, 0); } + public TerminalNode POW() { return getToken(OpenSearchPPLParser.POW, 0); } + public TerminalNode POWER() { return getToken(OpenSearchPPLParser.POWER, 0); } + public TerminalNode RAND() { return getToken(OpenSearchPPLParser.RAND, 0); } + public TerminalNode ROUND() { return getToken(OpenSearchPPLParser.ROUND, 0); } + public TerminalNode SIGN() { return getToken(OpenSearchPPLParser.SIGN, 0); } + public TerminalNode SQRT() { return getToken(OpenSearchPPLParser.SQRT, 0); } + public TerminalNode TRUNCATE() { return getToken(OpenSearchPPLParser.TRUNCATE, 0); } + public TrigonometricFunctionNameContext trigonometricFunctionName() { + return getRuleContext(TrigonometricFunctionNameContext.class,0); + } + public MathematicalFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_mathematicalFunctionBase; } + } + + public final MathematicalFunctionBaseContext mathematicalFunctionBase() throws RecognitionException { + MathematicalFunctionBaseContext _localctx = new MathematicalFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 122, RULE_mathematicalFunctionBase); + try { + setState(734); + _errHandler.sync(this); + switch (_input.LA(1)) { + case ABS: + enterOuterAlt(_localctx, 1); + { + setState(712); + match(ABS); + } + break; + case CEIL: + enterOuterAlt(_localctx, 2); + { + setState(713); + match(CEIL); + } + break; + case CEILING: + enterOuterAlt(_localctx, 3); + { + setState(714); + match(CEILING); + } + break; + case CONV: + enterOuterAlt(_localctx, 4); + { + setState(715); + match(CONV); + } + break; + case CRC32: + enterOuterAlt(_localctx, 5); + { + setState(716); + match(CRC32); + } + break; + case E: + enterOuterAlt(_localctx, 6); + { + setState(717); + match(E); + } + break; + case EXP: + enterOuterAlt(_localctx, 7); + { + setState(718); + match(EXP); + } + break; + case FLOOR: + enterOuterAlt(_localctx, 8); + { + setState(719); + match(FLOOR); + } + break; + case LN: + enterOuterAlt(_localctx, 9); + { + setState(720); + match(LN); + } + break; + case LOG: + enterOuterAlt(_localctx, 10); + { + setState(721); + match(LOG); + } + break; + case LOG10: + enterOuterAlt(_localctx, 11); + { + setState(722); + match(LOG10); + } + break; + case LOG2: + enterOuterAlt(_localctx, 12); + { + setState(723); + match(LOG2); + } + break; + case MOD: + enterOuterAlt(_localctx, 13); + { + setState(724); + match(MOD); + } + break; + case PI: + enterOuterAlt(_localctx, 14); + { + setState(725); + match(PI); + } + break; + case POW: + enterOuterAlt(_localctx, 15); + { + setState(726); + match(POW); + } + break; + case POWER: + enterOuterAlt(_localctx, 16); + { + setState(727); + match(POWER); + } + break; + case RAND: + enterOuterAlt(_localctx, 17); + { + setState(728); + match(RAND); + } + break; + case ROUND: + enterOuterAlt(_localctx, 18); + { + setState(729); + match(ROUND); + } + break; + case SIGN: + enterOuterAlt(_localctx, 19); + { + setState(730); + match(SIGN); + } + break; + case SQRT: + enterOuterAlt(_localctx, 20); + { + setState(731); + match(SQRT); + } + break; + case TRUNCATE: + enterOuterAlt(_localctx, 21); + { + setState(732); + match(TRUNCATE); + } + break; + case ACOS: + case ASIN: + case ATAN: + case ATAN2: + case COS: + case COT: + case DEGREES: + case RADIANS: + case SIN: + case TAN: + enterOuterAlt(_localctx, 22); + { + setState(733); + trigonometricFunctionName(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TrigonometricFunctionNameContext extends ParserRuleContext { + public TerminalNode ACOS() { return getToken(OpenSearchPPLParser.ACOS, 0); } + public TerminalNode ASIN() { return getToken(OpenSearchPPLParser.ASIN, 0); } + public TerminalNode ATAN() { return getToken(OpenSearchPPLParser.ATAN, 0); } + public TerminalNode ATAN2() { return getToken(OpenSearchPPLParser.ATAN2, 0); } + public TerminalNode COS() { return getToken(OpenSearchPPLParser.COS, 0); } + public TerminalNode COT() { return getToken(OpenSearchPPLParser.COT, 0); } + public TerminalNode DEGREES() { return getToken(OpenSearchPPLParser.DEGREES, 0); } + public TerminalNode RADIANS() { return getToken(OpenSearchPPLParser.RADIANS, 0); } + public TerminalNode SIN() { return getToken(OpenSearchPPLParser.SIN, 0); } + public TerminalNode TAN() { return getToken(OpenSearchPPLParser.TAN, 0); } + public TrigonometricFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_trigonometricFunctionName; } + } + + public final TrigonometricFunctionNameContext trigonometricFunctionName() throws RecognitionException { + TrigonometricFunctionNameContext _localctx = new TrigonometricFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 124, RULE_trigonometricFunctionName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(736); + _la = _input.LA(1); + if ( !(((((_la - 171)) & ~0x3f) == 0 && ((1L << (_la - 171)) & ((1L << (ACOS - 171)) | (1L << (ASIN - 171)) | (1L << (ATAN - 171)) | (1L << (ATAN2 - 171)) | (1L << (COS - 171)) | (1L << (COT - 171)) | (1L << (DEGREES - 171)) | (1L << (RADIANS - 171)) | (1L << (SIN - 171)) | (1L << (TAN - 171)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DateAndTimeFunctionBaseContext extends ParserRuleContext { + public TerminalNode ADDDATE() { return getToken(OpenSearchPPLParser.ADDDATE, 0); } + public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } + public TerminalNode DATE_ADD() { return getToken(OpenSearchPPLParser.DATE_ADD, 0); } + public TerminalNode DATE_SUB() { return getToken(OpenSearchPPLParser.DATE_SUB, 0); } + public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } + public TerminalNode DAYNAME() { return getToken(OpenSearchPPLParser.DAYNAME, 0); } + public TerminalNode DAYOFMONTH() { return getToken(OpenSearchPPLParser.DAYOFMONTH, 0); } + public TerminalNode DAYOFWEEK() { return getToken(OpenSearchPPLParser.DAYOFWEEK, 0); } + public TerminalNode DAYOFYEAR() { return getToken(OpenSearchPPLParser.DAYOFYEAR, 0); } + public TerminalNode FROM_DAYS() { return getToken(OpenSearchPPLParser.FROM_DAYS, 0); } + public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } + public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } + public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } + public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } + public TerminalNode MONTHNAME() { return getToken(OpenSearchPPLParser.MONTHNAME, 0); } + public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } + public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } + public TerminalNode SUBDATE() { return getToken(OpenSearchPPLParser.SUBDATE, 0); } + public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } + public TerminalNode TIME_TO_SEC() { return getToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } + public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TerminalNode TO_DAYS() { return getToken(OpenSearchPPLParser.TO_DAYS, 0); } + public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } + public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } + public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + public DateAndTimeFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dateAndTimeFunctionBase; } + } + + public final DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() throws RecognitionException { + DateAndTimeFunctionBaseContext _localctx = new DateAndTimeFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 126, RULE_dateAndTimeFunctionBase); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(738); + _la = _input.LA(1); + if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)))) != 0) || ((((_la - 181)) & ~0x3f) == 0 && ((1L << (_la - 181)) & ((1L << (ADDDATE - 181)) | (1L << (DATE - 181)) | (1L << (DATE_ADD - 181)) | (1L << (DATE_SUB - 181)) | (1L << (DAYOFMONTH - 181)) | (1L << (DAYOFWEEK - 181)) | (1L << (DAYOFYEAR - 181)) | (1L << (DAYNAME - 181)) | (1L << (FROM_DAYS - 181)) | (1L << (MONTHNAME - 181)) | (1L << (SUBDATE - 181)) | (1L << (TIME - 181)) | (1L << (TIME_TO_SEC - 181)) | (1L << (TIMESTAMP - 181)) | (1L << (DATE_FORMAT - 181)) | (1L << (TO_DAYS - 181)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ConditionFunctionBaseContext extends ParserRuleContext { + public TerminalNode LIKE() { return getToken(OpenSearchPPLParser.LIKE, 0); } + public TerminalNode IF() { return getToken(OpenSearchPPLParser.IF, 0); } + public TerminalNode ISNULL() { return getToken(OpenSearchPPLParser.ISNULL, 0); } + public TerminalNode ISNOTNULL() { return getToken(OpenSearchPPLParser.ISNOTNULL, 0); } + public TerminalNode IFNULL() { return getToken(OpenSearchPPLParser.IFNULL, 0); } + public TerminalNode NULLIF() { return getToken(OpenSearchPPLParser.NULLIF, 0); } + public ConditionFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_conditionFunctionBase; } + } + + public final ConditionFunctionBaseContext conditionFunctionBase() throws RecognitionException { + ConditionFunctionBaseContext _localctx = new ConditionFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 128, RULE_conditionFunctionBase); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(740); + _la = _input.LA(1); + if ( !(((((_la - 215)) & ~0x3f) == 0 && ((1L << (_la - 215)) & ((1L << (LIKE - 215)) | (1L << (ISNULL - 215)) | (1L << (ISNOTNULL - 215)) | (1L << (IFNULL - 215)) | (1L << (NULLIF - 215)) | (1L << (IF - 215)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TextFunctionBaseContext extends ParserRuleContext { + public TerminalNode SUBSTR() { return getToken(OpenSearchPPLParser.SUBSTR, 0); } + public TerminalNode SUBSTRING() { return getToken(OpenSearchPPLParser.SUBSTRING, 0); } + public TerminalNode TRIM() { return getToken(OpenSearchPPLParser.TRIM, 0); } + public TerminalNode LTRIM() { return getToken(OpenSearchPPLParser.LTRIM, 0); } + public TerminalNode RTRIM() { return getToken(OpenSearchPPLParser.RTRIM, 0); } + public TerminalNode LOWER() { return getToken(OpenSearchPPLParser.LOWER, 0); } + public TerminalNode UPPER() { return getToken(OpenSearchPPLParser.UPPER, 0); } + public TerminalNode CONCAT() { return getToken(OpenSearchPPLParser.CONCAT, 0); } + public TerminalNode CONCAT_WS() { return getToken(OpenSearchPPLParser.CONCAT_WS, 0); } + public TerminalNode LENGTH() { return getToken(OpenSearchPPLParser.LENGTH, 0); } + public TerminalNode STRCMP() { return getToken(OpenSearchPPLParser.STRCMP, 0); } + public TerminalNode RIGHT() { return getToken(OpenSearchPPLParser.RIGHT, 0); } + public TerminalNode LEFT() { return getToken(OpenSearchPPLParser.LEFT, 0); } + public TerminalNode ASCII() { return getToken(OpenSearchPPLParser.ASCII, 0); } + public TerminalNode LOCATE() { return getToken(OpenSearchPPLParser.LOCATE, 0); } + public TerminalNode REPLACE() { return getToken(OpenSearchPPLParser.REPLACE, 0); } + public TextFunctionBaseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_textFunctionBase; } + } + + public final TextFunctionBaseContext textFunctionBase() throws RecognitionException { + TextFunctionBaseContext _localctx = new TextFunctionBaseContext(_ctx, getState()); + enterRule(_localctx, 130, RULE_textFunctionBase); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(742); + _la = _input.LA(1); + if ( !(((((_la - 197)) & ~0x3f) == 0 && ((1L << (_la - 197)) & ((1L << (SUBSTR - 197)) | (1L << (SUBSTRING - 197)) | (1L << (LTRIM - 197)) | (1L << (RTRIM - 197)) | (1L << (TRIM - 197)) | (1L << (LOWER - 197)) | (1L << (UPPER - 197)) | (1L << (CONCAT - 197)) | (1L << (CONCAT_WS - 197)) | (1L << (LENGTH - 197)) | (1L << (STRCMP - 197)) | (1L << (RIGHT - 197)) | (1L << (LEFT - 197)) | (1L << (ASCII - 197)) | (1L << (LOCATE - 197)) | (1L << (REPLACE - 197)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ComparisonOperatorContext extends ParserRuleContext { + public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } + public TerminalNode NOT_EQUAL() { return getToken(OpenSearchPPLParser.NOT_EQUAL, 0); } + public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } + public TerminalNode NOT_LESS() { return getToken(OpenSearchPPLParser.NOT_LESS, 0); } + public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } + public TerminalNode NOT_GREATER() { return getToken(OpenSearchPPLParser.NOT_GREATER, 0); } + public TerminalNode REGEXP() { return getToken(OpenSearchPPLParser.REGEXP, 0); } + public ComparisonOperatorContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_comparisonOperator; } + } + + public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { + ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); + enterRule(_localctx, 132, RULE_comparisonOperator); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(744); + _la = _input.LA(1); + if ( !(((((_la - 54)) & ~0x3f) == 0 && ((1L << (_la - 54)) & ((1L << (REGEXP - 54)) | (1L << (EQUAL - 54)) | (1L << (GREATER - 54)) | (1L << (LESS - 54)) | (1L << (NOT_GREATER - 54)) | (1L << (NOT_LESS - 54)) | (1L << (NOT_EQUAL - 54)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BinaryOperatorContext extends ParserRuleContext { + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public TerminalNode STAR() { return getToken(OpenSearchPPLParser.STAR, 0); } + public TerminalNode DIVIDE() { return getToken(OpenSearchPPLParser.DIVIDE, 0); } + public TerminalNode MODULE() { return getToken(OpenSearchPPLParser.MODULE, 0); } + public BinaryOperatorContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_binaryOperator; } + } + + public final BinaryOperatorContext binaryOperator() throws RecognitionException { + BinaryOperatorContext _localctx = new BinaryOperatorContext(_ctx, getState()); + enterRule(_localctx, 134, RULE_binaryOperator); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(746); + _la = _input.LA(1); + if ( !(((((_la - 97)) & ~0x3f) == 0 && ((1L << (_la - 97)) & ((1L << (PLUS - 97)) | (1L << (MINUS - 97)) | (1L << (STAR - 97)) | (1L << (DIVIDE - 97)) | (1L << (MODULE - 97)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { + public TerminalNode MATCH() { return getToken(OpenSearchPPLParser.MATCH, 0); } + public TerminalNode MATCH_PHRASE() { return getToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } + public SingleFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunctionName; } + } + + public final SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() throws RecognitionException { + SingleFieldRelevanceFunctionNameContext _localctx = new SingleFieldRelevanceFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 136, RULE_singleFieldRelevanceFunctionName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(748); + _la = _input.LA(1); + if ( !(_la==MATCH || _la==MATCH_PHRASE) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { + public TerminalNode SIMPLE_QUERY_STRING() { return getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } + public MultiFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunctionName; } + } + + public final MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() throws RecognitionException { + MultiFieldRelevanceFunctionNameContext _localctx = new MultiFieldRelevanceFunctionNameContext(_ctx, getState()); + enterRule(_localctx, 138, RULE_multiFieldRelevanceFunctionName); + try { + enterOuterAlt(_localctx, 1); + { + setState(750); + match(SIMPLE_QUERY_STRING); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class LiteralValueContext extends ParserRuleContext { + public IntervalLiteralContext intervalLiteral() { + return getRuleContext(IntervalLiteralContext.class,0); + } + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public IntegerLiteralContext integerLiteral() { + return getRuleContext(IntegerLiteralContext.class,0); + } + public DecimalLiteralContext decimalLiteral() { + return getRuleContext(DecimalLiteralContext.class,0); + } + public BooleanLiteralContext booleanLiteral() { + return getRuleContext(BooleanLiteralContext.class,0); + } + public LiteralValueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_literalValue; } + } + + public final LiteralValueContext literalValue() throws RecognitionException { + LiteralValueContext _localctx = new LiteralValueContext(_ctx, getState()); + enterRule(_localctx, 140, RULE_literalValue); + try { + setState(757); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(752); + intervalLiteral(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(753); + stringLiteral(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(754); + integerLiteral(); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(755); + decimalLiteral(); + } + break; + case 5: + enterOuterAlt(_localctx, 5); + { + setState(756); + booleanLiteral(); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IntervalLiteralContext extends ParserRuleContext { + public TerminalNode INTERVAL() { return getToken(OpenSearchPPLParser.INTERVAL, 0); } + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); + } + public IntervalUnitContext intervalUnit() { + return getRuleContext(IntervalUnitContext.class,0); + } + public IntervalLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_intervalLiteral; } + } + + public final IntervalLiteralContext intervalLiteral() throws RecognitionException { + IntervalLiteralContext _localctx = new IntervalLiteralContext(_ctx, getState()); + enterRule(_localctx, 142, RULE_intervalLiteral); + try { + enterOuterAlt(_localctx, 1); + { + setState(759); + match(INTERVAL); + setState(760); + valueExpression(0); + setState(761); + intervalUnit(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class StringLiteralContext extends ParserRuleContext { + public TerminalNode DQUOTA_STRING() { return getToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } + public TerminalNode SQUOTA_STRING() { return getToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } + public StringLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_stringLiteral; } + } + + public final StringLiteralContext stringLiteral() throws RecognitionException { + StringLiteralContext _localctx = new StringLiteralContext(_ctx, getState()); + enterRule(_localctx, 144, RULE_stringLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(763); + _la = _input.LA(1); + if ( !(_la==DQUOTA_STRING || _la==SQUOTA_STRING) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IntegerLiteralContext extends ParserRuleContext { + public TerminalNode INTEGER_LITERAL() { return getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public IntegerLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_integerLiteral; } + } + + public final IntegerLiteralContext integerLiteral() throws RecognitionException { + IntegerLiteralContext _localctx = new IntegerLiteralContext(_ctx, getState()); + enterRule(_localctx, 146, RULE_integerLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(766); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(765); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(768); + match(INTEGER_LITERAL); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DecimalLiteralContext extends ParserRuleContext { + public TerminalNode DECIMAL_LITERAL() { return getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } + public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } + public DecimalLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_decimalLiteral; } + } + + public final DecimalLiteralContext decimalLiteral() throws RecognitionException { + DecimalLiteralContext _localctx = new DecimalLiteralContext(_ctx, getState()); + enterRule(_localctx, 148, RULE_decimalLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(771); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(770); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(773); + match(DECIMAL_LITERAL); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class BooleanLiteralContext extends ParserRuleContext { + public TerminalNode TRUE() { return getToken(OpenSearchPPLParser.TRUE, 0); } + public TerminalNode FALSE() { return getToken(OpenSearchPPLParser.FALSE, 0); } + public BooleanLiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_booleanLiteral; } + } + + public final BooleanLiteralContext booleanLiteral() throws RecognitionException { + BooleanLiteralContext _localctx = new BooleanLiteralContext(_ctx, getState()); + enterRule(_localctx, 150, RULE_booleanLiteral); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(775); + _la = _input.LA(1); + if ( !(_la==TRUE || _la==FALSE) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class PatternContext extends ParserRuleContext { + public StringLiteralContext stringLiteral() { + return getRuleContext(StringLiteralContext.class,0); + } + public PatternContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_pattern; } + } + + public final PatternContext pattern() throws RecognitionException { + PatternContext _localctx = new PatternContext(_ctx, getState()); + enterRule(_localctx, 152, RULE_pattern); + try { + enterOuterAlt(_localctx, 1); + { + setState(777); + stringLiteral(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IntervalUnitContext extends ParserRuleContext { + public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } + public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } + public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } + public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } + public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } + public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } + public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } + public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } + public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } + public TerminalNode SECOND_MICROSECOND() { return getToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } + public TerminalNode MINUTE_MICROSECOND() { return getToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } + public TerminalNode MINUTE_SECOND() { return getToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } + public TerminalNode HOUR_MICROSECOND() { return getToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } + public TerminalNode HOUR_SECOND() { return getToken(OpenSearchPPLParser.HOUR_SECOND, 0); } + public TerminalNode HOUR_MINUTE() { return getToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } + public TerminalNode DAY_MICROSECOND() { return getToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } + public TerminalNode DAY_SECOND() { return getToken(OpenSearchPPLParser.DAY_SECOND, 0); } + public TerminalNode DAY_MINUTE() { return getToken(OpenSearchPPLParser.DAY_MINUTE, 0); } + public TerminalNode DAY_HOUR() { return getToken(OpenSearchPPLParser.DAY_HOUR, 0); } + public TerminalNode YEAR_MONTH() { return getToken(OpenSearchPPLParser.YEAR_MONTH, 0); } + public IntervalUnitContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_intervalUnit; } + } + + public final IntervalUnitContext intervalUnit() throws RecognitionException { + IntervalUnitContext _localctx = new IntervalUnitContext(_ctx, getState()); + enterRule(_localctx, 154, RULE_intervalUnit); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(779); + _la = _input.LA(1); + if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)) | (1L << (SECOND_MICROSECOND - 57)) | (1L << (MINUTE_MICROSECOND - 57)) | (1L << (MINUTE_SECOND - 57)) | (1L << (HOUR_MICROSECOND - 57)) | (1L << (HOUR_SECOND - 57)) | (1L << (HOUR_MINUTE - 57)) | (1L << (DAY_MICROSECOND - 57)) | (1L << (DAY_SECOND - 57)) | (1L << (DAY_MINUTE - 57)) | (1L << (DAY_HOUR - 57)) | (1L << (YEAR_MONTH - 57)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class TimespanUnitContext extends ParserRuleContext { + public TerminalNode MS() { return getToken(OpenSearchPPLParser.MS, 0); } + public TerminalNode S() { return getToken(OpenSearchPPLParser.S, 0); } + public TerminalNode M() { return getToken(OpenSearchPPLParser.M, 0); } + public TerminalNode H() { return getToken(OpenSearchPPLParser.H, 0); } + public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } + public TerminalNode W() { return getToken(OpenSearchPPLParser.W, 0); } + public TerminalNode Q() { return getToken(OpenSearchPPLParser.Q, 0); } + public TerminalNode Y() { return getToken(OpenSearchPPLParser.Y, 0); } + public TerminalNode MILLISECOND() { return getToken(OpenSearchPPLParser.MILLISECOND, 0); } + public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } + public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } + public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } + public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } + public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } + public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } + public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } + public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } + public TimespanUnitContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_timespanUnit; } + } + + public final TimespanUnitContext timespanUnit() throws RecognitionException { + TimespanUnitContext _localctx = new TimespanUnitContext(_ctx, getState()); + enterRule(_localctx, 156, RULE_timespanUnit); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(781); + _la = _input.LA(1); + if ( !(((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ValueListContext extends ParserRuleContext { + public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public List literalValue() { + return getRuleContexts(LiteralValueContext.class); + } + public LiteralValueContext literalValue(int i) { + return getRuleContext(LiteralValueContext.class,i); + } + public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(OpenSearchPPLParser.COMMA, i); + } + public ValueListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_valueList; } + } + + public final ValueListContext valueList() throws RecognitionException { + ValueListContext _localctx = new ValueListContext(_ctx, getState()); + enterRule(_localctx, 158, RULE_valueList); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(783); + match(LT_PRTHS); + setState(784); + literalValue(); + setState(789); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(785); + match(COMMA); + setState(786); + literalValue(); + } + } + setState(791); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(792); + match(RT_PRTHS); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class QualifiedNameContext extends ParserRuleContext { + public QualifiedNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_qualifiedName; } + + public QualifiedNameContext() { } + public void copyFrom(QualifiedNameContext ctx) { + super.copyFrom(ctx); + } + } + public static class IdentsAsQualifiedNameContext extends QualifiedNameContext { + public List ident() { + return getRuleContexts(IdentContext.class); + } + public IdentContext ident(int i) { + return getRuleContext(IdentContext.class,i); + } + public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } + public TerminalNode DOT(int i) { + return getToken(OpenSearchPPLParser.DOT, i); + } + public IdentsAsQualifiedNameContext(QualifiedNameContext ctx) { copyFrom(ctx); } + } + + public final QualifiedNameContext qualifiedName() throws RecognitionException { + QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState()); + enterRule(_localctx, 160, RULE_qualifiedName); + try { + int _alt; + _localctx = new IdentsAsQualifiedNameContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(794); + ident(); + setState(799); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(795); + match(DOT); + setState(796); + ident(); + } + } + } + setState(801); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,68,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WcQualifiedNameContext extends ParserRuleContext { + public WcQualifiedNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wcQualifiedName; } + + public WcQualifiedNameContext() { } + public void copyFrom(WcQualifiedNameContext ctx) { + super.copyFrom(ctx); + } + } + public static class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { + public List wildcard() { + return getRuleContexts(WildcardContext.class); + } + public WildcardContext wildcard(int i) { + return getRuleContext(WildcardContext.class,i); + } + public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } + public TerminalNode DOT(int i) { + return getToken(OpenSearchPPLParser.DOT, i); + } + public IdentsAsWildcardQualifiedNameContext(WcQualifiedNameContext ctx) { copyFrom(ctx); } + } + + public final WcQualifiedNameContext wcQualifiedName() throws RecognitionException { + WcQualifiedNameContext _localctx = new WcQualifiedNameContext(_ctx, getState()); + enterRule(_localctx, 162, RULE_wcQualifiedName); + int _la; + try { + _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(802); + wildcard(); + setState(807); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==DOT) { + { + { + setState(803); + match(DOT); + setState(804); + wildcard(); + } + } + setState(809); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class IdentContext extends ParserRuleContext { + public TerminalNode ID() { return getToken(OpenSearchPPLParser.ID, 0); } + public TerminalNode DOT() { return getToken(OpenSearchPPLParser.DOT, 0); } + public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } + public TerminalNode BACKTICK(int i) { + return getToken(OpenSearchPPLParser.BACKTICK, i); + } + public IdentContext ident() { + return getRuleContext(IdentContext.class,0); + } + public TerminalNode BQUOTA_STRING() { return getToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } + public KeywordsCanBeIdContext keywordsCanBeId() { + return getRuleContext(KeywordsCanBeIdContext.class,0); + } + public IdentContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_ident; } + } + + public final IdentContext ident() throws RecognitionException { + IdentContext _localctx = new IdentContext(_ctx, getState()); + enterRule(_localctx, 164, RULE_ident); + int _la; + try { + setState(820); + _errHandler.sync(this); + switch (_input.LA(1)) { + case DOT: + case ID: + enterOuterAlt(_localctx, 1); + { + setState(811); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==DOT) { + { + setState(810); + match(DOT); + } + } + + setState(813); + match(ID); + } + break; + case BACKTICK: + enterOuterAlt(_localctx, 2); + { + setState(814); + match(BACKTICK); + setState(815); + ident(); + setState(816); + match(BACKTICK); + } + break; + case BQUOTA_STRING: + enterOuterAlt(_localctx, 3); + { + setState(818); + match(BQUOTA_STRING); + } + break; + case D: + case MILLISECOND: + case SECOND: + case MINUTE: + case HOUR: + case DAY: + case WEEK: + case MONTH: + case QUARTER: + case YEAR: + case AVG: + case COUNT: + case MAX: + case MIN: + case SUM: + case VAR_SAMP: + case VAR_POP: + case STDDEV_SAMP: + case STDDEV_POP: + case FIRST: + case LAST: + case DATE: + case TIME: + case TIMESTAMP: + case SPAN: + case MS: + case S: + case M: + case H: + case W: + case Q: + case Y: + enterOuterAlt(_localctx, 4); + { + setState(819); + keywordsCanBeId(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class WildcardContext extends ParserRuleContext { + public List ident() { + return getRuleContexts(IdentContext.class); + } + public IdentContext ident(int i) { + return getRuleContext(IdentContext.class,i); + } + public List MODULE() { return getTokens(OpenSearchPPLParser.MODULE); } + public TerminalNode MODULE(int i) { + return getToken(OpenSearchPPLParser.MODULE, i); + } + public List SINGLE_QUOTE() { return getTokens(OpenSearchPPLParser.SINGLE_QUOTE); } + public TerminalNode SINGLE_QUOTE(int i) { + return getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); + } + public WildcardContext wildcard() { + return getRuleContext(WildcardContext.class,0); + } + public List DOUBLE_QUOTE() { return getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); } + public TerminalNode DOUBLE_QUOTE(int i) { + return getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); + } + public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } + public TerminalNode BACKTICK(int i) { + return getToken(OpenSearchPPLParser.BACKTICK, i); + } + public WildcardContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_wildcard; } + } + + public final WildcardContext wildcard() throws RecognitionException { + WildcardContext _localctx = new WildcardContext(_ctx, getState()); + enterRule(_localctx, 166, RULE_wildcard); + int _la; + try { + int _alt; + setState(845); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(822); + ident(); + setState(827); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(823); + match(MODULE); + setState(824); + ident(); + } + } + } + setState(829); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + } + setState(831); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==MODULE) { + { + setState(830); + match(MODULE); + } + } + + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(833); + match(SINGLE_QUOTE); + setState(834); + wildcard(); + setState(835); + match(SINGLE_QUOTE); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(837); + match(DOUBLE_QUOTE); + setState(838); + wildcard(); + setState(839); + match(DOUBLE_QUOTE); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(841); + match(BACKTICK); + setState(842); + wildcard(); + setState(843); + match(BACKTICK); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class KeywordsCanBeIdContext extends ParserRuleContext { + public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } + public StatsFunctionNameContext statsFunctionName() { + return getRuleContext(StatsFunctionNameContext.class,0); + } + public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } + public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } + public TerminalNode FIRST() { return getToken(OpenSearchPPLParser.FIRST, 0); } + public TerminalNode LAST() { return getToken(OpenSearchPPLParser.LAST, 0); } + public TimespanUnitContext timespanUnit() { + return getRuleContext(TimespanUnitContext.class,0); + } + public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } + public KeywordsCanBeIdContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_keywordsCanBeId; } + } + + public final KeywordsCanBeIdContext keywordsCanBeId() throws RecognitionException { + KeywordsCanBeIdContext _localctx = new KeywordsCanBeIdContext(_ctx, getState()); + enterRule(_localctx, 168, RULE_keywordsCanBeId); + try { + setState(856); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(847); + match(D); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(848); + statsFunctionName(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(849); + match(TIMESTAMP); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(850); + match(DATE); + } + break; + case 5: + enterOuterAlt(_localctx, 5); + { + setState(851); + match(TIME); + } + break; + case 6: + enterOuterAlt(_localctx, 6); + { + setState(852); + match(FIRST); + } + break; + case 7: + enterOuterAlt(_localctx, 7); + { + setState(853); + match(LAST); + } + break; + case 8: + enterOuterAlt(_localctx, 8); + { + setState(854); + timespanUnit(); + } + break; + case 9: + enterOuterAlt(_localctx, 9); + { + setState(855); + match(SPAN); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { + switch (ruleIndex) { + case 32: + return logicalExpression_sempred((LogicalExpressionContext)_localctx, predIndex); + case 34: + return valueExpression_sempred((ValueExpressionContext)_localctx, predIndex); + } + return true; + } + private boolean logicalExpression_sempred(LogicalExpressionContext _localctx, int predIndex) { + switch (predIndex) { + case 0: + return precpred(_ctx, 5); + case 1: + return precpred(_ctx, 4); + case 2: + return precpred(_ctx, 3); + } + return true; + } + private boolean valueExpression_sempred(ValueExpressionContext _localctx, int predIndex) { + switch (predIndex) { + case 3: + return precpred(_ctx, 3); + } + return true; + } + + public static final String _serializedATN = + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u010f\u035d\4\2\t"+ + "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ + "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ + "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ + "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ + "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ + ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ + "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ + "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ + "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ + "\4U\tU\4V\tV\3\2\5\2\u00ae\n\2\3\2\3\2\3\3\3\3\3\3\7\3\u00b5\n\3\f\3\16"+ + "\3\u00b8\13\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\5\4"+ + "\u00c7\n\4\3\5\5\5\u00ca\n\5\3\5\3\5\5\5\u00ce\n\5\3\5\3\5\3\5\3\5\5\5"+ + "\u00d4\n\5\3\5\3\5\3\5\5\5\u00d9\n\5\3\6\3\6\3\6\3\7\3\7\5\7\u00e0\n\7"+ + "\3\7\3\7\3\b\3\b\3\b\3\b\7\b\u00e8\n\b\f\b\16\b\u00eb\13\b\3\t\3\t\3\t"+ + "\3\t\5\t\u00f1\n\t\3\t\3\t\3\t\5\t\u00f6\n\t\3\t\3\t\3\t\5\t\u00fb\n\t"+ + "\3\t\3\t\3\t\7\t\u0100\n\t\f\t\16\t\u0103\13\t\3\t\5\t\u0106\n\t\3\t\3"+ + "\t\3\t\5\t\u010b\n\t\3\n\3\n\5\n\u010f\n\n\3\n\3\n\3\n\3\n\5\n\u0115\n"+ + "\n\3\n\3\n\3\n\5\n\u011a\n\n\3\13\3\13\3\13\3\f\3\f\3\f\3\f\7\f\u0123"+ + "\n\f\f\f\16\f\u0126\13\f\3\r\3\r\5\r\u012a\n\r\3\r\3\r\5\r\u012e\n\r\3"+ + "\16\3\16\5\16\u0132\n\16\3\16\3\16\5\16\u0136\n\16\3\17\3\17\3\17\5\17"+ + "\u013b\n\17\3\20\3\20\3\20\3\20\3\21\3\21\7\21\u0143\n\21\f\21\16\21\u0146"+ + "\13\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\5\22\u0151\n\22\3"+ + "\23\3\23\7\23\u0155\n\23\f\23\16\23\u0158\13\23\3\24\3\24\3\24\3\24\3"+ + "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ + "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ + "\24\5\24\u017b\n\24\3\25\3\25\3\25\3\25\3\25\7\25\u0182\n\25\f\25\16\25"+ + "\u0185\13\25\3\25\3\25\3\25\3\25\3\25\7\25\u018c\n\25\f\25\16\25\u018f"+ + "\13\25\5\25\u0191\n\25\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\30\3\30\3"+ + "\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u01a3\n\30\3\31\3\31\3\31\5\31"+ + "\u01a8\n\31\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u01b0\n\32\3\32\3\32\3"+ + "\33\3\33\3\33\7\33\u01b7\n\33\f\33\16\33\u01ba\13\33\3\34\3\34\3\34\3"+ + "\34\3\35\3\35\3\35\5\35\u01c3\n\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+ + "\3\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36\u01d3\n\36\3\37\3\37\3 \3 \3"+ + " \3 \3 \3 \3 \3 \3!\3!\3!\5!\u01e2\n!\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u01ea"+ + "\n\"\3\"\3\"\3\"\3\"\3\"\5\"\u01f1\n\"\3\"\3\"\3\"\3\"\7\"\u01f7\n\"\f"+ + "\"\16\"\u01fa\13\"\3#\3#\3#\3#\3#\3#\3#\3#\5#\u0204\n#\3$\3$\3$\3$\3$"+ + "\3$\3$\3$\5$\u020e\n$\3$\3$\3$\3$\7$\u0214\n$\f$\16$\u0217\13$\3%\3%\3"+ + "%\3%\5%\u021d\n%\3&\3&\3\'\3\'\5\'\u0223\n\'\3(\3(\3(\3(\3(\3(\3(\7(\u022c"+ + "\n(\f(\16(\u022f\13(\3(\3(\3)\3)\3)\3)\3)\3)\7)\u0239\n)\f)\16)\u023c"+ + "\13)\3)\3)\3)\3)\3)\7)\u0243\n)\f)\16)\u0246\13)\3)\3)\3*\3*\5*\u024c"+ + "\n*\3+\3+\3+\7+\u0251\n+\f+\16+\u0254\13+\3,\3,\3,\7,\u0259\n,\f,\16,"+ + "\u025c\13,\3-\5-\u025f\n-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ + ".\3.\3.\3.\3.\3.\3.\3.\3.\5.\u0278\n.\3/\3/\3\60\3\60\3\61\3\61\3\61\3"+ + "\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3"+ + "\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\5\64\u0299\n\64\3\65"+ + "\3\65\3\65\3\65\5\65\u029f\n\65\3\66\3\66\3\66\7\66\u02a4\n\66\f\66\16"+ + "\66\u02a7\13\66\5\66\u02a9\n\66\3\67\3\67\38\38\38\38\39\39\3:\3:\3:\3"+ + ":\3:\3:\3:\3:\5:\u02bb\n:\3;\3;\5;\u02bf\n;\3<\3<\5<\u02c3\n<\3=\3=\3"+ + ">\3>\5>\u02c9\n>\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3"+ + "?\3?\3?\3?\3?\5?\u02e1\n?\3@\3@\3A\3A\3B\3B\3C\3C\3D\3D\3E\3E\3F\3F\3"+ + "G\3G\3H\3H\3H\3H\3H\5H\u02f8\nH\3I\3I\3I\3I\3J\3J\3K\5K\u0301\nK\3K\3"+ + "K\3L\5L\u0306\nL\3L\3L\3M\3M\3N\3N\3O\3O\3P\3P\3Q\3Q\3Q\3Q\7Q\u0316\n"+ + "Q\fQ\16Q\u0319\13Q\3Q\3Q\3R\3R\3R\7R\u0320\nR\fR\16R\u0323\13R\3S\3S\3"+ + "S\7S\u0328\nS\fS\16S\u032b\13S\3T\5T\u032e\nT\3T\3T\3T\3T\3T\3T\3T\5T"+ + "\u0337\nT\3U\3U\3U\7U\u033c\nU\fU\16U\u033f\13U\3U\5U\u0342\nU\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\5U\u0350\nU\3V\3V\3V\3V\3V\3V\3V\3V\3V\5"+ + "V\u035b\nV\3V\2\4BFW\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60"+ + "\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ + "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e"+ + "\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\2\21\3\2cd\4\2vv\u0097\u0097\7\2"+ + "tuyy||\u0081\u0081\u0083\u0086\5\2\6\6--\u00e2\u00ff\3\2\u00ad\u00b6\5"+ + "\2;;=D\u00b7\u00c6\3\2\u00d9\u00de\4\2\u00c7\u00cb\u00cd\u00d7\4\288]"+ + "b\3\2cg\3\2\u00df\u00e0\3\2\u010c\u010d\3\2\66\67\4\2;;=O\5\2\26\26\u01d6\3\2\2\2@\u01e1\3\2\2\2B\u01e9\3\2\2\2D\u0203\3\2\2\2F"+ + "\u020d\3\2\2\2H\u021c\3\2\2\2J\u021e\3\2\2\2L\u0222\3\2\2\2N\u0224\3\2"+ + "\2\2P\u0232\3\2\2\2R\u024b\3\2\2\2T\u024d\3\2\2\2V\u0255\3\2\2\2X\u025e"+ + "\3\2\2\2Z\u0277\3\2\2\2\\\u0279\3\2\2\2^\u027b\3\2\2\2`\u027d\3\2\2\2"+ + "b\u0282\3\2\2\2d\u0289\3\2\2\2f\u0298\3\2\2\2h\u029e\3\2\2\2j\u02a8\3"+ + "\2\2\2l\u02aa\3\2\2\2n\u02ac\3\2\2\2p\u02b0\3\2\2\2r\u02ba\3\2\2\2t\u02be"+ + "\3\2\2\2v\u02c2\3\2\2\2x\u02c4\3\2\2\2z\u02c8\3\2\2\2|\u02e0\3\2\2\2~"+ + "\u02e2\3\2\2\2\u0080\u02e4\3\2\2\2\u0082\u02e6\3\2\2\2\u0084\u02e8\3\2"+ + "\2\2\u0086\u02ea\3\2\2\2\u0088\u02ec\3\2\2\2\u008a\u02ee\3\2\2\2\u008c"+ + "\u02f0\3\2\2\2\u008e\u02f7\3\2\2\2\u0090\u02f9\3\2\2\2\u0092\u02fd\3\2"+ + "\2\2\u0094\u0300\3\2\2\2\u0096\u0305\3\2\2\2\u0098\u0309\3\2\2\2\u009a"+ + "\u030b\3\2\2\2\u009c\u030d\3\2\2\2\u009e\u030f\3\2\2\2\u00a0\u0311\3\2"+ + "\2\2\u00a2\u031c\3\2\2\2\u00a4\u0324\3\2\2\2\u00a6\u0336\3\2\2\2\u00a8"+ + "\u034f\3\2\2\2\u00aa\u035a\3\2\2\2\u00ac\u00ae\5\4\3\2\u00ad\u00ac\3\2"+ + "\2\2\u00ad\u00ae\3\2\2\2\u00ae\u00af\3\2\2\2\u00af\u00b0\7\2\2\3\u00b0"+ + "\3\3\2\2\2\u00b1\u00b6\5\b\5\2\u00b2\u00b3\7Z\2\2\u00b3\u00b5\5\6\4\2"+ + "\u00b4\u00b2\3\2\2\2\u00b5\u00b8\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b6\u00b7"+ + "\3\2\2\2\u00b7\5\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b9\u00c7\5\n\6\2\u00ba"+ + "\u00c7\5\f\7\2\u00bb\u00c7\5\16\b\2\u00bc\u00c7\5\20\t\2\u00bd\u00c7\5"+ + "\22\n\2\u00be\u00c7\5\24\13\2\u00bf\u00c7\5\26\f\2\u00c0\u00c7\5\30\r"+ + "\2\u00c1\u00c7\5\32\16\2\u00c2\u00c7\5\34\17\2\u00c3\u00c7\5\36\20\2\u00c4"+ + "\u00c7\5 \21\2\u00c5\u00c7\5$\23\2\u00c6\u00b9\3\2\2\2\u00c6\u00ba\3\2"+ + "\2\2\u00c6\u00bb\3\2\2\2\u00c6\u00bc\3\2\2\2\u00c6\u00bd\3\2\2\2\u00c6"+ + "\u00be\3\2\2\2\u00c6\u00bf\3\2\2\2\u00c6\u00c0\3\2\2\2\u00c6\u00c1\3\2"+ + "\2\2\u00c6\u00c2\3\2\2\2\u00c6\u00c3\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6"+ + "\u00c5\3\2\2\2\u00c7\7\3\2\2\2\u00c8\u00ca\7\3\2\2\u00c9\u00c8\3\2\2\2"+ + "\u00c9\u00ca\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00d9\5(\25\2\u00cc\u00ce"+ + "\7\3\2\2\u00cd\u00cc\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf"+ + "\u00d0\5(\25\2\u00d0\u00d1\5B\"\2\u00d1\u00d9\3\2\2\2\u00d2\u00d4\7\3"+ + "\2\2\u00d3\u00d2\3\2\2\2\u00d3\u00d4\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5"+ + "\u00d6\5B\"\2\u00d6\u00d7\5(\25\2\u00d7\u00d9\3\2\2\2\u00d8\u00c9\3\2"+ + "\2\2\u00d8\u00cd\3\2\2\2\u00d8\u00d3\3\2\2\2\u00d9\t\3\2\2\2\u00da\u00db"+ + "\7\5\2\2\u00db\u00dc\5B\"\2\u00dc\13\3\2\2\2\u00dd\u00df\7\6\2\2\u00de"+ + "\u00e0\t\2\2\2\u00df\u00de\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u00e1\3\2"+ + "\2\2\u00e1\u00e2\5T+\2\u00e2\r\3\2\2\2\u00e3\u00e4\7\7\2\2\u00e4\u00e9"+ + "\5*\26\2\u00e5\u00e6\7[\2\2\u00e6\u00e8\5*\26\2\u00e7\u00e5\3\2\2\2\u00e8"+ + "\u00eb\3\2\2\2\u00e9\u00e7\3\2\2\2\u00e9\u00ea\3\2\2\2\u00ea\17\3\2\2"+ + "\2\u00eb\u00e9\3\2\2\2\u00ec\u00f0\7\b\2\2\u00ed\u00ee\7 \2\2\u00ee\u00ef"+ + "\7]\2\2\u00ef\u00f1\5\u0094K\2\u00f0\u00ed\3\2\2\2\u00f0\u00f1\3\2\2\2"+ + "\u00f1\u00f5\3\2\2\2\u00f2\u00f3\7!\2\2\u00f3\u00f4\7]\2\2\u00f4\u00f6"+ + "\5\u0098M\2\u00f5\u00f2\3\2\2\2\u00f5\u00f6\3\2\2\2\u00f6\u00fa\3\2\2"+ + "\2\u00f7\u00f8\7\"\2\2\u00f8\u00f9\7]\2\2\u00f9\u00fb\5\u0092J\2\u00fa"+ + "\u00f7\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u0101\58"+ + "\35\2\u00fd\u00fe\7[\2\2\u00fe\u0100\58\35\2\u00ff\u00fd\3\2\2\2\u0100"+ + "\u0103\3\2\2\2\u0101\u00ff\3\2\2\2\u0101\u0102\3\2\2\2\u0102\u0105\3\2"+ + "\2\2\u0103\u0101\3\2\2\2\u0104\u0106\5.\30\2\u0105\u0104\3\2\2\2\u0105"+ + "\u0106\3\2\2\2\u0106\u010a\3\2\2\2\u0107\u0108\7\37\2\2\u0108\u0109\7"+ + "]\2\2\u0109\u010b\5\u0098M\2\u010a\u0107\3\2\2\2\u010a\u010b\3\2\2\2\u010b"+ + "\21\3\2\2\2\u010c\u010e\7\t\2\2\u010d\u010f\5\u0094K\2\u010e\u010d\3\2"+ + "\2\2\u010e\u010f\3\2\2\2\u010f\u0110\3\2\2\2\u0110\u0114\5T+\2\u0111\u0112"+ + "\7\35\2\2\u0112\u0113\7]\2\2\u0113\u0115\5\u0098M\2\u0114\u0111\3\2\2"+ + "\2\u0114\u0115\3\2\2\2\u0115\u0119\3\2\2\2\u0116\u0117\7\36\2\2\u0117"+ + "\u0118\7]\2\2\u0118\u011a\5\u0098M\2\u0119\u0116\3\2\2\2\u0119\u011a\3"+ + "\2\2\2\u011a\23\3\2\2\2\u011b\u011c\7\n\2\2\u011c\u011d\5\64\33\2\u011d"+ + "\25\3\2\2\2\u011e\u011f\7\13\2\2\u011f\u0124\5\66\34\2\u0120\u0121\7["+ + "\2\2\u0121\u0123\5\66\34\2\u0122\u0120\3\2\2\2\u0123\u0126\3\2\2\2\u0124"+ + "\u0122\3\2\2\2\u0124\u0125\3\2\2\2\u0125\27\3\2\2\2\u0126\u0124\3\2\2"+ + "\2\u0127\u0129\7\f\2\2\u0128\u012a\5\u0094K\2\u0129\u0128\3\2\2\2\u0129"+ + "\u012a\3\2\2\2\u012a\u012d\3\2\2\2\u012b\u012c\7\4\2\2\u012c\u012e\5\u0094"+ + "K\2\u012d\u012b\3\2\2\2\u012d\u012e\3\2\2\2\u012e\31\3\2\2\2\u012f\u0131"+ + "\7\r\2\2\u0130\u0132\5\u0094K\2\u0131\u0130\3\2\2\2\u0131\u0132\3\2\2"+ + "\2\u0132\u0133\3\2\2\2\u0133\u0135\5T+\2\u0134\u0136\5,\27\2\u0135\u0134"+ + "\3\2\2\2\u0135\u0136\3\2\2\2\u0136\33\3\2\2\2\u0137\u0138\7\16\2\2\u0138"+ + "\u013a\5T+\2\u0139\u013b\5,\27\2\u013a\u0139\3\2\2\2\u013a\u013b\3\2\2"+ + "\2\u013b\35\3\2\2\2\u013c\u013d\7\17\2\2\u013d\u013e\5@!\2\u013e\u013f"+ + "\5\u009aN\2\u013f\37\3\2\2\2\u0140\u0144\7\20\2\2\u0141\u0143\5\"\22\2"+ + "\u0142\u0141\3\2\2\2\u0143\u0146\3\2\2\2\u0144\u0142\3\2\2\2\u0144\u0145"+ + "\3\2\2\2\u0145!\3\2\2\2\u0146\u0144\3\2\2\2\u0147\u0148\7#\2\2\u0148\u0149"+ + "\7]\2\2\u0149\u0151\5\u0094K\2\u014a\u014b\7$\2\2\u014b\u014c\7]\2\2\u014c"+ + "\u0151\5\u0094K\2\u014d\u014e\7%\2\2\u014e\u014f\7]\2\2\u014f\u0151\5"+ + "\u0092J\2\u0150\u0147\3\2\2\2\u0150\u014a\3\2\2\2\u0150\u014d\3\2\2\2"+ + "\u0151#\3\2\2\2\u0152\u0156\7\21\2\2\u0153\u0155\5&\24\2\u0154\u0153\3"+ + "\2\2\2\u0155\u0158\3\2\2\2\u0156\u0154\3\2\2\2\u0156\u0157\3\2\2\2\u0157"+ + "%\3\2\2\2\u0158\u0156\3\2\2\2\u0159\u015a\7&\2\2\u015a\u015b\7]\2\2\u015b"+ + "\u017b\5\u0094K\2\u015c\u015d\7\'\2\2\u015d\u015e\7]\2\2\u015e\u017b\5"+ + "\u0094K\2\u015f\u0160\7(\2\2\u0160\u0161\7]\2\2\u0161\u017b\5\u0094K\2"+ + "\u0162\u0163\7)\2\2\u0163\u0164\7]\2\2\u0164\u017b\5\u0094K\2\u0165\u0166"+ + "\7*\2\2\u0166\u0167\7]\2\2\u0167\u017b\5\u0096L\2\u0168\u0169\7+\2\2\u0169"+ + "\u016a\7]\2\2\u016a\u017b\5\u0096L\2\u016b\u016c\7,\2\2\u016c\u016d\7"+ + "]\2\2\u016d\u017b\5\u0092J\2\u016e\u016f\7\u00c5\2\2\u016f\u0170\7]\2"+ + "\2\u0170\u017b\5\u0092J\2\u0171\u0172\7-\2\2\u0172\u0173\7]\2\2\u0173"+ + "\u017b\5\u0092J\2\u0174\u0175\7.\2\2\u0175\u0176\7]\2\2\u0176\u017b\5"+ + "\u0094K\2\u0177\u0178\7/\2\2\u0178\u0179\7]\2\2\u0179\u017b\5\u0096L\2"+ + "\u017a\u0159\3\2\2\2\u017a\u015c\3\2\2\2\u017a\u015f\3\2\2\2\u017a\u0162"+ + "\3\2\2\2\u017a\u0165\3\2\2\2\u017a\u0168\3\2\2\2\u017a\u016b\3\2\2\2\u017a"+ + "\u016e\3\2\2\2\u017a\u0171\3\2\2\2\u017a\u0174\3\2\2\2\u017a\u0177\3\2"+ + "\2\2\u017b\'\3\2\2\2\u017c\u017d\7\24\2\2\u017d\u017e\7]\2\2\u017e\u0183"+ + "\5R*\2\u017f\u0180\7[\2\2\u0180\u0182\5R*\2\u0181\u017f\3\2\2\2\u0182"+ + "\u0185\3\2\2\2\u0183\u0181\3\2\2\2\u0183\u0184\3\2\2\2\u0184\u0191\3\2"+ + "\2\2\u0185\u0183\3\2\2\2\u0186\u0187\7\25\2\2\u0187\u0188\7]\2\2\u0188"+ + "\u018d\5R*\2\u0189\u018a\7[\2\2\u018a\u018c\5R*\2\u018b\u0189\3\2\2\2"+ + "\u018c\u018f\3\2\2\2\u018d\u018b\3\2\2\2\u018d\u018e\3\2\2\2\u018e\u0191"+ + "\3\2\2\2\u018f\u018d\3\2\2\2\u0190\u017c\3\2\2\2\u0190\u0186\3\2\2\2\u0191"+ + ")\3\2\2\2\u0192\u0193\5^\60\2\u0193\u0194\7\22\2\2\u0194\u0195\5^\60\2"+ + "\u0195+\3\2\2\2\u0196\u0197\7\23\2\2\u0197\u0198\5T+\2\u0198-\3\2\2\2"+ + "\u0199\u019a\7\23\2\2\u019a\u01a3\5T+\2\u019b\u019c\7\23\2\2\u019c\u01a3"+ + "\5\60\31\2\u019d\u019e\7\23\2\2\u019e\u019f\5\60\31\2\u019f\u01a0\7[\2"+ + "\2\u01a0\u01a1\5T+\2\u01a1\u01a3\3\2\2\2\u01a2\u0199\3\2\2\2\u01a2\u019b"+ + "\3\2\2\2\u01a2\u019d\3\2\2\2\u01a3/\3\2\2\2\u01a4\u01a7\5\62\32\2\u01a5"+ + "\u01a6\7\22\2\2\u01a6\u01a8\5\u00a2R\2\u01a7\u01a5\3\2\2\2\u01a7\u01a8"+ + "\3\2\2\2\u01a8\61\3\2\2\2\u01a9\u01aa\7\u0100\2\2\u01aa\u01ab\7j\2\2\u01ab"+ + "\u01ac\5\\/\2\u01ac\u01ad\7[\2\2\u01ad\u01af\5\u008eH\2\u01ae\u01b0\5"+ + "\u009eP\2\u01af\u01ae\3\2\2\2\u01af\u01b0\3\2\2\2\u01b0\u01b1\3\2\2\2"+ + "\u01b1\u01b2\7k\2\2\u01b2\63\3\2\2\2\u01b3\u01b8\5X-\2\u01b4\u01b5\7["+ + "\2\2\u01b5\u01b7\5X-\2\u01b6\u01b4\3\2\2\2\u01b7\u01ba\3\2\2\2\u01b8\u01b6"+ + "\3\2\2\2\u01b8\u01b9\3\2\2\2\u01b9\65\3\2\2\2\u01ba\u01b8\3\2\2\2\u01bb"+ + "\u01bc\5\\/\2\u01bc\u01bd\7]\2\2\u01bd\u01be\5@!\2\u01be\67\3\2\2\2\u01bf"+ + "\u01c2\5:\36\2\u01c0\u01c1\7\22\2\2\u01c1\u01c3\5^\60\2\u01c2\u01c0\3"+ + "\2\2\2\u01c2\u01c3\3\2\2\2\u01c39\3\2\2\2\u01c4\u01c5\5<\37\2\u01c5\u01c6"+ + "\7j\2\2\u01c6\u01c7\5F$\2\u01c7\u01c8\7k\2\2\u01c8\u01d3\3\2\2\2\u01c9"+ + "\u01ca\7u\2\2\u01ca\u01cb\7j\2\2\u01cb\u01d3\7k\2\2\u01cc\u01cd\t\3\2"+ + "\2\u01cd\u01ce\7j\2\2\u01ce\u01cf\5F$\2\u01cf\u01d0\7k\2\2\u01d0\u01d3"+ + "\3\2\2\2\u01d1\u01d3\5> \2\u01d2\u01c4\3\2\2\2\u01d2\u01c9\3\2\2\2\u01d2"+ + "\u01cc\3\2\2\2\u01d2\u01d1\3\2\2\2\u01d3;\3\2\2\2\u01d4\u01d5\t\4\2\2"+ + "\u01d5=\3\2\2\2\u01d6\u01d7\7\u0087\2\2\u01d7\u01d8\7_\2\2\u01d8\u01d9"+ + "\5\u0094K\2\u01d9\u01da\7^\2\2\u01da\u01db\7j\2\2\u01db\u01dc\5\\/\2\u01dc"+ + "\u01dd\7k\2\2\u01dd?\3\2\2\2\u01de\u01e2\5B\"\2\u01df\u01e2\5D#\2\u01e0"+ + "\u01e2\5F$\2\u01e1\u01de\3\2\2\2\u01e1\u01df\3\2\2\2\u01e1\u01e0\3\2\2"+ + "\2\u01e2A\3\2\2\2\u01e3\u01e4\b\"\1\2\u01e4\u01ea\5D#\2\u01e5\u01e6\7"+ + "\62\2\2\u01e6\u01ea\5B\"\b\u01e7\u01ea\5J&\2\u01e8\u01ea\5L\'\2\u01e9"+ + "\u01e3\3\2\2\2\u01e9\u01e5\3\2\2\2\u01e9\u01e7\3\2\2\2\u01e9\u01e8\3\2"+ + "\2\2\u01ea\u01f8\3\2\2\2\u01eb\u01ec\f\7\2\2\u01ec\u01ed\7\63\2\2\u01ed"+ + "\u01f7\5B\"\b\u01ee\u01f0\f\6\2\2\u01ef\u01f1\7\64\2\2\u01f0\u01ef\3\2"+ + "\2\2\u01f0\u01f1\3\2\2\2\u01f1\u01f2\3\2\2\2\u01f2\u01f7\5B\"\7\u01f3"+ + "\u01f4\f\5\2\2\u01f4\u01f5\7\65\2\2\u01f5\u01f7\5B\"\6\u01f6\u01eb\3\2"+ + "\2\2\u01f6\u01ee\3\2\2\2\u01f6\u01f3\3\2\2\2\u01f7\u01fa\3\2\2\2\u01f8"+ + "\u01f6\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9C\3\2\2\2\u01fa\u01f8\3\2\2\2"+ + "\u01fb\u01fc\5F$\2\u01fc\u01fd\5\u0086D\2\u01fd\u01fe\5F$\2\u01fe\u0204"+ + "\3\2\2\2\u01ff\u0200\5F$\2\u0200\u0201\7\61\2\2\u0201\u0202\5\u00a0Q\2"+ + "\u0202\u0204\3\2\2\2\u0203\u01fb\3\2\2\2\u0203\u01ff\3\2\2\2\u0204E\3"+ + "\2\2\2\u0205\u0206\b$\1\2\u0206\u0207\7j\2\2\u0207\u0208\5F$\2\u0208\u0209"+ + "\5\u0088E\2\u0209\u020a\5F$\2\u020a\u020b\7k\2\2\u020b\u020e\3\2\2\2\u020c"+ + "\u020e\5H%\2\u020d\u0205\3\2\2\2\u020d\u020c\3\2\2\2\u020e\u0215\3\2\2"+ + "\2\u020f\u0210\f\5\2\2\u0210\u0211\5\u0088E\2\u0211\u0212\5F$\6\u0212"+ + "\u0214\3\2\2\2\u0213\u020f\3\2\2\2\u0214\u0217\3\2\2\2\u0215\u0213\3\2"+ + "\2\2\u0215\u0216\3\2\2\2\u0216G\3\2\2\2\u0217\u0215\3\2\2\2\u0218\u021d"+ + "\5`\61\2\u0219\u021d\5b\62\2\u021a\u021d\5\\/\2\u021b\u021d\5\u008eH\2"+ + "\u021c\u0218\3\2\2\2\u021c\u0219\3\2\2\2\u021c\u021a\3\2\2\2\u021c\u021b"+ + "\3\2\2\2\u021dI\3\2\2\2\u021e\u021f\5d\63\2\u021fK\3\2\2\2\u0220\u0223"+ + "\5N(\2\u0221\u0223\5P)\2\u0222\u0220\3\2\2\2\u0222\u0221\3\2\2\2\u0223"+ + "M\3\2\2\2\u0224\u0225\5\u008aF\2\u0225\u0226\7j\2\2\u0226\u0227\5v<\2"+ + "\u0227\u0228\7[\2\2\u0228\u022d\5x=\2\u0229\u022a\7[\2\2\u022a\u022c\5"+ + "n8\2\u022b\u0229\3\2\2\2\u022c\u022f\3\2\2\2\u022d\u022b\3\2\2\2\u022d"+ + "\u022e\3\2\2\2\u022e\u0230\3\2\2\2\u022f\u022d\3\2\2\2\u0230\u0231\7k"+ + "\2\2\u0231O\3\2\2\2\u0232\u0233\5\u008cG\2\u0233\u0234\7j\2\2\u0234\u0235"+ + "\7l\2\2\u0235\u023a\5r:\2\u0236\u0237\7[\2\2\u0237\u0239\5r:\2\u0238\u0236"+ + "\3\2\2\2\u0239\u023c\3\2\2\2\u023a\u0238\3\2\2\2\u023a\u023b\3\2\2\2\u023b"+ + "\u023d\3\2\2\2\u023c\u023a\3\2\2\2\u023d\u023e\7m\2\2\u023e\u023f\7[\2"+ + "\2\u023f\u0244\5x=\2\u0240\u0241\7[\2\2\u0241\u0243\5n8\2\u0242\u0240"+ + "\3\2\2\2\u0243\u0246\3\2\2\2\u0244\u0242\3\2\2\2\u0244\u0245\3\2\2\2\u0245"+ + "\u0247\3\2\2\2\u0246\u0244\3\2\2\2\u0247\u0248\7k\2\2\u0248Q\3\2\2\2\u0249"+ + "\u024c\5\u00a2R\2\u024a\u024c\7\u010b\2\2\u024b\u0249\3\2\2\2\u024b\u024a"+ + "\3\2\2\2\u024cS\3\2\2\2\u024d\u0252\5\\/\2\u024e\u024f\7[\2\2\u024f\u0251"+ + "\5\\/\2\u0250\u024e\3\2\2\2\u0251\u0254\3\2\2\2\u0252\u0250\3\2\2\2\u0252"+ + "\u0253\3\2\2\2\u0253U\3\2\2\2\u0254\u0252\3\2\2\2\u0255\u025a\5^\60\2"+ + "\u0256\u0257\7[\2\2\u0257\u0259\5^\60\2\u0258\u0256\3\2\2\2\u0259\u025c"+ + "\3\2\2\2\u025a\u0258\3\2\2\2\u025a\u025b\3\2\2\2\u025bW\3\2\2\2\u025c"+ + "\u025a\3\2\2\2\u025d\u025f\t\2\2\2\u025e\u025d\3\2\2\2\u025e\u025f\3\2"+ + "\2\2\u025f\u0260\3\2\2\2\u0260\u0261\5Z.\2\u0261Y\3\2\2\2\u0262\u0278"+ + "\5\\/\2\u0263\u0264\7\31\2\2\u0264\u0265\7j\2\2\u0265\u0266\5\\/\2\u0266"+ + "\u0267\7k\2\2\u0267\u0278\3\2\2\2\u0268\u0269\7\32\2\2\u0269\u026a\7j"+ + "\2\2\u026a\u026b\5\\/\2\u026b\u026c\7k\2\2\u026c\u0278\3\2\2\2\u026d\u026e"+ + "\7\33\2\2\u026e\u026f\7j\2\2\u026f\u0270\5\\/\2\u0270\u0271\7k\2\2\u0271"+ + "\u0278\3\2\2\2\u0272\u0273\7\34\2\2\u0273\u0274\7j\2\2\u0274\u0275\5\\"+ + "/\2\u0275\u0276\7k\2\2\u0276\u0278\3\2\2\2\u0277\u0262\3\2\2\2\u0277\u0263"+ + "\3\2\2\2\u0277\u0268\3\2\2\2\u0277\u026d\3\2\2\2\u0277\u0272\3\2\2\2\u0278"+ + "[\3\2\2\2\u0279\u027a\5\u00a2R\2\u027a]\3\2\2\2\u027b\u027c\5\u00a4S\2"+ + "\u027c_\3\2\2\2\u027d\u027e\5h\65\2\u027e\u027f\7j\2\2\u027f\u0280\5j"+ + "\66\2\u0280\u0281\7k\2\2\u0281a\3\2\2\2\u0282\u0283\7\u00d8\2\2\u0283"+ + "\u0284\7j\2\2\u0284\u0285\5@!\2\u0285\u0286\7\22\2\2\u0286\u0287\5f\64"+ + "\2\u0287\u0288\7k\2\2\u0288c\3\2\2\2\u0289\u028a\5\u0082B\2\u028a\u028b"+ + "\7j\2\2\u028b\u028c\5j\66\2\u028c\u028d\7k\2\2\u028de\3\2\2\2\u028e\u0299"+ + "\7\u00b8\2\2\u028f\u0299\7\u00c2\2\2\u0290\u0299\7\u00c4\2\2\u0291\u0299"+ + "\7S\2\2\u0292\u0299\7T\2\2\u0293\u0299\7U\2\2\u0294\u0299\7V\2\2\u0295"+ + "\u0299\7W\2\2\u0296\u0299\7X\2\2\u0297\u0299\7Y\2\2\u0298\u028e\3\2\2"+ + "\2\u0298\u028f\3\2\2\2\u0298\u0290\3\2\2\2\u0298\u0291\3\2\2\2\u0298\u0292"+ + "\3\2\2\2\u0298\u0293\3\2\2\2\u0298\u0294\3\2\2\2\u0298\u0295\3\2\2\2\u0298"+ + "\u0296\3\2\2\2\u0298\u0297\3\2\2\2\u0299g\3\2\2\2\u029a\u029f\5|?\2\u029b"+ + "\u029f\5\u0080A\2\u029c\u029f\5\u0084C\2\u029d\u029f\5\u0082B\2\u029e"+ + "\u029a\3\2\2\2\u029e\u029b\3\2\2\2\u029e\u029c\3\2\2\2\u029e\u029d\3\2"+ + "\2\2\u029fi\3\2\2\2\u02a0\u02a5\5l\67\2\u02a1\u02a2\7[\2\2\u02a2\u02a4"+ + "\5l\67\2\u02a3\u02a1\3\2\2\2\u02a4\u02a7\3\2\2\2\u02a5\u02a3\3\2\2\2\u02a5"+ + "\u02a6\3\2\2\2\u02a6\u02a9\3\2\2\2\u02a7\u02a5\3\2\2\2\u02a8\u02a0\3\2"+ + "\2\2\u02a8\u02a9\3\2\2\2\u02a9k\3\2\2\2\u02aa\u02ab\5F$\2\u02abm\3\2\2"+ + "\2\u02ac\u02ad\5p9\2\u02ad\u02ae\7]\2\2\u02ae\u02af\5z>\2\u02afo\3\2\2"+ + "\2\u02b0\u02b1\t\5\2\2\u02b1q\3\2\2\2\u02b2\u02bb\5v<\2\u02b3\u02b4\5"+ + "v<\2\u02b4\u02b5\5t;\2\u02b5\u02bb\3\2\2\2\u02b6\u02b7\5v<\2\u02b7\u02b8"+ + "\7s\2\2\u02b8\u02b9\5t;\2\u02b9\u02bb\3\2\2\2\u02ba\u02b2\3\2\2\2\u02ba"+ + "\u02b3\3\2\2\2\u02ba\u02b6\3\2\2\2\u02bbs\3\2\2\2\u02bc\u02bf\5\u0094"+ + "K\2\u02bd\u02bf\5\u0096L\2\u02be\u02bc\3\2\2\2\u02be\u02bd\3\2\2\2\u02bf"+ + "u\3\2\2\2\u02c0\u02c3\5\u00a2R\2\u02c1\u02c3\5\u0092J\2\u02c2\u02c0\3"+ + "\2\2\2\u02c2\u02c1\3\2\2\2\u02c3w\3\2\2\2\u02c4\u02c5\5z>\2\u02c5y\3\2"+ + "\2\2\u02c6\u02c9\5\u00a2R\2\u02c7\u02c9\5\u008eH\2\u02c8\u02c6\3\2\2\2"+ + "\u02c8\u02c7\3\2\2\2\u02c9{\3\2\2\2\u02ca\u02e1\7\u0098\2\2\u02cb\u02e1"+ + "\7\u0099\2\2\u02cc\u02e1\7\u009a\2\2\u02cd\u02e1\7\u009b\2\2\u02ce\u02e1"+ + "\7\u009c\2\2\u02cf\u02e1\7\u009d\2\2\u02d0\u02e1\7\u009e\2\2\u02d1\u02e1"+ + "\7\u009f\2\2\u02d2\u02e1\7\u00a0\2\2\u02d3\u02e1\7\u00a1\2\2\u02d4\u02e1"+ + "\7\u00a2\2\2\u02d5\u02e1\7\u00a3\2\2\u02d6\u02e1\7\u00a4\2\2\u02d7\u02e1"+ + "\7\u00a5\2\2\u02d8\u02e1\7\u00a6\2\2\u02d9\u02e1\7\u00a7\2\2\u02da\u02e1"+ + "\7\u00a8\2\2\u02db\u02e1\7\u00a9\2\2\u02dc\u02e1\7\u00aa\2\2\u02dd\u02e1"+ + "\7\u00ab\2\2\u02de\u02e1\7\u00ac\2\2\u02df\u02e1\5~@\2\u02e0\u02ca\3\2"+ + "\2\2\u02e0\u02cb\3\2\2\2\u02e0\u02cc\3\2\2\2\u02e0\u02cd\3\2\2\2\u02e0"+ + "\u02ce\3\2\2\2\u02e0\u02cf\3\2\2\2\u02e0\u02d0\3\2\2\2\u02e0\u02d1\3\2"+ + "\2\2\u02e0\u02d2\3\2\2\2\u02e0\u02d3\3\2\2\2\u02e0\u02d4\3\2\2\2\u02e0"+ + "\u02d5\3\2\2\2\u02e0\u02d6\3\2\2\2\u02e0\u02d7\3\2\2\2\u02e0\u02d8\3\2"+ + "\2\2\u02e0\u02d9\3\2\2\2\u02e0\u02da\3\2\2\2\u02e0\u02db\3\2\2\2\u02e0"+ + "\u02dc\3\2\2\2\u02e0\u02dd\3\2\2\2\u02e0\u02de\3\2\2\2\u02e0\u02df\3\2"+ + "\2\2\u02e1}\3\2\2\2\u02e2\u02e3\t\6\2\2\u02e3\177\3\2\2\2\u02e4\u02e5"+ + "\t\7\2\2\u02e5\u0081\3\2\2\2\u02e6\u02e7\t\b\2\2\u02e7\u0083\3\2\2\2\u02e8"+ + "\u02e9\t\t\2\2\u02e9\u0085\3\2\2\2\u02ea\u02eb\t\n\2\2\u02eb\u0087\3\2"+ + "\2\2\u02ec\u02ed\t\13\2\2\u02ed\u0089\3\2\2\2\u02ee\u02ef\t\f\2\2\u02ef"+ + "\u008b\3\2\2\2\u02f0\u02f1\7\u00e1\2\2\u02f1\u008d\3\2\2\2\u02f2\u02f8"+ + "\5\u0090I\2\u02f3\u02f8\5\u0092J\2\u02f4\u02f8\5\u0094K\2\u02f5\u02f8"+ + "\5\u0096L\2\u02f6\u02f8\5\u0098M\2\u02f7\u02f2\3\2\2\2\u02f7\u02f3\3\2"+ + "\2\2\u02f7\u02f4\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f7\u02f6\3\2\2\2\u02f8"+ + "\u008f\3\2\2\2\u02f9\u02fa\7:\2\2\u02fa\u02fb\5F$\2\u02fb\u02fc\5\u009c"+ + "O\2\u02fc\u0091\3\2\2\2\u02fd\u02fe\t\r\2\2\u02fe\u0093\3\2\2\2\u02ff"+ + "\u0301\t\2\2\2\u0300\u02ff\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u0302\3\2"+ + "\2\2\u0302\u0303\7\u0109\2\2\u0303\u0095\3\2\2\2\u0304\u0306\t\2\2\2\u0305"+ + "\u0304\3\2\2\2\u0305\u0306\3\2\2\2\u0306\u0307\3\2\2\2\u0307\u0308\7\u010a"+ + "\2\2\u0308\u0097\3\2\2\2\u0309\u030a\t\16\2\2\u030a\u0099\3\2\2\2\u030b"+ + "\u030c\5\u0092J\2\u030c\u009b\3\2\2\2\u030d\u030e\t\17\2\2\u030e\u009d"+ + "\3\2\2\2\u030f\u0310\t\20\2\2\u0310\u009f\3\2\2\2\u0311\u0312\7j\2\2\u0312"+ + "\u0317\5\u008eH\2\u0313\u0314\7[\2\2\u0314\u0316\5\u008eH\2\u0315\u0313"+ + "\3\2\2\2\u0316\u0319\3\2\2\2\u0317\u0315\3\2\2\2\u0317\u0318\3\2\2\2\u0318"+ + "\u031a\3\2\2\2\u0319\u0317\3\2\2\2\u031a\u031b\7k\2\2\u031b\u00a1\3\2"+ + "\2\2\u031c\u0321\5\u00a6T\2\u031d\u031e\7\\\2\2\u031e\u0320\5\u00a6T\2"+ + "\u031f\u031d\3\2\2\2\u0320\u0323\3\2\2\2\u0321\u031f\3\2\2\2\u0321\u0322"+ + "\3\2\2\2\u0322\u00a3\3\2\2\2\u0323\u0321\3\2\2\2\u0324\u0329\5\u00a8U"+ + "\2\u0325\u0326\7\\\2\2\u0326\u0328\5\u00a8U\2\u0327\u0325\3\2\2\2\u0328"+ + "\u032b\3\2\2\2\u0329\u0327\3\2\2\2\u0329\u032a\3\2\2\2\u032a\u00a5\3\2"+ + "\2\2\u032b\u0329\3\2\2\2\u032c\u032e\7\\\2\2\u032d\u032c\3\2\2\2\u032d"+ + "\u032e\3\2\2\2\u032e\u032f\3\2\2\2\u032f\u0337\7\u0108\2\2\u0330\u0331"+ + "\7p\2\2\u0331\u0332\5\u00a6T\2\u0332\u0333\7p\2\2\u0333\u0337\3\2\2\2"+ + "\u0334\u0337\7\u010e\2\2\u0335\u0337\5\u00aaV\2\u0336\u032d\3\2\2\2\u0336"+ + "\u0330\3\2\2\2\u0336\u0334\3\2\2\2\u0336\u0335\3\2\2\2\u0337\u00a7\3\2"+ + "\2\2\u0338\u033d\5\u00a6T\2\u0339\u033a\7g\2\2\u033a\u033c\5\u00a6T\2"+ + "\u033b\u0339\3\2\2\2\u033c\u033f\3\2\2\2\u033d\u033b\3\2\2\2\u033d\u033e"+ + "\3\2\2\2\u033e\u0341\3\2\2\2\u033f\u033d\3\2\2\2\u0340\u0342\7g\2\2\u0341"+ + "\u0340\3\2\2\2\u0341\u0342\3\2\2\2\u0342\u0350\3\2\2\2\u0343\u0344\7n"+ + "\2\2\u0344\u0345\5\u00a8U\2\u0345\u0346\7n\2\2\u0346\u0350\3\2\2\2\u0347"+ + "\u0348\7o\2\2\u0348\u0349\5\u00a8U\2\u0349\u034a\7o\2\2\u034a\u0350\3"+ + "\2\2\2\u034b\u034c\7p\2\2\u034c\u034d\5\u00a8U\2\u034d\u034e\7p\2\2\u034e"+ + "\u0350\3\2\2\2\u034f\u0338\3\2\2\2\u034f\u0343\3\2\2\2\u034f\u0347\3\2"+ + "\2\2\u034f\u034b\3\2\2\2\u0350\u00a9\3\2\2\2\u0351\u035b\7\26\2\2\u0352"+ + "\u035b\5<\37\2\u0353\u035b\7\u00c4\2\2\u0354\u035b\7\u00b8\2\2\u0355\u035b"+ + "\7\u00c2\2\2\u0356\u035b\7\u0088\2\2\u0357\u035b\7\u0089\2\2\u0358\u035b"+ + "\5\u009eP\2\u0359\u035b\7\u0100\2\2\u035a\u0351\3\2\2\2\u035a\u0352\3"+ + "\2\2\2\u035a\u0353\3\2\2\2\u035a\u0354\3\2\2\2\u035a\u0355\3\2\2\2\u035a"+ + "\u0356\3\2\2\2\u035a\u0357\3\2\2\2\u035a\u0358\3\2\2\2\u035a\u0359\3\2"+ + "\2\2\u035b\u00ab\3\2\2\2N\u00ad\u00b6\u00c6\u00c9\u00cd\u00d3\u00d8\u00df"+ + "\u00e9\u00f0\u00f5\u00fa\u0101\u0105\u010a\u010e\u0114\u0119\u0124\u0129"+ + "\u012d\u0131\u0135\u013a\u0144\u0150\u0156\u017a\u0183\u018d\u0190\u01a2"+ + "\u01a7\u01af\u01b8\u01c2\u01d2\u01e1\u01e9\u01f0\u01f6\u01f8\u0203\u020d"+ + "\u0215\u021c\u0222\u022d\u023a\u0244\u024b\u0252\u025a\u025e\u0277\u0298"+ + "\u029e\u02a5\u02a8\u02ba\u02be\u02c2\u02c8\u02e0\u02f7\u0300\u0305\u0317"+ + "\u0321\u0329\u032d\u0336\u033d\u0341\u034f\u035a"; + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 b/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 new file mode 100644 index 000000000..c30967a77 --- /dev/null +++ b/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 @@ -0,0 +1,333 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + + +lexer grammar OpenSearchPPLLexer; + +channels { WHITESPACE, ERRORCHANNEL } + + +// COMMAND KEYWORDS +SEARCH: 'SEARCH'; +FROM: 'FROM'; +WHERE: 'WHERE'; +FIELDS: 'FIELDS'; +RENAME: 'RENAME'; +STATS: 'STATS'; +DEDUP: 'DEDUP'; +SORT: 'SORT'; +EVAL: 'EVAL'; +HEAD: 'HEAD'; +TOP: 'TOP'; +RARE: 'RARE'; +PARSE: 'PARSE'; +KMEANS: 'KMEANS'; +AD: 'AD'; + +// COMMAND ASSIST KEYWORDS +AS: 'AS'; +BY: 'BY'; +SOURCE: 'SOURCE'; +INDEX: 'INDEX'; +D: 'D'; +DESC: 'DESC'; + +// CLAUSE KEYWORDS +SORTBY: 'SORTBY'; + +// FIELD KEYWORDS +AUTO: 'AUTO'; +STR: 'STR'; +IP: 'IP'; +NUM: 'NUM'; + +// ARGUMENT KEYWORDS +KEEPEMPTY: 'KEEPEMPTY'; +CONSECUTIVE: 'CONSECUTIVE'; +DEDUP_SPLITVALUES: 'DEDUP_SPLITVALUES'; +PARTITIONS: 'PARTITIONS'; +ALLNUM: 'ALLNUM'; +DELIM: 'DELIM'; +CENTROIDS: 'CENTROIDS'; +ITERATIONS: 'ITERATIONS'; +DISTANCE_TYPE: 'DISTANCE_TYPE'; +NUMBER_OF_TREES: 'NUMBER_OF_TREES'; +SHINGLE_SIZE: 'SHINGLE_SIZE'; +SAMPLE_SIZE: 'SAMPLE_SIZE'; +OUTPUT_AFTER: 'OUTPUT_AFTER'; +TIME_DECAY: 'TIME_DECAY'; +ANOMALY_RATE: 'ANOMALY_RATE'; +TIME_FIELD: 'TIME_FIELD'; +TIME_ZONE: 'TIME_ZONE'; +TRAINING_DATA_SIZE: 'TRAINING_DATA_SIZE'; +ANOMALY_SCORE_THRESHOLD: 'ANOMALY_SCORE_THRESHOLD'; + +// COMPARISON FUNCTION KEYWORDS +CASE: 'CASE'; +IN: 'IN'; + +// LOGICAL KEYWORDS +NOT: 'NOT'; +OR: 'OR'; +AND: 'AND'; +XOR: 'XOR'; +TRUE: 'TRUE'; +FALSE: 'FALSE'; +REGEXP: 'REGEXP'; + +// DATETIME, INTERVAL AND UNIT KEYWORDS +DATETIME: 'DATETIME'; +INTERVAL: 'INTERVAL'; +MICROSECOND: 'MICROSECOND'; +MILLISECOND: 'MILLISECOND'; +SECOND: 'SECOND'; +MINUTE: 'MINUTE'; +HOUR: 'HOUR'; +DAY: 'DAY'; +WEEK: 'WEEK'; +MONTH: 'MONTH'; +QUARTER: 'QUARTER'; +YEAR: 'YEAR'; +SECOND_MICROSECOND: 'SECOND_MICROSECOND'; +MINUTE_MICROSECOND: 'MINUTE_MICROSECOND'; +MINUTE_SECOND: 'MINUTE_SECOND'; +HOUR_MICROSECOND: 'HOUR_MICROSECOND'; +HOUR_SECOND: 'HOUR_SECOND'; +HOUR_MINUTE: 'HOUR_MINUTE'; +DAY_MICROSECOND: 'DAY_MICROSECOND'; +DAY_SECOND: 'DAY_SECOND'; +DAY_MINUTE: 'DAY_MINUTE'; +DAY_HOUR: 'DAY_HOUR'; +YEAR_MONTH: 'YEAR_MONTH'; + +// DATASET TYPES +DATAMODEL: 'DATAMODEL'; +LOOKUP: 'LOOKUP'; +SAVEDSEARCH: 'SAVEDSEARCH'; + +// CONVERTED DATA TYPES +INT: 'INT'; +INTEGER: 'INTEGER'; +DOUBLE: 'DOUBLE'; +LONG: 'LONG'; +FLOAT: 'FLOAT'; +STRING: 'STRING'; +BOOLEAN: 'BOOLEAN'; + +// SPECIAL CHARACTERS AND OPERATORS +PIPE: '|'; +COMMA: ','; +DOT: '.'; +EQUAL: '='; +GREATER: '>'; +LESS: '<'; +NOT_GREATER: '<' '='; +NOT_LESS: '>' '='; +NOT_EQUAL: '!' '='; +PLUS: '+'; +MINUS: '-'; +STAR: '*'; +DIVIDE: '/'; +MODULE: '%'; +EXCLAMATION_SYMBOL: '!'; +COLON: ':'; +LT_PRTHS: '('; +RT_PRTHS: ')'; +LT_SQR_PRTHS: '['; +RT_SQR_PRTHS: ']'; +SINGLE_QUOTE: '\''; +DOUBLE_QUOTE: '"'; +BACKTICK: '`'; + +// Operators. Bit + +BIT_NOT_OP: '~'; +BIT_AND_OP: '&'; +BIT_XOR_OP: '^'; + +// AGGREGATIONS +AVG: 'AVG'; +COUNT: 'COUNT'; +DISTINCT_COUNT: 'DISTINCT_COUNT'; +ESTDC: 'ESTDC'; +ESTDC_ERROR: 'ESTDC_ERROR'; +MAX: 'MAX'; +MEAN: 'MEAN'; +MEDIAN: 'MEDIAN'; +MIN: 'MIN'; +MODE: 'MODE'; +RANGE: 'RANGE'; +STDEV: 'STDEV'; +STDEVP: 'STDEVP'; +SUM: 'SUM'; +SUMSQ: 'SUMSQ'; +VAR_SAMP: 'VAR_SAMP'; +VAR_POP: 'VAR_POP'; +STDDEV_SAMP: 'STDDEV_SAMP'; +STDDEV_POP: 'STDDEV_POP'; +PERCENTILE: 'PERCENTILE'; +FIRST: 'FIRST'; +LAST: 'LAST'; +LIST: 'LIST'; +VALUES: 'VALUES'; +EARLIEST: 'EARLIEST'; +EARLIEST_TIME: 'EARLIEST_TIME'; +LATEST: 'LATEST'; +LATEST_TIME: 'LATEST_TIME'; +PER_DAY: 'PER_DAY'; +PER_HOUR: 'PER_HOUR'; +PER_MINUTE: 'PER_MINUTE'; +PER_SECOND: 'PER_SECOND'; +RATE: 'RATE'; +SPARKLINE: 'SPARKLINE'; +C: 'C'; +DC: 'DC'; + +// BASIC FUNCTIONS +ABS: 'ABS'; +CEIL: 'CEIL'; +CEILING: 'CEILING'; +CONV: 'CONV'; +CRC32: 'CRC32'; +E: 'E'; +EXP: 'EXP'; +FLOOR: 'FLOOR'; +LN: 'LN'; +LOG: 'LOG'; +LOG10: 'LOG10'; +LOG2: 'LOG2'; +MOD: 'MOD'; +PI: 'PI'; +POW: 'POW'; +POWER: 'POWER'; +RAND: 'RAND'; +ROUND: 'ROUND'; +SIGN: 'SIGN'; +SQRT: 'SQRT'; +TRUNCATE: 'TRUNCATE'; + +// TRIGONOMETRIC FUNCTIONS +ACOS: 'ACOS'; +ASIN: 'ASIN'; +ATAN: 'ATAN'; +ATAN2: 'ATAN2'; +COS: 'COS'; +COT: 'COT'; +DEGREES: 'DEGREES'; +RADIANS: 'RADIANS'; +SIN: 'SIN'; +TAN: 'TAN'; + +// DATE AND TIME FUNCTIONS +ADDDATE: 'ADDDATE'; +DATE: 'DATE'; +DATE_ADD: 'DATE_ADD'; +DATE_SUB: 'DATE_SUB'; +DAYOFMONTH: 'DAYOFMONTH'; +DAYOFWEEK: 'DAYOFWEEK'; +DAYOFYEAR: 'DAYOFYEAR'; +DAYNAME: 'DAYNAME'; +FROM_DAYS: 'FROM_DAYS'; +MONTHNAME: 'MONTHNAME'; +SUBDATE: 'SUBDATE'; +TIME: 'TIME'; +TIME_TO_SEC: 'TIME_TO_SEC'; +TIMESTAMP: 'TIMESTAMP'; +DATE_FORMAT: 'DATE_FORMAT'; +TO_DAYS: 'TO_DAYS'; + +// TEXT FUNCTIONS +SUBSTR: 'SUBSTR'; +SUBSTRING: 'SUBSTRING'; +LTRIM: 'LTRIM'; +RTRIM: 'RTRIM'; +TRIM: 'TRIM'; +TO: 'TO'; +LOWER: 'LOWER'; +UPPER: 'UPPER'; +CONCAT: 'CONCAT'; +CONCAT_WS: 'CONCAT_WS'; +LENGTH: 'LENGTH'; +STRCMP: 'STRCMP'; +RIGHT: 'RIGHT'; +LEFT: 'LEFT'; +ASCII: 'ASCII'; +LOCATE: 'LOCATE'; +REPLACE: 'REPLACE'; +CAST: 'CAST'; + +// BOOL FUNCTIONS +LIKE: 'LIKE'; +ISNULL: 'ISNULL'; +ISNOTNULL: 'ISNOTNULL'; + +// FLOWCONTROL FUNCTIONS +IFNULL: 'IFNULL'; +NULLIF: 'NULLIF'; +IF: 'IF'; + +// RELEVANCE FUNCTIONS AND PARAMETERS +MATCH: 'MATCH'; +MATCH_PHRASE: 'MATCH_PHRASE'; +SIMPLE_QUERY_STRING: 'SIMPLE_QUERY_STRING'; + +ALLOW_LEADING_WILDCARD: 'ALLOW_LEADING_WILDCARD'; +ANALYZE_WILDCARD: 'ANALYZE_WILDCARD'; +ANALYZER: 'ANALYZER'; +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY:'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'; +BOOST: 'BOOST'; +CUTOFF_FREQUENCY: 'CUTOFF_FREQUENCY'; +DEFAULT_FIELD: 'DEFAULT_FIELD'; +DEFAULT_OPERATOR: 'DEFAULT_OPERATOR'; +ENABLE_POSITION_INCREMENTS: 'ENABLE_POSITION_INCREMENTS'; +FLAGS: 'FLAGS'; +FUZZY_MAX_EXPANSIONS: 'FUZZY_MAX_EXPANSIONS'; +FUZZY_PREFIX_LENGTH: 'FUZZY_PREFIX_LENGTH'; +FUZZY_TRANSPOSITIONS: 'FUZZY_TRANSPOSITIONS'; +FUZZY_REWRITE: 'FUZZY_REWRITE'; +FUZZINESS: 'FUZZINESS'; +LENIENT: 'LENIENT'; +LOW_FREQ_OPERATOR: 'LOW_FREQ_OPERATOR'; +MAX_DETERMINIZED_STATES: 'MAX_DETERMINIZED_STATES'; +MAX_EXPANSIONS: 'MAX_EXPANSIONS'; +MINIMUM_SHOULD_MATCH: 'MINIMUM_SHOULD_MATCH'; +OPERATOR: 'OPERATOR'; +PHRASE_SLOP: 'PHRASE_SLOP'; +PREFIX_LENGTH: 'PREFIX_LENGTH'; +QUOTE_ANALYZER: 'QUOTE_ANALYZER'; +QUOTE_FIELD_SUFFIX: 'QUOTE_FIELD_SUFFIX'; +REWRITE: 'REWRITE'; +SLOP: 'SLOP'; +TIE_BREAKER: 'TIE_BREAKER'; +TYPE: 'TYPE'; +ZERO_TERMS_QUERY: 'ZERO_TERMS_QUERY'; + +// SPAN KEYWORDS +SPAN: 'SPAN'; +MS: 'MS'; +S: 'S'; +M: 'M'; +H: 'H'; +W: 'W'; +Q: 'Q'; +Y: 'Y'; + + +// LITERALS AND VALUES +//STRING_LITERAL: DQUOTA_STRING | SQUOTA_STRING | BQUOTA_STRING; +ID: ID_LITERAL; +INTEGER_LITERAL: DEC_DIGIT+; +DECIMAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+; + +fragment DATE_SUFFIX: ([\-.][*0-9]+)*; +fragment ID_LITERAL: [@*A-Z]+?[*A-Z_\-0-9]*; +ID_DATE_SUFFIX: ID_LITERAL DATE_SUFFIX; +DQUOTA_STRING: '"' ( '\\'. | '""' | ~('"'| '\\') )* '"'; +SQUOTA_STRING: '\'' ('\\'. | '\'\'' | ~('\'' | '\\'))* '\''; +BQUOTA_STRING: '`' ( '\\'. | '``' | ~('`'|'\\'))* '`'; +fragment DEC_DIGIT: [0-9]; + + +ERROR_RECOGNITION: . -> channel(ERRORCHANNEL); \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 b/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 new file mode 100644 index 000000000..de96295f9 --- /dev/null +++ b/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 @@ -0,0 +1,475 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + + + +parser grammar OpenSearchPPLParser; +options { tokenVocab=OpenSearchPPLLexer; } + +root + : pplStatement? EOF + ; + +/** statement */ +pplStatement + : searchCommand (PIPE commands)* + ; + +/** commands */ +commands + : whereCommand | fieldsCommand | renameCommand | statsCommand | dedupCommand | sortCommand | evalCommand | headCommand + | topCommand | rareCommand | parseCommand | kmeansCommand | adCommand; + +searchCommand + : (SEARCH)? fromClause #searchFrom + | (SEARCH)? fromClause logicalExpression #searchFromFilter + | (SEARCH)? logicalExpression fromClause #searchFilterFrom + ; + +whereCommand + : WHERE logicalExpression + ; + +fieldsCommand + : FIELDS (PLUS | MINUS)? fieldList + ; + +renameCommand + : RENAME renameClasue (COMMA renameClasue)* + ; + +statsCommand + : STATS + (PARTITIONS EQUAL partitions=integerLiteral)? + (ALLNUM EQUAL allnum=booleanLiteral)? + (DELIM EQUAL delim=stringLiteral)? + statsAggTerm (COMMA statsAggTerm)* + (statsByClause)? + (DEDUP_SPLITVALUES EQUAL dedupsplit=booleanLiteral)? + ; + +dedupCommand + : DEDUP + (number=integerLiteral)? + fieldList + (KEEPEMPTY EQUAL keepempty=booleanLiteral)? + (CONSECUTIVE EQUAL consecutive=booleanLiteral)? + ; + +sortCommand + : SORT sortbyClause + ; + +evalCommand + : EVAL evalClause (COMMA evalClause)* + ; + +headCommand + : HEAD + (number=integerLiteral)? + (FROM from=integerLiteral)? + ; + +topCommand + : TOP + (number=integerLiteral)? + fieldList + (byClause)? + ; + +rareCommand + : RARE + fieldList + (byClause)? + ; + +parseCommand + : PARSE expression pattern + ; + +kmeansCommand + : KMEANS (kmeansParameter)* + ; + +kmeansParameter + : (CENTROIDS EQUAL centroids=integerLiteral) + | (ITERATIONS EQUAL iterations=integerLiteral) + | (DISTANCE_TYPE EQUAL distance_type=stringLiteral) + ; + +adCommand + : AD (adParameter)* + ; + +adParameter + : (NUMBER_OF_TREES EQUAL number_of_trees=integerLiteral) + | (SHINGLE_SIZE EQUAL shingle_size=integerLiteral) + | (SAMPLE_SIZE EQUAL sample_size=integerLiteral) + | (OUTPUT_AFTER EQUAL output_after=integerLiteral) + | (TIME_DECAY EQUAL time_decay=decimalLiteral) + | (ANOMALY_RATE EQUAL anomaly_rate=decimalLiteral) + | (TIME_FIELD EQUAL time_field=stringLiteral) + | (DATE_FORMAT EQUAL date_format=stringLiteral) + | (TIME_ZONE EQUAL time_zone=stringLiteral) + | (TRAINING_DATA_SIZE EQUAL training_data_size=integerLiteral) + | (ANOMALY_SCORE_THRESHOLD EQUAL anomaly_score_threshold=decimalLiteral) + ; + +/** clauses */ +fromClause + : SOURCE EQUAL tableSource (COMMA tableSource)* + | INDEX EQUAL tableSource (COMMA tableSource)* + ; + +renameClasue + : orignalField=wcFieldExpression AS renamedField=wcFieldExpression + ; + +byClause + : BY fieldList + ; + +statsByClause + : BY fieldList + | BY bySpanClause + | BY bySpanClause COMMA fieldList + ; + +bySpanClause + : spanClause (AS alias=qualifiedName)? + ; + +spanClause + : SPAN LT_PRTHS fieldExpression COMMA value=literalValue (unit=timespanUnit)? RT_PRTHS + ; + +sortbyClause + : sortField (COMMA sortField)* + ; + +evalClause + : fieldExpression EQUAL expression + ; + +/** aggregation terms */ +statsAggTerm + : statsFunction (AS alias=wcFieldExpression)? + ; + +/** aggregation functions */ +statsFunction + : statsFunctionName LT_PRTHS valueExpression RT_PRTHS #statsFunctionCall + | COUNT LT_PRTHS RT_PRTHS #countAllFunctionCall + | (DISTINCT_COUNT | DC) LT_PRTHS valueExpression RT_PRTHS #distinctCountFunctionCall + | percentileAggFunction #percentileAggFunctionCall + ; + +statsFunctionName + : AVG | COUNT | SUM | MIN | MAX | VAR_SAMP | VAR_POP | STDDEV_SAMP | STDDEV_POP + ; + +percentileAggFunction + : PERCENTILE LESS value=integerLiteral GREATER LT_PRTHS aggField=fieldExpression RT_PRTHS + ; + +/** expressions */ +expression + : logicalExpression + | comparisonExpression + | valueExpression + ; + +logicalExpression + : comparisonExpression #comparsion + | NOT logicalExpression #logicalNot + | left=logicalExpression OR right=logicalExpression #logicalOr + | left=logicalExpression (AND)? right=logicalExpression #logicalAnd + | left=logicalExpression XOR right=logicalExpression #logicalXor + | booleanExpression #booleanExpr + | relevanceExpression #relevanceExpr + ; + +comparisonExpression + : left=valueExpression comparisonOperator right=valueExpression #compareExpr + | valueExpression IN valueList #inExpr + ; + +valueExpression + : left=valueExpression binaryOperator right=valueExpression #binaryArithmetic + | LT_PRTHS left=valueExpression binaryOperator + right=valueExpression RT_PRTHS #parentheticBinaryArithmetic + | primaryExpression #valueExpressionDefault + ; + +primaryExpression + : evalFunctionCall + | dataTypeFunctionCall + | fieldExpression + | literalValue + ; + +booleanExpression + : booleanFunctionCall + ; + +relevanceExpression + : singleFieldRelevanceFunction | multiFieldRelevanceFunction + ; + +// Field is a single column +singleFieldRelevanceFunction + : singleFieldRelevanceFunctionName LT_PRTHS + field=relevanceField COMMA query=relevanceQuery + (COMMA relevanceArg)* RT_PRTHS + ; + +// Field is a list of columns +multiFieldRelevanceFunction + : multiFieldRelevanceFunctionName LT_PRTHS + LT_SQR_PRTHS field=relevanceFieldAndWeight (COMMA field=relevanceFieldAndWeight)* RT_SQR_PRTHS + COMMA query=relevanceQuery (COMMA relevanceArg)* RT_PRTHS + ; + +/** tables */ +tableSource + : qualifiedName + | ID_DATE_SUFFIX + ; + +/** fields */ +fieldList + : fieldExpression (COMMA fieldExpression)* + ; + +wcFieldList + : wcFieldExpression (COMMA wcFieldExpression)* + ; + +sortField + : (PLUS | MINUS)? sortFieldExpression + ; + +sortFieldExpression + : fieldExpression + | AUTO LT_PRTHS fieldExpression RT_PRTHS + | STR LT_PRTHS fieldExpression RT_PRTHS + | IP LT_PRTHS fieldExpression RT_PRTHS + | NUM LT_PRTHS fieldExpression RT_PRTHS + ; + +fieldExpression + : qualifiedName + ; + +wcFieldExpression + : wcQualifiedName + ; + +/** functions */ +evalFunctionCall + : evalFunctionName LT_PRTHS functionArgs RT_PRTHS + ; + +/** cast function */ +dataTypeFunctionCall + : CAST LT_PRTHS expression AS convertedDataType RT_PRTHS + ; + +/** boolean functions */ +booleanFunctionCall + : conditionFunctionBase LT_PRTHS functionArgs RT_PRTHS + ; + +convertedDataType + : typeName=DATE + | typeName=TIME + | typeName=TIMESTAMP + | typeName=INT + | typeName=INTEGER + | typeName=DOUBLE + | typeName=LONG + | typeName=FLOAT + | typeName=STRING + | typeName=BOOLEAN + ; + +evalFunctionName + : mathematicalFunctionBase + | dateAndTimeFunctionBase + | textFunctionBase + | conditionFunctionBase + ; + +functionArgs + : (functionArg (COMMA functionArg)*)? + ; + +functionArg + : valueExpression + ; + +relevanceArg + : relevanceArgName EQUAL relevanceArgValue + ; + +relevanceArgName + : ALLOW_LEADING_WILDCARD | ANALYZER | ANALYZE_WILDCARD | AUTO_GENERATE_SYNONYMS_PHRASE_QUERY + | BOOST | CUTOFF_FREQUENCY | DEFAULT_FIELD | DEFAULT_OPERATOR | ENABLE_POSITION_INCREMENTS + | FIELDS | FLAGS | FUZZINESS | FUZZY_MAX_EXPANSIONS | FUZZY_PREFIX_LENGTH | FUZZY_REWRITE + | FUZZY_TRANSPOSITIONS | LENIENT | LOW_FREQ_OPERATOR | MAX_DETERMINIZED_STATES + | MAX_EXPANSIONS | MINIMUM_SHOULD_MATCH | OPERATOR | PHRASE_SLOP | PREFIX_LENGTH + | QUOTE_ANALYZER | QUOTE_FIELD_SUFFIX | REWRITE | SLOP | TIE_BREAKER | TIME_ZONE | TYPE + | ZERO_TERMS_QUERY + ; + +relevanceFieldAndWeight + : field=relevanceField + | field=relevanceField weight=relevanceFieldWeight + | field=relevanceField BIT_XOR_OP weight=relevanceFieldWeight + ; + +relevanceFieldWeight + : integerLiteral + | decimalLiteral + ; + +relevanceField + : qualifiedName + | stringLiteral + ; + +relevanceQuery + : relevanceArgValue + ; + +relevanceArgValue + : qualifiedName + | literalValue + ; + +mathematicalFunctionBase + : ABS | CEIL | CEILING | CONV | CRC32 | E | EXP | FLOOR | LN | LOG | LOG10 | LOG2 | MOD | PI |POW | POWER + | RAND | ROUND | SIGN | SQRT | TRUNCATE + | trigonometricFunctionName + ; + +trigonometricFunctionName + : ACOS | ASIN | ATAN | ATAN2 | COS | COT | DEGREES | RADIANS | SIN | TAN + ; + +dateAndTimeFunctionBase + : ADDDATE | DATE | DATE_ADD | DATE_SUB | DAY | DAYNAME | DAYOFMONTH | DAYOFWEEK | DAYOFYEAR | FROM_DAYS + | HOUR | MICROSECOND | MINUTE | MONTH | MONTHNAME | QUARTER | SECOND | SUBDATE | TIME | TIME_TO_SEC + | TIMESTAMP | TO_DAYS | YEAR | WEEK | DATE_FORMAT + ; + +/** condition function return boolean value */ +conditionFunctionBase + : LIKE + | IF | ISNULL | ISNOTNULL | IFNULL | NULLIF + ; + +textFunctionBase + : SUBSTR | SUBSTRING | TRIM | LTRIM | RTRIM | LOWER | UPPER | CONCAT | CONCAT_WS | LENGTH | STRCMP + | RIGHT | LEFT | ASCII | LOCATE | REPLACE + ; + +/** operators */ +comparisonOperator + : EQUAL | NOT_EQUAL | LESS | NOT_LESS | GREATER | NOT_GREATER | REGEXP + ; + +binaryOperator + : PLUS | MINUS | STAR | DIVIDE | MODULE + ; + + +singleFieldRelevanceFunctionName + : MATCH + | MATCH_PHRASE + ; + +multiFieldRelevanceFunctionName + : SIMPLE_QUERY_STRING + ; + +/** literals and values*/ +literalValue + : intervalLiteral + | stringLiteral + | integerLiteral + | decimalLiteral + | booleanLiteral + ; + +intervalLiteral + : INTERVAL valueExpression intervalUnit + ; + +stringLiteral + : DQUOTA_STRING | SQUOTA_STRING + ; + +integerLiteral + : (PLUS | MINUS)? INTEGER_LITERAL + ; + +decimalLiteral + : (PLUS | MINUS)? DECIMAL_LITERAL + ; + +booleanLiteral + : TRUE | FALSE + ; + +pattern + : stringLiteral + ; + +intervalUnit + : MICROSECOND | SECOND | MINUTE | HOUR | DAY | WEEK | MONTH | QUARTER | YEAR | SECOND_MICROSECOND + | MINUTE_MICROSECOND | MINUTE_SECOND | HOUR_MICROSECOND | HOUR_SECOND | HOUR_MINUTE | DAY_MICROSECOND + | DAY_SECOND | DAY_MINUTE | DAY_HOUR | YEAR_MONTH + ; + +timespanUnit + : MS | S | M | H | D | W | Q | Y + | MILLISECOND | SECOND | MINUTE | HOUR | DAY | WEEK | MONTH | QUARTER | YEAR + ; + + +valueList + : LT_PRTHS literalValue (COMMA literalValue)* RT_PRTHS + ; + +qualifiedName + : ident (DOT ident)* #identsAsQualifiedName + ; + +wcQualifiedName + : wildcard (DOT wildcard)* #identsAsWildcardQualifiedName + ; + +ident + : (DOT)? ID + | BACKTICK ident BACKTICK + | BQUOTA_STRING + | keywordsCanBeId + ; + +wildcard + : ident (MODULE ident)* (MODULE)? + | SINGLE_QUOTE wildcard SINGLE_QUOTE + | DOUBLE_QUOTE wildcard DOUBLE_QUOTE + | BACKTICK wildcard BACKTICK + ; + +keywordsCanBeId + : D // OD SQL and ODBC special + | statsFunctionName + | TIMESTAMP | DATE | TIME + | FIRST | LAST + | timespanUnit | SPAN + ; \ No newline at end of file diff --git a/dashboards-observability/query_manager/index.ts b/dashboards-observability/query_manager/index.ts new file mode 100644 index 000000000..f81802afc --- /dev/null +++ b/dashboards-observability/query_manager/index.ts @@ -0,0 +1,6 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export { QueryManager } from './ppl_query_manager'; \ No newline at end of file diff --git a/dashboards-observability/query_manager/ppl_query_manager.ts b/dashboards-observability/query_manager/ppl_query_manager.ts new file mode 100644 index 000000000..ccfb03633 --- /dev/null +++ b/dashboards-observability/query_manager/ppl_query_manager.ts @@ -0,0 +1,18 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLQueryBuilder } from './query_builder/ppl_query_builder'; +import { PPLQueryParser } from './query_parser/ppl_query_parser'; + +export class QueryManager { + + queryBuilder() : PPLQueryBuilder { + return new PPLQueryBuilder(); + } + + queryParser() : PPLQueryParser { + return new PPLQueryParser(); + } +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/query_builder/index.ts b/dashboards-observability/query_manager/query_builder/index.ts new file mode 100644 index 000000000..861712574 --- /dev/null +++ b/dashboards-observability/query_manager/query_builder/index.ts @@ -0,0 +1 @@ +export { PPLQueryBuilder } from './ppl_query_builder'; \ No newline at end of file diff --git a/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts b/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts new file mode 100644 index 000000000..13ad3d6a4 --- /dev/null +++ b/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts @@ -0,0 +1,35 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLSyntaxParser } from '../antlr/ppl_syntax_parser'; +import { StatsBuilder } from '../ast/builder/stats_builder'; +import { StatsAstBuilder } from '../ast/builder/ast_builder'; + + +export class PPLQueryBuilder { + + parser: PPLSyntaxParser | null = null; + + + build(query: string, pplTokens: any) { + // parse query + this.parser = new PPLSyntaxParser().parse(query); + + return this.buildStats(query, pplTokens); + } + + buildStats(query: string, statsTokens: any) { + this.visitor = new StatsAstBuilder(); + const statsTree = this.visitor.visitRoot(this.parser!.root()); + const newStatsAstTree = new StatsBuilder(statsTokens).build(); + const indices = statsTree.getStartEndIndicesOfOriginQuery() + if (indices.start !== undefined && indices.end !== undefined) { + return query.substring(0, indices.start) + newStatsAstTree.toString() + query.substring(indices.end + 1, query.length); + } + + return query + ' | ' + newStatsAstTree.toString(); + } +} + diff --git a/dashboards-observability/query_manager/query_parser/index.ts b/dashboards-observability/query_manager/query_parser/index.ts new file mode 100644 index 000000000..e2941f144 --- /dev/null +++ b/dashboards-observability/query_manager/query_parser/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export { PPLStatsVisitor } from './ppl_stats_visitor'; +export { PPLQueryParser } from './ppl_query_parser'; +export { PPLSyntaxParser } from './ppl_syntax_parser'; \ No newline at end of file diff --git a/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts b/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts new file mode 100644 index 000000000..c66ad5522 --- /dev/null +++ b/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts @@ -0,0 +1,51 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { PPLSyntaxParser } from '../antlr/ppl_syntax_parser'; +import { OpenSearchPPLParser } from '../antlr/bin/OpenSearchPPLParser'; +import { StatsBuilder } from '../ast/builder/stats_builder'; +import { StatsAstBuilder } from '../ast/builder/ast_builder'; + +export class PPLQueryParser { + + parser : OpenSearchPPLParser | null = null; + visitor: any = null; + rawQuery: string = ''; + + parse(pplQuery: string) { + this.rawQuery = pplQuery; + this.parser = new PPLSyntaxParser().parse(this.rawQuery); + return this; + } + + getStats() { + this.visitor = new StatsAstBuilder(); + return this.visitor.visitRoot(this.parser!.root()).getTokens(); + // const statsTree = this.visitor.visitRoot(this.parser!.root()); + // const statsIndices = statsTree.getStartEndIndicesOfOriginQuery(); + // const newAgg = { + // alias: '', + // function: { + // name: 'max', + // percentile_agg_function: '', + // value_expression: 'bytes' + // } + // }; + // const currentAggs = [...statsTree.getTokens().aggregations, newAgg]; + // const newTree = { + // ...statsTree.getTokens(), + // aggregations: currentAggs + // }; + // const newAstTree = new StatsBuilder(newTree).build(); + // const finalQuery = this.raw.substring(0, statsIndices.start) + newAstTree.toString() + this.query.substring(statsIndices.end + 1, this.query.length); + // return finalQuery + } + + getQuery() { + // this.visitor = new StatsAstBuilder(); + // const statsIndices = this.visitor.visitRoot(this.parser!.root()).getStartEndIndicesOfOriginQuery(); + // return this.raw.substring(0, statsIndices.start) + newAstTree.toString() + this.rawQuery.substring(statsIndices.end + 1, this.rawQuery.length); + }; +} \ No newline at end of file diff --git a/dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts b/dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts new file mode 100644 index 000000000..ef9f775d4 --- /dev/null +++ b/dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts @@ -0,0 +1,338 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { has, map } from 'lodash'; +import { AbstractParseTreeVisitor } from 'antlr4ts/tree/AbstractParseTreeVisitor'; +import { + BooleanLiteralContext, + BySpanClauseContext, + CommandsContext, + FieldExpressionContext, + FieldListContext, + FieldsCommandContext, + IntegerLiteralContext, + LiteralValueContext, + LogicalExpressionContext, + PplStatementContext, + QualifiedNameContext, + RootContext, + SearchCommandContext, + SpanClauseContext, + StatsAggTermContext, + StatsByClauseContext, + StatsCommandContext, + StatsFunctionContext, + StatsFunctionNameContext, + StringLiteralContext, + TimespanUnitContext, + ValueExpressionContext, + WcFieldExpressionContext, + WhereCommandContext +} from '../antlr/bin/OpenSearchPPLParser'; +import { OpenSearchPPLParserVisitor } from '../antlr/bin/OpenSearchPPLParserVisitor'; +import { AggregateFunction } from '../ast/expression'; +import { + PPLNode +} from '../ast'; + +// interface PPLPartial { +// text: string; +// } + +// interface StatsPatial { +// partitions?: StatsPartitions; +// delim?: StatsDelim; +// agg_terms: StatsAggTerms; +// groupby_fields?: StatsGroupByFields; +// raw_tex: string; +// dedup_splitvalue?: string; +// } + +// interface StatsSpanPartial { +// field_expr_name: string; +// liter_value: string; +// timespan_unit?: string; +// field_alias?: string; +// span_text: string +// } + +// interface StatsPartitions { +// // keyword: string; + +// } + +// interface StatsDelim { +// keyword: string; +// string_literal: string; +// raw_text: string; +// } + +// interface StatsGroupByFields { +// [index: number]: StatsGroupByField; +// } + +// interface StatsGroupByField { +// name: string; +// } + +// interface StatsAggTerms { +// [index: number] : StatsAggTermPartial; +// } + +// interface WcFieldExpressionPartial {} + +// interface StatsAggTermPartial { +// function_partial: StatsFuncPartial; +// alias_partial: WcFieldExpressionPartial; +// } + +// interface StatsFuncPartial { +// func_name: string; +// value_expr: string; +// raw_text: string; +// percentile_agg_function?: string; +// dedup_splitvalue?: string; +// } + +// type PPLPartial = +// string +// | StatsPatial +// | StatsAggTermPartial +// | StatsAggTerms +// | StatsGroupByFields +// | StatsSpanPartial +// | StatsGroupByField +// | StatsFuncPartial; + +type VisitResult = PPLNode | string; + +export class PPLStatsVisitor extends AbstractParseTreeVisitor implements OpenSearchPPLParserVisitor { + protected defaultResult(): PPLNode { + return new PPLNode( + 'default', + [] as Array + ); + } + + visitRoot(ctx: RootContext) { + return this.visit(ctx.pplStatement()!); + } + + visitPplStatement(ctx: PplStatementContext) { + console.log('ctx: ', ctx); + console.log('ctx.commands(): ', ctx.commands()); + const comandsContext = [] as Array; + return ctx.commands().map((pplCommandContext) => { + console.log('pplCommandContext: ', pplCommandContext); + return this.visitChildren(pplCommandContext); + }); + + // return this.visitStatsCommand(ctx.statsComand()); + // return ctx.children?.filter((childCtx) => childCtx.isEmpty !== undefined && !childCtx.isEmpty).map((childCtx) => { + // return this.visit(childCtx); + // }); + } + + // visitSearchCommand(ctx: SearchCommandContext) { + // return this.visitCommands(ctx.c); + // } + + visitCommands(ctx: CommandsContext) { + return this.visitStatsCommand(ctx.statsCommand()!); + } + + /** + * Where command + */ + // visitWhereCommand(ctx: WhereCommandContext) { + // return this.visitLogicalExpression(ctx.logicalExpression()); + // } + + // visitLogicalExpression(ctx: LogicalExpressionContext) { + // console.log('LogicalExpressionContext: ', ctx); + // return ctx.WHERE().text + ' ' + ctx.text; + // } + + // visitFieldsCommand(ctx: FieldsCommandContext) { + // return ctx.text; + // } + + /** + * Stats command + */ + + visitStatsCommand(ctx: StatsCommandContext) : PPLNode { + console.log('StatsCommandContext: ', ctx); + console.log('start and stop: ', ctx.start.startIndex, ', ', ctx.stop?.stopIndex); + const statsTokens = { + raw_text: ctx.text + }; + + // visit partitions partial + if (ctx.PARTITIONS() && ctx.integerLiteral()) { + statsTokens['partitions'] = { + keyword: ctx.PARTITIONS()!.text, + integer_literal: this.visitIntegerLiteral(ctx.integerLiteral()!), + raw_text: ctx.PARTITIONS()!.text + }; + } + + // visit allnum partial + if (ctx.ALLNUM() && ctx.booleanLiteral()) { + this.visitBooleanLiteral(ctx.booleanLiteral()!); + } + + // visit delim partial + if (ctx.DELIM() && ctx.stringLiteral()) { + statsTokens['delim'] = { + keyword: ctx.DELIM()!.text, + string_literal: this.visitStringLiteral(ctx.stringLiteral()!), + raw_text: ctx.DELIM()!.text + }; + } + + // visit statsAggTerm + statsTokens['agg_terms'] = + ctx + .statsAggTerm() + .map((aggTermAlternative) => this.visitStatsAggTerm(aggTermAlternative)); + + if (ctx.statsByClause()) { + statsTokens['groupby_fields'] = this.visitStatsByClause(ctx.statsByClause()!); + } + + + if (ctx.DEDUP_SPLITVALUES() && ctx.booleanLiteral()) { + statsTokens['dedup_splitvalue'] = this.visitBooleanLiteral(ctx.booleanLiteral()!) + } + + return statsTokens; + } + + visitIntegerLiteral(ctx: IntegerLiteralContext) : string { + return ctx.text; + } + + visitBooleanLiteral(ctx: BooleanLiteralContext) : string { + return ctx.text; + } + + visitStringLiteral(ctx: StringLiteralContext) : string { + return ctx.text; + } + + visitStatsAggTerm(ctx: StatsAggTermContext) : PPLNode { + + const statsAggTermPartial = { + function_partial: this.visitStatsFunction(ctx.statsFunction()), + } as StatsAggTermPartial; + + if (ctx.wcFieldExpression()) { + statsAggTermPartial['alias_partial'] = this.visitWcFieldExpression(ctx.wcFieldExpression()!); + } + + return statsAggTermPartial; + } + + visitWcFieldExpression(ctx: WcFieldExpressionContext) : string { + // return only text from here to all its chilren for now + return ctx.wcQualifiedName().text; + } + + visitStatsByClause(ctx: StatsByClauseContext) : StatsGroupByFields { + let statsGroupByFields = [] as StatsGroupByFields; + + if (ctx.fieldList) { + statsGroupByFields = [...statsGroupByFields, ...this.visitFieldList(ctx.fieldList()!)]; + } + + if (ctx.bySpanClause()) { + statsGroupByFields.push(this.visitBySpanClause(ctx.bySpanClause()!)); + } + + return statsGroupByFields; + } + + visitBySpanClause(ctx: BySpanClauseContext) : PPLNode { + const spanTokens = this.visitSpanClause(ctx.spanClause()); + if (ctx.qualifiedName()) { + spanTokens['field_alias'] = this.visitQualifiedName(ctx.qualifiedName()!); + } + return spanTokens; + } + + visitSpanClause(ctx: SpanClauseContext) : PPLNode { + return { + field_expr_name: this.visitFieldExpression(ctx.fieldExpression()), + liter_value: this.visitLiteralValue(ctx.literalValue()), + timespan_unit: ctx.timespanUnit() ? this.visitTimespanUnit(ctx.timespanUnit()!) : '', + span_text: ctx.text + }; + } + + visitLiteralValue(ctx: LiteralValueContext) : string { + return ctx.text; + } + + visitTimespanUnit(ctx: TimespanUnitContext) : string { + return ctx.text; + } + + visitStatsFunction(ctx: StatsFunctionContext) : PPLNode { + const aggToken = { + func_name: '', + value_expr: '', + raw_text: ctx.text, + }; + + if (typeof ctx.valueExpression === 'function') { + aggToken.value_expr = this.visitValueExpression(ctx.valueExpression()); + if (typeof ctx.statsFunctionName === 'function') { + aggToken.func_name = this.visitStatsFunctionName(ctx.statsFunctionName()); + } else { + aggToken.func_name = ctx.DISTINCT_COUNT() ? ctx.DISTINCT_COUNT().text : ctx.DC().text; + } + } else if (typeof ctx.percentileAggFunction === 'function') { + // for now just return plain text + } else { + aggToken.func_name = ctx.COUNT().text; + } + + return new AggregateFunction( + 'stats_function', + [] as Array, + aggToken.func_name, + aggToken.value_expr, + ctx.percentileAggFunction === 'function' ? ctx.percentileAggFunction().text : '' + ); + + // return aggToken; + } + + visitValueExpression(ctx: ValueExpressionContext) : string { + return ctx.text; + } + + visitStatsFunctionName(ctx: StatsFunctionNameContext) : string { + return ctx.text; + } + + visitFieldList(ctx: FieldListContext) : PPLNode { + return ctx.fieldExpression().map((fieldExprAlternative) => { + return { + name: this.visitFieldExpression(fieldExprAlternative) + } + } + ); + } + + visitFieldExpression(ctx: FieldExpressionContext) : string { + return this.visitQualifiedName(ctx.qualifiedName()); + } + + visitQualifiedName(ctx: QualifiedNameContext) : string { + return ctx.text; + } +} \ No newline at end of file diff --git a/dashboards-observability/yarn.lock b/dashboards-observability/yarn.lock index 95f119e37..40964dfc1 100644 --- a/dashboards-observability/yarn.lock +++ b/dashboards-observability/yarn.lock @@ -396,6 +396,21 @@ ansi-to-react@^6.0.5: anser "^1.4.1" escape-carriage "^1.3.0" +antlr4@4.8.0: + version "4.8.0" + resolved "https://registry.yarnpkg.com/antlr4/-/antlr4-4.8.0.tgz#f938ec171be7fc2855cd3a533e87647185b32b6a" + integrity sha512-en/MxQ4OkPgGJQ3wD/muzj1uDnFSzdFIhc2+c6bHZokWkuBb6RRvFjpWhPxWLbgQvaEzldJZ0GSQpfSAaE3hqg== + +antlr4ts-cli@^0.5.0-alpha.4: + version "0.5.0-alpha.4" + resolved "https://registry.yarnpkg.com/antlr4ts-cli/-/antlr4ts-cli-0.5.0-alpha.4.tgz#f3bfc37f10131e78d7b981c397a2aaa0450b67f6" + integrity sha512-lVPVBTA2CVHRYILSKilL6Jd4hAumhSZZWA7UbQNQrmaSSj7dPmmYaN4bOmZG79cOy0lS00i4LY68JZZjZMWVrw== + +antlr4ts@^0.5.0-alpha.4: + version "0.5.0-alpha.4" + resolved "https://registry.yarnpkg.com/antlr4ts/-/antlr4ts-0.5.0-alpha.4.tgz#71702865a87478ed0b40c0709f422cf14d51652a" + integrity sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ== + any-observable@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" From ba0435bc7cce6bb7be9f407c1289bc45daf08d50 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Wed, 27 Jul 2022 08:36:48 -0700 Subject: [PATCH 05/29] removed aggregations from dimensions Signed-off-by: Eric Wei --- .../data_config_panel_item.tsx | 54 ++++++++++--------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx index ea2e7d26b..7ca385560 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx @@ -201,34 +201,36 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => )} + {sectionName == 'metrics' && ( - handleServiceRemove(index, sectionName)} - /> - - ) + label="Aggregation" + labelAppend={ + visualizations.vis.name !== visChartTypes.HeatMap && + lists.length !== 1 && ( + + handleServiceRemove(index, sectionName)} + /> + + ) + } + > + - - updateList(e.length > 0 ? e[0].label : '', index, sectionName, 'aggregation') - } - /> - + onChange={(e) => + updateList(e.length > 0 ? e[0].label : '', index, sectionName, 'aggregation') + } + /> + + )} Date: Wed, 3 Aug 2022 10:45:00 -0700 Subject: [PATCH 06/29] qm improvements Signed-off-by: Eric Wei --- .../query_manager/__tests__/utils.jest.ts | 74 ++++++ .../query_manager/ast/builder/ast_builder.ts | 229 ------------------ .../ast/builder/query_builder.ts | 7 +- .../ast/builder/stats_ast_builder.ts | 227 +++++++++++++++++ .../ast/builder/stats_builder.ts | 94 ++++--- .../query_manager/ast/expression/group_by.ts | 4 +- .../query_manager/ast/index.ts | 2 +- .../query_manager/ast/node.ts | 16 +- .../query_manager/ast/tree/aggragations.ts | 20 +- .../query_manager/ast/types/index.ts | 15 ++ .../query_manager/ast/types/stats.ts | 54 +++++ .../grammar/.antlr/OpenSearchPPLLexer.java | 2 +- .../grammar/.antlr/OpenSearchPPLParser.java | 2 +- .../query_manager/index.ts | 2 +- .../query_manager/ppl_query_manager.ts | 7 +- .../query_manager/query_builder/index.ts | 2 +- .../query_builder/ppl_query_builder.ts | 26 +- .../query_manager/query_parser/index.ts | 4 +- .../query_parser/ppl_query_parser.ts | 32 +-- .../query_manager/utils/index.ts | 26 ++ 20 files changed, 502 insertions(+), 343 deletions(-) create mode 100644 dashboards-observability/query_manager/__tests__/utils.jest.ts delete mode 100644 dashboards-observability/query_manager/ast/builder/ast_builder.ts create mode 100644 dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts create mode 100644 dashboards-observability/query_manager/ast/types/index.ts create mode 100644 dashboards-observability/query_manager/ast/types/stats.ts create mode 100644 dashboards-observability/query_manager/utils/index.ts diff --git a/dashboards-observability/query_manager/__tests__/utils.jest.ts b/dashboards-observability/query_manager/__tests__/utils.jest.ts new file mode 100644 index 000000000..b710815e4 --- /dev/null +++ b/dashboards-observability/query_manager/__tests__/utils.jest.ts @@ -0,0 +1,74 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { composeAggregations } from '../utils'; + +describe('test query manager utilities', () => { + it('should compose a recipe object with fields for building stats substree', () => { + const statsRecipe = composeAggregations( + // UI configurable + { + metrics: [], + dimensions: [], + }, + // come directly from query parsing and are not support in UI configurations + { + partitions: { + keyword: 'partitions', + sign: '', + value: '+3', + }, + allnum: { + keyword: 'allnum', + sign: '=', + value: 'true', + }, + delim: { + keyword: 'delim', + sign: '=', + value: '"test"', + }, + dedup_split_value: { + keyword: 'dedup_splitvalues', + sign: '=', + value: 'false', + }, + aggregations: [ + { + alias: 'total_sum', + function: { + name: 'count', + percentile_agg_function: '', + value_expression: '', + }, + }, + { + alias: 'avg_bytes', + function: { + name: 'avg', + percentile_agg_function: '', + value_expression: 'bytes', + }, + }, + ], + groupby: { + group_fields: [ + { + name: 'host', + }, + ], + span: { + alias: 'time_interval', + span_expression: { + field: 'timestamp', + literal_value: '2', + time_unit: 'm', + }, + }, + }, + } + ); + }); +}); diff --git a/dashboards-observability/query_manager/ast/builder/ast_builder.ts b/dashboards-observability/query_manager/ast/builder/ast_builder.ts deleted file mode 100644 index 0170f8729..000000000 --- a/dashboards-observability/query_manager/ast/builder/ast_builder.ts +++ /dev/null @@ -1,229 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -import { AbstractParseTreeVisitor } from 'antlr4ts/tree/AbstractParseTreeVisitor'; -import { - RootContext, - PplStatementContext, - CommandsContext, - StatsCommandContext, - BooleanLiteralContext, - BySpanClauseContext, - FieldExpressionContext, - FieldListContext, - IntegerLiteralContext, - LiteralValueContext, - QualifiedNameContext, - SpanClauseContext, - StatsAggTermContext, - StatsByClauseContext, - StatsFunctionContext, - StatsFunctionNameContext, - StringLiteralContext, - TimespanUnitContext, - ValueExpressionContext, - WcFieldExpressionContext -} from '../../antlr/bin/OpenSearchPPLParser'; -import { OpenSearchPPLParserVisitor } from '../../antlr/bin/OpenSearchPPLParserVisitor'; -import { PPLNode } from '../node'; -import { Aggregations } from '../tree/aggragations'; -import { - AggregateFunction, - AggregateTerm, - GroupBy, - Field, - Span, - SpanExpression -} from '../expression'; - -type VisitResult = PPLNode | Array | string; - -export class StatsAstBuilder extends AbstractParseTreeVisitor implements OpenSearchPPLParserVisitor { - protected defaultResult(): PPLNode { - return new PPLNode( - 'default', - [] as Array - ); - } - - visitRoot(ctx: RootContext) { - return this.visitChildren(ctx.pplStatement()!); - } - - visitPplStatement(ctx: PplStatementContext) : PPLNode { - console.log('ctx: ', ctx); - const comandsContext = [] as Array; - let statsTree: VisitResult = this.defaultResult(); - ctx.commands().map((pplCommandContext) => { - if (this.visitChildren(pplCommandContext).getName() === 'stats_command') statsTree = this.visitChildren(pplCommandContext); - }); - return statsTree; - } - - visitCommands(ctx: CommandsContext) { - if (ctx.statsCommand()) { - return this.visitStatsCommand(ctx.statsCommand()!); - } - return this.defaultResult(); - } - - /** - * Stats command - */ - visitStatsCommand(ctx: StatsCommandContext) : PPLNode { - - return new Aggregations( - 'stats_command', - [] as Array, - ctx.PARTITIONS() && ctx.integerLiteral() ? - `${ctx.PARTITIONS()!.text} ${this.visitIntegerLiteral(ctx.integerLiteral()!)}` : '', // visit partitions partial - ctx.ALLNUM() && ctx.booleanLiteral() ? - `${ctx.ALLNUM()!.text} = ${this.visitBooleanLiteral(ctx.booleanLiteral()!)}` : '', // visit allnum partial - ctx.DELIM() && ctx.stringLiteral() ? - `${ctx.DELIM()!.text} = ${this.visitStringLiteral(ctx.stringLiteral()!)}` : '', // visit delim partial - ctx - .statsAggTerm() - .map((aggTermAlternative) => this.visitStatsAggTerm(aggTermAlternative)), // visit statsAggTerm - ctx.statsByClause() ? - this.visitStatsByClause(ctx.statsByClause()!) : {} as GroupBy, // visit group list - ctx.DEDUP_SPLITVALUES() && ctx.booleanLiteral() ? - this.visitBooleanLiteral(ctx.booleanLiteral()!) : '', // visit dedup split value - ctx.start.startIndex, - ctx.stop?.stopIndex - ); - } - - visitIntegerLiteral(ctx: IntegerLiteralContext) : string { - return ctx.text; - } - - visitBooleanLiteral(ctx: BooleanLiteralContext) : string { - return ctx.text; - } - - visitStringLiteral(ctx: StringLiteralContext) : string { - return ctx.text; - } - - visitStatsAggTerm(ctx: StatsAggTermContext) : PPLNode { - return new AggregateTerm( - 'stats_agg_term', - [] as Array, - this.visitStatsFunction(ctx.statsFunction()), - ctx.wcFieldExpression() ? this.visitWcFieldExpression(ctx.wcFieldExpression()!) : '' - ); - } - - visitWcFieldExpression(ctx: WcFieldExpressionContext) : string { - // return only text from here to all its chilren for now - return ctx.wcQualifiedName().text; - } - - visitStatsByClause(ctx: StatsByClauseContext) : PPLNode { - if (ctx.fieldList && ctx.bySpanClause()) { - return new GroupBy( - 'stats_by_clause', - [] as Array, - this.visitFieldList(ctx.fieldList()!), - this.visitBySpanClause(ctx.bySpanClause()!) - ); - } else if (ctx.bySpanClause()) { - return new GroupBy( - 'stats_by_clause', - [] as Array, - [], - this.visitBySpanClause(ctx.bySpanClause()!) - ); - } - return new GroupBy( - 'stats_by_clause', - [] as Array, - this.visitFieldList(ctx.fieldList()!), - this.defaultResult(), - ); - } - - visitBySpanClause(ctx: BySpanClauseContext) : PPLNode { - return new Span( - 'span_clause', - [] as Array, - this.visitSpanClause(ctx.spanClause()), - ctx.qualifiedName() ? this.visitQualifiedName(ctx.qualifiedName()!) : '' - ); - } - - visitSpanClause(ctx: SpanClauseContext) : PPLNode { - return new SpanExpression( - 'span_expression', - [] as Array, - this.visitFieldExpression(ctx.fieldExpression()), - this.visitLiteralValue(ctx.literalValue()), - ctx.timespanUnit() ? this.visitTimespanUnit(ctx.timespanUnit()!) : '' - ); - } - - visitLiteralValue(ctx: LiteralValueContext) : string { - return ctx.text; - } - - visitTimespanUnit(ctx: TimespanUnitContext) : string { - return ctx.text; - } - - visitStatsFunction(ctx: StatsFunctionContext) : PPLNode { - const aggToken = { - func_name: '', - value_expr: '', - raw_text: ctx.text, - }; - - if (typeof ctx.valueExpression === 'function') { - aggToken.value_expr = this.visitValueExpression(ctx.valueExpression()); - if (typeof ctx.statsFunctionName === 'function') { - aggToken.func_name = this.visitStatsFunctionName(ctx.statsFunctionName()); - } else { - aggToken.func_name = ctx.DISTINCT_COUNT() ? ctx.DISTINCT_COUNT().text : ctx.DC().text; - } - } else if (typeof ctx.percentileAggFunction === 'function') { - // for now just return plain text - } else { - aggToken.func_name = ctx.COUNT().text; - } - - return new AggregateFunction( - 'stats_function', - [] as Array, - aggToken.func_name, - aggToken.value_expr, - typeof ctx.percentileAggFunction === 'function' ? ctx.text : '' - ); - } - - visitValueExpression(ctx: ValueExpressionContext) : string { - return ctx.text; - } - - visitStatsFunctionName(ctx: StatsFunctionNameContext) : string { - return ctx.text; - } - - visitFieldList(ctx: FieldListContext) : Array { - return ctx.fieldExpression().map((fieldExprAlternative) => { - return new Field( - 'field_expression', - [] as Array, - this.visitFieldExpression(fieldExprAlternative) - ); - }); - } - - visitFieldExpression(ctx: FieldExpressionContext) : string { - return this.visitQualifiedName(ctx.qualifiedName()); - } - - visitQualifiedName(ctx: QualifiedNameContext) : string { - return ctx.text; - } -} \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/builder/query_builder.ts b/dashboards-observability/query_manager/ast/builder/query_builder.ts index 3776d34e6..a6b6494c0 100644 --- a/dashboards-observability/query_manager/ast/builder/query_builder.ts +++ b/dashboards-observability/query_manager/ast/builder/query_builder.ts @@ -1,3 +1,8 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + export interface QueryBuilder { build: () => T; -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts new file mode 100644 index 000000000..df48bfb15 --- /dev/null +++ b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts @@ -0,0 +1,227 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { AbstractParseTreeVisitor } from 'antlr4ts/tree/AbstractParseTreeVisitor'; +import { + RootContext, + PplStatementContext, + CommandsContext, + StatsCommandContext, + BooleanLiteralContext, + BySpanClauseContext, + FieldExpressionContext, + FieldListContext, + IntegerLiteralContext, + LiteralValueContext, + QualifiedNameContext, + SpanClauseContext, + StatsAggTermContext, + StatsByClauseContext, + StatsFunctionContext, + StatsFunctionNameContext, + StringLiteralContext, + TimespanUnitContext, + ValueExpressionContext, + WcFieldExpressionContext, +} from '../../antlr/bin/OpenSearchPPLParser'; +import { OpenSearchPPLParserVisitor } from '../../antlr/bin/OpenSearchPPLParserVisitor'; +import { PPLNode } from '../node'; +import { Aggregations } from '../tree/aggragations'; +import { + AggregateFunction, + AggregateTerm, + GroupBy, + Field, + Span, + SpanExpression, +} from '../expression'; + +type VisitResult = PPLNode | Array | string; + +export class StatsAstBuilder + extends AbstractParseTreeVisitor + implements OpenSearchPPLParserVisitor { + protected defaultResult(): PPLNode { + return new PPLNode('default', [] as Array); + } + + visitRoot(ctx: RootContext) { + return this.visitChildren(ctx.pplStatement()!); + } + + visitPplStatement(ctx: PplStatementContext): PPLNode { + let statsTree: VisitResult = this.defaultResult(); + ctx.commands().map((pplCommandContext) => { + if (this.visitChildren(pplCommandContext).getName() === 'stats_command') + statsTree = this.visitChildren(pplCommandContext); + }); + return statsTree; + } + + visitCommands(ctx: CommandsContext) { + if (ctx.statsCommand()) { + return this.visitStatsCommand(ctx.statsCommand()!); + } + return this.defaultResult(); + } + + /** + * Stats command + */ + visitStatsCommand(ctx: StatsCommandContext): PPLNode { + return new Aggregations( + 'stats_command', + [] as Array, + ctx.PARTITIONS() && ctx.integerLiteral() + ? { + keyword: ctx.PARTITIONS()?.text, + sign: '', + value: ctx.integerLiteral()?.text, + } + : {}, // visit partitions partial + ctx.ALLNUM() && ctx.booleanLiteral() + ? { + keyword: ctx.ALLNUM()?.text, + sign: '=', + value: this.visitBooleanLiteral(ctx.booleanLiteral()[0]), + } + : {}, // visit allnum partial + ctx.DELIM() && ctx.stringLiteral() + ? { + keyword: ctx.DELIM()?.text, + sign: '=', + value: this.visitStringLiteral(ctx.stringLiteral()!), + } + : '', // visit delim partial + ctx.statsAggTerm().map((aggTermAlternative) => this.visitStatsAggTerm(aggTermAlternative)), // visit statsAggTerm + ctx.statsByClause() ? this.visitStatsByClause(ctx.statsByClause()!) : ({} as GroupBy), // visit group list + ctx.DEDUP_SPLITVALUES() && ctx.booleanLiteral() + ? { + keyword: ctx.DEDUP_SPLITVALUES()?.text, + sign: '=', + value: this.visitBooleanLiteral(ctx.booleanLiteral()[1]), + } + : '', // visit dedup split value + { + start: ctx.start.startIndex, + end: ctx.stop?.stopIndex, + } // stats start/end indices in query for later query concatenation + ); + } + + visitIntegerLiteral(ctx: IntegerLiteralContext): string { + return ctx.text; + } + + visitBooleanLiteral(ctx: BooleanLiteralContext): string { + return ctx.text; + } + + visitStringLiteral(ctx: StringLiteralContext): string { + return ctx.text; + } + + visitStatsAggTerm(ctx: StatsAggTermContext): PPLNode { + return new AggregateTerm( + 'stats_agg_term', + [] as Array, + this.visitStatsFunction(ctx.statsFunction()), + ctx.wcFieldExpression() ? this.visitWcFieldExpression(ctx.wcFieldExpression()!) : '' + ); + } + + visitWcFieldExpression(ctx: WcFieldExpressionContext): string { + // return only text from here to all its chilren for now + return ctx.wcQualifiedName().text; + } + + visitStatsByClause(ctx: StatsByClauseContext): PPLNode { + return new GroupBy( + 'stats_by_clause', + [] as Array, + ctx.fieldList() ? this.visitFieldList(ctx.fieldList()!) : [], + ctx.bySpanClause() ? this.visitBySpanClause(ctx.bySpanClause()!) : this.defaultResult() + ); + } + + visitBySpanClause(ctx: BySpanClauseContext): PPLNode { + return new Span( + 'span_clause', + [] as Array, + this.visitSpanClause(ctx.spanClause()), + ctx.qualifiedName() ? this.visitQualifiedName(ctx.qualifiedName()!) : '' + ); + } + + visitSpanClause(ctx: SpanClauseContext): PPLNode { + return new SpanExpression( + 'span_expression', + [] as Array, + this.visitFieldExpression(ctx.fieldExpression()), + this.visitLiteralValue(ctx.literalValue()), + ctx.timespanUnit() ? this.visitTimespanUnit(ctx.timespanUnit()!) : '' + ); + } + + visitLiteralValue(ctx: LiteralValueContext): string { + return ctx.text; + } + + visitTimespanUnit(ctx: TimespanUnitContext): string { + return ctx.text; + } + + visitStatsFunction(ctx: StatsFunctionContext): PPLNode { + let funcName = ''; + let valueExpr = ''; + + if (typeof ctx.valueExpression === 'function') { + valueExpr = this.visitValueExpression(ctx.valueExpression()); + if (typeof ctx.statsFunctionName === 'function') { + funcName = this.visitStatsFunctionName(ctx.statsFunctionName()); + } else { + funcName = ctx.DISTINCT_COUNT() ? ctx.DISTINCT_COUNT().text : ctx.DC().text; + } + } else if (typeof ctx.percentileAggFunction === 'function') { + // for now just return plain text + } else { + funcName = ctx.COUNT().text; + } + + return new AggregateFunction( + 'stats_function', + [] as Array, + funcName, + valueExpr, + typeof ctx.percentileAggFunction === 'function' ? ctx.text : '' + ); + } + + visitValueExpression(ctx: ValueExpressionContext): string { + return ctx.text; + } + + visitStatsFunctionName(ctx: StatsFunctionNameContext): string { + return ctx.text; + } + + visitFieldList(ctx: FieldListContext): Array { + return ctx.fieldExpression().map((fieldExprAlternative) => { + return new Field( + 'field_expression', + [] as Array, + this.visitFieldExpression(fieldExprAlternative) + ); + }); + } + + visitFieldExpression(ctx: FieldExpressionContext): string { + return this.visitQualifiedName(ctx.qualifiedName()); + } + + visitQualifiedName(ctx: QualifiedNameContext): string { + return ctx.text; + } +} diff --git a/dashboards-observability/query_manager/ast/builder/stats_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_builder.ts index 5bb4bb627..e1b3f970b 100644 --- a/dashboards-observability/query_manager/ast/builder/stats_builder.ts +++ b/dashboards-observability/query_manager/ast/builder/stats_builder.ts @@ -6,55 +6,77 @@ import { QueryBuilder } from './query_builder'; import { Aggregations } from '../tree/aggragations'; import { PPLNode } from '../node'; -import { +import { AggregateFunction, AggregateTerm, Field, GroupBy, Span, - SpanExpression + SpanExpression, } from '../expression'; +import { + ExpressionChunk, + SpanChunk, + StatsAggregationChunk, + StatsAggregationFunctionChunk, + GroupByChunk, + GroupField, + statsChunk, + SpanExpressionChunk, +} from '../types'; export class StatsBuilder implements QueryBuilder { - - constructor(private statsChunck) {} - - build() { + constructor(private statsChunk: statsChunk) {} + + build(): Aggregations { // return a new stats subtree return new Aggregations( 'stats_command', [] as Array, - this.statsChunck.partitions ? this.buildParttions(this.statsChunck.partitions) : '', - this.statsChunck.all_num ? this.buildAllNum(this.statsChunck.all_num) : '', - this.statsChunck.delim ? this.buildDelim(this.statsChunck.delim) : '', - this.statsChunck.aggregations ? this.buildAggList(this.statsChunck.aggregations) : [] as Array, - this.statsChunck.groupby ? this.buildGroupList(this.statsChunck.groupby) : new GroupBy('stats_by_clause', [] as Array, [], null), - this.statsChunck.dedup_split_value ? this.buildDedupSplitValue(this.statsChunck.dedup_split_value) : '' + this.statsChunk.partitions ? this.buildParttions(this.statsChunk.partitions) : '', + this.statsChunk.all_num ? this.buildAllNum(this.statsChunk.all_num) : '', + this.statsChunk.delim ? this.buildDelim(this.statsChunk.delim) : '', + this.statsChunk.aggregations + ? this.buildAggList(this.statsChunk.aggregations) + : ([] as Array), + this.statsChunk.groupby + ? this.buildGroupList(this.statsChunk.groupby) + : new GroupBy('stats_by_clause', [] as Array, [], null), + this.statsChunk.dedup_split_value + ? this.buildDedupSplitValue(this.statsChunk.dedup_split_value) + : '' ); } - buildParttions(partitions) { - return partitions; + /** + * Flags + */ + buildParttions(partitions: ExpressionChunk) { + return `${partitions.keyword} ${partitions.value}`; + } + + buildAllNum(allNum: ExpressionChunk) { + return `${allNum.keyword} ${allNum.sign} ${allNum.value}`; } - buildAllNum(allNum) { - return allNum; + buildDelim(delim: ExpressionChunk) { + return `${delim.keyword} ${delim.sign} ${delim.value}`; } - buildDelim(delim) { - return delim; + buildDedupSplitValue(dedupSplitvalue: ExpressionChunk) { + return `${dedupSplitvalue.keyword} ${dedupSplitvalue.sign} ${dedupSplitvalue.value}`; } /** - * Aggregation list + * Aggregations */ - buildAggList(aggregations) { + buildAggList(aggregations: Array) { return aggregations.map((aggregation) => { return this.buildAggTerm(aggregation); }); } - buildAggTerm(aggTerm) { + buildAggTerm(aggTerm: StatsAggregationChunk) { return new AggregateTerm( 'stats_agg_term', [] as Array, @@ -63,39 +85,35 @@ export class StatsBuilder implements QueryBuilder { ); } - buildAggregateFunction(aggFunction) { + buildAggregateFunction(aggFunction: StatsAggregationFunctionChunk) { return new AggregateFunction( 'stats_function', [] as Array, aggFunction.name, aggFunction.value_expression, aggFunction.percentile_agg_function - ) + ); } /** - * Group list + * Groups */ - buildGroupList(groupby) { + buildGroupList(groupby: GroupByChunk) { return new GroupBy( 'stats_by_clause', [] as Array, this.buildFieldList(groupby.group_fields), - this.buildSpan(groupby.span) + groupby.span ? this.buildSpan(groupby.span) : null ); } - buildFieldList(group_fields) { - return group_fields.map((gf) => { - return new Field( - 'field_expression', - [] as Array, - gf.name - ); + buildFieldList(group_fields: Array) { + return group_fields.map((gf: GroupField) => { + return new Field('field_expression', [] as Array, gf.name); }); } - buildSpan(span) { + buildSpan(span: SpanChunk) { return new Span( 'span_clause', [] as Array, @@ -104,7 +122,7 @@ export class StatsBuilder implements QueryBuilder { ); } - buildeSpanExpression(spanExpression) { + buildeSpanExpression(spanExpression: SpanExpressionChunk) { return new SpanExpression( 'span_expression', [] as Array, @@ -113,8 +131,4 @@ export class StatsBuilder implements QueryBuilder { spanExpression.time_unit ); } - - buildDedupSplitValue(dedupSplitvalue) { - return dedupSplitvalue.text; - } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/expression/group_by.ts b/dashboards-observability/query_manager/ast/expression/group_by.ts index 3389ebed5..218db58d8 100644 --- a/dashboards-observability/query_manager/ast/expression/group_by.ts +++ b/dashboards-observability/query_manager/ast/expression/group_by.ts @@ -11,7 +11,7 @@ export class GroupBy extends PPLNode { name: string, children: Array, private fields: Array, - private span: PPLNode + private span: PPLNode | null ) { super(name, children); } @@ -19,7 +19,7 @@ export class GroupBy extends PPLNode { getTokens() { return { group_fields: this.fields.map(field => field.getTokens()), - span: this.span.getTokens() + span: this.span?.getTokens(), }; } diff --git a/dashboards-observability/query_manager/ast/index.ts b/dashboards-observability/query_manager/ast/index.ts index 3cd854c5d..eb0dbf6a7 100644 --- a/dashboards-observability/query_manager/ast/index.ts +++ b/dashboards-observability/query_manager/ast/index.ts @@ -3,4 +3,4 @@ * SPDX-License-Identifier: Apache-2.0 */ -export { PPLNode } from './node'; \ No newline at end of file +export { PPLNode } from './node'; diff --git a/dashboards-observability/query_manager/ast/node.ts b/dashboards-observability/query_manager/ast/node.ts index a622167ef..c28877369 100644 --- a/dashboards-observability/query_manager/ast/node.ts +++ b/dashboards-observability/query_manager/ast/node.ts @@ -11,25 +11,21 @@ interface PPLNodeProps { } export class PPLNode implements PPLNodeProps { - - constructor( - private name: string, - private children: Array - ) {} + constructor(private name: string, private children: Array) {} - getChildren() : Array { + getChildren(): Array { return this.children; } - getName() : string { + getName(): string { return this.name; } - toString() : string { + toString(): string { return ''; } - getTokens() : any { + getTokens(): any { return null; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/tree/aggragations.ts b/dashboards-observability/query_manager/ast/tree/aggragations.ts index 87107e51f..f205d6a87 100644 --- a/dashboards-observability/query_manager/ast/tree/aggragations.ts +++ b/dashboards-observability/query_manager/ast/tree/aggragations.ts @@ -3,6 +3,7 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { isEmpty } from 'lodash'; import { PPLNode } from '../node'; import { GroupBy } from '../expression/group_by'; @@ -17,17 +18,22 @@ export class Aggregations extends PPLNode { private aggExprList: Array, private groupExprList: GroupBy, private dedupSplitValue: string, - private start?: number, - private end?: number + private indices?: { start: number; end: number } ) { super(name, children); } - getStartEndIndicesOfOriginQuery() { + getStartEndIndicesOfOriginQuery() : { start: number; end: number } { + if (this.indices === undefined) { + return { + start: -1, + end: -1 + }; + } return { - start: this.start, - end: this.end - } + start: this.indices.start, + end: this.indices.end + }; } getTokens() { @@ -42,6 +48,6 @@ export class Aggregations extends PPLNode { } toString() { - return `stats ${this.partitions ?? ''} ${this.allNum ?? ''} ${this.delim ?? ''} ${this.aggExprList.map((aggTerm) => aggTerm.toString()).join(', ')} ${this.groupExprList.toString()} ${this.dedupSplitValue ?? ''}` + return `stats ${!isEmpty(this.partitions) ? `${this.partitions} ` : ''}${!isEmpty(this.allNum) ? `${this.allNum} ` : ''}${!isEmpty(this.delim) ? `${this.delim} ` : ''}${this.aggExprList.map((aggTerm) => aggTerm.toString()).join(', ')}${!isEmpty(this.groupExprList) ? ` ${this.groupExprList.toString()}` : ''}${!isEmpty(this.dedupSplitValue) ? ` ${this.dedupSplitValue}` : ''}` } } \ No newline at end of file diff --git a/dashboards-observability/query_manager/ast/types/index.ts b/dashboards-observability/query_manager/ast/types/index.ts new file mode 100644 index 000000000..f05d5f686 --- /dev/null +++ b/dashboards-observability/query_manager/ast/types/index.ts @@ -0,0 +1,15 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export { + ExpressionChunk, + SpanChunk, + StatsAggregationChunk, + StatsAggregationFunctionChunk, + GroupByChunk, + GroupField, + statsChunk, + SpanExpressionChunk, +} from './stats'; diff --git a/dashboards-observability/query_manager/ast/types/stats.ts b/dashboards-observability/query_manager/ast/types/stats.ts new file mode 100644 index 000000000..44071bbca --- /dev/null +++ b/dashboards-observability/query_manager/ast/types/stats.ts @@ -0,0 +1,54 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +/** + * stats chunck types + */ +export interface StatsAggregationChunk { + function: StatsAggregationFunctionChunk; + function_alias: string; +} + +export interface StatsAggregationFunctionChunk { + name: string; + value_expression: string; + percentile_agg_function: string; +} + +export interface GroupField { + name: string; +} + +export interface SpanChunk { + alias: string; + span_expression: SpanExpressionChunk; +} + +export interface SpanExpressionChunk { + type: string; + field: string; + time_unit: string; + literal_value: string; +} + +export interface GroupByChunk { + group_fields: Array; + span: SpanChunk | null; +} + +export interface statsChunk { + aggregations: Array; + groupby: GroupByChunk; + partitions: ExpressionChunk; + all_num: ExpressionChunk; + delim: ExpressionChunk; + dedup_split_value: ExpressionChunk; +} + +export interface ExpressionChunk { + keyword: string; + sign: string; + value: string | number; +} diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java index 5e81fb13c..a4b0a792f 100644 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java @@ -1,4 +1,4 @@ -// Generated from /Users/menwe/code/OpenSearch-Dashboards/.observability/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.2 +// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.2 import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; import org.antlr.v4.runtime.Token; diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java index 06424ae08..eaf8c0ca9 100644 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java +++ b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java @@ -1,4 +1,4 @@ -// Generated from /Users/menwe/code/OpenSearch-Dashboards/.observability/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.2 +// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.2 import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; import org.antlr.v4.runtime.*; diff --git a/dashboards-observability/query_manager/index.ts b/dashboards-observability/query_manager/index.ts index f81802afc..72b5cd2f6 100644 --- a/dashboards-observability/query_manager/index.ts +++ b/dashboards-observability/query_manager/index.ts @@ -3,4 +3,4 @@ * SPDX-License-Identifier: Apache-2.0 */ -export { QueryManager } from './ppl_query_manager'; \ No newline at end of file +export { QueryManager } from './ppl_query_manager'; diff --git a/dashboards-observability/query_manager/ppl_query_manager.ts b/dashboards-observability/query_manager/ppl_query_manager.ts index ccfb03633..513485cf5 100644 --- a/dashboards-observability/query_manager/ppl_query_manager.ts +++ b/dashboards-observability/query_manager/ppl_query_manager.ts @@ -7,12 +7,11 @@ import { PPLQueryBuilder } from './query_builder/ppl_query_builder'; import { PPLQueryParser } from './query_parser/ppl_query_parser'; export class QueryManager { - - queryBuilder() : PPLQueryBuilder { + queryBuilder(): PPLQueryBuilder { return new PPLQueryBuilder(); } - queryParser() : PPLQueryParser { + queryParser(): PPLQueryParser { return new PPLQueryParser(); } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/query_builder/index.ts b/dashboards-observability/query_manager/query_builder/index.ts index 861712574..dfc6596bc 100644 --- a/dashboards-observability/query_manager/query_builder/index.ts +++ b/dashboards-observability/query_manager/query_builder/index.ts @@ -1 +1 @@ -export { PPLQueryBuilder } from './ppl_query_builder'; \ No newline at end of file +export { PPLQueryBuilder } from './ppl_query_builder'; diff --git a/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts b/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts index 13ad3d6a4..f2a18b65f 100644 --- a/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts +++ b/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts @@ -5,31 +5,31 @@ import { PPLSyntaxParser } from '../antlr/ppl_syntax_parser'; import { StatsBuilder } from '../ast/builder/stats_builder'; -import { StatsAstBuilder } from '../ast/builder/ast_builder'; - +import { StatsAstBuilder } from '../ast/builder/stats_ast_builder'; export class PPLQueryBuilder { - parser: PPLSyntaxParser | null = null; - build(query: string, pplTokens: any) { - // parse query this.parser = new PPLSyntaxParser().parse(query); - return this.buildStats(query, pplTokens); } buildStats(query: string, statsTokens: any) { - this.visitor = new StatsAstBuilder(); - const statsTree = this.visitor.visitRoot(this.parser!.root()); + const statsTree = new StatsAstBuilder().visitRoot(this.parser!.root()); const newStatsAstTree = new StatsBuilder(statsTokens).build(); - const indices = statsTree.getStartEndIndicesOfOriginQuery() - if (indices.start !== undefined && indices.end !== undefined) { - return query.substring(0, indices.start) + newStatsAstTree.toString() + query.substring(indices.end + 1, query.length); + const indices = statsTree.getStartEndIndicesOfOriginQuery(); + + if (indices.start !== -1 && indices.end !== -1) { + return ( + query.substring(0, indices.start) + + newStatsAstTree.toString() + + query.substring(indices.end + 1, query.length) + ); + } else if (indices && newStatsAstTree) { + return query + ' | ' + newStatsAstTree.toString(); } - return query + ' | ' + newStatsAstTree.toString(); + return ''; } } - diff --git a/dashboards-observability/query_manager/query_parser/index.ts b/dashboards-observability/query_manager/query_parser/index.ts index e2941f144..8d5d17e7a 100644 --- a/dashboards-observability/query_manager/query_parser/index.ts +++ b/dashboards-observability/query_manager/query_parser/index.ts @@ -3,6 +3,4 @@ * SPDX-License-Identifier: Apache-2.0 */ -export { PPLStatsVisitor } from './ppl_stats_visitor'; -export { PPLQueryParser } from './ppl_query_parser'; -export { PPLSyntaxParser } from './ppl_syntax_parser'; \ No newline at end of file +export { PPLQueryParser } from './ppl_query_parser'; \ No newline at end of file diff --git a/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts b/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts index c66ad5522..8acfdb062 100644 --- a/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts +++ b/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts @@ -5,12 +5,10 @@ import { PPLSyntaxParser } from '../antlr/ppl_syntax_parser'; import { OpenSearchPPLParser } from '../antlr/bin/OpenSearchPPLParser'; -import { StatsBuilder } from '../ast/builder/stats_builder'; -import { StatsAstBuilder } from '../ast/builder/ast_builder'; +import { StatsAstBuilder } from '../ast/builder/stats_ast_builder'; export class PPLQueryParser { - - parser : OpenSearchPPLParser | null = null; + parser: OpenSearchPPLParser | null = null; visitor: any = null; rawQuery: string = ''; @@ -23,29 +21,5 @@ export class PPLQueryParser { getStats() { this.visitor = new StatsAstBuilder(); return this.visitor.visitRoot(this.parser!.root()).getTokens(); - // const statsTree = this.visitor.visitRoot(this.parser!.root()); - // const statsIndices = statsTree.getStartEndIndicesOfOriginQuery(); - // const newAgg = { - // alias: '', - // function: { - // name: 'max', - // percentile_agg_function: '', - // value_expression: 'bytes' - // } - // }; - // const currentAggs = [...statsTree.getTokens().aggregations, newAgg]; - // const newTree = { - // ...statsTree.getTokens(), - // aggregations: currentAggs - // }; - // const newAstTree = new StatsBuilder(newTree).build(); - // const finalQuery = this.raw.substring(0, statsIndices.start) + newAstTree.toString() + this.query.substring(statsIndices.end + 1, this.query.length); - // return finalQuery } - - getQuery() { - // this.visitor = new StatsAstBuilder(); - // const statsIndices = this.visitor.visitRoot(this.parser!.root()).getStartEndIndicesOfOriginQuery(); - // return this.raw.substring(0, statsIndices.start) + newAstTree.toString() + this.rawQuery.substring(statsIndices.end + 1, this.rawQuery.length); - }; -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/utils/index.ts b/dashboards-observability/query_manager/utils/index.ts new file mode 100644 index 000000000..f52492aca --- /dev/null +++ b/dashboards-observability/query_manager/utils/index.ts @@ -0,0 +1,26 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export const composeAggregations = (aggConfig, staleStats) => { + return { + aggregations: aggConfig.metrics.map((metric) => ({ + function: { + name: metric.aggregation, + value_expression: metric.name, + percentile_agg_function: '', + }, + })), + groupby: { + group_fields: aggConfig.dimensions.map((dimension) => ({ name: dimension.name })), + span: aggConfig.dimensions.filter((dimension) => dimension.type === 'timestamp') + ? aggConfig.dimensions.filter((dimension) => dimension.type === 'timestamp')[0] + : '', + }, + partitions: staleStats.partitions, + all_num: staleStats.all_num, + delim: staleStats.delim, + dedup_split_value: staleStats.dedup_split_value, + }; +}; From 6712046b9c6fd2df8e6215b9af21b50f7becf19e Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Wed, 3 Aug 2022 15:04:28 -0700 Subject: [PATCH 07/29] types/code cleanups/error corrections Signed-off-by: Eric Wei --- dashboards-observability/package.json | 6 +- .../query_manager/__tests__/utils.jest.ts | 74 ---- .../adaptors/case_insensitive_char_stream.ts | 72 ++-- .../query_manager/antlr/ppl_syntax_parser.ts | 7 +- .../ast/builder/stats_ast_builder.ts | 2 +- .../ast/builder/stats_builder.ts | 2 +- .../ast/expression/AggregateFunction.ts | 10 +- .../ast/expression/AggregateTerm.ts | 8 +- .../query_manager/ast/expression/field.ts | 10 +- .../query_manager/ast/expression/group_by.ts | 8 +- .../query_manager/ast/expression/index.ts | 2 +- .../query_manager/ast/expression/span.ts | 4 +- .../ast/expression/spanExpression.ts | 4 +- .../query_manager/ast/tree/aggragations.ts | 23 +- .../query_manager/ast/types/index.ts | 2 + .../query_manager/ast/types/stats.ts | 20 ++ .../query_manager/query_builder/index.ts | 5 + .../query_manager/query_parser/index.ts | 2 +- .../query_parser/ppl_stats_visitor.ts | 338 ------------------ .../query_manager/utils/index.ts | 12 +- 20 files changed, 115 insertions(+), 496 deletions(-) delete mode 100644 dashboards-observability/query_manager/__tests__/utils.jest.ts delete mode 100644 dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts diff --git a/dashboards-observability/package.json b/dashboards-observability/package.json index fc8b1e4a2..3eea5e37d 100644 --- a/dashboards-observability/package.json +++ b/dashboards-observability/package.json @@ -1,6 +1,6 @@ { "name": "observability-dashboards", - "version": "2.0.1.0", + "version": "2.1.0.0", "main": "index.ts", "license": "Apache-2.0", "scripts": { @@ -10,8 +10,8 @@ "cypress:run": "TZ=America/Los_Angeles cypress run", "cypress:open": "TZ=America/Los_Angeles cypress open", "plugin_helpers": "node ../../scripts/plugin_helpers", - "antlr4ts_ppl_lexer": "antlr4ts -visitor ./antlr/OpenSearchPPLLexer.g4", - "antlr4ts_ppl_parser": "antlr4ts -visitor ./antlr/OpenSearchPPLParser.g4" + "antlr4ts_ppl_lexer": "antlr4ts -visitor ./query_manager/grammar/OpenSearchPPLLexer.g4", + "antlr4ts_ppl_parser": "antlr4ts -visitor ./query_manager/grammar/OpenSearchPPLParser.g4" }, "dependencies": { "@algolia/autocomplete-core": "^1.4.1", diff --git a/dashboards-observability/query_manager/__tests__/utils.jest.ts b/dashboards-observability/query_manager/__tests__/utils.jest.ts deleted file mode 100644 index b710815e4..000000000 --- a/dashboards-observability/query_manager/__tests__/utils.jest.ts +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -import { composeAggregations } from '../utils'; - -describe('test query manager utilities', () => { - it('should compose a recipe object with fields for building stats substree', () => { - const statsRecipe = composeAggregations( - // UI configurable - { - metrics: [], - dimensions: [], - }, - // come directly from query parsing and are not support in UI configurations - { - partitions: { - keyword: 'partitions', - sign: '', - value: '+3', - }, - allnum: { - keyword: 'allnum', - sign: '=', - value: 'true', - }, - delim: { - keyword: 'delim', - sign: '=', - value: '"test"', - }, - dedup_split_value: { - keyword: 'dedup_splitvalues', - sign: '=', - value: 'false', - }, - aggregations: [ - { - alias: 'total_sum', - function: { - name: 'count', - percentile_agg_function: '', - value_expression: '', - }, - }, - { - alias: 'avg_bytes', - function: { - name: 'avg', - percentile_agg_function: '', - value_expression: 'bytes', - }, - }, - ], - groupby: { - group_fields: [ - { - name: 'host', - }, - ], - span: { - alias: 'time_interval', - span_expression: { - field: 'timestamp', - literal_value: '2', - time_unit: 'm', - }, - }, - }, - } - ); - }); -}); diff --git a/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts b/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts index 599ae3432..6c3414f35 100644 --- a/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts +++ b/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts @@ -6,57 +6,55 @@ import { CharStream } from 'antlr4ts'; export class CaseInsensitiveCharStream { - private stream: CharStream; - get index() : number { - return this.stream.index; - } + get index(): number { + return this.stream.index; + } - get size() : number { - return this.stream.size; - } + get size(): number { + return this.stream.size; + } - get sourceName() : string { - return 'pplquery'; - } + get sourceName(): string { + return 'pplquery'; + } - constructor(stream: CharStream) { - this.stream = stream; - } - - LA(offset: number) : number { - const c : number = this.stream.LA(offset); + constructor(stream: CharStream) { + this.stream = stream; + } + + LA(offset: number): number { + const c: number = this.stream.LA(offset); if (c <= 0) { return c; } // case insensitivity support for PPL return String.fromCodePoint(c).toUpperCase().codePointAt(0)!; - } - - consume() : void { - this.stream.consume(); - } + } - mark() : number { - return this.stream.mark(); - } + consume(): void { + this.stream.consume(); + } - release(marker: number) : void { - this.stream.release(marker); - } + mark(): number { + return this.stream.mark(); + } - seek(index: number) : void { - this.stream.seek(index); - }; + release(marker: number): void { + this.stream.release(marker); + } - getText(interval: any): string { - return this.stream.getText(interval); - } + seek(index: number): void { + this.stream.seek(index); + } - toString() : string { - return this.stream.toString(); - } + getText(interval: any): string { + return this.stream.getText(interval); + } -} \ No newline at end of file + toString(): string { + return this.stream.toString(); + } +} diff --git a/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts b/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts index bfa01a415..607944835 100644 --- a/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts +++ b/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts @@ -12,11 +12,10 @@ import { OpenSearchPPLParser } from '../antlr/bin/OpenSearchPPLParser'; * PPL Syntax Parser. */ export class PPLSyntaxParser { - /** * Analyze the query syntax. - */ - + */ + parse(query: string) { return this.createParser(this.createLexer(query)); } @@ -28,4 +27,4 @@ export class PPLSyntaxParser { createParser(lexer: OpenSearchPPLLexer) { return new OpenSearchPPLParser(new CommonTokenStream(lexer)); } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts index df48bfb15..c2b158ca2 100644 --- a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts +++ b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts @@ -77,7 +77,7 @@ export class StatsAstBuilder ctx.PARTITIONS() && ctx.integerLiteral() ? { keyword: ctx.PARTITIONS()?.text, - sign: '', + sign: '=', value: ctx.integerLiteral()?.text, } : {}, // visit partitions partial diff --git a/dashboards-observability/query_manager/ast/builder/stats_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_builder.ts index e1b3f970b..f75ced305 100644 --- a/dashboards-observability/query_manager/ast/builder/stats_builder.ts +++ b/dashboards-observability/query_manager/ast/builder/stats_builder.ts @@ -52,7 +52,7 @@ export class StatsBuilder implements QueryBuilder { * Flags */ buildParttions(partitions: ExpressionChunk) { - return `${partitions.keyword} ${partitions.value}`; + return `${partitions.keyword} ${partitions.sign} ${partitions.value}`; } buildAllNum(allNum: ExpressionChunk) { diff --git a/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts b/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts index 3de09d764..06c05cec6 100644 --- a/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts +++ b/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts @@ -11,7 +11,7 @@ export class AggregateFunction extends PPLNode { children: Array, private statsFunctionName: string, private valueExpression: string, - private percentileAggFunction: string, + private percentileAggFunction: string ) { super(name, children); } @@ -20,18 +20,18 @@ export class AggregateFunction extends PPLNode { return { name: this.statsFunctionName, value_expression: this.valueExpression, - percentile_agg_function: this.percentileAggFunction + percentile_agg_function: this.percentileAggFunction, }; } toString(): string { if (this.statsFunctionName && this.valueExpression) { - return `${this.statsFunctionName}(${this.valueExpression})` + return `${this.statsFunctionName}(${this.valueExpression})`; } else if (this.statsFunctionName) { return `${this.statsFunctionName}()`; } else if (this.percentileAggFunction) { - return `${this.percentileAggFunction}` + return `${this.percentileAggFunction}`; } return ''; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts b/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts index 15544de5c..03e1f809d 100644 --- a/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts +++ b/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts @@ -18,14 +18,14 @@ export class AggregateTerm extends PPLNode { getTokens() { return { function: this.statsFunction.getTokens(), - alias: this.alias + alias: this.alias, }; } toString(): string { if (this.alias) { - return `${this.statsFunction.toString()} as ${this.alias}` + return `${this.statsFunction.toString()} as ${this.alias}`; } - return `${this.statsFunction.toString()}` + return `${this.statsFunction.toString()}`; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/expression/field.ts b/dashboards-observability/query_manager/ast/expression/field.ts index 5197f57a0..3bc35ce70 100644 --- a/dashboards-observability/query_manager/ast/expression/field.ts +++ b/dashboards-observability/query_manager/ast/expression/field.ts @@ -6,19 +6,15 @@ import { PPLNode } from '../node'; export class Field extends PPLNode { - constructor( - name: string, - children: Array, - private fieldExpression: string - ) { + constructor(name: string, children: Array, private fieldExpression: string) { super(name, children); } getTokens() { - return { name: this.fieldExpression ?? ''}; + return { name: this.fieldExpression ?? '' }; } toString(): string { return this.fieldExpression ?? ''; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/expression/group_by.ts b/dashboards-observability/query_manager/ast/expression/group_by.ts index 218db58d8..42aaf8a92 100644 --- a/dashboards-observability/query_manager/ast/expression/group_by.ts +++ b/dashboards-observability/query_manager/ast/expression/group_by.ts @@ -18,12 +18,14 @@ export class GroupBy extends PPLNode { getTokens() { return { - group_fields: this.fields.map(field => field.getTokens()), + group_fields: this.fields.map((field) => field.getTokens()), span: this.span?.getTokens(), }; } toString(): string { - return `by ${this.span? `${this.span.toString()}, ` : ''}${this.fields.map((field) => field.toString()).join(', ')}`; + return `by ${this.span ? `${this.span.toString()}, ` : ''}${this.fields + .map((field) => field.toString()) + .join(', ')}`; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/expression/index.ts b/dashboards-observability/query_manager/ast/expression/index.ts index 681cfc07d..222ca12ca 100644 --- a/dashboards-observability/query_manager/ast/expression/index.ts +++ b/dashboards-observability/query_manager/ast/expression/index.ts @@ -3,4 +3,4 @@ export { AggregateTerm } from './AggregateTerm'; export { GroupBy } from './group_by'; export { Span } from './span'; export { SpanExpression } from './spanExpression'; -export { Field } from './field'; \ No newline at end of file +export { Field } from './field'; diff --git a/dashboards-observability/query_manager/ast/expression/span.ts b/dashboards-observability/query_manager/ast/expression/span.ts index e1f5e63d3..d69152b44 100644 --- a/dashboards-observability/query_manager/ast/expression/span.ts +++ b/dashboards-observability/query_manager/ast/expression/span.ts @@ -18,11 +18,11 @@ export class Span extends PPLNode { getTokens() { return { span_expression: this.spanExpression.getTokens(), - alias: this.alias + alias: this.alias, }; } toString(): string { return `${this.spanExpression.toString()} as ${this.alias}`; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/expression/spanExpression.ts b/dashboards-observability/query_manager/ast/expression/spanExpression.ts index 87cc1eb75..c3f8d15ed 100644 --- a/dashboards-observability/query_manager/ast/expression/spanExpression.ts +++ b/dashboards-observability/query_manager/ast/expression/spanExpression.ts @@ -20,11 +20,11 @@ export class SpanExpression extends PPLNode { return { field: this.fieldExpression, literal_value: this.literalValue, - time_unit: this.timeUnit + time_unit: this.timeUnit, }; } toString(): string { return `span(${this.fieldExpression}, ${this.literalValue}${this.timeUnit})`; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/tree/aggragations.ts b/dashboards-observability/query_manager/ast/tree/aggragations.ts index f205d6a87..73201a2e5 100644 --- a/dashboards-observability/query_manager/ast/tree/aggragations.ts +++ b/dashboards-observability/query_manager/ast/tree/aggragations.ts @@ -8,7 +8,6 @@ import { PPLNode } from '../node'; import { GroupBy } from '../expression/group_by'; export class Aggregations extends PPLNode { - constructor( name: string, children: Array, @@ -23,16 +22,16 @@ export class Aggregations extends PPLNode { super(name, children); } - getStartEndIndicesOfOriginQuery() : { start: number; end: number } { + getStartEndIndicesOfOriginQuery(): { start: number; end: number } { if (this.indices === undefined) { return { start: -1, - end: -1 + end: -1, }; - } + } return { start: this.indices.start, - end: this.indices.end + end: this.indices.end, }; } @@ -43,11 +42,17 @@ export class Aggregations extends PPLNode { delim: this.delim, aggregations: this.aggExprList.map((aggTerm) => aggTerm.getTokens()), groupby: this.groupExprList.getTokens(), - dedup_split_value: this.dedupSplitValue - } + dedup_split_value: this.dedupSplitValue, + }; } toString() { - return `stats ${!isEmpty(this.partitions) ? `${this.partitions} ` : ''}${!isEmpty(this.allNum) ? `${this.allNum} ` : ''}${!isEmpty(this.delim) ? `${this.delim} ` : ''}${this.aggExprList.map((aggTerm) => aggTerm.toString()).join(', ')}${!isEmpty(this.groupExprList) ? ` ${this.groupExprList.toString()}` : ''}${!isEmpty(this.dedupSplitValue) ? ` ${this.dedupSplitValue}` : ''}` + return `stats ${!isEmpty(this.partitions) ? `${this.partitions} ` : ''}${ + !isEmpty(this.allNum) ? `${this.allNum} ` : '' + }${!isEmpty(this.delim) ? `${this.delim} ` : ''}${this.aggExprList + .map((aggTerm) => aggTerm.toString()) + .join(', ')}${!isEmpty(this.groupExprList) ? ` ${this.groupExprList.toString()}` : ''}${ + !isEmpty(this.dedupSplitValue) ? ` ${this.dedupSplitValue}` : '' + }`; } -} \ No newline at end of file +} diff --git a/dashboards-observability/query_manager/ast/types/index.ts b/dashboards-observability/query_manager/ast/types/index.ts index f05d5f686..956731baf 100644 --- a/dashboards-observability/query_manager/ast/types/index.ts +++ b/dashboards-observability/query_manager/ast/types/index.ts @@ -12,4 +12,6 @@ export { GroupField, statsChunk, SpanExpressionChunk, + AggregationConfigurations, + PreviouslyParsedStaleStats } from './stats'; diff --git a/dashboards-observability/query_manager/ast/types/stats.ts b/dashboards-observability/query_manager/ast/types/stats.ts index 44071bbca..959ae7847 100644 --- a/dashboards-observability/query_manager/ast/types/stats.ts +++ b/dashboards-observability/query_manager/ast/types/stats.ts @@ -52,3 +52,23 @@ export interface ExpressionChunk { sign: string; value: string | number; } + +export interface DataConfigMetric { + alias: string; + label: string; + name: string; + aggregation: string; +} + +export interface AggregationConfigurations { + metrics: Array; + dimensions: Array; + span: SpanChunk; +} + +export interface PreviouslyParsedStaleStats { + partitions: ExpressionChunk; + all_num: ExpressionChunk; + delim: ExpressionChunk; + dedup_split_value: ExpressionChunk; +} diff --git a/dashboards-observability/query_manager/query_builder/index.ts b/dashboards-observability/query_manager/query_builder/index.ts index dfc6596bc..24e0492f5 100644 --- a/dashboards-observability/query_manager/query_builder/index.ts +++ b/dashboards-observability/query_manager/query_builder/index.ts @@ -1 +1,6 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + export { PPLQueryBuilder } from './ppl_query_builder'; diff --git a/dashboards-observability/query_manager/query_parser/index.ts b/dashboards-observability/query_manager/query_parser/index.ts index 8d5d17e7a..c4afe0e5d 100644 --- a/dashboards-observability/query_manager/query_parser/index.ts +++ b/dashboards-observability/query_manager/query_parser/index.ts @@ -3,4 +3,4 @@ * SPDX-License-Identifier: Apache-2.0 */ -export { PPLQueryParser } from './ppl_query_parser'; \ No newline at end of file +export { PPLQueryParser } from './ppl_query_parser'; diff --git a/dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts b/dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts deleted file mode 100644 index ef9f775d4..000000000 --- a/dashboards-observability/query_manager/query_parser/ppl_stats_visitor.ts +++ /dev/null @@ -1,338 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -import { has, map } from 'lodash'; -import { AbstractParseTreeVisitor } from 'antlr4ts/tree/AbstractParseTreeVisitor'; -import { - BooleanLiteralContext, - BySpanClauseContext, - CommandsContext, - FieldExpressionContext, - FieldListContext, - FieldsCommandContext, - IntegerLiteralContext, - LiteralValueContext, - LogicalExpressionContext, - PplStatementContext, - QualifiedNameContext, - RootContext, - SearchCommandContext, - SpanClauseContext, - StatsAggTermContext, - StatsByClauseContext, - StatsCommandContext, - StatsFunctionContext, - StatsFunctionNameContext, - StringLiteralContext, - TimespanUnitContext, - ValueExpressionContext, - WcFieldExpressionContext, - WhereCommandContext -} from '../antlr/bin/OpenSearchPPLParser'; -import { OpenSearchPPLParserVisitor } from '../antlr/bin/OpenSearchPPLParserVisitor'; -import { AggregateFunction } from '../ast/expression'; -import { - PPLNode -} from '../ast'; - -// interface PPLPartial { -// text: string; -// } - -// interface StatsPatial { -// partitions?: StatsPartitions; -// delim?: StatsDelim; -// agg_terms: StatsAggTerms; -// groupby_fields?: StatsGroupByFields; -// raw_tex: string; -// dedup_splitvalue?: string; -// } - -// interface StatsSpanPartial { -// field_expr_name: string; -// liter_value: string; -// timespan_unit?: string; -// field_alias?: string; -// span_text: string -// } - -// interface StatsPartitions { -// // keyword: string; - -// } - -// interface StatsDelim { -// keyword: string; -// string_literal: string; -// raw_text: string; -// } - -// interface StatsGroupByFields { -// [index: number]: StatsGroupByField; -// } - -// interface StatsGroupByField { -// name: string; -// } - -// interface StatsAggTerms { -// [index: number] : StatsAggTermPartial; -// } - -// interface WcFieldExpressionPartial {} - -// interface StatsAggTermPartial { -// function_partial: StatsFuncPartial; -// alias_partial: WcFieldExpressionPartial; -// } - -// interface StatsFuncPartial { -// func_name: string; -// value_expr: string; -// raw_text: string; -// percentile_agg_function?: string; -// dedup_splitvalue?: string; -// } - -// type PPLPartial = -// string -// | StatsPatial -// | StatsAggTermPartial -// | StatsAggTerms -// | StatsGroupByFields -// | StatsSpanPartial -// | StatsGroupByField -// | StatsFuncPartial; - -type VisitResult = PPLNode | string; - -export class PPLStatsVisitor extends AbstractParseTreeVisitor implements OpenSearchPPLParserVisitor { - protected defaultResult(): PPLNode { - return new PPLNode( - 'default', - [] as Array - ); - } - - visitRoot(ctx: RootContext) { - return this.visit(ctx.pplStatement()!); - } - - visitPplStatement(ctx: PplStatementContext) { - console.log('ctx: ', ctx); - console.log('ctx.commands(): ', ctx.commands()); - const comandsContext = [] as Array; - return ctx.commands().map((pplCommandContext) => { - console.log('pplCommandContext: ', pplCommandContext); - return this.visitChildren(pplCommandContext); - }); - - // return this.visitStatsCommand(ctx.statsComand()); - // return ctx.children?.filter((childCtx) => childCtx.isEmpty !== undefined && !childCtx.isEmpty).map((childCtx) => { - // return this.visit(childCtx); - // }); - } - - // visitSearchCommand(ctx: SearchCommandContext) { - // return this.visitCommands(ctx.c); - // } - - visitCommands(ctx: CommandsContext) { - return this.visitStatsCommand(ctx.statsCommand()!); - } - - /** - * Where command - */ - // visitWhereCommand(ctx: WhereCommandContext) { - // return this.visitLogicalExpression(ctx.logicalExpression()); - // } - - // visitLogicalExpression(ctx: LogicalExpressionContext) { - // console.log('LogicalExpressionContext: ', ctx); - // return ctx.WHERE().text + ' ' + ctx.text; - // } - - // visitFieldsCommand(ctx: FieldsCommandContext) { - // return ctx.text; - // } - - /** - * Stats command - */ - - visitStatsCommand(ctx: StatsCommandContext) : PPLNode { - console.log('StatsCommandContext: ', ctx); - console.log('start and stop: ', ctx.start.startIndex, ', ', ctx.stop?.stopIndex); - const statsTokens = { - raw_text: ctx.text - }; - - // visit partitions partial - if (ctx.PARTITIONS() && ctx.integerLiteral()) { - statsTokens['partitions'] = { - keyword: ctx.PARTITIONS()!.text, - integer_literal: this.visitIntegerLiteral(ctx.integerLiteral()!), - raw_text: ctx.PARTITIONS()!.text - }; - } - - // visit allnum partial - if (ctx.ALLNUM() && ctx.booleanLiteral()) { - this.visitBooleanLiteral(ctx.booleanLiteral()!); - } - - // visit delim partial - if (ctx.DELIM() && ctx.stringLiteral()) { - statsTokens['delim'] = { - keyword: ctx.DELIM()!.text, - string_literal: this.visitStringLiteral(ctx.stringLiteral()!), - raw_text: ctx.DELIM()!.text - }; - } - - // visit statsAggTerm - statsTokens['agg_terms'] = - ctx - .statsAggTerm() - .map((aggTermAlternative) => this.visitStatsAggTerm(aggTermAlternative)); - - if (ctx.statsByClause()) { - statsTokens['groupby_fields'] = this.visitStatsByClause(ctx.statsByClause()!); - } - - - if (ctx.DEDUP_SPLITVALUES() && ctx.booleanLiteral()) { - statsTokens['dedup_splitvalue'] = this.visitBooleanLiteral(ctx.booleanLiteral()!) - } - - return statsTokens; - } - - visitIntegerLiteral(ctx: IntegerLiteralContext) : string { - return ctx.text; - } - - visitBooleanLiteral(ctx: BooleanLiteralContext) : string { - return ctx.text; - } - - visitStringLiteral(ctx: StringLiteralContext) : string { - return ctx.text; - } - - visitStatsAggTerm(ctx: StatsAggTermContext) : PPLNode { - - const statsAggTermPartial = { - function_partial: this.visitStatsFunction(ctx.statsFunction()), - } as StatsAggTermPartial; - - if (ctx.wcFieldExpression()) { - statsAggTermPartial['alias_partial'] = this.visitWcFieldExpression(ctx.wcFieldExpression()!); - } - - return statsAggTermPartial; - } - - visitWcFieldExpression(ctx: WcFieldExpressionContext) : string { - // return only text from here to all its chilren for now - return ctx.wcQualifiedName().text; - } - - visitStatsByClause(ctx: StatsByClauseContext) : StatsGroupByFields { - let statsGroupByFields = [] as StatsGroupByFields; - - if (ctx.fieldList) { - statsGroupByFields = [...statsGroupByFields, ...this.visitFieldList(ctx.fieldList()!)]; - } - - if (ctx.bySpanClause()) { - statsGroupByFields.push(this.visitBySpanClause(ctx.bySpanClause()!)); - } - - return statsGroupByFields; - } - - visitBySpanClause(ctx: BySpanClauseContext) : PPLNode { - const spanTokens = this.visitSpanClause(ctx.spanClause()); - if (ctx.qualifiedName()) { - spanTokens['field_alias'] = this.visitQualifiedName(ctx.qualifiedName()!); - } - return spanTokens; - } - - visitSpanClause(ctx: SpanClauseContext) : PPLNode { - return { - field_expr_name: this.visitFieldExpression(ctx.fieldExpression()), - liter_value: this.visitLiteralValue(ctx.literalValue()), - timespan_unit: ctx.timespanUnit() ? this.visitTimespanUnit(ctx.timespanUnit()!) : '', - span_text: ctx.text - }; - } - - visitLiteralValue(ctx: LiteralValueContext) : string { - return ctx.text; - } - - visitTimespanUnit(ctx: TimespanUnitContext) : string { - return ctx.text; - } - - visitStatsFunction(ctx: StatsFunctionContext) : PPLNode { - const aggToken = { - func_name: '', - value_expr: '', - raw_text: ctx.text, - }; - - if (typeof ctx.valueExpression === 'function') { - aggToken.value_expr = this.visitValueExpression(ctx.valueExpression()); - if (typeof ctx.statsFunctionName === 'function') { - aggToken.func_name = this.visitStatsFunctionName(ctx.statsFunctionName()); - } else { - aggToken.func_name = ctx.DISTINCT_COUNT() ? ctx.DISTINCT_COUNT().text : ctx.DC().text; - } - } else if (typeof ctx.percentileAggFunction === 'function') { - // for now just return plain text - } else { - aggToken.func_name = ctx.COUNT().text; - } - - return new AggregateFunction( - 'stats_function', - [] as Array, - aggToken.func_name, - aggToken.value_expr, - ctx.percentileAggFunction === 'function' ? ctx.percentileAggFunction().text : '' - ); - - // return aggToken; - } - - visitValueExpression(ctx: ValueExpressionContext) : string { - return ctx.text; - } - - visitStatsFunctionName(ctx: StatsFunctionNameContext) : string { - return ctx.text; - } - - visitFieldList(ctx: FieldListContext) : PPLNode { - return ctx.fieldExpression().map((fieldExprAlternative) => { - return { - name: this.visitFieldExpression(fieldExprAlternative) - } - } - ); - } - - visitFieldExpression(ctx: FieldExpressionContext) : string { - return this.visitQualifiedName(ctx.qualifiedName()); - } - - visitQualifiedName(ctx: QualifiedNameContext) : string { - return ctx.text; - } -} \ No newline at end of file diff --git a/dashboards-observability/query_manager/utils/index.ts b/dashboards-observability/query_manager/utils/index.ts index f52492aca..b7272e078 100644 --- a/dashboards-observability/query_manager/utils/index.ts +++ b/dashboards-observability/query_manager/utils/index.ts @@ -3,9 +3,15 @@ * SPDX-License-Identifier: Apache-2.0 */ -export const composeAggregations = (aggConfig, staleStats) => { +import { AggregationConfigurations, PreviouslyParsedStaleStats } from '../ast/types'; + +export const composeAggregations = ( + aggConfig: AggregationConfigurations, + staleStats: PreviouslyParsedStaleStats +) => { return { aggregations: aggConfig.metrics.map((metric) => ({ + function_alias: metric.alias, function: { name: metric.aggregation, value_expression: metric.name, @@ -14,9 +20,7 @@ export const composeAggregations = (aggConfig, staleStats) => { })), groupby: { group_fields: aggConfig.dimensions.map((dimension) => ({ name: dimension.name })), - span: aggConfig.dimensions.filter((dimension) => dimension.type === 'timestamp') - ? aggConfig.dimensions.filter((dimension) => dimension.type === 'timestamp')[0] - : '', + span: aggConfig.span ?? null, }, partitions: staleStats.partitions, all_num: staleStats.all_num, From ae0598cc83ef455a5605f1e632e4b1b3fb2d491b Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Mon, 8 Aug 2022 18:11:41 -0700 Subject: [PATCH 08/29] qm fixes for query builder Signed-off-by: Eric Wei --- .../query_manager/ast/builder/stats_builder.ts | 13 +++++++------ .../query_builder/ppl_query_builder.ts | 4 ++++ .../query_manager/utils/index.ts | 8 ++++---- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/dashboards-observability/query_manager/ast/builder/stats_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_builder.ts index f75ced305..201431b27 100644 --- a/dashboards-observability/query_manager/ast/builder/stats_builder.ts +++ b/dashboards-observability/query_manager/ast/builder/stats_builder.ts @@ -3,6 +3,7 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { isEmpty } from 'lodash'; import { QueryBuilder } from './query_builder'; import { Aggregations } from '../tree/aggragations'; import { PPLNode } from '../node'; @@ -33,16 +34,16 @@ export class StatsBuilder implements QueryBuilder { return new Aggregations( 'stats_command', [] as Array, - this.statsChunk.partitions ? this.buildParttions(this.statsChunk.partitions) : '', - this.statsChunk.all_num ? this.buildAllNum(this.statsChunk.all_num) : '', - this.statsChunk.delim ? this.buildDelim(this.statsChunk.delim) : '', - this.statsChunk.aggregations + !isEmpty(this.statsChunk.partitions) ? this.buildParttions(this.statsChunk.partitions) : '', + !isEmpty(this.statsChunk.all_num) ? this.buildAllNum(this.statsChunk.all_num) : '', + !isEmpty(this.statsChunk.delim) ? this.buildDelim(this.statsChunk.delim) : '', + !isEmpty(this.statsChunk.aggregations) ? this.buildAggList(this.statsChunk.aggregations) : ([] as Array), - this.statsChunk.groupby + !isEmpty(this.statsChunk.groupby) ? this.buildGroupList(this.statsChunk.groupby) : new GroupBy('stats_by_clause', [] as Array, [], null), - this.statsChunk.dedup_split_value + !isEmpty(this.statsChunk.dedup_split_value) ? this.buildDedupSplitValue(this.statsChunk.dedup_split_value) : '' ); diff --git a/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts b/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts index f2a18b65f..50ea50b41 100644 --- a/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts +++ b/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts @@ -18,6 +18,10 @@ export class PPLQueryBuilder { buildStats(query: string, statsTokens: any) { const statsTree = new StatsAstBuilder().visitRoot(this.parser!.root()); const newStatsAstTree = new StatsBuilder(statsTokens).build(); + if (typeof statsTree.getStartEndIndicesOfOriginQuery !== 'function') { + return query + ' | ' + newStatsAstTree.toString(); + } + const indices = statsTree.getStartEndIndicesOfOriginQuery(); if (indices.start !== -1 && indices.end !== -1) { diff --git a/dashboards-observability/query_manager/utils/index.ts b/dashboards-observability/query_manager/utils/index.ts index b7272e078..4f1c6ebc2 100644 --- a/dashboards-observability/query_manager/utils/index.ts +++ b/dashboards-observability/query_manager/utils/index.ts @@ -22,9 +22,9 @@ export const composeAggregations = ( group_fields: aggConfig.dimensions.map((dimension) => ({ name: dimension.name })), span: aggConfig.span ?? null, }, - partitions: staleStats.partitions, - all_num: staleStats.all_num, - delim: staleStats.delim, - dedup_split_value: staleStats.dedup_split_value, + partitions: staleStats?.partitions ?? {}, + all_num: staleStats?.all_num ?? {}, + delim: staleStats?.delim ?? {}, + dedup_split_value: staleStats?.dedup_split_value ?? {}, }; }; From e8197039f04744101e8d4c3e8ad502e4a3d4b011 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Mon, 15 Aug 2022 09:35:34 -0700 Subject: [PATCH 09/29] viz timestamp selector Signed-off-by: Eric Wei --- .../query_manager/utils/index.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/dashboards-observability/query_manager/utils/index.ts b/dashboards-observability/query_manager/utils/index.ts index 4f1c6ebc2..eded2c827 100644 --- a/dashboards-observability/query_manager/utils/index.ts +++ b/dashboards-observability/query_manager/utils/index.ts @@ -20,7 +20,7 @@ export const composeAggregations = ( })), groupby: { group_fields: aggConfig.dimensions.map((dimension) => ({ name: dimension.name })), - span: aggConfig.span ?? null, + span: aggConfig.span ? composeSpan(aggConfig.span) : null, }, partitions: staleStats?.partitions ?? {}, all_num: staleStats?.all_num ?? {}, @@ -28,3 +28,15 @@ export const composeAggregations = ( dedup_split_value: staleStats?.dedup_split_value ?? {}, }; }; + +const composeSpan = (spanConfig) => { + return { + alias: spanConfig.alias ?? '', + span_expression: { + type: spanConfig.time_field[0]?.type ?? 'timestamp', + field: spanConfig.time_field[0]?.name ?? 'timestamp', + time_unit: spanConfig.unit[0]?.value ?? 'd', + literal_value: spanConfig.interval ?? 1 + } + }; +}; From 36c6b5ac5ef59379d309ecc2788ce5af530aa26b Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Mon, 15 Aug 2022 10:24:14 -0700 Subject: [PATCH 10/29] query manager integration with bar step 1 Signed-off-by: Eric Wei --- .../common/constants/explorer.ts | 18 +- .../common/types/explorer.ts | 9 + dashboards-observability/public/.DS_Store | Bin 0 -> 6148 bytes .../components/common/search/autocomplete.tsx | 10 +- .../components/common/search/search.tsx | 17 +- .../event_analytics/explorer/explorer.tsx | 95 ++- .../data_config_panel_item.tsx | 641 +++++++++++++----- .../explorer/visualizations/index.tsx | 3 +- .../hooks/use_fetch_visualizations.ts | 28 +- .../visualizations/charts/bar/bar.tsx | 477 ++++++++----- .../public/services/requests/ppl.ts | 2 +- 11 files changed, 886 insertions(+), 414 deletions(-) create mode 100644 dashboards-observability/public/.DS_Store diff --git a/dashboards-observability/common/constants/explorer.ts b/dashboards-observability/common/constants/explorer.ts index 9199fc8cd..19b3298fd 100644 --- a/dashboards-observability/common/constants/explorer.ts +++ b/dashboards-observability/common/constants/explorer.ts @@ -90,31 +90,31 @@ export const VIZ_CONTAIN_XY_AXIS = [ // default ppl aggregation method options export const AGGREGATION_OPTIONS = [ { - label: 'COUNT', + label: 'count', }, { - label: 'SUM', + label: 'sum', }, { - label: 'AVERAGE', + label: 'avg', }, { - label: 'MAX', + label: 'max', }, { - label: 'MIN', + label: 'min', }, { - label: 'VAR_SAMP', + label: 'var_samp', }, { - label: 'VAR_POP', + label: 'var_pop', }, { - label: 'STDDEV_SAMP', + label: 'stddev_samp', }, { - label: 'STDDEV_POP', + label: 'stddev_pop', }, ]; diff --git a/dashboards-observability/common/types/explorer.ts b/dashboards-observability/common/types/explorer.ts index ade2c6db3..5811cbc65 100644 --- a/dashboards-observability/common/types/explorer.ts +++ b/dashboards-observability/common/types/explorer.ts @@ -239,12 +239,21 @@ export interface ConfigListEntry { side: string; type: string; } + export interface HistogramConfigList { bucketSize: string; bucketOffset: string; } +export interface DimensionSpan { + time_field: IField; + interval: number; + unit: string; +} + export interface ConfigList { dimensions?: ConfigListEntry[] | HistogramConfigList[]; metrics?: ConfigListEntry[]; + breakdowns?: ConfigListEntry[] | HistogramConfigList[]; + span?: DimensionSpan; } diff --git a/dashboards-observability/public/.DS_Store b/dashboards-observability/public/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..dbd07c1a1c1d289c1b490405a326e8a55ae29325 GIT binary patch literal 6148 zcmeHKJ8r^25S>XVP-t9I?iIMf%5qNN3m_#C4KXMr)UI+aj>emhq98+&f+l(+&Ai>& zd29I<9*>A<`}MjKX+&fWH%Fk~B9M^^Pys6Nqkw%M3f!hP6`=yd49* i9b;qdc*nm7hJ9eJk%`7>a;(5S$@6*vQa;1$mR literal 0 HcmV?d00001 diff --git a/dashboards-observability/public/components/common/search/autocomplete.tsx b/dashboards-observability/public/components/common/search/autocomplete.tsx index 3d3fdac26..a8c4007a7 100644 --- a/dashboards-observability/public/components/common/search/autocomplete.tsx +++ b/dashboards-observability/public/components/common/search/autocomplete.tsx @@ -185,7 +185,13 @@ export const Autocomplete = (props: AutocompleteProps) => {
-
+ + {fullWord.slice(0, -item.suggestion.length)} + {item.suggestion} + +
+ {/*
{ }
`, }} - /> + /> */}
diff --git a/dashboards-observability/public/components/common/search/search.tsx b/dashboards-observability/public/components/common/search/search.tsx index b4e2ebb16..ed9f85381 100644 --- a/dashboards-observability/public/components/common/search/search.tsx +++ b/dashboards-observability/public/components/common/search/search.tsx @@ -16,8 +16,8 @@ import { EuiBadge, EuiContextMenuPanel, EuiToolTip, + EuiCallOut } from '@elastic/eui'; -import _ from 'lodash'; import { DatePicker } from './date_picker'; import '@algolia/autocomplete-theme-classic'; import { Autocomplete } from './autocomplete'; @@ -82,10 +82,10 @@ export const Search = (props: any) => { stopLive, setIsLiveTailPopoverOpen, liveTailName, + searchError = null, } = props; - + const appLogEvents = tabId.match(APP_ANALYTICS_TAB_ID_REGEX); - const [isSavePanelOpen, setIsSavePanelOpen] = useState(false); const [isFlyoutVisible, setIsFlyoutVisible] = useState(false); @@ -247,6 +247,17 @@ export const Search = (props: any) => { )} + { searchError && searchError.error && ( + + + +

+ {JSON.parse(searchError.message).error.details} +

+
+
+
) + } {flyout} ); diff --git a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx index a9f1f36a9..45b25f015 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx @@ -66,6 +66,7 @@ import { selectFields, updateFields, sortFields } from '../redux/slices/field_sl import { updateTabName } from '../redux/slices/query_tab_slice'; import { selectCountDistribution } from '../redux/slices/count_distribution_slice'; import { selectExplorerVisualization } from '../redux/slices/visualization_slice'; +import { change as changeVizConfig } from '../redux/slices/viualization_config_slice'; import { selectVisualizationConfig, change as changeVisualizationConfig, @@ -306,6 +307,8 @@ export const Explorer = ({ const fetchData = async (startingTime?: string, endingTime?: string) => { const curQuery = queryRef.current; + // console.log('curQuery fetchdata: ', curQuery); + console.log('fetchdata curQuery![RAW_QUERY]: ', curQuery![RAW_QUERY]); const rawQueryStr = buildQuery(appBasedRef.current, curQuery![RAW_QUERY]); const curIndex = getIndexPatternFromRawQuery(rawQueryStr); if (isEmpty(rawQueryStr)) return; @@ -473,10 +476,16 @@ export const Explorer = ({ ); }; + // console.log('outside query[RAW_QUERY]: ', query[RAW_QUERY]); + // const handleTimeRangePickerRefresh = useCallback((availability?: boolean) => { + // handleQuerySearch(tempQuery, query, selectedContentTabId, availability); + // }, [tempQuery, query, selectedContentTabId]); + const handleTimeRangePickerRefresh = (availability?: boolean) => { handleQuerySearch(availability); }; + /** * Toggle fields between selected and unselected sets * @param field field to be toggled @@ -807,51 +816,6 @@ export const Explorer = ({ ); }; - const testAntlr = (query: string) => { - const qm = new QueryManager(); - // const pplQueryBuilder = new PPLQueryBuilder(); - - // build query - const res = - qm - .queryBuilder() - .addSource('index') - .addPipe() - .addStats() - .addMetrics([ - { - field: '', - agg_func: 'count' - }, - { - field: 'bytes', - agg_func: 'avg', - alias: 'avg_bytes' - } - ]) - .addBy() - .addGroupBy([{ - field: 'host' - }, - { - field: 'tags' - } - ]) - .getQuery(); - - console.log('built res: ', res); - - // parse query - const parsed_res = - qm - .queryParser() - .parse(query) - .getStats(); - - console.log('parsed res: ', parsed_res); - - }; - const handleQuerySearch = useCallback( async (availability?: boolean) => { @@ -861,16 +825,44 @@ export const Explorer = ({ !isEmpty(query[RAW_QUERY]) && isIndexPatternChanged(tempQuery, query[RAW_QUERY]) ) { - await updateCurrentTimeStamp(''); } if (availability !== true) { await updateQueryInStore(tempQuery); } - testAntlr(query[RAW_QUERY]); - fetchData(); + await fetchData(); + + if (selectedContentTabId === TAB_CHART_ID) { + // parse stats section on every search + const qm = new QueryManager(); + const statsTokens = + qm + .queryParser() + .parse(tempQuery) + .getStats(); + console.log('stats tokens: ', statsTokens); + await dispatch( + changeVizConfig({ + tabId, + vizId: curVisId, + data: { + dataConfig: { + metrics: statsTokens.aggregations.map((agg) => ({ + label: agg.function?.value_expression, + name: agg.function?.value_expression, + aggregation: agg.function?.name, + })), + dimensions: statsTokens.groupby?.group_fields?.map((agg) => ({ + label: agg.name ?? '', + name: agg.name ?? '', + })), + }, + }, + }) + ); + } }, - [tempQuery, query[RAW_QUERY]] + [tempQuery, query, selectedContentTabId] ); const handleQueryChange = async (newQuery: string) => setTempQuery(newQuery); @@ -1183,6 +1175,10 @@ export const Explorer = ({ explorerVisualizations, setToast, pplService, + handleQuerySearch, + handleQueryChange, + setTempQuery, + fetchData }} >
@@ -1218,6 +1214,7 @@ export const Explorer = ({ stopLive={stopLive} setIsLiveTailPopoverOpen={setIsLiveTailPopoverOpen} liveTailName={liveTailNameRef.current} + searchError={explorerVisualizations} /> { const dispatch = useDispatch(); - const { tabId } = useContext(TabContext); - const explorerVisualizations = useSelector(selectExplorerVisualization)[tabId]; + const { tabId, handleQuerySearch, handleQueryChange, setTempQuery, fetchData } = useContext( + TabContext + ); + // const explorerVisualizations = useSelector(selectExplorerVisualization)[tabId]; + const explorerVisualizationConfigs = useSelector(selectVisualizationConfig)[tabId]; const { data } = visualizations; - const { data: vizData = {}, metadata: { fields = [] } = {} } = data?.rawVizData; - - const initialConfigEntry = { - label: '', - aggregation: '', - custom_label: '', - name: '', - side: 'right', - type: '', - }; - + const { + indexFields: { availableFields }, + } = data; const [configList, setConfigList] = useState({}); - useEffect(() => { - if ( - configList.dimensions && - configList.metrics && - visualizations.data?.rawVizData?.[visualizations.vis.name] === undefined - ) { - dispatch( - renderExplorerVis({ - tabId, - data: { - ...explorerVisualizations, - [visualizations.vis.name]: { - dataConfig: { - metrics: configList.metrics, - dimensions: configList.dimensions, - }, - }, - }, - }) - ); - } - }, [configList]); + // useEffect(() => { + // const qm = new QueryManager(); + // const statsTokens = qm.queryParser().parse(data.query.rawQuery).getStats(); + // console.log('statsToekns useEffect: ', statsTokens); + // if (!statsTokens) { + // setConfigList({ + // metrics: [], + // dimensions: [], + // }); + // } else { + // setConfigList({ + // metrics: statsTokens.aggregations.map((agg) => ({ + // label: agg.function?.value_expression, + // name: agg.function?.value_expression, + // aggregation: agg.function?.name, + // })), + // dimensions: statsTokens.groupby?.group_fields?.map((agg) => ({ + // label: agg.name ?? '', + // name: agg.name ?? '', + // })), + // }); + // } + // }, []); + + // useEffect(() => { + // if ( + // configList.dimensions && + // configList.metrics && + // visualizations.data?.rawVizData?.[visualizations.vis.name] === undefined + // ) { + // dispatch( + // renderExplorerVis({ + // tabId, + // data: { + // ...explorerVisualizations, + // [visualizations.vis.name]: { + // dataConfig: { + // metrics: configList.metrics, + // dimensions: configList.dimensions, + // }, + // }, + // }, + // }) + // ); + // } + // }, [configList]); useEffect(() => { if ( data.rawVizData?.[visualizations.vis.name] && data.rawVizData?.[visualizations.vis.name].dataConfig ) { - setConfigList({ - ...data.rawVizData[visualizations.vis.name].dataConfig, - }); - } else if ( - visualizations.vis.name !== visChartTypes.HeatMap && - visualizations.vis.name !== visChartTypes.Histogram && - (data.defaultAxes.xaxis || data.defaultAxes.yaxis) - ) { - const { xaxis, yaxis } = data.defaultAxes; - setConfigList({ - dimensions: [...(xaxis && xaxis)], - metrics: [...(yaxis && yaxis.map((item, i) => ({ ...item, side: i === 0 ? 'left' : 'right' })))], + setConfigList((staleState) => { + return { + ...staleState, + ...data.rawVizData[visualizations.vis.name].dataConfig, + }; }); - } else if (visualizations.vis.name === visChartTypes.HeatMap) { + } else if (some(SPECIAL_RENDERING_VIZS, (visType) => visType === visualizations.vis.name)) { + // any vis that doesn't conform normal metrics/dimensions data confiurations setConfigList({ - dimensions: [initialConfigEntry, initialConfigEntry], - metrics: [initialConfigEntry], - }); - } else if (visualizations.vis.name === visChartTypes.Histogram) { - setConfigList({ - dimensions: [{ bucketSize: '', bucketOffset: '' }], + ...DEFAULT_DATA_CONFIGS[visualizations.vis.name], }); + } else { + // default + const qm = new QueryManager(); + const statsTokens = qm.queryParser().parse(data.query.rawQuery).getStats(); + if (!statsTokens) { + setConfigList({ + metrics: [], + dimensions: [], + }); + } else { + setConfigList({ + metrics: statsTokens.aggregations.map((agg) => ({ + alias: agg.alias, + label: agg.function?.value_expression, + name: agg.function?.value_expression, + aggregation: agg.function?.name, + })), + dimensions: statsTokens.groupby?.group_fields?.map((agg) => ({ + label: agg.name ?? '', + name: agg.name ?? '', + })), + }); + } } + + // if ( + // data.rawVizData?.[visualizations.vis.name] && + // data.rawVizData?.[visualizations.vis.name].dataConfig + // ) { + // setConfigList({ + // ...data.rawVizData[visualizations.vis.name].dataConfig, + // }); + // } else if ( + // visualizations.vis.name !== visChartTypes.HeatMap && + // visualizations.vis.name !== visChartTypes.Histogram && + // (data.defaultAxes.xaxis || data.defaultAxes.yaxis) + // ) { + // // const { xaxis, yaxis } = data.defaultAxes; + // // setConfigList({ + // // dimensions: [...(xaxis && xaxis)], + // // metrics: [ + // // ...(yaxis && yaxis.map((item, i) => ({ ...item, side: i === 0 ? 'left' : 'right' }))), + // // ], + // // }); + // } else if (visualizations.vis.name === visChartTypes.HeatMap) { + // setConfigList({ + // dimensions: [initialConfigEntry, initialConfigEntry], + // metrics: [initialConfigEntry], + // }); + // } else if (visualizations.vis.name === visChartTypes.Histogram) { + // setConfigList({ + // dimensions: [{ bucketSize: '', bucketOffset: '' }], + // }); + // } }, [ data.defaultAxes, data.rawVizData?.[visualizations.vis.name]?.dataConfig, @@ -109,7 +201,7 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => ]); const updateList = (value: string, index: number, name: string, field: string) => { - let list = { ...configList }; + const list = { ...configList }; let listItem = { ...list[name][index] }; listItem = { ...listItem, @@ -128,12 +220,12 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => ], }; setConfigList(updatedList); - updateChart(updatedList); + // updateChart(updatedList); }; const updateHistogramConfig = (configName: string, fieldName: string, value: string) => { const list = { ...configList }; - let listItem = { ...list[configName][0] }; + const listItem = { ...list[configName][0] }; listItem[fieldName] = value; const updatedList = { ...list, @@ -148,7 +240,7 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => arr.splice(index, 1); const updatedList = { ...list, [name]: arr }; setConfigList(updatedList); - updateChart(updatedList); + // updateChart(updatedList); }; const handleServiceAdd = (name: string) => { @@ -157,136 +249,205 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => }; const updateChart = (updatedConfigList = configList) => { - dispatch( - renderExplorerVis({ - tabId, - data: { - ...explorerVisualizations, - [visualizations.vis.name]: { + const qm = new QueryManager(); + const statsTokens = qm.queryParser().parse(data.query.rawQuery).getStats(); + // const test_updatedConfigList = { + // ...updatedConfigList, + // span: statsTokens.groupby?.span ?? null, + // }; + console.log('statsTokens: ', statsTokens); + // console.log('test_updatedConfigList: ', test_updatedConfigList); + // console.log('composed config: ', composeAggregations(updatedConfigList, statsTokens)); + console.log('updatedConfigList: ', updatedConfigList); + const newQuery = qm + .queryBuilder() + .build(data.query.rawQuery, composeAggregations(updatedConfigList, statsTokens)); + + // console.log('newly built query: ', newQuery); + + batch(async () => { + await handleQueryChange(newQuery); + await dispatch( + changeQuery({ + tabId, + query: { + ...data.query, + [RAW_QUERY]: newQuery, + }, + }) + ); + await fetchData(); + await dispatch( + changeVizConfig({ + tabId, + vizId: visualizations.vis.name, + data: { dataConfig: { metrics: updatedConfigList.metrics, dimensions: updatedConfigList.dimensions, + breakdowns: updatedConfigList.breakdowns, }, }, - }, - }) - ); + }) + ); + }); }; const isPositionButtonVisible = (sectionName: string) => sectionName === 'metrics' && visualizations.vis.name === visChartTypes.Line; const getOptionsAvailable = (sectionName: string) => { - let selectedFields = {}; - for (const key in configList) { - configList[key] && configList[key].forEach((field) => (selectedFields[field.label] = true)); - } + const selectedFields = {}; + // for (const key in configList) { + // configList[key] && configList[key].forEach((field) => (selectedFields[field.label] = true)); + // } + // fieldOptionList.filter((field) => !selectedFields[field.label]); const unselectedFields = fieldOptionList.filter((field) => !selectedFields[field.label]); + // console.log('unselectedFields: ', unselectedFields); return sectionName === 'metrics' ? unselectedFields : visualizations.vis.name === visChartTypes.Line - ? unselectedFields.filter((i) => i.type === 'timestamp') - : unselectedFields; + ? unselectedFields.filter((i) => i.type === 'timestamp') + : unselectedFields; }; - const getCommonUI = (lists, sectionName: string) => - lists && - lists.map((singleField, index: number) => ( + const getCommonUI = (lists, sectionName: string) => { + return ( <> -
-
- {sectionName === 'dimensions' && visualizations.vis.name === visChartTypes.HeatMap && ( - -
{index === 0 ? 'X-Axis' : 'Y-Axis'}
-
- )} - - {sectionName == 'metrics' && ( - - handleServiceRemove(index, sectionName)} - /> - - ) - } - > - - updateList(e.length > 0 ? e[0].label : '', index, sectionName, 'aggregation') - } - /> - - )} - - - updateList(e.length > 0 ? e[0].label : '', index, sectionName, 'label') - } - /> - + {Array.isArray(lists) && + lists.map((singleField, index: number) => ( + <> +
+
+ {sectionName === 'dimensions' && + visualizations.vis.name === visChartTypes.HeatMap && ( + +
{index === 0 ? 'X-Axis' : 'Y-Axis'}
+
+ )} + + {sectionName === 'metrics' && ( + + handleServiceRemove(index, sectionName)} + /> + + // Array.isArray(lists) && + // lists.length !== 1 && ( + // + // handleServiceRemove(index, sectionName)} + // /> + // + ) + } + > + + updateList( + e.length > 0 ? e[0].label : '', + index, + sectionName, + 'aggregation' + ) + } + /> + + )} + + handleServiceRemove(index, sectionName)} + /> + + ) + } + > + + updateList(e.length > 0 ? e[0].label : '', index, sectionName, 'label') + } + /> + - - updateList(e.target.value, index, sectionName, 'custom_label')} - aria-label="Use aria labels when no actual label is in use" - /> - - - {isPositionButtonVisible(sectionName) && ( - - updateList(id, index, sectionName, 'side')} - /> - - )} + + + updateList(e.target.value, index, sectionName, 'custom_label') + } + aria-label="Use aria labels when no actual label is in use" + /> + + {isPositionButtonVisible(sectionName) && ( + + + updateList(id, index, sectionName, 'side') + } + /> + + )} + + +
+
- {visualizations.vis.name !== visChartTypes.HeatMap && lists.length - 1 === index && ( - - handleServiceAdd(sectionName)} - disabled={sectionName === "dimensions" && visualizations.vis.name === visChartTypes.Line} - > - Add - - - )} -
-
-
- + + ))} + {visualizations.vis.name !== visChartTypes.HeatMap && ( + + handleServiceAdd(sectionName)} + disabled={ + sectionName === 'dimensions' && visualizations.vis.name === visChartTypes.Line + } + > + Add + + + )} - )); + ); + }; const getNumberField = (type: string) => ( <> @@ -296,19 +457,138 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => placeholder="auto" value={ configList?.dimensions && - configList?.dimensions.length > 0 && - configList.dimensions[0][type] + configList?.dimensions.length > 0 && + configList.dimensions[0][type] ? configList.dimensions[0][type] : '' } onChange={(e) => updateHistogramConfig('dimensions', type, e.target.value)} - onBlur={() => updateChart()} + // onBlur={() => updateChart()} data-test-subj="valueFieldNumber" /> ); + const getBreakDownFields = useCallback( + (configList) => { + return configList.dimensions; + }, + [configList.dimensions] + ); + + const Breakdowns = useMemo(() => { + return ( + <> +
+
+ + + { + console.log('breakdown fields: ', fields); + setConfigList((staleState) => { + return { + ...staleState, + breakdowns: fields, + }; + }); + }} + /> + + +
+
+ + ); + }, [configList.dimensions, configList.breakdowns]); + // console.log('visualizations: ', visualizations); + const DateHistogram = useMemo(() => { + console.log('configList: ', configList); + return ( + <> +
+
+ + + idxField.type === 'timestamp') + .map((field) => ({ ...field, label: field.name }))} + selectedOptions={configList.span?.time_field ? [...configList.span?.time_field] : []} + onChange={(field) => { + console.log('timestamp fields: ', field); + setConfigList((staleState) => { + return { + ...staleState, + span: { + ...staleState.span, + time_field: field, + }, + }; + }); + }} + /> + + + { + setConfigList((staleState) => { + return { + ...staleState, + span: { + ...staleState.span, + interval: val, + }, + }; + }); + }} + aria-label="Use aria labels when no actual label is in use" + /> + + + { + return { + ...option, + label: option.text, + }; + })} + selectedOptions={configList.span?.unit ? [...configList.span?.unit] : []} + onChange={(unit) => { + setConfigList((staleState) => { + return { + ...staleState, + span: { + ...staleState.span, + unit, + }, + }; + }); + }} + /> + + +
+
+ + ); + }, [availableFields, configList.span]); + return ( <> @@ -317,16 +597,26 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => {visualizations.vis.name !== visChartTypes.Histogram ? ( <> + +

Metrics

+
+ + {getCommonUI(configList.metrics, 'metrics')} +

Dimensions

+ {getCommonUI(configList.dimensions, 'dimensions')} - -

Metrics

+

Date Histogram

- {getCommonUI(configList.metrics, 'metrics')} + {DateHistogram} + {/* +

Breakdowns

+
+ {Breakdowns} */} ) : ( <> @@ -342,13 +632,14 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => {getNumberField('bucketOffset')} )} + updateChart()} size="s" - disabled + // disabled > Update chart diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx index 6722aeff2..4b83ab652 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx @@ -51,7 +51,8 @@ export const ExplorerVisualizations = ({ const { data } = visualizations; const { data: vizData = {}, metadata: { fields = [] } = {} } = data?.rawVizData; - const fieldOptionList = fields.map((field) => { + const fieldOptionList = explorerFields.availableFields.map((field) => { + // const fieldOptionList = fields.map((field) => { return { ...field, label: field.name }; }); diff --git a/dashboards-observability/public/components/event_analytics/hooks/use_fetch_visualizations.ts b/dashboards-observability/public/components/event_analytics/hooks/use_fetch_visualizations.ts index 866921201..446bcf229 100644 --- a/dashboards-observability/public/components/event_analytics/hooks/use_fetch_visualizations.ts +++ b/dashboards-observability/public/components/event_analytics/hooks/use_fetch_visualizations.ts @@ -37,7 +37,8 @@ export const useFetchVisualizations = ({ const fetchVisualizations = async ( { query }: { query: string }, format: string, - handler: (res: any) => void + successHandler: (res: any) => void, + errorHandler: (error: any) => void ) => { setIsVisLoading(true); @@ -45,16 +46,16 @@ export const useFetchVisualizations = ({ .fetch({ query, format, + }, (error) => { + errorHandler(error); + setIsVisLoading(false); }) .then((res: any) => { - handler(res); - }) - .catch((err: any) => { - console.error(err); - }) - .finally(() => { + if (res && res.status === 200) { + successHandler(res); + } setIsVisLoading(false); - }); + }) }; const getCountVisualizations = (interval: string) => { @@ -74,7 +75,8 @@ export const useFetchVisualizations = ({ data: res, }) ); - } + }, + (error: Error) => {} ); }; @@ -118,6 +120,14 @@ export const useFetchVisualizations = ({ }) ); }); + }, + (error: any) => { + dispatch( + renderExplorerVis({ + tabId: requestParams.tabId, + data: error.body, + }) + ); } ); }; diff --git a/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx b/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx index c28433922..09ad7b6de 100644 --- a/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx +++ b/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx @@ -3,8 +3,8 @@ * SPDX-License-Identifier: Apache-2.0 */ -import React from 'react'; -import { isEmpty, last, take } from 'lodash'; +import React, { useMemo } from 'react'; +import { isEmpty, last, some } from 'lodash'; import { Plt } from '../../plotly/plot'; import { LONG_CHART_COLOR, PLOTLY_COLOR } from '../../../../../common/constants/shared'; import { AvailabilityUnitType } from '../../../event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_availability'; @@ -12,161 +12,282 @@ import { ThresholdUnitType } from '../../../event_analytics/explorer/visualizati import { hexToRgb } from '../../../event_analytics/utils/utils'; import { EmptyPlaceholder } from '../../../event_analytics/explorer/visualizations/shared_components/empty_placeholder'; import { FILLOPACITY_DIV_FACTOR } from '../../../../../common/constants/shared'; +import { IVisualizationContainerProps } from '../../../../../common/types/explorer'; export const Bar = ({ visualizations, layout, config }: any) => { const DEFAULT_LABEL_SIZE = 10; - const { vis } = visualizations; const { - data, - metadata: { fields }, - } = visualizations.data.rawVizData; + data: { + defaultAxes, + indexFields, + query, + rawVizData: { + data: queriedVizData, + metadata: { fields }, + }, + userConfigs, + }, + vis: visMetaData, + }: IVisualizationContainerProps = visualizations; + // const { + // data, + // metadata: { fields }, + // } = visualizations.data.rawVizData; const lastIndex = fields.length - 1; - const { - dataConfig = {}, - layoutConfig = {}, - availabilityConfig = {}, - } = visualizations?.data?.userConfigs; - const dataConfigTab = - visualizations.data?.rawVizData?.bar?.dataConfig && - visualizations.data.rawVizData.bar.dataConfig; - const xaxis = dataConfigTab?.dimensions - ? dataConfigTab.dimensions.filter((item) => item.label) - : []; - const yaxis = dataConfigTab?.metrics ? dataConfigTab.metrics.filter((item) => item.label) : []; - const barOrientation = dataConfig?.chartStyles?.orientation || vis.orientation; - const isVertical = barOrientation === vis.orientation; - let bars, valueSeries, valueForXSeries; + const { dataConfig = {}, layoutConfig = {}, availabilityConfig = {} } = userConfigs; - if (!isEmpty(xaxis) && !isEmpty(yaxis)) { - valueSeries = isVertical ? [...yaxis] : [...xaxis]; - valueForXSeries = isVertical ? [...xaxis] : [...yaxis]; - } else { - return ; - } + // const dataConfigTab = + // visualizations.data?.rawVizData?.bar?.dataConfig && + // visualizations.data.rawVizData.bar.dataConfig; - const tickAngle = dataConfig?.chartStyles?.rotateBarLabels || vis.labelAngle; - const lineWidth = dataConfig?.chartStyles?.lineWidth || vis.lineWidth; + // const xaxis = dataConfigTab?.dimensions + // ? dataConfigTab.dimensions.filter((item) => item.label) + // : []; + // const yaxis = dataConfigTab?.metrics ? dataConfigTab.metrics.filter((item) => item.label) : []; + // const barOrientation = dataConfig?.chartStyles?.orientation || vis.orientation; + // const isVertical = barOrientation === vis.orientation; + + // const xaxis = dataConfigTab?.dimensions + // ? dataConfigTab.dimensions.filter((item) => item.label) + // : []; + // const yaxis = dataConfigTab?.metrics ? dataConfigTab.metrics.filter((item) => item.label) : []; + + // stylings + const barOrientation = dataConfig.chartStyles?.orientation || visMetaData.orientation; + const isVertical = barOrientation === visMetaData.orientation; + const tickAngle = dataConfig.chartStyles?.rotateBarLabels || visMetaData.labelAngle; + const lineWidth = dataConfig.chartStyles?.lineWidth || visMetaData.lineWidth; const fillOpacity = - dataConfig?.chartStyles?.fillOpacity !== undefined - ? dataConfig?.chartStyles?.fillOpacity / FILLOPACITY_DIV_FACTOR - : vis.fillOpacity / FILLOPACITY_DIV_FACTOR; - const barWidth = 1 - (dataConfig?.chartStyles?.barWidth || vis.barWidth); - const groupWidth = 1 - (dataConfig?.chartStyles?.groupWidth || vis.groupWidth); + dataConfig.chartStyles?.fillOpacity !== undefined + ? dataConfig.chartStyles?.fillOpacity / FILLOPACITY_DIV_FACTOR + : visMetaData.fillOpacity / FILLOPACITY_DIV_FACTOR; + const barWidth = 1 - (dataConfig.chartStyles?.barWidth || visMetaData.barWidth); + const groupWidth = 1 - (dataConfig.chartStyles?.groupWidth || visMetaData.groupWidth); const showLegend = !( - dataConfig?.legend?.showLegend && dataConfig.legend.showLegend !== vis.showLegend + dataConfig.legend?.showLegend && dataConfig.legend.showLegend !== visMetaData.showLegend ); - const legendPosition = dataConfig?.legend?.position || vis.legendPosition; - visualizations.data?.rawVizData?.dataConfig?.metrics - ? visualizations.data?.rawVizData?.dataConfig?.metrics - : []; - const labelSize = dataConfig?.chartStyles?.labelSize || DEFAULT_LABEL_SIZE; + const legendPosition = dataConfig.legend?.position || visMetaData.legendPosition; + const labelSize = dataConfig.chartStyles?.labelSize || DEFAULT_LABEL_SIZE; + + let bars, valueSeries, valueForXSeries; + + if ( + isEmpty(queriedVizData) || + !Array.isArray(dataConfig.dimensions) || + !Array.isArray(dataConfig.metrics) || + (dataConfig.breakdowns && !Array.isArray(dataConfig.breakdowns)) + ) + return ; + + /** + * Determines x/y axes + */ + const xaxes = useMemo(() => { + if (dataConfig.breakdowns) { + return [ + ...dataConfig.dimensions.filter( + (dimension) => + !some(dataConfig.breakdowns, (breakdown) => breakdown.label === dimension.label) + ), + ]; + } + return [...dataConfig.dimensions]; + }, [dataConfig.dimensions, dataConfig.breakdowns]); + + const yaxes = useMemo(() => { + return Array.isArray(dataConfig.metrics) ? [...dataConfig.metrics] : []; + }, [dataConfig.metrics]); const getSelectedColorTheme = (field: any, index: number) => - (dataConfig?.colorTheme?.length > 0 && + (dataConfig.colorTheme?.length > 0 && dataConfig.colorTheme.find((colorSelected) => colorSelected.name.name === field.label) ?.color) || PLOTLY_COLOR[index % PLOTLY_COLOR.length]; - const prepareData = (valueForXSeries) => { - return (valueForXSeries.map((dimension: any) => data[dimension.label]))?.reduce( - (prev, cur) => { - return prev.map((i, j) => `${i}, ${cur[j]}`); - } - ); - }; + // const currentAxis = useMemo(() => { + // return queriedVizData[`${yaxis[0].aggregation}(${yaxis[0].name})`].map((_, idx) => { + // return xaxis.reduce((accu, xval) => { + // console.log('queriedVizData[xval.name]: ', queriedVizData[xval.name], 'idx: ', idx); + // return accu + ', ' + queriedVizData[xval.name][idx].name}); + // }); + // }, [xaxis, yaxis]); - const createNameData = (nameData, metricName: string) => - nameData?.map((el) => el + ',' + metricName); + /** + * data transformation + */ + const currentxAxis = useMemo(() => { + return Array.isArray(queriedVizData[`${yaxes[0].aggregation}(${yaxes[0].name})`]) + ? queriedVizData[`${yaxes[0].aggregation}(${yaxes[0].name})`].map((_, idx) => { + // let combineXaxis = ''; + const xaxisName = xaxes.map((xaxis) => { + return queriedVizData[xaxis.name] && queriedVizData[xaxis.name][idx] + ? queriedVizData[xaxis.name][idx] + : ''; + }); + // return xaxis.reduce((prev, cur) => { + // console.log(prev, cur); + // // console.log('queriedVizData[prev.name]: ', queriedVizData[prev.name], 'idx: ', idx, ', ', queriedVizData[cur.name]); + // return queriedVizData[prev.name][idx].name + ', ' + queriedVizData[cur.name][idx].name; + // }, ''); + // return { + // name: xaxisName.join(', '), + // label: xaxisName.join(', '), + // }; + return xaxisName.join(', '); + }) + : []; + }, [queriedVizData, xaxes, yaxes]); - // for multiple dimention and metrics with timestamp - if (valueForXSeries.some((e) => e.type === 'timestamp')) { - const nameData = - valueForXSeries.length > 1 - ? (valueForXSeries - .filter((item) => item.type !== 'timestamp') - .map((dimension) => data[dimension.label]) - ).reduce((prev, cur) => { - return prev.map((i, j) => `${i}, ${cur[j]}`); - }) - : []; - - let dimensionsData = - valueForXSeries - .filter((item) => item.type === 'timestamp') - .map((dimension) => data[dimension.label]).flat(); - - bars = (valueSeries.map((field: any, index: number) => { - const selectedColor = getSelectedColorTheme(field, index); - return dimensionsData.map((dimension: any, j: number) => { - return { - x: isVertical - ? !isEmpty(xaxis) - ? dimension - : data[fields[lastIndex].name] - : data[field.label], - y: isVertical ? data[field.label][j] : dimensionsData, // TODO: orinetation - type: vis.type, - marker: { - color: hexToRgb(selectedColor, fillOpacity), - line: { - color: selectedColor, - width: lineWidth, - }, - }, - name: nameData.length > 0 ? createNameData(nameData, field.label)[j] : field.label, // dimensionsData[index]+ ',' + field.label, - orientation: barOrientation, - }; - }); - })).flat(); - - - // merging x, y for same names - bars = Object.values( - bars?.reduce((acc, { x, y, name, type, marker, orientation }) => { - acc[name] = acc[name] || { x: [], y: [], name, type, marker, orientation }; - acc[name].x.push(x); - acc[name].y.push(y); - - return acc; - }, {}) - ); + if (dataConfig.breakdowns) { + dataConfig.breakdowns.map(() => {}); } else { - // for multiple dimention and metrics without timestamp - const dimensionsData = prepareData(valueForXSeries); - const metricsData = prepareData(valueSeries); - bars = valueSeries.map((field: any, index: number) => { - const selectedColor = getSelectedColorTheme(field, index); - return { - x: isVertical - ? !isEmpty(xaxis) - ? dimensionsData - : data[fields[lastIndex].name] - : data[field.name], - y: isVertical ? data[field.name] : metricsData, // TODO: add if isempty true - type: vis.type, - marker: { - color: hexToRgb(selectedColor, fillOpacity), - line: { - color: selectedColor, - width: lineWidth, - }, - }, - name: field.name, - orientation: barOrientation, - }; - }); + } + bars = yaxes?.map((yMetric, idx) => { + return { + y: isVertical ? queriedVizData[`${yMetric.aggregation}(${yMetric.name})`] : currentxAxis, + x: isVertical ? currentxAxis : queriedVizData[`${yMetric.aggregation}(${yMetric.name})`], + type: visMetaData.type, + marker: { + color: getSelectedColorTheme(yMetric, idx), + line: { + color: getSelectedColorTheme(yMetric, idx), + width: lineWidth, + }, + }, + name: yMetric.name, + orientation: barOrientation, + }; + }); + + // const tickAngle = dataConfig?.chartStyles?.rotateBarLabels || vis.labelAngle; + // const lineWidth = dataConfig?.chartStyles?.lineWidth || vis.lineWidth; + // const fillOpacity = + // dataConfig?.chartStyles?.fillOpacity !== undefined + // ? dataConfig?.chartStyles?.fillOpacity / FILLOPACITY_DIV_FACTOR + // : vis.fillOpacity / FILLOPACITY_DIV_FACTOR; + // const barWidth = 1 - (dataConfig?.chartStyles?.barWidth || vis.barWidth); + // const groupWidth = 1 - (dataConfig?.chartStyles?.groupWidth || vis.groupWidth); + // const showLegend = !( + // dataConfig?.legend?.showLegend && dataConfig.legend.showLegend !== vis.showLegend + // ); + // const legendPosition = dataConfig?.legend?.position || vis.legendPosition; + // visualizations.data?.rawVizData?.dataConfig?.metrics + // ? visualizations.data?.rawVizData?.dataConfig?.metrics + // : []; + // const labelSize = dataConfig?.chartStyles?.labelSize || DEFAULT_LABEL_SIZE; + + // const getSelectedColorTheme = (field: any, index: number) => + // (dataConfig?.colorTheme?.length > 0 && + // dataConfig.colorTheme.find((colorSelected) => colorSelected.name.name === field.label) + // ?.color) || + // PLOTLY_COLOR[index % PLOTLY_COLOR.length]; + + // const prepareData = (valueForXSeries) => { + // return (valueForXSeries.map((dimension: any) => data[dimension.label]))?.reduce( + // (prev, cur) => { + // console.log('prev: ', prev, ' , cur', cur); + // return prev.map((i, j) => `${i}, ${cur[j]}`); + // } + // ); + // }; + + // const createNameData = (nameData, metricName: string) => + // nameData?.map((el) => el + ',' + metricName); + + // for multiple dimention and metrics with timestamp + // if (valueForXSeries.some((e) => e.type === 'timestamp')) { + // const nameData = + // valueForXSeries.length > 1 + // ? (valueForXSeries + // .filter((item) => item.type !== 'timestamp') + // .map((dimension) => data[dimension.label]) + // ).reduce((prev, cur) => { + // return prev.map((i, j) => `${i}, ${cur[j]}`); + // }) + // : []; + + // let dimensionsData = + // valueForXSeries + // .filter((item) => item.type === 'timestamp') + // .map((dimension) => data[dimension.label]).flat(); + + // bars = (valueSeries.map((field: any, index: number) => { + // const selectedColor = getSelectedColorTheme(field, index); + // return dimensionsData.map((dimension: any, j: number) => { + // return { + // x: isVertical + // ? !isEmpty(xaxis) + // ? dimension + // : data[fields[lastIndex].name] + // : data[field.label], + // y: isVertical ? data[field.label][j] : dimensionsData, // TODO: orinetation + // type: vis.type, + // marker: { + // color: hexToRgb(selectedColor, fillOpacity), + // line: { + // color: selectedColor, + // width: lineWidth, + // }, + // }, + // name: nameData.length > 0 ? createNameData(nameData, field.label)[j] : field.label, // dimensionsData[index]+ ',' + field.label, + // orientation: barOrientation, + // }; + // }); + // })).flat(); + + // // merging x, y for same names + // bars = Object.values( + // bars?.reduce((acc, { x, y, name, type, marker, orientation }) => { + // acc[name] = acc[name] || { x: [], y: [], name, type, marker, orientation }; + // acc[name].x.push(x); + // acc[name].y.push(y); + + // return acc; + // }, {}) + // ); + // } else { + // // for multiple dimention and metrics without timestamp + // const dimensionsData = prepareData(valueForXSeries); + // const metricsData = prepareData(valueSeries); + // // const dimensionsData = []; + // // const metricsData =[]; + // bars = valueSeries.map((field: any, index: number) => { + // const selectedColor = getSelectedColorTheme(field, index); + // return { + // x: isVertical + // ? !isEmpty(xaxis) + // ? dimensionsData + // : data[fields[lastIndex].name] + // : data[field.name], + // y: isVertical ? data[field.name] : metricsData, // TODO: add if isempty true + // type: vis.type, + // marker: { + // color: hexToRgb(selectedColor, fillOpacity), + // line: { + // color: selectedColor, + // width: lineWidth, + // }, + // }, + // name: field.name, + // orientation: barOrientation, + // }; + // }); + // console.log('bars: ', bars); + // } + // If chart has length of result buckets < 16 // then use the LONG_CHART_COLOR for all the bars in the chart + const plotlyColorway = - data[fields[lastIndex].name].length < 16 ? PLOTLY_COLOR : [LONG_CHART_COLOR]; + queriedVizData[fields[lastIndex].name].length < 16 ? PLOTLY_COLOR : [LONG_CHART_COLOR]; const mergedLayout = { colorway: plotlyColorway, ...layout, ...(layoutConfig.layout && layoutConfig.layout), - title: dataConfig?.panelOptions?.title || layoutConfig.layout?.title || '', - barmode: dataConfig?.chartStyles?.mode || visualizations.vis.mode, + title: dataConfig.panelOptions?.title || layoutConfig.layout?.title || '', + barmode: dataConfig.chartStyles?.mode || visualizations.vis.mode, font: { size: labelSize, }, @@ -182,43 +303,69 @@ export const Bar = ({ visualizations, layout, config }: any) => { }, showlegend: showLegend, }; - if (dataConfig.thresholds || availabilityConfig.level) { - const thresholdTraces = { - x: [], - y: [], - mode: 'text', - text: [], - }; - const thresholds = dataConfig.thresholds ? dataConfig.thresholds : []; - const levels = availabilityConfig.level ? availabilityConfig.level : []; - - const mapToLine = (list: ThresholdUnitType[] | AvailabilityUnitType[], lineStyle: any) => { - return list.map((thr: ThresholdUnitType) => { - thresholdTraces.x.push( - data[!isEmpty(xaxis) ? xaxis[xaxis.length - 1]?.label : fields[lastIndex].name][0] - ); - thresholdTraces.y.push(thr.value * (1 + 0.06)); - thresholdTraces.text.push(thr.name); - return { - type: 'line', - x0: data[!isEmpty(xaxis) ? xaxis[0]?.label : fields[lastIndex].name][0], - y0: thr.value, - x1: last(data[!isEmpty(xaxis) ? xaxis[0]?.label : fields[lastIndex].name]), - y1: thr.value, - name: thr.name || '', - opacity: 0.7, - line: { - color: thr.color, - width: 3, - ...lineStyle, - }, - }; - }); - }; - mergedLayout.shapes = [...mapToLine(thresholds, { dash: 'dashdot' }), ...mapToLine(levels, {})]; - bars = [...bars, thresholdTraces]; - } + // const plotlyColorway = + // data[fields[lastIndex].name].length < 16 ? PLOTLY_COLOR : [LONG_CHART_COLOR]; + // const mergedLayout = { + // colorway: plotlyColorway, + // ...layout, + // ...(layoutConfig.layout && layoutConfig.layout), + // title: dataConfig?.panelOptions?.title || layoutConfig.layout?.title || '', + // barmode: dataConfig?.chartStyles?.mode || visualizations.vis.mode, + // font: { + // size: labelSize, + // }, + // xaxis: { + // tickangle: tickAngle, + // automargin: true, + // }, + // bargap: groupWidth, + // bargroupgap: barWidth, + // legend: { + // ...layout.legend, + // orientation: legendPosition, + // }, + // showlegend: showLegend, + // }; + + // if (dataConfig.thresholds || availabilityConfig.level) { + // const thresholdTraces = { + // x: [], + // y: [], + // mode: 'text', + // text: [], + // }; + // const thresholds = dataConfig.thresholds ? dataConfig.thresholds : []; + // const levels = availabilityConfig.level ? availabilityConfig.level : []; + + // const mapToLine = (list: ThresholdUnitType[] | AvailabilityUnitType[], lineStyle: any) => { + // return list.map((thr: ThresholdUnitType) => { + // thresholdTraces.x.push( + // data[!isEmpty(xaxis) ? xaxis[xaxis.length - 1]?.label : fields[lastIndex].name][0] + // ); + // thresholdTraces.y.push(thr.value * (1 + 0.06)); + // thresholdTraces.text.push(thr.name); + // return { + // type: 'line', + // x0: data[!isEmpty(xaxis) ? xaxis[0]?.label : fields[lastIndex].name][0], + // y0: thr.value, + // x1: last(data[!isEmpty(xaxis) ? xaxis[0]?.label : fields[lastIndex].name]), + // y1: thr.value, + // name: thr.name || '', + // opacity: 0.7, + // line: { + // color: thr.color, + // width: 3, + // ...lineStyle, + // }, + // }; + // }); + // }; + + // mergedLayout.shapes = [...mapToLine(thresholds, { dash: 'dashdot' }), ...mapToLine(levels, {})]; + // bars = [...bars, thresholdTraces]; + // } + const mergedConfigs = { ...config, ...(layoutConfig.config && layoutConfig.config), diff --git a/dashboards-observability/public/services/requests/ppl.ts b/dashboards-observability/public/services/requests/ppl.ts index f9343bc93..4fe252f22 100644 --- a/dashboards-observability/public/services/requests/ppl.ts +++ b/dashboards-observability/public/services/requests/ppl.ts @@ -24,7 +24,7 @@ export default class PPLService { body: JSON.stringify(params), }) .catch((error) => { - console.error(error); + console.error('fetch error: ', error.body); if (errorHandler) errorHandler(error); }); }; From 0b47d868feffa46f68d7cac65411a0390a57737f Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Fri, 26 Aug 2022 16:30:31 -0700 Subject: [PATCH 11/29] span fix Signed-off-by: Eric Wei --- .../query_manager/ast/expression/group_by.ts | 2 +- dashboards-observability/query_manager/ast/expression/span.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboards-observability/query_manager/ast/expression/group_by.ts b/dashboards-observability/query_manager/ast/expression/group_by.ts index 42aaf8a92..cb30af2f9 100644 --- a/dashboards-observability/query_manager/ast/expression/group_by.ts +++ b/dashboards-observability/query_manager/ast/expression/group_by.ts @@ -24,7 +24,7 @@ export class GroupBy extends PPLNode { } toString(): string { - return `by ${this.span ? `${this.span.toString()}, ` : ''}${this.fields + return `by ${this.span ? `${this.span.toString()}` : ''}${this.fields .map((field) => field.toString()) .join(', ')}`; } diff --git a/dashboards-observability/query_manager/ast/expression/span.ts b/dashboards-observability/query_manager/ast/expression/span.ts index d69152b44..d2a570915 100644 --- a/dashboards-observability/query_manager/ast/expression/span.ts +++ b/dashboards-observability/query_manager/ast/expression/span.ts @@ -23,6 +23,6 @@ export class Span extends PPLNode { } toString(): string { - return `${this.spanExpression.toString()} as ${this.alias}`; + return `${this.spanExpression.toString()}${this.alias ? ` as ${this.alias}` : ''}`; } } From d91ba63a0c137cbc1ebca8f599726ed6984bf639 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Wed, 31 Aug 2022 18:23:20 -0700 Subject: [PATCH 12/29] use postinstall for antlr output files Signed-off-by: Eric Wei --- dashboards-observability/.gitignore | 1 + dashboards-observability/package.json | 4 +- .../bin/.antlr/OpenSearchPPLLexer.interp | 831 -- .../antlr/bin/.antlr/OpenSearchPPLLexer.java | 1277 --- .../bin/.antlr/OpenSearchPPLLexer.tokens | 527 - .../bin/.antlr/OpenSearchPPLParser.interp | 634 -- .../antlr/bin/.antlr/OpenSearchPPLParser.java | 6612 ----------- .../bin/.antlr/OpenSearchPPLParser.tokens | 527 - .../antlr/bin/OpenSearchPPLLexer.interp | 831 -- .../antlr/bin/OpenSearchPPLLexer.tokens | 527 - .../antlr/bin/OpenSearchPPLLexer.ts | 1768 --- .../antlr/bin/OpenSearchPPLParser.interp | 634 -- .../antlr/bin/OpenSearchPPLParser.tokens | 527 - .../antlr/bin/OpenSearchPPLParser.ts | 9805 ----------------- .../antlr/bin/OpenSearchPPLParserListener.ts | 1327 --- .../antlr/bin/OpenSearchPPLParserVisitor.ts | 885 -- .../{ => antlr}/grammar/OpenSearchPPLLexer.g4 | 0 .../grammar/OpenSearchPPLParser.g4 | 0 .../query_manager/antlr/ppl_syntax_parser.ts | 4 +- .../ast/builder/stats_ast_builder.ts | 4 +- .../ast/expression/AggregateTerm.ts | 2 +- .../grammar/.antlr/OpenSearchPPLLexer.interp | 831 -- .../grammar/.antlr/OpenSearchPPLLexer.java | 1277 --- .../grammar/.antlr/OpenSearchPPLLexer.tokens | 527 - .../grammar/.antlr/OpenSearchPPLParser.interp | 634 -- .../grammar/.antlr/OpenSearchPPLParser.java | 6612 ----------- .../grammar/.antlr/OpenSearchPPLParser.tokens | 527 - .../query_parser/ppl_query_parser.ts | 2 +- dashboards-observability/yarn.lock | 47 + 29 files changed, 56 insertions(+), 37128 deletions(-) delete mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp delete mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java delete mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens delete mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp delete mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java delete mode 100644 dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts delete mode 100644 dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts rename dashboards-observability/query_manager/{ => antlr}/grammar/OpenSearchPPLLexer.g4 (100%) rename dashboards-observability/query_manager/{ => antlr}/grammar/OpenSearchPPLParser.g4 (100%) delete mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp delete mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java delete mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens delete mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp delete mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java delete mode 100644 dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens diff --git a/dashboards-observability/.gitignore b/dashboards-observability/.gitignore index c0fc79791..a88d66536 100644 --- a/dashboards-observability/.gitignore +++ b/dashboards-observability/.gitignore @@ -4,3 +4,4 @@ build/ coverage/ .cypress/screenshots .cypress/videos +query_manager/antlr/output diff --git a/dashboards-observability/package.json b/dashboards-observability/package.json index 3eea5e37d..91ae0e5f5 100644 --- a/dashboards-observability/package.json +++ b/dashboards-observability/package.json @@ -10,8 +10,7 @@ "cypress:run": "TZ=America/Los_Angeles cypress run", "cypress:open": "TZ=America/Los_Angeles cypress open", "plugin_helpers": "node ../../scripts/plugin_helpers", - "antlr4ts_ppl_lexer": "antlr4ts -visitor ./query_manager/grammar/OpenSearchPPLLexer.g4", - "antlr4ts_ppl_parser": "antlr4ts -visitor ./query_manager/grammar/OpenSearchPPLParser.g4" + "postinstall": "antlr4ts -visitor ./query_manager/antlr/grammar/OpenSearchPPLLexer.g4 -Xexact-output-dir -o ./query_manager/antlr/output && antlr4ts -visitor ./query_manager/antlr/grammar/OpenSearchPPLParser.g4 -Xexact-output-dir -o ./query_manager/antlr/output" }, "dependencies": { "@algolia/autocomplete-core": "^1.4.1", @@ -24,6 +23,7 @@ "antlr4": "4.8.0", "antlr4ts": "^0.5.0-alpha.4", "plotly.js-dist": "^2.2.0", + "postinstall": "^0.7.4", "react-graph-vis": "^1.0.5", "react-paginate": "^8.1.3", "react-plotly.js": "^2.5.1" diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp deleted file mode 100644 index 68b2f0fd1..000000000 --- a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.interp +++ /dev/null @@ -1,831 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -DATE_SUFFIX -ID_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -DEC_DIGIT -ERROR_RECOGNITION - -channel names: -DEFAULT_TOKEN_CHANNEL -HIDDEN -null -null -WHITESPACE -ERRORCHANNEL - -mode names: -DEFAULT_MODE - -atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 274, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 2, 533, 2, 535, 267, 537, 268, 539, 269, 541, 270, 543, 2, 545, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java deleted file mode 100644 index a4b0a792f..000000000 --- a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.java +++ /dev/null @@ -1,1277 +0,0 @@ -// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.2 -import org.antlr.v4.runtime.Lexer; -import org.antlr.v4.runtime.CharStream; -import org.antlr.v4.runtime.Token; -import org.antlr.v4.runtime.TokenStream; -import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.atn.*; -import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.misc.*; - -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) -public class OpenSearchPPLLexer extends Lexer { - static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } - - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - new PredictionContextCache(); - public static final int - SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, - EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, - SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, - NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, - ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, - SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, - TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, - CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, - DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, - HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, - MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, - HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, - YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, - DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, - DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, - PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, - COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, - SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, - BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, - MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, - STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, - STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, - EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, - PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, - C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, - EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, - POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, - ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, - RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, - DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, - MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, - DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, - TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, - STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, - LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, - MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, - ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, - BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, - ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, - FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, - LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, - MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, - QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, - TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, - W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, - ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, - ERROR_RECOGNITION=269; - public static final int - WHITESPACE=2, ERRORCHANNEL=3; - public static String[] channelNames = { - "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL" - }; - - public static String[] modeNames = { - "DEFAULT_MODE" - }; - - private static String[] makeRuleNames() { - return new String[] { - "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", - "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", - "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", - "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", - "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", - "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", - "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", - "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", - "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", - "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", - "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", - "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", - "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", - "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", - "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", - "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "DATE_SUFFIX", - "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", - "DEC_DIGIT", "ERROR_RECOGNITION" - }; - } - public static final String[] ruleNames = makeRuleNames(); - - private static String[] makeLiteralNames() { - return new String[] { - null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", - "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", - "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", - "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", - "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", - "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", - "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", - "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", - "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", - "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", - "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", - "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", - "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", - "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", - "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", - "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", - "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", - "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", - "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", - "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", - "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", - "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", - "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", - "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", - "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", - "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", - "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", - "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" - }; - } - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static String[] makeSymbolicNames() { - return new String[] { - null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", - "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", - "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", - "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", - "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", - "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", - "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", - "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", - "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", - "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", - "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", - "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } - - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } - - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } - - @Override - - public Vocabulary getVocabulary() { - return VOCABULARY; - } - - - public OpenSearchPPLLexer(CharStream input) { - super(input); - _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); - } - - @Override - public String getGrammarFileName() { return "OpenSearchPPLLexer.g4"; } - - @Override - public String[] getRuleNames() { return ruleNames; } - - @Override - public String getSerializedATN() { return _serializedATN; } - - @Override - public String[] getChannelNames() { return channelNames; } - - @Override - public String[] getModeNames() { return modeNames; } - - @Override - public ATN getATN() { return _ATN; } - - private static final int _serializedATNSegments = 2; - private static final String _serializedATNSegment0 = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u010f\u0a6f\b\1\4"+ - "\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n"+ - "\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+ - "\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+ - "\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+ - " \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+ - "+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+ - "\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t"+ - "=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4"+ - "I\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\t"+ - "T\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_"+ - "\4`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k"+ - "\tk\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv"+ - "\4w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t"+ - "\u0080\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084"+ - "\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089"+ - "\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+ - "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ - "\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095\t\u0095\4\u0096\t\u0096"+ - "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a\4\u009b"+ - "\t\u009b\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f\t\u009f"+ - "\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3\4\u00a4"+ - "\t\u00a4\4\u00a5\t\u00a5\4\u00a6\t\u00a6\4\u00a7\t\u00a7\4\u00a8\t\u00a8"+ - "\4\u00a9\t\u00a9\4\u00aa\t\u00aa\4\u00ab\t\u00ab\4\u00ac\t\u00ac\4\u00ad"+ - "\t\u00ad\4\u00ae\t\u00ae\4\u00af\t\u00af\4\u00b0\t\u00b0\4\u00b1\t\u00b1"+ - "\4\u00b2\t\u00b2\4\u00b3\t\u00b3\4\u00b4\t\u00b4\4\u00b5\t\u00b5\4\u00b6"+ - "\t\u00b6\4\u00b7\t\u00b7\4\u00b8\t\u00b8\4\u00b9\t\u00b9\4\u00ba\t\u00ba"+ - "\4\u00bb\t\u00bb\4\u00bc\t\u00bc\4\u00bd\t\u00bd\4\u00be\t\u00be\4\u00bf"+ - "\t\u00bf\4\u00c0\t\u00c0\4\u00c1\t\u00c1\4\u00c2\t\u00c2\4\u00c3\t\u00c3"+ - "\4\u00c4\t\u00c4\4\u00c5\t\u00c5\4\u00c6\t\u00c6\4\u00c7\t\u00c7\4\u00c8"+ - "\t\u00c8\4\u00c9\t\u00c9\4\u00ca\t\u00ca\4\u00cb\t\u00cb\4\u00cc\t\u00cc"+ - "\4\u00cd\t\u00cd\4\u00ce\t\u00ce\4\u00cf\t\u00cf\4\u00d0\t\u00d0\4\u00d1"+ - "\t\u00d1\4\u00d2\t\u00d2\4\u00d3\t\u00d3\4\u00d4\t\u00d4\4\u00d5\t\u00d5"+ - "\4\u00d6\t\u00d6\4\u00d7\t\u00d7\4\u00d8\t\u00d8\4\u00d9\t\u00d9\4\u00da"+ - "\t\u00da\4\u00db\t\u00db\4\u00dc\t\u00dc\4\u00dd\t\u00dd\4\u00de\t\u00de"+ - "\4\u00df\t\u00df\4\u00e0\t\u00e0\4\u00e1\t\u00e1\4\u00e2\t\u00e2\4\u00e3"+ - "\t\u00e3\4\u00e4\t\u00e4\4\u00e5\t\u00e5\4\u00e6\t\u00e6\4\u00e7\t\u00e7"+ - "\4\u00e8\t\u00e8\4\u00e9\t\u00e9\4\u00ea\t\u00ea\4\u00eb\t\u00eb\4\u00ec"+ - "\t\u00ec\4\u00ed\t\u00ed\4\u00ee\t\u00ee\4\u00ef\t\u00ef\4\u00f0\t\u00f0"+ - "\4\u00f1\t\u00f1\4\u00f2\t\u00f2\4\u00f3\t\u00f3\4\u00f4\t\u00f4\4\u00f5"+ - "\t\u00f5\4\u00f6\t\u00f6\4\u00f7\t\u00f7\4\u00f8\t\u00f8\4\u00f9\t\u00f9"+ - "\4\u00fa\t\u00fa\4\u00fb\t\u00fb\4\u00fc\t\u00fc\4\u00fd\t\u00fd\4\u00fe"+ - "\t\u00fe\4\u00ff\t\u00ff\4\u0100\t\u0100\4\u0101\t\u0101\4\u0102\t\u0102"+ - "\4\u0103\t\u0103\4\u0104\t\u0104\4\u0105\t\u0105\4\u0106\t\u0106\4\u0107"+ - "\t\u0107\4\u0108\t\u0108\4\u0109\t\u0109\4\u010a\t\u010a\4\u010b\t\u010b"+ - "\4\u010c\t\u010c\4\u010d\t\u010d\4\u010e\t\u010e\4\u010f\t\u010f\4\u0110"+ - "\t\u0110\4\u0111\t\u0111\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\3\3"+ - "\3\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6"+ - "\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3"+ - "\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3"+ - "\f\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3"+ - "\17\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\21\3\22\3\22\3\22\3\23\3"+ - "\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3"+ - "\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3"+ - "\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3"+ - "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3"+ - "\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3"+ - "\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\3"+ - "\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3!\3"+ - "!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3"+ - "#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3"+ - "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+ - "&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3"+ - "(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3"+ - "*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3,\3,\3"+ - ",\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3"+ - "-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ - ".\3.\3.\3.\3.\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\62\3"+ - "\62\3\62\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3"+ - "\65\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3"+ - "8\38\38\38\38\38\38\38\38\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3"+ - ":\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3"+ - "<\3<\3<\3=\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3?\3?\3?\3?\3@\3@\3@\3@\3"+ - "@\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3"+ - "D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3"+ - "E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3"+ - "F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3"+ - "H\3H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3J\3J\3"+ - "J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3K\3"+ - "K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3M\3N\3"+ - "N\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3"+ - "P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3S\3S\3S\3"+ - "S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3"+ - "W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Z\3Z\3[\3[\3\\\3\\"+ - "\3]\3]\3^\3^\3_\3_\3_\3`\3`\3`\3a\3a\3a\3b\3b\3c\3c\3d\3d\3e\3e\3f\3f"+ - "\3g\3g\3h\3h\3i\3i\3j\3j\3k\3k\3l\3l\3m\3m\3n\3n\3o\3o\3p\3p\3q\3q\3r"+ - "\3r\3s\3s\3s\3s\3t\3t\3t\3t\3t\3t\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u"+ - "\3u\3u\3u\3v\3v\3v\3v\3v\3v\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3x\3x"+ - "\3x\3x\3y\3y\3y\3y\3y\3z\3z\3z\3z\3z\3z\3z\3{\3{\3{\3{\3|\3|\3|\3|\3|"+ - "\3}\3}\3}\3}\3}\3}\3~\3~\3~\3~\3~\3~\3\177\3\177\3\177\3\177\3\177\3\177"+ - "\3\177\3\u0080\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0081"+ - "\3\u0081\3\u0081\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082"+ - "\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083"+ - "\3\u0083\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085"+ - "\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086"+ - "\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0087"+ - "\3\u0087\3\u0087\3\u0087\3\u0087\3\u0087\3\u0088\3\u0088\3\u0088\3\u0088"+ - "\3\u0088\3\u0089\3\u0089\3\u0089\3\u0089\3\u0089\3\u008a\3\u008a\3\u008a"+ - "\3\u008a\3\u008a\3\u008a\3\u008a\3\u008b\3\u008b\3\u008b\3\u008b\3\u008b"+ - "\3\u008b\3\u008b\3\u008b\3\u008b\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ - "\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ - "\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008e\3\u008e"+ - "\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e"+ - "\3\u008e\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f"+ - "\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090"+ - "\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091"+ - "\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092"+ - "\3\u0092\3\u0092\3\u0092\3\u0092\3\u0093\3\u0093\3\u0093\3\u0093\3\u0093"+ - "\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094"+ - "\3\u0094\3\u0095\3\u0095\3\u0096\3\u0096\3\u0096\3\u0097\3\u0097\3\u0097"+ - "\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\3\u0098\3\u0099\3\u0099\3\u0099"+ - "\3\u0099\3\u0099\3\u0099\3\u0099\3\u0099\3\u009a\3\u009a\3\u009a\3\u009a"+ - "\3\u009a\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009c\3\u009c"+ - "\3\u009d\3\u009d\3\u009d\3\u009d\3\u009e\3\u009e\3\u009e\3\u009e\3\u009e"+ - "\3\u009e\3\u009f\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a1"+ - "\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a2\3\u00a2"+ - "\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4\3\u00a5"+ - "\3\u00a5\3\u00a5\3\u00a5\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6"+ - "\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a8\3\u00a8"+ - "\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00aa\3\u00aa"+ - "\3\u00aa\3\u00aa\3\u00aa\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab"+ - "\3\u00ab\3\u00ab\3\u00ab\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ad"+ - "\3\u00ad\3\u00ad\3\u00ad\3\u00ad\3\u00ae\3\u00ae\3\u00ae\3\u00ae\3\u00ae"+ - "\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00b0\3\u00b0\3\u00b0"+ - "\3\u00b0\3\u00b1\3\u00b1\3\u00b1\3\u00b1\3\u00b2\3\u00b2\3\u00b2\3\u00b2"+ - "\3\u00b2\3\u00b2\3\u00b2\3\u00b2\3\u00b3\3\u00b3\3\u00b3\3\u00b3\3\u00b3"+ - "\3\u00b3\3\u00b3\3\u00b3\3\u00b4\3\u00b4\3\u00b4\3\u00b4\3\u00b5\3\u00b5"+ - "\3\u00b5\3\u00b5\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6"+ - "\3\u00b6\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b8\3\u00b8\3\u00b8"+ - "\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b9\3\u00b9\3\u00b9"+ - "\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00ba\3\u00ba\3\u00ba"+ - "\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00bb"+ - "\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb"+ - "\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc"+ - "\3\u00bc\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd"+ - "\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be"+ - "\3\u00be\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf"+ - "\3\u00bf\3\u00bf\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0"+ - "\3\u00c0\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c2\3\u00c2\3\u00c2"+ - "\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2"+ - "\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3"+ - "\3\u00c3\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4"+ - "\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c5\3\u00c5\3\u00c5\3\u00c5\3\u00c5"+ - "\3\u00c5\3\u00c5\3\u00c5\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6"+ - "\3\u00c6\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7"+ - "\3\u00c7\3\u00c7\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c9"+ - "\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00ca\3\u00ca\3\u00ca\3\u00ca"+ - "\3\u00ca\3\u00cb\3\u00cb\3\u00cb\3\u00cc\3\u00cc\3\u00cc\3\u00cc\3\u00cc"+ - "\3\u00cc\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00ce\3\u00ce"+ - "\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00cf\3\u00cf\3\u00cf\3\u00cf"+ - "\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00d0\3\u00d0\3\u00d0"+ - "\3\u00d0\3\u00d0\3\u00d0\3\u00d0\3\u00d1\3\u00d1\3\u00d1\3\u00d1\3\u00d1"+ - "\3\u00d1\3\u00d1\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d3"+ - "\3\u00d3\3\u00d3\3\u00d3\3\u00d3\3\u00d4\3\u00d4\3\u00d4\3\u00d4\3\u00d4"+ - "\3\u00d4\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d6"+ - "\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d7\3\u00d7"+ - "\3\u00d7\3\u00d7\3\u00d7\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d9"+ - "\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00da\3\u00da\3\u00da"+ - "\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00db\3\u00db"+ - "\3\u00db\3\u00db\3\u00db\3\u00db\3\u00db\3\u00dc\3\u00dc\3\u00dc\3\u00dc"+ - "\3\u00dc\3\u00dc\3\u00dc\3\u00dd\3\u00dd\3\u00dd\3\u00de\3\u00de\3\u00de"+ - "\3\u00de\3\u00de\3\u00de\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df"+ - "\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00e0\3\u00e0"+ - "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ - "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ - "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ - "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ - "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ - "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ - "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e3"+ - "\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e5\3\u00e5\3\u00e5\3\u00e5\3\u00e5"+ - "\3\u00e5\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ - "\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ - "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7"+ - "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ - "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ - "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ - "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ - "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ - "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00ea\3\u00ea\3\u00ea\3\u00ea\3\u00ea"+ - "\3\u00ea\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ - "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ - "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ - "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ - "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ed\3\u00ed\3\u00ed"+ - "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ - "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ - "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee"+ - "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ef\3\u00ef\3\u00ef\3\u00ef"+ - "\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00f0\3\u00f0\3\u00f0"+ - "\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ - "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ - "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ - "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ - "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ - "\3\u00f2\3\u00f2\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3"+ - "\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f4"+ - "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ - "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ - "\3\u00f4\3\u00f4\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5"+ - "\3\u00f5\3\u00f5\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6"+ - "\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ - "\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ - "\3\u00f7\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8"+ - "\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f9\3\u00f9"+ - "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9"+ - "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00fa"+ - "\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fb\3\u00fb"+ - "\3\u00fb\3\u00fb\3\u00fb\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc"+ - "\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fd\3\u00fd\3\u00fd"+ - "\3\u00fd\3\u00fd\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ - "\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ - "\3\u00fe\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u0100\3\u0100\3\u0100"+ - "\3\u0101\3\u0101\3\u0102\3\u0102\3\u0103\3\u0103\3\u0104\3\u0104\3\u0105"+ - "\3\u0105\3\u0106\3\u0106\3\u0107\3\u0107\3\u0108\6\u0108\u0a19\n\u0108"+ - "\r\u0108\16\u0108\u0a1a\3\u0109\6\u0109\u0a1e\n\u0109\r\u0109\16\u0109"+ - "\u0a1f\5\u0109\u0a22\n\u0109\3\u0109\3\u0109\6\u0109\u0a26\n\u0109\r\u0109"+ - "\16\u0109\u0a27\3\u010a\3\u010a\6\u010a\u0a2c\n\u010a\r\u010a\16\u010a"+ - "\u0a2d\7\u010a\u0a30\n\u010a\f\u010a\16\u010a\u0a33\13\u010a\3\u010b\6"+ - "\u010b\u0a36\n\u010b\r\u010b\16\u010b\u0a37\3\u010b\7\u010b\u0a3b\n\u010b"+ - "\f\u010b\16\u010b\u0a3e\13\u010b\3\u010c\3\u010c\3\u010c\3\u010d\3\u010d"+ - "\3\u010d\3\u010d\3\u010d\3\u010d\7\u010d\u0a49\n\u010d\f\u010d\16\u010d"+ - "\u0a4c\13\u010d\3\u010d\3\u010d\3\u010e\3\u010e\3\u010e\3\u010e\3\u010e"+ - "\3\u010e\7\u010e\u0a56\n\u010e\f\u010e\16\u010e\u0a59\13\u010e\3\u010e"+ - "\3\u010e\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\7\u010f\u0a63"+ - "\n\u010f\f\u010f\16\u010f\u0a66\13\u010f\3\u010f\3\u010f\3\u0110\3\u0110"+ - "\3\u0111\3\u0111\3\u0111\3\u0111\3\u0a37\2\u0112\3\3\5\4\7\5\t\6\13\7"+ - "\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25"+ - ")\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O"+ - ")Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081"+ - "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095"+ - "L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9"+ - "V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd"+ - "`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1"+ - "j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5"+ - "t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9"+ - "~\u00fb\177\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105\u0084"+ - "\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111\u008a"+ - "\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d\u0090"+ - "\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129\u0096"+ - "\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135\u009c"+ - "\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141\u00a2"+ - "\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d\u00a8"+ - "\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159\u00ae"+ - "\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165\u00b4"+ - "\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171\u00ba"+ - "\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d\u00c0"+ - "\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189\u00c6"+ - "\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195\u00cc"+ - "\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1\u00d2"+ - "\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8"+ - "\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9\u00de"+ - "\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4"+ - "\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea"+ - "\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd\u00f0"+ - "\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6"+ - "\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc"+ - "\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201\u0102"+ - "\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d\u0108"+ - "\u020f\u0109\u0211\u010a\u0213\2\u0215\2\u0217\u010b\u0219\u010c\u021b"+ - "\u010d\u021d\u010e\u021f\2\u0221\u010f\3\2\n\3\2/\60\4\2,,\62;\4\2,,B"+ - "\\\7\2,,//\62;C\\aa\4\2$$^^\4\2))^^\4\2^^bb\3\2\62;\2\u0a7c\2\3\3\2\2"+ - "\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3"+ - "\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2"+ - "\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2"+ - "\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2"+ - "\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3"+ - "\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2"+ - "\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2"+ - "W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3"+ - "\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2"+ - "\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2"+ - "}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2"+ - "\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f"+ - "\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2"+ - "\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1"+ - "\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2"+ - "\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3"+ - "\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2"+ - "\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5"+ - "\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2"+ - "\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7"+ - "\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2"+ - "\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9"+ - "\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2"+ - "\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb"+ - "\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103\3\2\2"+ - "\2\2\u0105\3\2\2\2\2\u0107\3\2\2\2\2\u0109\3\2\2\2\2\u010b\3\2\2\2\2\u010d"+ - "\3\2\2\2\2\u010f\3\2\2\2\2\u0111\3\2\2\2\2\u0113\3\2\2\2\2\u0115\3\2\2"+ - "\2\2\u0117\3\2\2\2\2\u0119\3\2\2\2\2\u011b\3\2\2\2\2\u011d\3\2\2\2\2\u011f"+ - "\3\2\2\2\2\u0121\3\2\2\2\2\u0123\3\2\2\2\2\u0125\3\2\2\2\2\u0127\3\2\2"+ - "\2\2\u0129\3\2\2\2\2\u012b\3\2\2\2\2\u012d\3\2\2\2\2\u012f\3\2\2\2\2\u0131"+ - "\3\2\2\2\2\u0133\3\2\2\2\2\u0135\3\2\2\2\2\u0137\3\2\2\2\2\u0139\3\2\2"+ - "\2\2\u013b\3\2\2\2\2\u013d\3\2\2\2\2\u013f\3\2\2\2\2\u0141\3\2\2\2\2\u0143"+ - "\3\2\2\2\2\u0145\3\2\2\2\2\u0147\3\2\2\2\2\u0149\3\2\2\2\2\u014b\3\2\2"+ - "\2\2\u014d\3\2\2\2\2\u014f\3\2\2\2\2\u0151\3\2\2\2\2\u0153\3\2\2\2\2\u0155"+ - "\3\2\2\2\2\u0157\3\2\2\2\2\u0159\3\2\2\2\2\u015b\3\2\2\2\2\u015d\3\2\2"+ - "\2\2\u015f\3\2\2\2\2\u0161\3\2\2\2\2\u0163\3\2\2\2\2\u0165\3\2\2\2\2\u0167"+ - "\3\2\2\2\2\u0169\3\2\2\2\2\u016b\3\2\2\2\2\u016d\3\2\2\2\2\u016f\3\2\2"+ - "\2\2\u0171\3\2\2\2\2\u0173\3\2\2\2\2\u0175\3\2\2\2\2\u0177\3\2\2\2\2\u0179"+ - "\3\2\2\2\2\u017b\3\2\2\2\2\u017d\3\2\2\2\2\u017f\3\2\2\2\2\u0181\3\2\2"+ - "\2\2\u0183\3\2\2\2\2\u0185\3\2\2\2\2\u0187\3\2\2\2\2\u0189\3\2\2\2\2\u018b"+ - "\3\2\2\2\2\u018d\3\2\2\2\2\u018f\3\2\2\2\2\u0191\3\2\2\2\2\u0193\3\2\2"+ - "\2\2\u0195\3\2\2\2\2\u0197\3\2\2\2\2\u0199\3\2\2\2\2\u019b\3\2\2\2\2\u019d"+ - "\3\2\2\2\2\u019f\3\2\2\2\2\u01a1\3\2\2\2\2\u01a3\3\2\2\2\2\u01a5\3\2\2"+ - "\2\2\u01a7\3\2\2\2\2\u01a9\3\2\2\2\2\u01ab\3\2\2\2\2\u01ad\3\2\2\2\2\u01af"+ - "\3\2\2\2\2\u01b1\3\2\2\2\2\u01b3\3\2\2\2\2\u01b5\3\2\2\2\2\u01b7\3\2\2"+ - "\2\2\u01b9\3\2\2\2\2\u01bb\3\2\2\2\2\u01bd\3\2\2\2\2\u01bf\3\2\2\2\2\u01c1"+ - "\3\2\2\2\2\u01c3\3\2\2\2\2\u01c5\3\2\2\2\2\u01c7\3\2\2\2\2\u01c9\3\2\2"+ - "\2\2\u01cb\3\2\2\2\2\u01cd\3\2\2\2\2\u01cf\3\2\2\2\2\u01d1\3\2\2\2\2\u01d3"+ - "\3\2\2\2\2\u01d5\3\2\2\2\2\u01d7\3\2\2\2\2\u01d9\3\2\2\2\2\u01db\3\2\2"+ - "\2\2\u01dd\3\2\2\2\2\u01df\3\2\2\2\2\u01e1\3\2\2\2\2\u01e3\3\2\2\2\2\u01e5"+ - "\3\2\2\2\2\u01e7\3\2\2\2\2\u01e9\3\2\2\2\2\u01eb\3\2\2\2\2\u01ed\3\2\2"+ - "\2\2\u01ef\3\2\2\2\2\u01f1\3\2\2\2\2\u01f3\3\2\2\2\2\u01f5\3\2\2\2\2\u01f7"+ - "\3\2\2\2\2\u01f9\3\2\2\2\2\u01fb\3\2\2\2\2\u01fd\3\2\2\2\2\u01ff\3\2\2"+ - "\2\2\u0201\3\2\2\2\2\u0203\3\2\2\2\2\u0205\3\2\2\2\2\u0207\3\2\2\2\2\u0209"+ - "\3\2\2\2\2\u020b\3\2\2\2\2\u020d\3\2\2\2\2\u020f\3\2\2\2\2\u0211\3\2\2"+ - "\2\2\u0217\3\2\2\2\2\u0219\3\2\2\2\2\u021b\3\2\2\2\2\u021d\3\2\2\2\2\u0221"+ - "\3\2\2\2\3\u0223\3\2\2\2\5\u022a\3\2\2\2\7\u022f\3\2\2\2\t\u0235\3\2\2"+ - "\2\13\u023c\3\2\2\2\r\u0243\3\2\2\2\17\u0249\3\2\2\2\21\u024f\3\2\2\2"+ - "\23\u0254\3\2\2\2\25\u0259\3\2\2\2\27\u025e\3\2\2\2\31\u0262\3\2\2\2\33"+ - "\u0267\3\2\2\2\35\u026d\3\2\2\2\37\u0274\3\2\2\2!\u0277\3\2\2\2#\u027a"+ - "\3\2\2\2%\u027d\3\2\2\2\'\u0284\3\2\2\2)\u028a\3\2\2\2+\u028c\3\2\2\2"+ - "-\u0291\3\2\2\2/\u0298\3\2\2\2\61\u029d\3\2\2\2\63\u02a1\3\2\2\2\65\u02a4"+ - "\3\2\2\2\67\u02a8\3\2\2\29\u02b2\3\2\2\2;\u02be\3\2\2\2=\u02d0\3\2\2\2"+ - "?\u02db\3\2\2\2A\u02e2\3\2\2\2C\u02e8\3\2\2\2E\u02f2\3\2\2\2G\u02fd\3"+ - "\2\2\2I\u030b\3\2\2\2K\u031b\3\2\2\2M\u0328\3\2\2\2O\u0334\3\2\2\2Q\u0341"+ - "\3\2\2\2S\u034c\3\2\2\2U\u0359\3\2\2\2W\u0364\3\2\2\2Y\u036e\3\2\2\2["+ - "\u0381\3\2\2\2]\u0399\3\2\2\2_\u039e\3\2\2\2a\u03a1\3\2\2\2c\u03a5\3\2"+ - "\2\2e\u03a8\3\2\2\2g\u03ac\3\2\2\2i\u03b0\3\2\2\2k\u03b5\3\2\2\2m\u03bb"+ - "\3\2\2\2o\u03c2\3\2\2\2q\u03cb\3\2\2\2s\u03d4\3\2\2\2u\u03e0\3\2\2\2w"+ - "\u03ec\3\2\2\2y\u03f3\3\2\2\2{\u03fa\3\2\2\2}\u03ff\3\2\2\2\177\u0403"+ - "\3\2\2\2\u0081\u0408\3\2\2\2\u0083\u040e\3\2\2\2\u0085\u0416\3\2\2\2\u0087"+ - "\u041b\3\2\2\2\u0089\u042e\3\2\2\2\u008b\u0441\3\2\2\2\u008d\u044f\3\2"+ - "\2\2\u008f\u0460\3\2\2\2\u0091\u046c\3\2\2\2\u0093\u0478\3\2\2\2\u0095"+ - "\u0488\3\2\2\2\u0097\u0493\3\2\2\2\u0099\u049e\3\2\2\2\u009b\u04a7\3\2"+ - "\2\2\u009d\u04b2\3\2\2\2\u009f\u04bc\3\2\2\2\u00a1\u04c3\3\2\2\2\u00a3"+ - "\u04cf\3\2\2\2\u00a5\u04d3\3\2\2\2\u00a7\u04db\3\2\2\2\u00a9\u04e2\3\2"+ - "\2\2\u00ab\u04e7\3\2\2\2\u00ad\u04ed\3\2\2\2\u00af\u04f4\3\2\2\2\u00b1"+ - "\u04fc\3\2\2\2\u00b3\u04fe\3\2\2\2\u00b5\u0500\3\2\2\2\u00b7\u0502\3\2"+ - "\2\2\u00b9\u0504\3\2\2\2\u00bb\u0506\3\2\2\2\u00bd\u0508\3\2\2\2\u00bf"+ - "\u050b\3\2\2\2\u00c1\u050e\3\2\2\2\u00c3\u0511\3\2\2\2\u00c5\u0513\3\2"+ - "\2\2\u00c7\u0515\3\2\2\2\u00c9\u0517\3\2\2\2\u00cb\u0519\3\2\2\2\u00cd"+ - "\u051b\3\2\2\2\u00cf\u051d\3\2\2\2\u00d1\u051f\3\2\2\2\u00d3\u0521\3\2"+ - "\2\2\u00d5\u0523\3\2\2\2\u00d7\u0525\3\2\2\2\u00d9\u0527\3\2\2\2\u00db"+ - "\u0529\3\2\2\2\u00dd\u052b\3\2\2\2\u00df\u052d\3\2\2\2\u00e1\u052f\3\2"+ - "\2\2\u00e3\u0531\3\2\2\2\u00e5\u0533\3\2\2\2\u00e7\u0537\3\2\2\2\u00e9"+ - "\u053d\3\2\2\2\u00eb\u054c\3\2\2\2\u00ed\u0552\3\2\2\2\u00ef\u055e\3\2"+ - "\2\2\u00f1\u0562\3\2\2\2\u00f3\u0567\3\2\2\2\u00f5\u056e\3\2\2\2\u00f7"+ - "\u0572\3\2\2\2\u00f9\u0577\3\2\2\2\u00fb\u057d\3\2\2\2\u00fd\u0583\3\2"+ - "\2\2\u00ff\u058a\3\2\2\2\u0101\u058e\3\2\2\2\u0103\u0594\3\2\2\2\u0105"+ - "\u059d\3\2\2\2\u0107\u05a5\3\2\2\2\u0109\u05b1\3\2\2\2\u010b\u05bc\3\2"+ - "\2\2\u010d\u05c7\3\2\2\2\u010f\u05cd\3\2\2\2\u0111\u05d2\3\2\2\2\u0113"+ - "\u05d7\3\2\2\2\u0115\u05de\3\2\2\2\u0117\u05e7\3\2\2\2\u0119\u05f5\3\2"+ - "\2\2\u011b\u05fc\3\2\2\2\u011d\u0608\3\2\2\2\u011f\u0610\3\2\2\2\u0121"+ - "\u0619\3\2\2\2\u0123\u0624\3\2\2\2\u0125\u062f\3\2\2\2\u0127\u0634\3\2"+ - "\2\2\u0129\u063e\3\2\2\2\u012b\u0640\3\2\2\2\u012d\u0643\3\2\2\2\u012f"+ - "\u0647\3\2\2\2\u0131\u064c\3\2\2\2\u0133\u0654\3\2\2\2\u0135\u0659\3\2"+ - "\2\2\u0137\u065f\3\2\2\2\u0139\u0661\3\2\2\2\u013b\u0665\3\2\2\2\u013d"+ - "\u066b\3\2\2\2\u013f\u066e\3\2\2\2\u0141\u0672\3\2\2\2\u0143\u0678\3\2"+ - "\2\2\u0145\u067d\3\2\2\2\u0147\u0681\3\2\2\2\u0149\u0684\3\2\2\2\u014b"+ - "\u0688\3\2\2\2\u014d\u068e\3\2\2\2\u014f\u0693\3\2\2\2\u0151\u0699\3\2"+ - "\2\2\u0153\u069e\3\2\2\2\u0155\u06a3\3\2\2\2\u0157\u06ac\3\2\2\2\u0159"+ - "\u06b1\3\2\2\2\u015b\u06b6\3\2\2\2\u015d\u06bb\3\2\2\2\u015f\u06c1\3\2"+ - "\2\2\u0161\u06c5\3\2\2\2\u0163\u06c9\3\2\2\2\u0165\u06d1\3\2\2\2\u0167"+ - "\u06d9\3\2\2\2\u0169\u06dd\3\2\2\2\u016b\u06e1\3\2\2\2\u016d\u06e9\3\2"+ - "\2\2\u016f\u06ee\3\2\2\2\u0171\u06f7\3\2\2\2\u0173\u0700\3\2\2\2\u0175"+ - "\u070b\3\2\2\2\u0177\u0715\3\2\2\2\u0179\u071f\3\2\2\2\u017b\u0727\3\2"+ - "\2\2\u017d\u0731\3\2\2\2\u017f\u073b\3\2\2\2\u0181\u0743\3\2\2\2\u0183"+ - "\u0748\3\2\2\2\u0185\u0754\3\2\2\2\u0187\u075e\3\2\2\2\u0189\u076a\3\2"+ - "\2\2\u018b\u0772\3\2\2\2\u018d\u0779\3\2\2\2\u018f\u0783\3\2\2\2\u0191"+ - "\u0789\3\2\2\2\u0193\u078f\3\2\2\2\u0195\u0794\3\2\2\2\u0197\u0797\3\2"+ - "\2\2\u0199\u079d\3\2\2\2\u019b\u07a3\3\2\2\2\u019d\u07aa\3\2\2\2\u019f"+ - "\u07b4\3\2\2\2\u01a1\u07bb\3\2\2\2\u01a3\u07c2\3\2\2\2\u01a5\u07c8\3\2"+ - "\2\2\u01a7\u07cd\3\2\2\2\u01a9\u07d3\3\2\2\2\u01ab\u07da\3\2\2\2\u01ad"+ - "\u07e2\3\2\2\2\u01af\u07e7\3\2\2\2\u01b1\u07ec\3\2\2\2\u01b3\u07f3\3\2"+ - "\2\2\u01b5\u07fd\3\2\2\2\u01b7\u0804\3\2\2\2\u01b9\u080b\3\2\2\2\u01bb"+ - "\u080e\3\2\2\2\u01bd\u0814\3\2\2\2\u01bf\u0821\3\2\2\2\u01c1\u0835\3\2"+ - "\2\2\u01c3\u084c\3\2\2\2\u01c5\u085d\3\2\2\2\u01c7\u0866\3\2\2\2\u01c9"+ - "\u088a\3\2\2\2\u01cb\u0890\3\2\2\2\u01cd\u08a1\3\2\2\2\u01cf\u08af\3\2"+ - "\2\2\u01d1\u08c0\3\2\2\2\u01d3\u08db\3\2\2\2\u01d5\u08e1\3\2\2\2\u01d7"+ - "\u08f6\3\2\2\2\u01d9\u090a\3\2\2\2\u01db\u091f\3\2\2\2\u01dd\u092d\3\2"+ - "\2\2\u01df\u0937\3\2\2\2\u01e1\u093f\3\2\2\2\u01e3\u0951\3\2\2\2\u01e5"+ - "\u0969\3\2\2\2\u01e7\u0978\3\2\2\2\u01e9\u098d\3\2\2\2\u01eb\u0996\3\2"+ - "\2\2\u01ed\u09a2\3\2\2\2\u01ef\u09b0\3\2\2\2\u01f1\u09bf\3\2\2\2\u01f3"+ - "\u09d2\3\2\2\2\u01f5\u09da\3\2\2\2\u01f7\u09df\3\2\2\2\u01f9\u09eb\3\2"+ - "\2\2\u01fb\u09f0\3\2\2\2\u01fd\u0a01\3\2\2\2\u01ff\u0a06\3\2\2\2\u0201"+ - "\u0a09\3\2\2\2\u0203\u0a0b\3\2\2\2\u0205\u0a0d\3\2\2\2\u0207\u0a0f\3\2"+ - "\2\2\u0209\u0a11\3\2\2\2\u020b\u0a13\3\2\2\2\u020d\u0a15\3\2\2\2\u020f"+ - "\u0a18\3\2\2\2\u0211\u0a21\3\2\2\2\u0213\u0a31\3\2\2\2\u0215\u0a35\3\2"+ - "\2\2\u0217\u0a3f\3\2\2\2\u0219\u0a42\3\2\2\2\u021b\u0a4f\3\2\2\2\u021d"+ - "\u0a5c\3\2\2\2\u021f\u0a69\3\2\2\2\u0221\u0a6b\3\2\2\2\u0223\u0224\7U"+ - "\2\2\u0224\u0225\7G\2\2\u0225\u0226\7C\2\2\u0226\u0227\7T\2\2\u0227\u0228"+ - "\7E\2\2\u0228\u0229\7J\2\2\u0229\4\3\2\2\2\u022a\u022b\7H\2\2\u022b\u022c"+ - "\7T\2\2\u022c\u022d\7Q\2\2\u022d\u022e\7O\2\2\u022e\6\3\2\2\2\u022f\u0230"+ - "\7Y\2\2\u0230\u0231\7J\2\2\u0231\u0232\7G\2\2\u0232\u0233\7T\2\2\u0233"+ - "\u0234\7G\2\2\u0234\b\3\2\2\2\u0235\u0236\7H\2\2\u0236\u0237\7K\2\2\u0237"+ - "\u0238\7G\2\2\u0238\u0239\7N\2\2\u0239\u023a\7F\2\2\u023a\u023b\7U\2\2"+ - "\u023b\n\3\2\2\2\u023c\u023d\7T\2\2\u023d\u023e\7G\2\2\u023e\u023f\7P"+ - "\2\2\u023f\u0240\7C\2\2\u0240\u0241\7O\2\2\u0241\u0242\7G\2\2\u0242\f"+ - "\3\2\2\2\u0243\u0244\7U\2\2\u0244\u0245\7V\2\2\u0245\u0246\7C\2\2\u0246"+ - "\u0247\7V\2\2\u0247\u0248\7U\2\2\u0248\16\3\2\2\2\u0249\u024a\7F\2\2\u024a"+ - "\u024b\7G\2\2\u024b\u024c\7F\2\2\u024c\u024d\7W\2\2\u024d\u024e\7R\2\2"+ - "\u024e\20\3\2\2\2\u024f\u0250\7U\2\2\u0250\u0251\7Q\2\2\u0251\u0252\7"+ - "T\2\2\u0252\u0253\7V\2\2\u0253\22\3\2\2\2\u0254\u0255\7G\2\2\u0255\u0256"+ - "\7X\2\2\u0256\u0257\7C\2\2\u0257\u0258\7N\2\2\u0258\24\3\2\2\2\u0259\u025a"+ - "\7J\2\2\u025a\u025b\7G\2\2\u025b\u025c\7C\2\2\u025c\u025d\7F\2\2\u025d"+ - "\26\3\2\2\2\u025e\u025f\7V\2\2\u025f\u0260\7Q\2\2\u0260\u0261\7R\2\2\u0261"+ - "\30\3\2\2\2\u0262\u0263\7T\2\2\u0263\u0264\7C\2\2\u0264\u0265\7T\2\2\u0265"+ - "\u0266\7G\2\2\u0266\32\3\2\2\2\u0267\u0268\7R\2\2\u0268\u0269\7C\2\2\u0269"+ - "\u026a\7T\2\2\u026a\u026b\7U\2\2\u026b\u026c\7G\2\2\u026c\34\3\2\2\2\u026d"+ - "\u026e\7M\2\2\u026e\u026f\7O\2\2\u026f\u0270\7G\2\2\u0270\u0271\7C\2\2"+ - "\u0271\u0272\7P\2\2\u0272\u0273\7U\2\2\u0273\36\3\2\2\2\u0274\u0275\7"+ - "C\2\2\u0275\u0276\7F\2\2\u0276 \3\2\2\2\u0277\u0278\7C\2\2\u0278\u0279"+ - "\7U\2\2\u0279\"\3\2\2\2\u027a\u027b\7D\2\2\u027b\u027c\7[\2\2\u027c$\3"+ - "\2\2\2\u027d\u027e\7U\2\2\u027e\u027f\7Q\2\2\u027f\u0280\7W\2\2\u0280"+ - "\u0281\7T\2\2\u0281\u0282\7E\2\2\u0282\u0283\7G\2\2\u0283&\3\2\2\2\u0284"+ - "\u0285\7K\2\2\u0285\u0286\7P\2\2\u0286\u0287\7F\2\2\u0287\u0288\7G\2\2"+ - "\u0288\u0289\7Z\2\2\u0289(\3\2\2\2\u028a\u028b\7F\2\2\u028b*\3\2\2\2\u028c"+ - "\u028d\7F\2\2\u028d\u028e\7G\2\2\u028e\u028f\7U\2\2\u028f\u0290\7E\2\2"+ - "\u0290,\3\2\2\2\u0291\u0292\7U\2\2\u0292\u0293\7Q\2\2\u0293\u0294\7T\2"+ - "\2\u0294\u0295\7V\2\2\u0295\u0296\7D\2\2\u0296\u0297\7[\2\2\u0297.\3\2"+ - "\2\2\u0298\u0299\7C\2\2\u0299\u029a\7W\2\2\u029a\u029b\7V\2\2\u029b\u029c"+ - "\7Q\2\2\u029c\60\3\2\2\2\u029d\u029e\7U\2\2\u029e\u029f\7V\2\2\u029f\u02a0"+ - "\7T\2\2\u02a0\62\3\2\2\2\u02a1\u02a2\7K\2\2\u02a2\u02a3\7R\2\2\u02a3\64"+ - "\3\2\2\2\u02a4\u02a5\7P\2\2\u02a5\u02a6\7W\2\2\u02a6\u02a7\7O\2\2\u02a7"+ - "\66\3\2\2\2\u02a8\u02a9\7M\2\2\u02a9\u02aa\7G\2\2\u02aa\u02ab\7G\2\2\u02ab"+ - "\u02ac\7R\2\2\u02ac\u02ad\7G\2\2\u02ad\u02ae\7O\2\2\u02ae\u02af\7R\2\2"+ - "\u02af\u02b0\7V\2\2\u02b0\u02b1\7[\2\2\u02b18\3\2\2\2\u02b2\u02b3\7E\2"+ - "\2\u02b3\u02b4\7Q\2\2\u02b4\u02b5\7P\2\2\u02b5\u02b6\7U\2\2\u02b6\u02b7"+ - "\7G\2\2\u02b7\u02b8\7E\2\2\u02b8\u02b9\7W\2\2\u02b9\u02ba\7V\2\2\u02ba"+ - "\u02bb\7K\2\2\u02bb\u02bc\7X\2\2\u02bc\u02bd\7G\2\2\u02bd:\3\2\2\2\u02be"+ - "\u02bf\7F\2\2\u02bf\u02c0\7G\2\2\u02c0\u02c1\7F\2\2\u02c1\u02c2\7W\2\2"+ - "\u02c2\u02c3\7R\2\2\u02c3\u02c4\7a\2\2\u02c4\u02c5\7U\2\2\u02c5\u02c6"+ - "\7R\2\2\u02c6\u02c7\7N\2\2\u02c7\u02c8\7K\2\2\u02c8\u02c9\7V\2\2\u02c9"+ - "\u02ca\7X\2\2\u02ca\u02cb\7C\2\2\u02cb\u02cc\7N\2\2\u02cc\u02cd\7W\2\2"+ - "\u02cd\u02ce\7G\2\2\u02ce\u02cf\7U\2\2\u02cf<\3\2\2\2\u02d0\u02d1\7R\2"+ - "\2\u02d1\u02d2\7C\2\2\u02d2\u02d3\7T\2\2\u02d3\u02d4\7V\2\2\u02d4\u02d5"+ - "\7K\2\2\u02d5\u02d6\7V\2\2\u02d6\u02d7\7K\2\2\u02d7\u02d8\7Q\2\2\u02d8"+ - "\u02d9\7P\2\2\u02d9\u02da\7U\2\2\u02da>\3\2\2\2\u02db\u02dc\7C\2\2\u02dc"+ - "\u02dd\7N\2\2\u02dd\u02de\7N\2\2\u02de\u02df\7P\2\2\u02df\u02e0\7W\2\2"+ - "\u02e0\u02e1\7O\2\2\u02e1@\3\2\2\2\u02e2\u02e3\7F\2\2\u02e3\u02e4\7G\2"+ - "\2\u02e4\u02e5\7N\2\2\u02e5\u02e6\7K\2\2\u02e6\u02e7\7O\2\2\u02e7B\3\2"+ - "\2\2\u02e8\u02e9\7E\2\2\u02e9\u02ea\7G\2\2\u02ea\u02eb\7P\2\2\u02eb\u02ec"+ - "\7V\2\2\u02ec\u02ed\7T\2\2\u02ed\u02ee\7Q\2\2\u02ee\u02ef\7K\2\2\u02ef"+ - "\u02f0\7F\2\2\u02f0\u02f1\7U\2\2\u02f1D\3\2\2\2\u02f2\u02f3\7K\2\2\u02f3"+ - "\u02f4\7V\2\2\u02f4\u02f5\7G\2\2\u02f5\u02f6\7T\2\2\u02f6\u02f7\7C\2\2"+ - "\u02f7\u02f8\7V\2\2\u02f8\u02f9\7K\2\2\u02f9\u02fa\7Q\2\2\u02fa\u02fb"+ - "\7P\2\2\u02fb\u02fc\7U\2\2\u02fcF\3\2\2\2\u02fd\u02fe\7F\2\2\u02fe\u02ff"+ - "\7K\2\2\u02ff\u0300\7U\2\2\u0300\u0301\7V\2\2\u0301\u0302\7C\2\2\u0302"+ - "\u0303\7P\2\2\u0303\u0304\7E\2\2\u0304\u0305\7G\2\2\u0305\u0306\7a\2\2"+ - "\u0306\u0307\7V\2\2\u0307\u0308\7[\2\2\u0308\u0309\7R\2\2\u0309\u030a"+ - "\7G\2\2\u030aH\3\2\2\2\u030b\u030c\7P\2\2\u030c\u030d\7W\2\2\u030d\u030e"+ - "\7O\2\2\u030e\u030f\7D\2\2\u030f\u0310\7G\2\2\u0310\u0311\7T\2\2\u0311"+ - "\u0312\7a\2\2\u0312\u0313\7Q\2\2\u0313\u0314\7H\2\2\u0314\u0315\7a\2\2"+ - "\u0315\u0316\7V\2\2\u0316\u0317\7T\2\2\u0317\u0318\7G\2\2\u0318\u0319"+ - "\7G\2\2\u0319\u031a\7U\2\2\u031aJ\3\2\2\2\u031b\u031c\7U\2\2\u031c\u031d"+ - "\7J\2\2\u031d\u031e\7K\2\2\u031e\u031f\7P\2\2\u031f\u0320\7I\2\2\u0320"+ - "\u0321\7N\2\2\u0321\u0322\7G\2\2\u0322\u0323\7a\2\2\u0323\u0324\7U\2\2"+ - "\u0324\u0325\7K\2\2\u0325\u0326\7\\\2\2\u0326\u0327\7G\2\2\u0327L\3\2"+ - "\2\2\u0328\u0329\7U\2\2\u0329\u032a\7C\2\2\u032a\u032b\7O\2\2\u032b\u032c"+ - "\7R\2\2\u032c\u032d\7N\2\2\u032d\u032e\7G\2\2\u032e\u032f\7a\2\2\u032f"+ - "\u0330\7U\2\2\u0330\u0331\7K\2\2\u0331\u0332\7\\\2\2\u0332\u0333\7G\2"+ - "\2\u0333N\3\2\2\2\u0334\u0335\7Q\2\2\u0335\u0336\7W\2\2\u0336\u0337\7"+ - "V\2\2\u0337\u0338\7R\2\2\u0338\u0339\7W\2\2\u0339\u033a\7V\2\2\u033a\u033b"+ - "\7a\2\2\u033b\u033c\7C\2\2\u033c\u033d\7H\2\2\u033d\u033e\7V\2\2\u033e"+ - "\u033f\7G\2\2\u033f\u0340\7T\2\2\u0340P\3\2\2\2\u0341\u0342\7V\2\2\u0342"+ - "\u0343\7K\2\2\u0343\u0344\7O\2\2\u0344\u0345\7G\2\2\u0345\u0346\7a\2\2"+ - "\u0346\u0347\7F\2\2\u0347\u0348\7G\2\2\u0348\u0349\7E\2\2\u0349\u034a"+ - "\7C\2\2\u034a\u034b\7[\2\2\u034bR\3\2\2\2\u034c\u034d\7C\2\2\u034d\u034e"+ - "\7P\2\2\u034e\u034f\7Q\2\2\u034f\u0350\7O\2\2\u0350\u0351\7C\2\2\u0351"+ - "\u0352\7N\2\2\u0352\u0353\7[\2\2\u0353\u0354\7a\2\2\u0354\u0355\7T\2\2"+ - "\u0355\u0356\7C\2\2\u0356\u0357\7V\2\2\u0357\u0358\7G\2\2\u0358T\3\2\2"+ - "\2\u0359\u035a\7V\2\2\u035a\u035b\7K\2\2\u035b\u035c\7O\2\2\u035c\u035d"+ - "\7G\2\2\u035d\u035e\7a\2\2\u035e\u035f\7H\2\2\u035f\u0360\7K\2\2\u0360"+ - "\u0361\7G\2\2\u0361\u0362\7N\2\2\u0362\u0363\7F\2\2\u0363V\3\2\2\2\u0364"+ - "\u0365\7V\2\2\u0365\u0366\7K\2\2\u0366\u0367\7O\2\2\u0367\u0368\7G\2\2"+ - "\u0368\u0369\7a\2\2\u0369\u036a\7\\\2\2\u036a\u036b\7Q\2\2\u036b\u036c"+ - "\7P\2\2\u036c\u036d\7G\2\2\u036dX\3\2\2\2\u036e\u036f\7V\2\2\u036f\u0370"+ - "\7T\2\2\u0370\u0371\7C\2\2\u0371\u0372\7K\2\2\u0372\u0373\7P\2\2\u0373"+ - "\u0374\7K\2\2\u0374\u0375\7P\2\2\u0375\u0376\7I\2\2\u0376\u0377\7a\2\2"+ - "\u0377\u0378\7F\2\2\u0378\u0379\7C\2\2\u0379\u037a\7V\2\2\u037a\u037b"+ - "\7C\2\2\u037b\u037c\7a\2\2\u037c\u037d\7U\2\2\u037d\u037e\7K\2\2\u037e"+ - "\u037f\7\\\2\2\u037f\u0380\7G\2\2\u0380Z\3\2\2\2\u0381\u0382\7C\2\2\u0382"+ - "\u0383\7P\2\2\u0383\u0384\7Q\2\2\u0384\u0385\7O\2\2\u0385\u0386\7C\2\2"+ - "\u0386\u0387\7N\2\2\u0387\u0388\7[\2\2\u0388\u0389\7a\2\2\u0389\u038a"+ - "\7U\2\2\u038a\u038b\7E\2\2\u038b\u038c\7Q\2\2\u038c\u038d\7T\2\2\u038d"+ - "\u038e\7G\2\2\u038e\u038f\7a\2\2\u038f\u0390\7V\2\2\u0390\u0391\7J\2\2"+ - "\u0391\u0392\7T\2\2\u0392\u0393\7G\2\2\u0393\u0394\7U\2\2\u0394\u0395"+ - "\7J\2\2\u0395\u0396\7Q\2\2\u0396\u0397\7N\2\2\u0397\u0398\7F\2\2\u0398"+ - "\\\3\2\2\2\u0399\u039a\7E\2\2\u039a\u039b\7C\2\2\u039b\u039c\7U\2\2\u039c"+ - "\u039d\7G\2\2\u039d^\3\2\2\2\u039e\u039f\7K\2\2\u039f\u03a0\7P\2\2\u03a0"+ - "`\3\2\2\2\u03a1\u03a2\7P\2\2\u03a2\u03a3\7Q\2\2\u03a3\u03a4\7V\2\2\u03a4"+ - "b\3\2\2\2\u03a5\u03a6\7Q\2\2\u03a6\u03a7\7T\2\2\u03a7d\3\2\2\2\u03a8\u03a9"+ - "\7C\2\2\u03a9\u03aa\7P\2\2\u03aa\u03ab\7F\2\2\u03abf\3\2\2\2\u03ac\u03ad"+ - "\7Z\2\2\u03ad\u03ae\7Q\2\2\u03ae\u03af\7T\2\2\u03afh\3\2\2\2\u03b0\u03b1"+ - "\7V\2\2\u03b1\u03b2\7T\2\2\u03b2\u03b3\7W\2\2\u03b3\u03b4\7G\2\2\u03b4"+ - "j\3\2\2\2\u03b5\u03b6\7H\2\2\u03b6\u03b7\7C\2\2\u03b7\u03b8\7N\2\2\u03b8"+ - "\u03b9\7U\2\2\u03b9\u03ba\7G\2\2\u03bal\3\2\2\2\u03bb\u03bc\7T\2\2\u03bc"+ - "\u03bd\7G\2\2\u03bd\u03be\7I\2\2\u03be\u03bf\7G\2\2\u03bf\u03c0\7Z\2\2"+ - "\u03c0\u03c1\7R\2\2\u03c1n\3\2\2\2\u03c2\u03c3\7F\2\2\u03c3\u03c4\7C\2"+ - "\2\u03c4\u03c5\7V\2\2\u03c5\u03c6\7G\2\2\u03c6\u03c7\7V\2\2\u03c7\u03c8"+ - "\7K\2\2\u03c8\u03c9\7O\2\2\u03c9\u03ca\7G\2\2\u03cap\3\2\2\2\u03cb\u03cc"+ - "\7K\2\2\u03cc\u03cd\7P\2\2\u03cd\u03ce\7V\2\2\u03ce\u03cf\7G\2\2\u03cf"+ - "\u03d0\7T\2\2\u03d0\u03d1\7X\2\2\u03d1\u03d2\7C\2\2\u03d2\u03d3\7N\2\2"+ - "\u03d3r\3\2\2\2\u03d4\u03d5\7O\2\2\u03d5\u03d6\7K\2\2\u03d6\u03d7\7E\2"+ - "\2\u03d7\u03d8\7T\2\2\u03d8\u03d9\7Q\2\2\u03d9\u03da\7U\2\2\u03da\u03db"+ - "\7G\2\2\u03db\u03dc\7E\2\2\u03dc\u03dd\7Q\2\2\u03dd\u03de\7P\2\2\u03de"+ - "\u03df\7F\2\2\u03dft\3\2\2\2\u03e0\u03e1\7O\2\2\u03e1\u03e2\7K\2\2\u03e2"+ - "\u03e3\7N\2\2\u03e3\u03e4\7N\2\2\u03e4\u03e5\7K\2\2\u03e5\u03e6\7U\2\2"+ - "\u03e6\u03e7\7G\2\2\u03e7\u03e8\7E\2\2\u03e8\u03e9\7Q\2\2\u03e9\u03ea"+ - "\7P\2\2\u03ea\u03eb\7F\2\2\u03ebv\3\2\2\2\u03ec\u03ed\7U\2\2\u03ed\u03ee"+ - "\7G\2\2\u03ee\u03ef\7E\2\2\u03ef\u03f0\7Q\2\2\u03f0\u03f1\7P\2\2\u03f1"+ - "\u03f2\7F\2\2\u03f2x\3\2\2\2\u03f3\u03f4\7O\2\2\u03f4\u03f5\7K\2\2\u03f5"+ - "\u03f6\7P\2\2\u03f6\u03f7\7W\2\2\u03f7\u03f8\7V\2\2\u03f8\u03f9\7G\2\2"+ - "\u03f9z\3\2\2\2\u03fa\u03fb\7J\2\2\u03fb\u03fc\7Q\2\2\u03fc\u03fd\7W\2"+ - "\2\u03fd\u03fe\7T\2\2\u03fe|\3\2\2\2\u03ff\u0400\7F\2\2\u0400\u0401\7"+ - "C\2\2\u0401\u0402\7[\2\2\u0402~\3\2\2\2\u0403\u0404\7Y\2\2\u0404\u0405"+ - "\7G\2\2\u0405\u0406\7G\2\2\u0406\u0407\7M\2\2\u0407\u0080\3\2\2\2\u0408"+ - "\u0409\7O\2\2\u0409\u040a\7Q\2\2\u040a\u040b\7P\2\2\u040b\u040c\7V\2\2"+ - "\u040c\u040d\7J\2\2\u040d\u0082\3\2\2\2\u040e\u040f\7S\2\2\u040f\u0410"+ - "\7W\2\2\u0410\u0411\7C\2\2\u0411\u0412\7T\2\2\u0412\u0413\7V\2\2\u0413"+ - "\u0414\7G\2\2\u0414\u0415\7T\2\2\u0415\u0084\3\2\2\2\u0416\u0417\7[\2"+ - "\2\u0417\u0418\7G\2\2\u0418\u0419\7C\2\2\u0419\u041a\7T\2\2\u041a\u0086"+ - "\3\2\2\2\u041b\u041c\7U\2\2\u041c\u041d\7G\2\2\u041d\u041e\7E\2\2\u041e"+ - "\u041f\7Q\2\2\u041f\u0420\7P\2\2\u0420\u0421\7F\2\2\u0421\u0422\7a\2\2"+ - "\u0422\u0423\7O\2\2\u0423\u0424\7K\2\2\u0424\u0425\7E\2\2\u0425\u0426"+ - "\7T\2\2\u0426\u0427\7Q\2\2\u0427\u0428\7U\2\2\u0428\u0429\7G\2\2\u0429"+ - "\u042a\7E\2\2\u042a\u042b\7Q\2\2\u042b\u042c\7P\2\2\u042c\u042d\7F\2\2"+ - "\u042d\u0088\3\2\2\2\u042e\u042f\7O\2\2\u042f\u0430\7K\2\2\u0430\u0431"+ - "\7P\2\2\u0431\u0432\7W\2\2\u0432\u0433\7V\2\2\u0433\u0434\7G\2\2\u0434"+ - "\u0435\7a\2\2\u0435\u0436\7O\2\2\u0436\u0437\7K\2\2\u0437\u0438\7E\2\2"+ - "\u0438\u0439\7T\2\2\u0439\u043a\7Q\2\2\u043a\u043b\7U\2\2\u043b\u043c"+ - "\7G\2\2\u043c\u043d\7E\2\2\u043d\u043e\7Q\2\2\u043e\u043f\7P\2\2\u043f"+ - "\u0440\7F\2\2\u0440\u008a\3\2\2\2\u0441\u0442\7O\2\2\u0442\u0443\7K\2"+ - "\2\u0443\u0444\7P\2\2\u0444\u0445\7W\2\2\u0445\u0446\7V\2\2\u0446\u0447"+ - "\7G\2\2\u0447\u0448\7a\2\2\u0448\u0449\7U\2\2\u0449\u044a\7G\2\2\u044a"+ - "\u044b\7E\2\2\u044b\u044c\7Q\2\2\u044c\u044d\7P\2\2\u044d\u044e\7F\2\2"+ - "\u044e\u008c\3\2\2\2\u044f\u0450\7J\2\2\u0450\u0451\7Q\2\2\u0451\u0452"+ - "\7W\2\2\u0452\u0453\7T\2\2\u0453\u0454\7a\2\2\u0454\u0455\7O\2\2\u0455"+ - "\u0456\7K\2\2\u0456\u0457\7E\2\2\u0457\u0458\7T\2\2\u0458\u0459\7Q\2\2"+ - "\u0459\u045a\7U\2\2\u045a\u045b\7G\2\2\u045b\u045c\7E\2\2\u045c\u045d"+ - "\7Q\2\2\u045d\u045e\7P\2\2\u045e\u045f\7F\2\2\u045f\u008e\3\2\2\2\u0460"+ - "\u0461\7J\2\2\u0461\u0462\7Q\2\2\u0462\u0463\7W\2\2\u0463\u0464\7T\2\2"+ - "\u0464\u0465\7a\2\2\u0465\u0466\7U\2\2\u0466\u0467\7G\2\2\u0467\u0468"+ - "\7E\2\2\u0468\u0469\7Q\2\2\u0469\u046a\7P\2\2\u046a\u046b\7F\2\2\u046b"+ - "\u0090\3\2\2\2\u046c\u046d\7J\2\2\u046d\u046e\7Q\2\2\u046e\u046f\7W\2"+ - "\2\u046f\u0470\7T\2\2\u0470\u0471\7a\2\2\u0471\u0472\7O\2\2\u0472\u0473"+ - "\7K\2\2\u0473\u0474\7P\2\2\u0474\u0475\7W\2\2\u0475\u0476\7V\2\2\u0476"+ - "\u0477\7G\2\2\u0477\u0092\3\2\2\2\u0478\u0479\7F\2\2\u0479\u047a\7C\2"+ - "\2\u047a\u047b\7[\2\2\u047b\u047c\7a\2\2\u047c\u047d\7O\2\2\u047d\u047e"+ - "\7K\2\2\u047e\u047f\7E\2\2\u047f\u0480\7T\2\2\u0480\u0481\7Q\2\2\u0481"+ - "\u0482\7U\2\2\u0482\u0483\7G\2\2\u0483\u0484\7E\2\2\u0484\u0485\7Q\2\2"+ - "\u0485\u0486\7P\2\2\u0486\u0487\7F\2\2\u0487\u0094\3\2\2\2\u0488\u0489"+ - "\7F\2\2\u0489\u048a\7C\2\2\u048a\u048b\7[\2\2\u048b\u048c\7a\2\2\u048c"+ - "\u048d\7U\2\2\u048d\u048e\7G\2\2\u048e\u048f\7E\2\2\u048f\u0490\7Q\2\2"+ - "\u0490\u0491\7P\2\2\u0491\u0492\7F\2\2\u0492\u0096\3\2\2\2\u0493\u0494"+ - "\7F\2\2\u0494\u0495\7C\2\2\u0495\u0496\7[\2\2\u0496\u0497\7a\2\2\u0497"+ - "\u0498\7O\2\2\u0498\u0499\7K\2\2\u0499\u049a\7P\2\2\u049a\u049b\7W\2\2"+ - "\u049b\u049c\7V\2\2\u049c\u049d\7G\2\2\u049d\u0098\3\2\2\2\u049e\u049f"+ - "\7F\2\2\u049f\u04a0\7C\2\2\u04a0\u04a1\7[\2\2\u04a1\u04a2\7a\2\2\u04a2"+ - "\u04a3\7J\2\2\u04a3\u04a4\7Q\2\2\u04a4\u04a5\7W\2\2\u04a5\u04a6\7T\2\2"+ - "\u04a6\u009a\3\2\2\2\u04a7\u04a8\7[\2\2\u04a8\u04a9\7G\2\2\u04a9\u04aa"+ - "\7C\2\2\u04aa\u04ab\7T\2\2\u04ab\u04ac\7a\2\2\u04ac\u04ad\7O\2\2\u04ad"+ - "\u04ae\7Q\2\2\u04ae\u04af\7P\2\2\u04af\u04b0\7V\2\2\u04b0\u04b1\7J\2\2"+ - "\u04b1\u009c\3\2\2\2\u04b2\u04b3\7F\2\2\u04b3\u04b4\7C\2\2\u04b4\u04b5"+ - "\7V\2\2\u04b5\u04b6\7C\2\2\u04b6\u04b7\7O\2\2\u04b7\u04b8\7Q\2\2\u04b8"+ - "\u04b9\7F\2\2\u04b9\u04ba\7G\2\2\u04ba\u04bb\7N\2\2\u04bb\u009e\3\2\2"+ - "\2\u04bc\u04bd\7N\2\2\u04bd\u04be\7Q\2\2\u04be\u04bf\7Q\2\2\u04bf\u04c0"+ - "\7M\2\2\u04c0\u04c1\7W\2\2\u04c1\u04c2\7R\2\2\u04c2\u00a0\3\2\2\2\u04c3"+ - "\u04c4\7U\2\2\u04c4\u04c5\7C\2\2\u04c5\u04c6\7X\2\2\u04c6\u04c7\7G\2\2"+ - "\u04c7\u04c8\7F\2\2\u04c8\u04c9\7U\2\2\u04c9\u04ca\7G\2\2\u04ca\u04cb"+ - "\7C\2\2\u04cb\u04cc\7T\2\2\u04cc\u04cd\7E\2\2\u04cd\u04ce\7J\2\2\u04ce"+ - "\u00a2\3\2\2\2\u04cf\u04d0\7K\2\2\u04d0\u04d1\7P\2\2\u04d1\u04d2\7V\2"+ - "\2\u04d2\u00a4\3\2\2\2\u04d3\u04d4\7K\2\2\u04d4\u04d5\7P\2\2\u04d5\u04d6"+ - "\7V\2\2\u04d6\u04d7\7G\2\2\u04d7\u04d8\7I\2\2\u04d8\u04d9\7G\2\2\u04d9"+ - "\u04da\7T\2\2\u04da\u00a6\3\2\2\2\u04db\u04dc\7F\2\2\u04dc\u04dd\7Q\2"+ - "\2\u04dd\u04de\7W\2\2\u04de\u04df\7D\2\2\u04df\u04e0\7N\2\2\u04e0\u04e1"+ - "\7G\2\2\u04e1\u00a8\3\2\2\2\u04e2\u04e3\7N\2\2\u04e3\u04e4\7Q\2\2\u04e4"+ - "\u04e5\7P\2\2\u04e5\u04e6\7I\2\2\u04e6\u00aa\3\2\2\2\u04e7\u04e8\7H\2"+ - "\2\u04e8\u04e9\7N\2\2\u04e9\u04ea\7Q\2\2\u04ea\u04eb\7C\2\2\u04eb\u04ec"+ - "\7V\2\2\u04ec\u00ac\3\2\2\2\u04ed\u04ee\7U\2\2\u04ee\u04ef\7V\2\2\u04ef"+ - "\u04f0\7T\2\2\u04f0\u04f1\7K\2\2\u04f1\u04f2\7P\2\2\u04f2\u04f3\7I\2\2"+ - "\u04f3\u00ae\3\2\2\2\u04f4\u04f5\7D\2\2\u04f5\u04f6\7Q\2\2\u04f6\u04f7"+ - "\7Q\2\2\u04f7\u04f8\7N\2\2\u04f8\u04f9\7G\2\2\u04f9\u04fa\7C\2\2\u04fa"+ - "\u04fb\7P\2\2\u04fb\u00b0\3\2\2\2\u04fc\u04fd\7~\2\2\u04fd\u00b2\3\2\2"+ - "\2\u04fe\u04ff\7.\2\2\u04ff\u00b4\3\2\2\2\u0500\u0501\7\60\2\2\u0501\u00b6"+ - "\3\2\2\2\u0502\u0503\7?\2\2\u0503\u00b8\3\2\2\2\u0504\u0505\7@\2\2\u0505"+ - "\u00ba\3\2\2\2\u0506\u0507\7>\2\2\u0507\u00bc\3\2\2\2\u0508\u0509\7>\2"+ - "\2\u0509\u050a\7?\2\2\u050a\u00be\3\2\2\2\u050b\u050c\7@\2\2\u050c\u050d"+ - "\7?\2\2\u050d\u00c0\3\2\2\2\u050e\u050f\7#\2\2\u050f\u0510\7?\2\2\u0510"+ - "\u00c2\3\2\2\2\u0511\u0512\7-\2\2\u0512\u00c4\3\2\2\2\u0513\u0514\7/\2"+ - "\2\u0514\u00c6\3\2\2\2\u0515\u0516\7,\2\2\u0516\u00c8\3\2\2\2\u0517\u0518"+ - "\7\61\2\2\u0518\u00ca\3\2\2\2\u0519\u051a\7\'\2\2\u051a\u00cc\3\2\2\2"+ - "\u051b\u051c\7#\2\2\u051c\u00ce\3\2\2\2\u051d\u051e\7<\2\2\u051e\u00d0"+ - "\3\2\2\2\u051f\u0520\7*\2\2\u0520\u00d2\3\2\2\2\u0521\u0522\7+\2\2\u0522"+ - "\u00d4\3\2\2\2\u0523\u0524\7]\2\2\u0524\u00d6\3\2\2\2\u0525\u0526\7_\2"+ - "\2\u0526\u00d8\3\2\2\2\u0527\u0528\7)\2\2\u0528\u00da\3\2\2\2\u0529\u052a"+ - "\7$\2\2\u052a\u00dc\3\2\2\2\u052b\u052c\7b\2\2\u052c\u00de\3\2\2\2\u052d"+ - "\u052e\7\u0080\2\2\u052e\u00e0\3\2\2\2\u052f\u0530\7(\2\2\u0530\u00e2"+ - "\3\2\2\2\u0531\u0532\7`\2\2\u0532\u00e4\3\2\2\2\u0533\u0534\7C\2\2\u0534"+ - "\u0535\7X\2\2\u0535\u0536\7I\2\2\u0536\u00e6\3\2\2\2\u0537\u0538\7E\2"+ - "\2\u0538\u0539\7Q\2\2\u0539\u053a\7W\2\2\u053a\u053b\7P\2\2\u053b\u053c"+ - "\7V\2\2\u053c\u00e8\3\2\2\2\u053d\u053e\7F\2\2\u053e\u053f\7K\2\2\u053f"+ - "\u0540\7U\2\2\u0540\u0541\7V\2\2\u0541\u0542\7K\2\2\u0542\u0543\7P\2\2"+ - "\u0543\u0544\7E\2\2\u0544\u0545\7V\2\2\u0545\u0546\7a\2\2\u0546\u0547"+ - "\7E\2\2\u0547\u0548\7Q\2\2\u0548\u0549\7W\2\2\u0549\u054a\7P\2\2\u054a"+ - "\u054b\7V\2\2\u054b\u00ea\3\2\2\2\u054c\u054d\7G\2\2\u054d\u054e\7U\2"+ - "\2\u054e\u054f\7V\2\2\u054f\u0550\7F\2\2\u0550\u0551\7E\2\2\u0551\u00ec"+ - "\3\2\2\2\u0552\u0553\7G\2\2\u0553\u0554\7U\2\2\u0554\u0555\7V\2\2\u0555"+ - "\u0556\7F\2\2\u0556\u0557\7E\2\2\u0557\u0558\7a\2\2\u0558\u0559\7G\2\2"+ - "\u0559\u055a\7T\2\2\u055a\u055b\7T\2\2\u055b\u055c\7Q\2\2\u055c\u055d"+ - "\7T\2\2\u055d\u00ee\3\2\2\2\u055e\u055f\7O\2\2\u055f\u0560\7C\2\2\u0560"+ - "\u0561\7Z\2\2\u0561\u00f0\3\2\2\2\u0562\u0563\7O\2\2\u0563\u0564\7G\2"+ - "\2\u0564\u0565\7C\2\2\u0565\u0566\7P\2\2\u0566\u00f2\3\2\2\2\u0567\u0568"+ - "\7O\2\2\u0568\u0569\7G\2\2\u0569\u056a\7F\2\2\u056a\u056b\7K\2\2\u056b"+ - "\u056c\7C\2\2\u056c\u056d\7P\2\2\u056d\u00f4\3\2\2\2\u056e\u056f\7O\2"+ - "\2\u056f\u0570\7K\2\2\u0570\u0571\7P\2\2\u0571\u00f6\3\2\2\2\u0572\u0573"+ - "\7O\2\2\u0573\u0574\7Q\2\2\u0574\u0575\7F\2\2\u0575\u0576\7G\2\2\u0576"+ - "\u00f8\3\2\2\2\u0577\u0578\7T\2\2\u0578\u0579\7C\2\2\u0579\u057a\7P\2"+ - "\2\u057a\u057b\7I\2\2\u057b\u057c\7G\2\2\u057c\u00fa\3\2\2\2\u057d\u057e"+ - "\7U\2\2\u057e\u057f\7V\2\2\u057f\u0580\7F\2\2\u0580\u0581\7G\2\2\u0581"+ - "\u0582\7X\2\2\u0582\u00fc\3\2\2\2\u0583\u0584\7U\2\2\u0584\u0585\7V\2"+ - "\2\u0585\u0586\7F\2\2\u0586\u0587\7G\2\2\u0587\u0588\7X\2\2\u0588\u0589"+ - "\7R\2\2\u0589\u00fe\3\2\2\2\u058a\u058b\7U\2\2\u058b\u058c\7W\2\2\u058c"+ - "\u058d\7O\2\2\u058d\u0100\3\2\2\2\u058e\u058f\7U\2\2\u058f\u0590\7W\2"+ - "\2\u0590\u0591\7O\2\2\u0591\u0592\7U\2\2\u0592\u0593\7S\2\2\u0593\u0102"+ - "\3\2\2\2\u0594\u0595\7X\2\2\u0595\u0596\7C\2\2\u0596\u0597\7T\2\2\u0597"+ - "\u0598\7a\2\2\u0598\u0599\7U\2\2\u0599\u059a\7C\2\2\u059a\u059b\7O\2\2"+ - "\u059b\u059c\7R\2\2\u059c\u0104\3\2\2\2\u059d\u059e\7X\2\2\u059e\u059f"+ - "\7C\2\2\u059f\u05a0\7T\2\2\u05a0\u05a1\7a\2\2\u05a1\u05a2\7R\2\2\u05a2"+ - "\u05a3\7Q\2\2\u05a3\u05a4\7R\2\2\u05a4\u0106\3\2\2\2\u05a5\u05a6\7U\2"+ - "\2\u05a6\u05a7\7V\2\2\u05a7\u05a8\7F\2\2\u05a8\u05a9\7F\2\2\u05a9\u05aa"+ - "\7G\2\2\u05aa\u05ab\7X\2\2\u05ab\u05ac\7a\2\2\u05ac\u05ad\7U\2\2\u05ad"+ - "\u05ae\7C\2\2\u05ae\u05af\7O\2\2\u05af\u05b0\7R\2\2\u05b0\u0108\3\2\2"+ - "\2\u05b1\u05b2\7U\2\2\u05b2\u05b3\7V\2\2\u05b3\u05b4\7F\2\2\u05b4\u05b5"+ - "\7F\2\2\u05b5\u05b6\7G\2\2\u05b6\u05b7\7X\2\2\u05b7\u05b8\7a\2\2\u05b8"+ - "\u05b9\7R\2\2\u05b9\u05ba\7Q\2\2\u05ba\u05bb\7R\2\2\u05bb\u010a\3\2\2"+ - "\2\u05bc\u05bd\7R\2\2\u05bd\u05be\7G\2\2\u05be\u05bf\7T\2\2\u05bf\u05c0"+ - "\7E\2\2\u05c0\u05c1\7G\2\2\u05c1\u05c2\7P\2\2\u05c2\u05c3\7V\2\2\u05c3"+ - "\u05c4\7K\2\2\u05c4\u05c5\7N\2\2\u05c5\u05c6\7G\2\2\u05c6\u010c\3\2\2"+ - "\2\u05c7\u05c8\7H\2\2\u05c8\u05c9\7K\2\2\u05c9\u05ca\7T\2\2\u05ca\u05cb"+ - "\7U\2\2\u05cb\u05cc\7V\2\2\u05cc\u010e\3\2\2\2\u05cd\u05ce\7N\2\2\u05ce"+ - "\u05cf\7C\2\2\u05cf\u05d0\7U\2\2\u05d0\u05d1\7V\2\2\u05d1\u0110\3\2\2"+ - "\2\u05d2\u05d3\7N\2\2\u05d3\u05d4\7K\2\2\u05d4\u05d5\7U\2\2\u05d5\u05d6"+ - "\7V\2\2\u05d6\u0112\3\2\2\2\u05d7\u05d8\7X\2\2\u05d8\u05d9\7C\2\2\u05d9"+ - "\u05da\7N\2\2\u05da\u05db\7W\2\2\u05db\u05dc\7G\2\2\u05dc\u05dd\7U\2\2"+ - "\u05dd\u0114\3\2\2\2\u05de\u05df\7G\2\2\u05df\u05e0\7C\2\2\u05e0\u05e1"+ - "\7T\2\2\u05e1\u05e2\7N\2\2\u05e2\u05e3\7K\2\2\u05e3\u05e4\7G\2\2\u05e4"+ - "\u05e5\7U\2\2\u05e5\u05e6\7V\2\2\u05e6\u0116\3\2\2\2\u05e7\u05e8\7G\2"+ - "\2\u05e8\u05e9\7C\2\2\u05e9\u05ea\7T\2\2\u05ea\u05eb\7N\2\2\u05eb\u05ec"+ - "\7K\2\2\u05ec\u05ed\7G\2\2\u05ed\u05ee\7U\2\2\u05ee\u05ef\7V\2\2\u05ef"+ - "\u05f0\7a\2\2\u05f0\u05f1\7V\2\2\u05f1\u05f2\7K\2\2\u05f2\u05f3\7O\2\2"+ - "\u05f3\u05f4\7G\2\2\u05f4\u0118\3\2\2\2\u05f5\u05f6\7N\2\2\u05f6\u05f7"+ - "\7C\2\2\u05f7\u05f8\7V\2\2\u05f8\u05f9\7G\2\2\u05f9\u05fa\7U\2\2\u05fa"+ - "\u05fb\7V\2\2\u05fb\u011a\3\2\2\2\u05fc\u05fd\7N\2\2\u05fd\u05fe\7C\2"+ - "\2\u05fe\u05ff\7V\2\2\u05ff\u0600\7G\2\2\u0600\u0601\7U\2\2\u0601\u0602"+ - "\7V\2\2\u0602\u0603\7a\2\2\u0603\u0604\7V\2\2\u0604\u0605\7K\2\2\u0605"+ - "\u0606\7O\2\2\u0606\u0607\7G\2\2\u0607\u011c\3\2\2\2\u0608\u0609\7R\2"+ - "\2\u0609\u060a\7G\2\2\u060a\u060b\7T\2\2\u060b\u060c\7a\2\2\u060c\u060d"+ - "\7F\2\2\u060d\u060e\7C\2\2\u060e\u060f\7[\2\2\u060f\u011e\3\2\2\2\u0610"+ - "\u0611\7R\2\2\u0611\u0612\7G\2\2\u0612\u0613\7T\2\2\u0613\u0614\7a\2\2"+ - "\u0614\u0615\7J\2\2\u0615\u0616\7Q\2\2\u0616\u0617\7W\2\2\u0617\u0618"+ - "\7T\2\2\u0618\u0120\3\2\2\2\u0619\u061a\7R\2\2\u061a\u061b\7G\2\2\u061b"+ - "\u061c\7T\2\2\u061c\u061d\7a\2\2\u061d\u061e\7O\2\2\u061e\u061f\7K\2\2"+ - "\u061f\u0620\7P\2\2\u0620\u0621\7W\2\2\u0621\u0622\7V\2\2\u0622\u0623"+ - "\7G\2\2\u0623\u0122\3\2\2\2\u0624\u0625\7R\2\2\u0625\u0626\7G\2\2\u0626"+ - "\u0627\7T\2\2\u0627\u0628\7a\2\2\u0628\u0629\7U\2\2\u0629\u062a\7G\2\2"+ - "\u062a\u062b\7E\2\2\u062b\u062c\7Q\2\2\u062c\u062d\7P\2\2\u062d\u062e"+ - "\7F\2\2\u062e\u0124\3\2\2\2\u062f\u0630\7T\2\2\u0630\u0631\7C\2\2\u0631"+ - "\u0632\7V\2\2\u0632\u0633\7G\2\2\u0633\u0126\3\2\2\2\u0634\u0635\7U\2"+ - "\2\u0635\u0636\7R\2\2\u0636\u0637\7C\2\2\u0637\u0638\7T\2\2\u0638\u0639"+ - "\7M\2\2\u0639\u063a\7N\2\2\u063a\u063b\7K\2\2\u063b\u063c\7P\2\2\u063c"+ - "\u063d\7G\2\2\u063d\u0128\3\2\2\2\u063e\u063f\7E\2\2\u063f\u012a\3\2\2"+ - "\2\u0640\u0641\7F\2\2\u0641\u0642\7E\2\2\u0642\u012c\3\2\2\2\u0643\u0644"+ - "\7C\2\2\u0644\u0645\7D\2\2\u0645\u0646\7U\2\2\u0646\u012e\3\2\2\2\u0647"+ - "\u0648\7E\2\2\u0648\u0649\7G\2\2\u0649\u064a\7K\2\2\u064a\u064b\7N\2\2"+ - "\u064b\u0130\3\2\2\2\u064c\u064d\7E\2\2\u064d\u064e\7G\2\2\u064e\u064f"+ - "\7K\2\2\u064f\u0650\7N\2\2\u0650\u0651\7K\2\2\u0651\u0652\7P\2\2\u0652"+ - "\u0653\7I\2\2\u0653\u0132\3\2\2\2\u0654\u0655\7E\2\2\u0655\u0656\7Q\2"+ - "\2\u0656\u0657\7P\2\2\u0657\u0658\7X\2\2\u0658\u0134\3\2\2\2\u0659\u065a"+ - "\7E\2\2\u065a\u065b\7T\2\2\u065b\u065c\7E\2\2\u065c\u065d\7\65\2\2\u065d"+ - "\u065e\7\64\2\2\u065e\u0136\3\2\2\2\u065f\u0660\7G\2\2\u0660\u0138\3\2"+ - "\2\2\u0661\u0662\7G\2\2\u0662\u0663\7Z\2\2\u0663\u0664\7R\2\2\u0664\u013a"+ - "\3\2\2\2\u0665\u0666\7H\2\2\u0666\u0667\7N\2\2\u0667\u0668\7Q\2\2\u0668"+ - "\u0669\7Q\2\2\u0669\u066a\7T\2\2\u066a\u013c\3\2\2\2\u066b\u066c\7N\2"+ - "\2\u066c\u066d\7P\2\2\u066d\u013e\3\2\2\2\u066e\u066f\7N\2\2\u066f\u0670"+ - "\7Q\2\2\u0670\u0671\7I\2\2\u0671\u0140\3\2\2\2\u0672\u0673\7N\2\2\u0673"+ - "\u0674\7Q\2\2\u0674\u0675\7I\2\2\u0675\u0676\7\63\2\2\u0676\u0677\7\62"+ - "\2\2\u0677\u0142\3\2\2\2\u0678\u0679\7N\2\2\u0679\u067a\7Q\2\2\u067a\u067b"+ - "\7I\2\2\u067b\u067c\7\64\2\2\u067c\u0144\3\2\2\2\u067d\u067e\7O\2\2\u067e"+ - "\u067f\7Q\2\2\u067f\u0680\7F\2\2\u0680\u0146\3\2\2\2\u0681\u0682\7R\2"+ - "\2\u0682\u0683\7K\2\2\u0683\u0148\3\2\2\2\u0684\u0685\7R\2\2\u0685\u0686"+ - "\7Q\2\2\u0686\u0687\7Y\2\2\u0687\u014a\3\2\2\2\u0688\u0689\7R\2\2\u0689"+ - "\u068a\7Q\2\2\u068a\u068b\7Y\2\2\u068b\u068c\7G\2\2\u068c\u068d\7T\2\2"+ - "\u068d\u014c\3\2\2\2\u068e\u068f\7T\2\2\u068f\u0690\7C\2\2\u0690\u0691"+ - "\7P\2\2\u0691\u0692\7F\2\2\u0692\u014e\3\2\2\2\u0693\u0694\7T\2\2\u0694"+ - "\u0695\7Q\2\2\u0695\u0696\7W\2\2\u0696\u0697\7P\2\2\u0697\u0698\7F\2\2"+ - "\u0698\u0150\3\2\2\2\u0699\u069a\7U\2\2\u069a\u069b\7K\2\2\u069b\u069c"+ - "\7I\2\2\u069c\u069d\7P\2\2\u069d\u0152\3\2\2\2\u069e\u069f\7U\2\2\u069f"+ - "\u06a0\7S\2\2\u06a0\u06a1\7T\2\2\u06a1\u06a2\7V\2\2\u06a2\u0154\3\2\2"+ - "\2\u06a3\u06a4\7V\2\2\u06a4\u06a5\7T\2\2\u06a5\u06a6\7W\2\2\u06a6\u06a7"+ - "\7P\2\2\u06a7\u06a8\7E\2\2\u06a8\u06a9\7C\2\2\u06a9\u06aa\7V\2\2\u06aa"+ - "\u06ab\7G\2\2\u06ab\u0156\3\2\2\2\u06ac\u06ad\7C\2\2\u06ad\u06ae\7E\2"+ - "\2\u06ae\u06af\7Q\2\2\u06af\u06b0\7U\2\2\u06b0\u0158\3\2\2\2\u06b1\u06b2"+ - "\7C\2\2\u06b2\u06b3\7U\2\2\u06b3\u06b4\7K\2\2\u06b4\u06b5\7P\2\2\u06b5"+ - "\u015a\3\2\2\2\u06b6\u06b7\7C\2\2\u06b7\u06b8\7V\2\2\u06b8\u06b9\7C\2"+ - "\2\u06b9\u06ba\7P\2\2\u06ba\u015c\3\2\2\2\u06bb\u06bc\7C\2\2\u06bc\u06bd"+ - "\7V\2\2\u06bd\u06be\7C\2\2\u06be\u06bf\7P\2\2\u06bf\u06c0\7\64\2\2\u06c0"+ - "\u015e\3\2\2\2\u06c1\u06c2\7E\2\2\u06c2\u06c3\7Q\2\2\u06c3\u06c4\7U\2"+ - "\2\u06c4\u0160\3\2\2\2\u06c5\u06c6\7E\2\2\u06c6\u06c7\7Q\2\2\u06c7\u06c8"+ - "\7V\2\2\u06c8\u0162\3\2\2\2\u06c9\u06ca\7F\2\2\u06ca\u06cb\7G\2\2\u06cb"+ - "\u06cc\7I\2\2\u06cc\u06cd\7T\2\2\u06cd\u06ce\7G\2\2\u06ce\u06cf\7G\2\2"+ - "\u06cf\u06d0\7U\2\2\u06d0\u0164\3\2\2\2\u06d1\u06d2\7T\2\2\u06d2\u06d3"+ - "\7C\2\2\u06d3\u06d4\7F\2\2\u06d4\u06d5\7K\2\2\u06d5\u06d6\7C\2\2\u06d6"+ - "\u06d7\7P\2\2\u06d7\u06d8\7U\2\2\u06d8\u0166\3\2\2\2\u06d9\u06da\7U\2"+ - "\2\u06da\u06db\7K\2\2\u06db\u06dc\7P\2\2\u06dc\u0168\3\2\2\2\u06dd\u06de"+ - "\7V\2\2\u06de\u06df\7C\2\2\u06df\u06e0\7P\2\2\u06e0\u016a\3\2\2\2\u06e1"+ - "\u06e2\7C\2\2\u06e2\u06e3\7F\2\2\u06e3\u06e4\7F\2\2\u06e4\u06e5\7F\2\2"+ - "\u06e5\u06e6\7C\2\2\u06e6\u06e7\7V\2\2\u06e7\u06e8\7G\2\2\u06e8\u016c"+ - "\3\2\2\2\u06e9\u06ea\7F\2\2\u06ea\u06eb\7C\2\2\u06eb\u06ec\7V\2\2\u06ec"+ - "\u06ed\7G\2\2\u06ed\u016e\3\2\2\2\u06ee\u06ef\7F\2\2\u06ef\u06f0\7C\2"+ - "\2\u06f0\u06f1\7V\2\2\u06f1\u06f2\7G\2\2\u06f2\u06f3\7a\2\2\u06f3\u06f4"+ - "\7C\2\2\u06f4\u06f5\7F\2\2\u06f5\u06f6\7F\2\2\u06f6\u0170\3\2\2\2\u06f7"+ - "\u06f8\7F\2\2\u06f8\u06f9\7C\2\2\u06f9\u06fa\7V\2\2\u06fa\u06fb\7G\2\2"+ - "\u06fb\u06fc\7a\2\2\u06fc\u06fd\7U\2\2\u06fd\u06fe\7W\2\2\u06fe\u06ff"+ - "\7D\2\2\u06ff\u0172\3\2\2\2\u0700\u0701\7F\2\2\u0701\u0702\7C\2\2\u0702"+ - "\u0703\7[\2\2\u0703\u0704\7Q\2\2\u0704\u0705\7H\2\2\u0705\u0706\7O\2\2"+ - "\u0706\u0707\7Q\2\2\u0707\u0708\7P\2\2\u0708\u0709\7V\2\2\u0709\u070a"+ - "\7J\2\2\u070a\u0174\3\2\2\2\u070b\u070c\7F\2\2\u070c\u070d\7C\2\2\u070d"+ - "\u070e\7[\2\2\u070e\u070f\7Q\2\2\u070f\u0710\7H\2\2\u0710\u0711\7Y\2\2"+ - "\u0711\u0712\7G\2\2\u0712\u0713\7G\2\2\u0713\u0714\7M\2\2\u0714\u0176"+ - "\3\2\2\2\u0715\u0716\7F\2\2\u0716\u0717\7C\2\2\u0717\u0718\7[\2\2\u0718"+ - "\u0719\7Q\2\2\u0719\u071a\7H\2\2\u071a\u071b\7[\2\2\u071b\u071c\7G\2\2"+ - "\u071c\u071d\7C\2\2\u071d\u071e\7T\2\2\u071e\u0178\3\2\2\2\u071f\u0720"+ - "\7F\2\2\u0720\u0721\7C\2\2\u0721\u0722\7[\2\2\u0722\u0723\7P\2\2\u0723"+ - "\u0724\7C\2\2\u0724\u0725\7O\2\2\u0725\u0726\7G\2\2\u0726\u017a\3\2\2"+ - "\2\u0727\u0728\7H\2\2\u0728\u0729\7T\2\2\u0729\u072a\7Q\2\2\u072a\u072b"+ - "\7O\2\2\u072b\u072c\7a\2\2\u072c\u072d\7F\2\2\u072d\u072e\7C\2\2\u072e"+ - "\u072f\7[\2\2\u072f\u0730\7U\2\2\u0730\u017c\3\2\2\2\u0731\u0732\7O\2"+ - "\2\u0732\u0733\7Q\2\2\u0733\u0734\7P\2\2\u0734\u0735\7V\2\2\u0735\u0736"+ - "\7J\2\2\u0736\u0737\7P\2\2\u0737\u0738\7C\2\2\u0738\u0739\7O\2\2\u0739"+ - "\u073a\7G\2\2\u073a\u017e\3\2\2\2\u073b\u073c\7U\2\2\u073c\u073d\7W\2"+ - "\2\u073d\u073e\7D\2\2\u073e\u073f\7F\2\2\u073f\u0740\7C\2\2\u0740\u0741"+ - "\7V\2\2\u0741\u0742\7G\2\2\u0742\u0180\3\2\2\2\u0743\u0744\7V\2\2\u0744"+ - "\u0745\7K\2\2\u0745\u0746\7O\2\2\u0746\u0747\7G\2\2\u0747\u0182\3\2\2"+ - "\2\u0748\u0749\7V\2\2\u0749\u074a\7K\2\2\u074a\u074b\7O\2\2\u074b\u074c"+ - "\7G\2\2\u074c\u074d\7a\2\2\u074d\u074e\7V\2\2\u074e\u074f\7Q\2\2\u074f"+ - "\u0750\7a\2\2\u0750\u0751\7U\2\2\u0751\u0752\7G\2\2\u0752\u0753\7E\2\2"+ - "\u0753\u0184\3\2\2\2\u0754\u0755\7V\2\2\u0755\u0756\7K\2\2\u0756\u0757"+ - "\7O\2\2\u0757\u0758\7G\2\2\u0758\u0759\7U\2\2\u0759\u075a\7V\2\2\u075a"+ - "\u075b\7C\2\2\u075b\u075c\7O\2\2\u075c\u075d\7R\2\2\u075d\u0186\3\2\2"+ - "\2\u075e\u075f\7F\2\2\u075f\u0760\7C\2\2\u0760\u0761\7V\2\2\u0761\u0762"+ - "\7G\2\2\u0762\u0763\7a\2\2\u0763\u0764\7H\2\2\u0764\u0765\7Q\2\2\u0765"+ - "\u0766\7T\2\2\u0766\u0767\7O\2\2\u0767\u0768\7C\2\2\u0768\u0769\7V\2\2"+ - "\u0769\u0188\3\2\2\2\u076a\u076b\7V\2\2\u076b\u076c\7Q\2\2\u076c\u076d"+ - "\7a\2\2\u076d\u076e\7F\2\2\u076e\u076f\7C\2\2\u076f\u0770\7[\2\2\u0770"+ - "\u0771\7U\2\2\u0771\u018a\3\2\2\2\u0772\u0773\7U\2\2\u0773\u0774\7W\2"+ - "\2\u0774\u0775\7D\2\2\u0775\u0776\7U\2\2\u0776\u0777\7V\2\2\u0777\u0778"+ - "\7T\2\2\u0778\u018c\3\2\2\2\u0779\u077a\7U\2\2\u077a\u077b\7W\2\2\u077b"+ - "\u077c\7D\2\2\u077c\u077d\7U\2\2\u077d\u077e\7V\2\2\u077e\u077f\7T\2\2"+ - "\u077f\u0780\7K\2\2\u0780\u0781\7P\2\2\u0781\u0782\7I\2\2\u0782\u018e"+ - "\3\2\2\2\u0783\u0784\7N\2\2\u0784\u0785\7V\2\2\u0785\u0786\7T\2\2\u0786"+ - "\u0787\7K\2\2\u0787\u0788\7O\2\2\u0788\u0190\3\2\2\2\u0789\u078a\7T\2"+ - "\2\u078a\u078b\7V\2\2\u078b\u078c\7T\2\2\u078c\u078d\7K\2\2\u078d\u078e"+ - "\7O\2\2\u078e\u0192\3\2\2\2\u078f\u0790\7V\2\2\u0790\u0791\7T\2\2\u0791"+ - "\u0792\7K\2\2\u0792\u0793\7O\2\2\u0793\u0194\3\2\2\2\u0794\u0795\7V\2"+ - "\2\u0795\u0796\7Q\2\2\u0796\u0196\3\2\2\2\u0797\u0798\7N\2\2\u0798\u0799"+ - "\7Q\2\2\u0799\u079a\7Y\2\2\u079a\u079b\7G\2\2\u079b\u079c\7T\2\2\u079c"+ - "\u0198\3\2\2\2\u079d\u079e\7W\2\2\u079e\u079f\7R\2\2\u079f\u07a0\7R\2"+ - "\2\u07a0\u07a1\7G\2\2\u07a1\u07a2\7T\2\2\u07a2\u019a\3\2\2\2\u07a3\u07a4"+ - "\7E\2\2\u07a4\u07a5\7Q\2\2\u07a5\u07a6\7P\2\2\u07a6\u07a7\7E\2\2\u07a7"+ - "\u07a8\7C\2\2\u07a8\u07a9\7V\2\2\u07a9\u019c\3\2\2\2\u07aa\u07ab\7E\2"+ - "\2\u07ab\u07ac\7Q\2\2\u07ac\u07ad\7P\2\2\u07ad\u07ae\7E\2\2\u07ae\u07af"+ - "\7C\2\2\u07af\u07b0\7V\2\2\u07b0\u07b1\7a\2\2\u07b1\u07b2\7Y\2\2\u07b2"+ - "\u07b3\7U\2\2\u07b3\u019e\3\2\2\2\u07b4\u07b5\7N\2\2\u07b5\u07b6\7G\2"+ - "\2\u07b6\u07b7\7P\2\2\u07b7\u07b8\7I\2\2\u07b8\u07b9\7V\2\2\u07b9\u07ba"+ - "\7J\2\2\u07ba\u01a0\3\2\2\2\u07bb\u07bc\7U\2\2\u07bc\u07bd\7V\2\2\u07bd"+ - "\u07be\7T\2\2\u07be\u07bf\7E\2\2\u07bf\u07c0\7O\2\2\u07c0\u07c1\7R\2\2"+ - "\u07c1\u01a2\3\2\2\2\u07c2\u07c3\7T\2\2\u07c3\u07c4\7K\2\2\u07c4\u07c5"+ - "\7I\2\2\u07c5\u07c6\7J\2\2\u07c6\u07c7\7V\2\2\u07c7\u01a4\3\2\2\2\u07c8"+ - "\u07c9\7N\2\2\u07c9\u07ca\7G\2\2\u07ca\u07cb\7H\2\2\u07cb\u07cc\7V\2\2"+ - "\u07cc\u01a6\3\2\2\2\u07cd\u07ce\7C\2\2\u07ce\u07cf\7U\2\2\u07cf\u07d0"+ - "\7E\2\2\u07d0\u07d1\7K\2\2\u07d1\u07d2\7K\2\2\u07d2\u01a8\3\2\2\2\u07d3"+ - "\u07d4\7N\2\2\u07d4\u07d5\7Q\2\2\u07d5\u07d6\7E\2\2\u07d6\u07d7\7C\2\2"+ - "\u07d7\u07d8\7V\2\2\u07d8\u07d9\7G\2\2\u07d9\u01aa\3\2\2\2\u07da\u07db"+ - "\7T\2\2\u07db\u07dc\7G\2\2\u07dc\u07dd\7R\2\2\u07dd\u07de\7N\2\2\u07de"+ - "\u07df\7C\2\2\u07df\u07e0\7E\2\2\u07e0\u07e1\7G\2\2\u07e1\u01ac\3\2\2"+ - "\2\u07e2\u07e3\7E\2\2\u07e3\u07e4\7C\2\2\u07e4\u07e5\7U\2\2\u07e5\u07e6"+ - "\7V\2\2\u07e6\u01ae\3\2\2\2\u07e7\u07e8\7N\2\2\u07e8\u07e9\7K\2\2\u07e9"+ - "\u07ea\7M\2\2\u07ea\u07eb\7G\2\2\u07eb\u01b0\3\2\2\2\u07ec\u07ed\7K\2"+ - "\2\u07ed\u07ee\7U\2\2\u07ee\u07ef\7P\2\2\u07ef\u07f0\7W\2\2\u07f0\u07f1"+ - "\7N\2\2\u07f1\u07f2\7N\2\2\u07f2\u01b2\3\2\2\2\u07f3\u07f4\7K\2\2\u07f4"+ - "\u07f5\7U\2\2\u07f5\u07f6\7P\2\2\u07f6\u07f7\7Q\2\2\u07f7\u07f8\7V\2\2"+ - "\u07f8\u07f9\7P\2\2\u07f9\u07fa\7W\2\2\u07fa\u07fb\7N\2\2\u07fb\u07fc"+ - "\7N\2\2\u07fc\u01b4\3\2\2\2\u07fd\u07fe\7K\2\2\u07fe\u07ff\7H\2\2\u07ff"+ - "\u0800\7P\2\2\u0800\u0801\7W\2\2\u0801\u0802\7N\2\2\u0802\u0803\7N\2\2"+ - "\u0803\u01b6\3\2\2\2\u0804\u0805\7P\2\2\u0805\u0806\7W\2\2\u0806\u0807"+ - "\7N\2\2\u0807\u0808\7N\2\2\u0808\u0809\7K\2\2\u0809\u080a\7H\2\2\u080a"+ - "\u01b8\3\2\2\2\u080b\u080c\7K\2\2\u080c\u080d\7H\2\2\u080d\u01ba\3\2\2"+ - "\2\u080e\u080f\7O\2\2\u080f\u0810\7C\2\2\u0810\u0811\7V\2\2\u0811\u0812"+ - "\7E\2\2\u0812\u0813\7J\2\2\u0813\u01bc\3\2\2\2\u0814\u0815\7O\2\2\u0815"+ - "\u0816\7C\2\2\u0816\u0817\7V\2\2\u0817\u0818\7E\2\2\u0818\u0819\7J\2\2"+ - "\u0819\u081a\7a\2\2\u081a\u081b\7R\2\2\u081b\u081c\7J\2\2\u081c\u081d"+ - "\7T\2\2\u081d\u081e\7C\2\2\u081e\u081f\7U\2\2\u081f\u0820\7G\2\2\u0820"+ - "\u01be\3\2\2\2\u0821\u0822\7U\2\2\u0822\u0823\7K\2\2\u0823\u0824\7O\2"+ - "\2\u0824\u0825\7R\2\2\u0825\u0826\7N\2\2\u0826\u0827\7G\2\2\u0827\u0828"+ - "\7a\2\2\u0828\u0829\7S\2\2\u0829\u082a\7W\2\2\u082a\u082b\7G\2\2\u082b"+ - "\u082c\7T\2\2\u082c\u082d\7[\2\2\u082d\u082e\7a\2\2\u082e\u082f\7U\2\2"+ - "\u082f\u0830\7V\2\2\u0830\u0831\7T\2\2\u0831\u0832\7K\2\2\u0832\u0833"+ - "\7P\2\2\u0833\u0834\7I\2\2\u0834\u01c0\3\2\2\2\u0835\u0836\7C\2\2\u0836"+ - "\u0837\7N\2\2\u0837\u0838\7N\2\2\u0838\u0839\7Q\2\2\u0839\u083a\7Y\2\2"+ - "\u083a\u083b\7a\2\2\u083b\u083c\7N\2\2\u083c\u083d\7G\2\2\u083d\u083e"+ - "\7C\2\2\u083e\u083f\7F\2\2\u083f\u0840\7K\2\2\u0840\u0841\7P\2\2\u0841"+ - "\u0842\7I\2\2\u0842\u0843\7a\2\2\u0843\u0844\7Y\2\2\u0844\u0845\7K\2\2"+ - "\u0845\u0846\7N\2\2\u0846\u0847\7F\2\2\u0847\u0848\7E\2\2\u0848\u0849"+ - "\7C\2\2\u0849\u084a\7T\2\2\u084a\u084b\7F\2\2\u084b\u01c2\3\2\2\2\u084c"+ - "\u084d\7C\2\2\u084d\u084e\7P\2\2\u084e\u084f\7C\2\2\u084f\u0850\7N\2\2"+ - "\u0850\u0851\7[\2\2\u0851\u0852\7\\\2\2\u0852\u0853\7G\2\2\u0853\u0854"+ - "\7a\2\2\u0854\u0855\7Y\2\2\u0855\u0856\7K\2\2\u0856\u0857\7N\2\2\u0857"+ - "\u0858\7F\2\2\u0858\u0859\7E\2\2\u0859\u085a\7C\2\2\u085a\u085b\7T\2\2"+ - "\u085b\u085c\7F\2\2\u085c\u01c4\3\2\2\2\u085d\u085e\7C\2\2\u085e\u085f"+ - "\7P\2\2\u085f\u0860\7C\2\2\u0860\u0861\7N\2\2\u0861\u0862\7[\2\2\u0862"+ - "\u0863\7\\\2\2\u0863\u0864\7G\2\2\u0864\u0865\7T\2\2\u0865\u01c6\3\2\2"+ - "\2\u0866\u0867\7C\2\2\u0867\u0868\7W\2\2\u0868\u0869\7V\2\2\u0869\u086a"+ - "\7Q\2\2\u086a\u086b\7a\2\2\u086b\u086c\7I\2\2\u086c\u086d\7G\2\2\u086d"+ - "\u086e\7P\2\2\u086e\u086f\7G\2\2\u086f\u0870\7T\2\2\u0870\u0871\7C\2\2"+ - "\u0871\u0872\7V\2\2\u0872\u0873\7G\2\2\u0873\u0874\7a\2\2\u0874\u0875"+ - "\7U\2\2\u0875\u0876\7[\2\2\u0876\u0877\7P\2\2\u0877\u0878\7Q\2\2\u0878"+ - "\u0879\7P\2\2\u0879\u087a\7[\2\2\u087a\u087b\7O\2\2\u087b\u087c\7U\2\2"+ - "\u087c\u087d\7a\2\2\u087d\u087e\7R\2\2\u087e\u087f\7J\2\2\u087f\u0880"+ - "\7T\2\2\u0880\u0881\7C\2\2\u0881\u0882\7U\2\2\u0882\u0883\7G\2\2\u0883"+ - "\u0884\7a\2\2\u0884\u0885\7S\2\2\u0885\u0886\7W\2\2\u0886\u0887\7G\2\2"+ - "\u0887\u0888\7T\2\2\u0888\u0889\7[\2\2\u0889\u01c8\3\2\2\2\u088a\u088b"+ - "\7D\2\2\u088b\u088c\7Q\2\2\u088c\u088d\7Q\2\2\u088d\u088e\7U\2\2\u088e"+ - "\u088f\7V\2\2\u088f\u01ca\3\2\2\2\u0890\u0891\7E\2\2\u0891\u0892\7W\2"+ - "\2\u0892\u0893\7V\2\2\u0893\u0894\7Q\2\2\u0894\u0895\7H\2\2\u0895\u0896"+ - "\7H\2\2\u0896\u0897\7a\2\2\u0897\u0898\7H\2\2\u0898\u0899\7T\2\2\u0899"+ - "\u089a\7G\2\2\u089a\u089b\7S\2\2\u089b\u089c\7W\2\2\u089c\u089d\7G\2\2"+ - "\u089d\u089e\7P\2\2\u089e\u089f\7E\2\2\u089f\u08a0\7[\2\2\u08a0\u01cc"+ - "\3\2\2\2\u08a1\u08a2\7F\2\2\u08a2\u08a3\7G\2\2\u08a3\u08a4\7H\2\2\u08a4"+ - "\u08a5\7C\2\2\u08a5\u08a6\7W\2\2\u08a6\u08a7\7N\2\2\u08a7\u08a8\7V\2\2"+ - "\u08a8\u08a9\7a\2\2\u08a9\u08aa\7H\2\2\u08aa\u08ab\7K\2\2\u08ab\u08ac"+ - "\7G\2\2\u08ac\u08ad\7N\2\2\u08ad\u08ae\7F\2\2\u08ae\u01ce\3\2\2\2\u08af"+ - "\u08b0\7F\2\2\u08b0\u08b1\7G\2\2\u08b1\u08b2\7H\2\2\u08b2\u08b3\7C\2\2"+ - "\u08b3\u08b4\7W\2\2\u08b4\u08b5\7N\2\2\u08b5\u08b6\7V\2\2\u08b6\u08b7"+ - "\7a\2\2\u08b7\u08b8\7Q\2\2\u08b8\u08b9\7R\2\2\u08b9\u08ba\7G\2\2\u08ba"+ - "\u08bb\7T\2\2\u08bb\u08bc\7C\2\2\u08bc\u08bd\7V\2\2\u08bd\u08be\7Q\2\2"+ - "\u08be\u08bf\7T\2\2\u08bf\u01d0\3\2\2\2\u08c0\u08c1\7G\2\2\u08c1\u08c2"+ - "\7P\2\2\u08c2\u08c3\7C\2\2\u08c3\u08c4\7D\2\2\u08c4\u08c5\7N\2\2\u08c5"+ - "\u08c6\7G\2\2\u08c6\u08c7\7a\2\2\u08c7\u08c8\7R\2\2\u08c8\u08c9\7Q\2\2"+ - "\u08c9\u08ca\7U\2\2\u08ca\u08cb\7K\2\2\u08cb\u08cc\7V\2\2\u08cc\u08cd"+ - "\7K\2\2\u08cd\u08ce\7Q\2\2\u08ce\u08cf\7P\2\2\u08cf\u08d0\7a\2\2\u08d0"+ - "\u08d1\7K\2\2\u08d1\u08d2\7P\2\2\u08d2\u08d3\7E\2\2\u08d3\u08d4\7T\2\2"+ - "\u08d4\u08d5\7G\2\2\u08d5\u08d6\7O\2\2\u08d6\u08d7\7G\2\2\u08d7\u08d8"+ - "\7P\2\2\u08d8\u08d9\7V\2\2\u08d9\u08da\7U\2\2\u08da\u01d2\3\2\2\2\u08db"+ - "\u08dc\7H\2\2\u08dc\u08dd\7N\2\2\u08dd\u08de\7C\2\2\u08de\u08df\7I\2\2"+ - "\u08df\u08e0\7U\2\2\u08e0\u01d4\3\2\2\2\u08e1\u08e2\7H\2\2\u08e2\u08e3"+ - "\7W\2\2\u08e3\u08e4\7\\\2\2\u08e4\u08e5\7\\\2\2\u08e5\u08e6\7[\2\2\u08e6"+ - "\u08e7\7a\2\2\u08e7\u08e8\7O\2\2\u08e8\u08e9\7C\2\2\u08e9\u08ea\7Z\2\2"+ - "\u08ea\u08eb\7a\2\2\u08eb\u08ec\7G\2\2\u08ec\u08ed\7Z\2\2\u08ed\u08ee"+ - "\7R\2\2\u08ee\u08ef\7C\2\2\u08ef\u08f0\7P\2\2\u08f0\u08f1\7U\2\2\u08f1"+ - "\u08f2\7K\2\2\u08f2\u08f3\7Q\2\2\u08f3\u08f4\7P\2\2\u08f4\u08f5\7U\2\2"+ - "\u08f5\u01d6\3\2\2\2\u08f6\u08f7\7H\2\2\u08f7\u08f8\7W\2\2\u08f8\u08f9"+ - "\7\\\2\2\u08f9\u08fa\7\\\2\2\u08fa\u08fb\7[\2\2\u08fb\u08fc\7a\2\2\u08fc"+ - "\u08fd\7R\2\2\u08fd\u08fe\7T\2\2\u08fe\u08ff\7G\2\2\u08ff\u0900\7H\2\2"+ - "\u0900\u0901\7K\2\2\u0901\u0902\7Z\2\2\u0902\u0903\7a\2\2\u0903\u0904"+ - "\7N\2\2\u0904\u0905\7G\2\2\u0905\u0906\7P\2\2\u0906\u0907\7I\2\2\u0907"+ - "\u0908\7V\2\2\u0908\u0909\7J\2\2\u0909\u01d8\3\2\2\2\u090a\u090b\7H\2"+ - "\2\u090b\u090c\7W\2\2\u090c\u090d\7\\\2\2\u090d\u090e\7\\\2\2\u090e\u090f"+ - "\7[\2\2\u090f\u0910\7a\2\2\u0910\u0911\7V\2\2\u0911\u0912\7T\2\2\u0912"+ - "\u0913\7C\2\2\u0913\u0914\7P\2\2\u0914\u0915\7U\2\2\u0915\u0916\7R\2\2"+ - "\u0916\u0917\7Q\2\2\u0917\u0918\7U\2\2\u0918\u0919\7K\2\2\u0919\u091a"+ - "\7V\2\2\u091a\u091b\7K\2\2\u091b\u091c\7Q\2\2\u091c\u091d\7P\2\2\u091d"+ - "\u091e\7U\2\2\u091e\u01da\3\2\2\2\u091f\u0920\7H\2\2\u0920\u0921\7W\2"+ - "\2\u0921\u0922\7\\\2\2\u0922\u0923\7\\\2\2\u0923\u0924\7[\2\2\u0924\u0925"+ - "\7a\2\2\u0925\u0926\7T\2\2\u0926\u0927\7G\2\2\u0927\u0928\7Y\2\2\u0928"+ - "\u0929\7T\2\2\u0929\u092a\7K\2\2\u092a\u092b\7V\2\2\u092b\u092c\7G\2\2"+ - "\u092c\u01dc\3\2\2\2\u092d\u092e\7H\2\2\u092e\u092f\7W\2\2\u092f\u0930"+ - "\7\\\2\2\u0930\u0931\7\\\2\2\u0931\u0932\7K\2\2\u0932\u0933\7P\2\2\u0933"+ - "\u0934\7G\2\2\u0934\u0935\7U\2\2\u0935\u0936\7U\2\2\u0936\u01de\3\2\2"+ - "\2\u0937\u0938\7N\2\2\u0938\u0939\7G\2\2\u0939\u093a\7P\2\2\u093a\u093b"+ - "\7K\2\2\u093b\u093c\7G\2\2\u093c\u093d\7P\2\2\u093d\u093e\7V\2\2\u093e"+ - "\u01e0\3\2\2\2\u093f\u0940\7N\2\2\u0940\u0941\7Q\2\2\u0941\u0942\7Y\2"+ - "\2\u0942\u0943\7a\2\2\u0943\u0944\7H\2\2\u0944\u0945\7T\2\2\u0945\u0946"+ - "\7G\2\2\u0946\u0947\7S\2\2\u0947\u0948\7a\2\2\u0948\u0949\7Q\2\2\u0949"+ - "\u094a\7R\2\2\u094a\u094b\7G\2\2\u094b\u094c\7T\2\2\u094c\u094d\7C\2\2"+ - "\u094d\u094e\7V\2\2\u094e\u094f\7Q\2\2\u094f\u0950\7T\2\2\u0950\u01e2"+ - "\3\2\2\2\u0951\u0952\7O\2\2\u0952\u0953\7C\2\2\u0953\u0954\7Z\2\2\u0954"+ - "\u0955\7a\2\2\u0955\u0956\7F\2\2\u0956\u0957\7G\2\2\u0957\u0958\7V\2\2"+ - "\u0958\u0959\7G\2\2\u0959\u095a\7T\2\2\u095a\u095b\7O\2\2\u095b\u095c"+ - "\7K\2\2\u095c\u095d\7P\2\2\u095d\u095e\7K\2\2\u095e\u095f\7\\\2\2\u095f"+ - "\u0960\7G\2\2\u0960\u0961\7F\2\2\u0961\u0962\7a\2\2\u0962\u0963\7U\2\2"+ - "\u0963\u0964\7V\2\2\u0964\u0965\7C\2\2\u0965\u0966\7V\2\2\u0966\u0967"+ - "\7G\2\2\u0967\u0968\7U\2\2\u0968\u01e4\3\2\2\2\u0969\u096a\7O\2\2\u096a"+ - "\u096b\7C\2\2\u096b\u096c\7Z\2\2\u096c\u096d\7a\2\2\u096d\u096e\7G\2\2"+ - "\u096e\u096f\7Z\2\2\u096f\u0970\7R\2\2\u0970\u0971\7C\2\2\u0971\u0972"+ - "\7P\2\2\u0972\u0973\7U\2\2\u0973\u0974\7K\2\2\u0974\u0975\7Q\2\2\u0975"+ - "\u0976\7P\2\2\u0976\u0977\7U\2\2\u0977\u01e6\3\2\2\2\u0978\u0979\7O\2"+ - "\2\u0979\u097a\7K\2\2\u097a\u097b\7P\2\2\u097b\u097c\7K\2\2\u097c\u097d"+ - "\7O\2\2\u097d\u097e\7W\2\2\u097e\u097f\7O\2\2\u097f\u0980\7a\2\2\u0980"+ - "\u0981\7U\2\2\u0981\u0982\7J\2\2\u0982\u0983\7Q\2\2\u0983\u0984\7W\2\2"+ - "\u0984\u0985\7N\2\2\u0985\u0986\7F\2\2\u0986\u0987\7a\2\2\u0987\u0988"+ - "\7O\2\2\u0988\u0989\7C\2\2\u0989\u098a\7V\2\2\u098a\u098b\7E\2\2\u098b"+ - "\u098c\7J\2\2\u098c\u01e8\3\2\2\2\u098d\u098e\7Q\2\2\u098e\u098f\7R\2"+ - "\2\u098f\u0990\7G\2\2\u0990\u0991\7T\2\2\u0991\u0992\7C\2\2\u0992\u0993"+ - "\7V\2\2\u0993\u0994\7Q\2\2\u0994\u0995\7T\2\2\u0995\u01ea\3\2\2\2\u0996"+ - "\u0997\7R\2\2\u0997\u0998\7J\2\2\u0998\u0999\7T\2\2\u0999\u099a\7C\2\2"+ - "\u099a\u099b\7U\2\2\u099b\u099c\7G\2\2\u099c\u099d\7a\2\2\u099d\u099e"+ - "\7U\2\2\u099e\u099f\7N\2\2\u099f\u09a0\7Q\2\2\u09a0\u09a1\7R\2\2\u09a1"+ - "\u01ec\3\2\2\2\u09a2\u09a3\7R\2\2\u09a3\u09a4\7T\2\2\u09a4\u09a5\7G\2"+ - "\2\u09a5\u09a6\7H\2\2\u09a6\u09a7\7K\2\2\u09a7\u09a8\7Z\2\2\u09a8\u09a9"+ - "\7a\2\2\u09a9\u09aa\7N\2\2\u09aa\u09ab\7G\2\2\u09ab\u09ac\7P\2\2\u09ac"+ - "\u09ad\7I\2\2\u09ad\u09ae\7V\2\2\u09ae\u09af\7J\2\2\u09af\u01ee\3\2\2"+ - "\2\u09b0\u09b1\7S\2\2\u09b1\u09b2\7W\2\2\u09b2\u09b3\7Q\2\2\u09b3\u09b4"+ - "\7V\2\2\u09b4\u09b5\7G\2\2\u09b5\u09b6\7a\2\2\u09b6\u09b7\7C\2\2\u09b7"+ - "\u09b8\7P\2\2\u09b8\u09b9\7C\2\2\u09b9\u09ba\7N\2\2\u09ba\u09bb\7[\2\2"+ - "\u09bb\u09bc\7\\\2\2\u09bc\u09bd\7G\2\2\u09bd\u09be\7T\2\2\u09be\u01f0"+ - "\3\2\2\2\u09bf\u09c0\7S\2\2\u09c0\u09c1\7W\2\2\u09c1\u09c2\7Q\2\2\u09c2"+ - "\u09c3\7V\2\2\u09c3\u09c4\7G\2\2\u09c4\u09c5\7a\2\2\u09c5\u09c6\7H\2\2"+ - "\u09c6\u09c7\7K\2\2\u09c7\u09c8\7G\2\2\u09c8\u09c9\7N\2\2\u09c9\u09ca"+ - "\7F\2\2\u09ca\u09cb\7a\2\2\u09cb\u09cc\7U\2\2\u09cc\u09cd\7W\2\2\u09cd"+ - "\u09ce\7H\2\2\u09ce\u09cf\7H\2\2\u09cf\u09d0\7K\2\2\u09d0\u09d1\7Z\2\2"+ - "\u09d1\u01f2\3\2\2\2\u09d2\u09d3\7T\2\2\u09d3\u09d4\7G\2\2\u09d4\u09d5"+ - "\7Y\2\2\u09d5\u09d6\7T\2\2\u09d6\u09d7\7K\2\2\u09d7\u09d8\7V\2\2\u09d8"+ - "\u09d9\7G\2\2\u09d9\u01f4\3\2\2\2\u09da\u09db\7U\2\2\u09db\u09dc\7N\2"+ - "\2\u09dc\u09dd\7Q\2\2\u09dd\u09de\7R\2\2\u09de\u01f6\3\2\2\2\u09df\u09e0"+ - "\7V\2\2\u09e0\u09e1\7K\2\2\u09e1\u09e2\7G\2\2\u09e2\u09e3\7a\2\2\u09e3"+ - "\u09e4\7D\2\2\u09e4\u09e5\7T\2\2\u09e5\u09e6\7G\2\2\u09e6\u09e7\7C\2\2"+ - "\u09e7\u09e8\7M\2\2\u09e8\u09e9\7G\2\2\u09e9\u09ea\7T\2\2\u09ea\u01f8"+ - "\3\2\2\2\u09eb\u09ec\7V\2\2\u09ec\u09ed\7[\2\2\u09ed\u09ee\7R\2\2\u09ee"+ - "\u09ef\7G\2\2\u09ef\u01fa\3\2\2\2\u09f0\u09f1\7\\\2\2\u09f1\u09f2\7G\2"+ - "\2\u09f2\u09f3\7T\2\2\u09f3\u09f4\7Q\2\2\u09f4\u09f5\7a\2\2\u09f5\u09f6"+ - "\7V\2\2\u09f6\u09f7\7G\2\2\u09f7\u09f8\7T\2\2\u09f8\u09f9\7O\2\2\u09f9"+ - "\u09fa\7U\2\2\u09fa\u09fb\7a\2\2\u09fb\u09fc\7S\2\2\u09fc\u09fd\7W\2\2"+ - "\u09fd\u09fe\7G\2\2\u09fe\u09ff\7T\2\2\u09ff\u0a00\7[\2\2\u0a00\u01fc"+ - "\3\2\2\2\u0a01\u0a02\7U\2\2\u0a02\u0a03\7R\2\2\u0a03\u0a04\7C\2\2\u0a04"+ - "\u0a05\7P\2\2\u0a05\u01fe\3\2\2\2\u0a06\u0a07\7O\2\2\u0a07\u0a08\7U\2"+ - "\2\u0a08\u0200\3\2\2\2\u0a09\u0a0a\7U\2\2\u0a0a\u0202\3\2\2\2\u0a0b\u0a0c"+ - "\7O\2\2\u0a0c\u0204\3\2\2\2\u0a0d\u0a0e\7J\2\2\u0a0e\u0206\3\2\2\2\u0a0f"+ - "\u0a10\7Y\2\2\u0a10\u0208\3\2\2\2\u0a11\u0a12\7S\2\2\u0a12\u020a\3\2\2"+ - "\2\u0a13\u0a14\7[\2\2\u0a14\u020c\3\2\2\2\u0a15\u0a16\5\u0215\u010b\2"+ - "\u0a16\u020e\3\2\2\2\u0a17\u0a19\5\u021f\u0110\2\u0a18\u0a17\3\2\2\2\u0a19"+ - "\u0a1a\3\2\2\2\u0a1a\u0a18\3\2\2\2\u0a1a\u0a1b\3\2\2\2\u0a1b\u0210\3\2"+ - "\2\2\u0a1c\u0a1e\5\u021f\u0110\2\u0a1d\u0a1c\3\2\2\2\u0a1e\u0a1f\3\2\2"+ - "\2\u0a1f\u0a1d\3\2\2\2\u0a1f\u0a20\3\2\2\2\u0a20\u0a22\3\2\2\2\u0a21\u0a1d"+ - "\3\2\2\2\u0a21\u0a22\3\2\2\2\u0a22\u0a23\3\2\2\2\u0a23\u0a25\7\60\2\2"+ - "\u0a24\u0a26\5\u021f\u0110\2\u0a25\u0a24\3\2\2\2\u0a26\u0a27\3\2\2\2\u0a27"+ - "\u0a25\3\2\2\2\u0a27\u0a28\3\2\2\2\u0a28\u0212\3\2\2\2\u0a29\u0a2b\t\2"+ - "\2\2\u0a2a\u0a2c\t\3\2\2\u0a2b\u0a2a\3\2\2\2\u0a2c\u0a2d\3\2\2\2\u0a2d"+ - "\u0a2b\3\2\2\2\u0a2d\u0a2e\3\2\2\2\u0a2e\u0a30\3\2\2\2\u0a2f\u0a29\3\2"+ - "\2\2\u0a30\u0a33\3\2\2\2\u0a31\u0a2f\3\2\2\2\u0a31\u0a32\3\2\2\2\u0a32"+ - "\u0214\3\2\2\2\u0a33\u0a31\3\2\2\2\u0a34\u0a36\t\4\2\2\u0a35\u0a34\3\2"+ - "\2\2\u0a36\u0a37\3\2\2\2\u0a37\u0a38\3\2\2\2\u0a37\u0a35\3\2\2\2\u0a38"+ - "\u0a3c\3\2\2\2\u0a39\u0a3b\t\5\2\2\u0a3a\u0a39\3\2\2\2\u0a3b\u0a3e\3\2"+ - "\2\2\u0a3c\u0a3a\3\2\2\2\u0a3c\u0a3d\3\2\2\2\u0a3d\u0216\3\2\2\2\u0a3e"+ - "\u0a3c\3\2\2\2\u0a3f\u0a40\5\u0215\u010b\2\u0a40\u0a41\5\u0213\u010a\2"+ - "\u0a41\u0218\3\2\2\2\u0a42\u0a4a\7$\2\2\u0a43\u0a44\7^\2\2\u0a44\u0a49"+ - "\13\2\2\2\u0a45\u0a46\7$\2\2\u0a46\u0a49\7$\2\2\u0a47\u0a49\n\6\2\2\u0a48"+ - "\u0a43\3\2\2\2\u0a48\u0a45\3\2\2\2\u0a48\u0a47\3\2\2\2\u0a49\u0a4c\3\2"+ - "\2\2\u0a4a\u0a48\3\2\2\2\u0a4a\u0a4b\3\2\2\2\u0a4b\u0a4d\3\2\2\2\u0a4c"+ - "\u0a4a\3\2\2\2\u0a4d\u0a4e\7$\2\2\u0a4e\u021a\3\2\2\2\u0a4f\u0a57\7)\2"+ - "\2\u0a50"; - private static final String _serializedATNSegment1 = - "\u0a51\7^\2\2\u0a51\u0a56\13\2\2\2\u0a52\u0a53\7)\2\2\u0a53\u0a56\7)\2"+ - "\2\u0a54\u0a56\n\7\2\2\u0a55\u0a50\3\2\2\2\u0a55\u0a52\3\2\2\2\u0a55\u0a54"+ - "\3\2\2\2\u0a56\u0a59\3\2\2\2\u0a57\u0a55\3\2\2\2\u0a57\u0a58\3\2\2\2\u0a58"+ - "\u0a5a\3\2\2\2\u0a59\u0a57\3\2\2\2\u0a5a\u0a5b\7)\2\2\u0a5b\u021c\3\2"+ - "\2\2\u0a5c\u0a64\7b\2\2\u0a5d\u0a5e\7^\2\2\u0a5e\u0a63\13\2\2\2\u0a5f"+ - "\u0a60\7b\2\2\u0a60\u0a63\7b\2\2\u0a61\u0a63\n\b\2\2\u0a62\u0a5d\3\2\2"+ - "\2\u0a62\u0a5f\3\2\2\2\u0a62\u0a61\3\2\2\2\u0a63\u0a66\3\2\2\2\u0a64\u0a62"+ - "\3\2\2\2\u0a64\u0a65\3\2\2\2\u0a65\u0a67\3\2\2\2\u0a66\u0a64\3\2\2\2\u0a67"+ - "\u0a68\7b\2\2\u0a68\u021e\3\2\2\2\u0a69\u0a6a\t\t\2\2\u0a6a\u0220\3\2"+ - "\2\2\u0a6b\u0a6c\13\2\2\2\u0a6c\u0a6d\3\2\2\2\u0a6d\u0a6e\b\u0111\2\2"+ - "\u0a6e\u0222\3\2\2\2\21\2\u0a1a\u0a1f\u0a21\u0a27\u0a2d\u0a31\u0a37\u0a3c"+ - "\u0a48\u0a4a\u0a55\u0a57\u0a62\u0a64\3\2\5\2"; - public static final String _serializedATN = Utils.join( - new String[] { - _serializedATNSegment0, - _serializedATNSegment1 - }, - "" - ); - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } -} \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLLexer.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp deleted file mode 100644 index 8078132b4..000000000 --- a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.interp +++ /dev/null @@ -1,634 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -root -pplStatement -commands -searchCommand -whereCommand -fieldsCommand -renameCommand -statsCommand -dedupCommand -sortCommand -evalCommand -headCommand -topCommand -rareCommand -parseCommand -kmeansCommand -kmeansParameter -adCommand -adParameter -fromClause -renameClasue -byClause -statsByClause -bySpanClause -spanClause -sortbyClause -evalClause -statsAggTerm -statsFunction -statsFunctionName -percentileAggFunction -expression -logicalExpression -comparisonExpression -valueExpression -primaryExpression -booleanExpression -relevanceExpression -singleFieldRelevanceFunction -multiFieldRelevanceFunction -tableSource -fieldList -wcFieldList -sortField -sortFieldExpression -fieldExpression -wcFieldExpression -evalFunctionCall -dataTypeFunctionCall -booleanFunctionCall -convertedDataType -evalFunctionName -functionArgs -functionArg -relevanceArg -relevanceArgName -relevanceFieldAndWeight -relevanceFieldWeight -relevanceField -relevanceQuery -relevanceArgValue -mathematicalFunctionBase -trigonometricFunctionName -dateAndTimeFunctionBase -conditionFunctionBase -textFunctionBase -comparisonOperator -binaryOperator -singleFieldRelevanceFunctionName -multiFieldRelevanceFunctionName -literalValue -intervalLiteral -stringLiteral -integerLiteral -decimalLiteral -booleanLiteral -pattern -intervalUnit -timespanUnit -valueList -qualifiedName -wcQualifiedName -ident -wildcard -keywordsCanBeId - - -atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 4, 66, 70, 87, 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, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java deleted file mode 100644 index eaf8c0ca9..000000000 --- a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.java +++ /dev/null @@ -1,6612 +0,0 @@ -// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.2 -import org.antlr.v4.runtime.atn.*; -import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.misc.*; -import org.antlr.v4.runtime.tree.*; -import java.util.List; -import java.util.Iterator; -import java.util.ArrayList; - -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) -public class OpenSearchPPLParser extends Parser { - static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } - - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - new PredictionContextCache(); - public static final int - SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, - EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, - SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, - NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, - ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, - SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, - TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, - CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, - DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, - HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, - MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, - HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, - YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, - DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, - DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, - PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, - COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, - SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, - BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, - MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, - STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, - STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, - EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, - PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, - C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, - EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, - POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, - ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, - RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, - DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, - MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, - DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, - TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, - STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, - LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, - MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, - ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, - BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, - ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, - FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, - LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, - MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, - QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, - TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, - W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, - ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, - ERROR_RECOGNITION=269; - public static final int - RULE_root = 0, RULE_pplStatement = 1, RULE_commands = 2, RULE_searchCommand = 3, - RULE_whereCommand = 4, RULE_fieldsCommand = 5, RULE_renameCommand = 6, - RULE_statsCommand = 7, RULE_dedupCommand = 8, RULE_sortCommand = 9, RULE_evalCommand = 10, - RULE_headCommand = 11, RULE_topCommand = 12, RULE_rareCommand = 13, RULE_parseCommand = 14, - RULE_kmeansCommand = 15, RULE_kmeansParameter = 16, RULE_adCommand = 17, - RULE_adParameter = 18, RULE_fromClause = 19, RULE_renameClasue = 20, RULE_byClause = 21, - RULE_statsByClause = 22, RULE_bySpanClause = 23, RULE_spanClause = 24, - RULE_sortbyClause = 25, RULE_evalClause = 26, RULE_statsAggTerm = 27, - RULE_statsFunction = 28, RULE_statsFunctionName = 29, RULE_percentileAggFunction = 30, - RULE_expression = 31, RULE_logicalExpression = 32, RULE_comparisonExpression = 33, - RULE_valueExpression = 34, RULE_primaryExpression = 35, RULE_booleanExpression = 36, - RULE_relevanceExpression = 37, RULE_singleFieldRelevanceFunction = 38, - RULE_multiFieldRelevanceFunction = 39, RULE_tableSource = 40, RULE_fieldList = 41, - RULE_wcFieldList = 42, RULE_sortField = 43, RULE_sortFieldExpression = 44, - RULE_fieldExpression = 45, RULE_wcFieldExpression = 46, RULE_evalFunctionCall = 47, - RULE_dataTypeFunctionCall = 48, RULE_booleanFunctionCall = 49, RULE_convertedDataType = 50, - RULE_evalFunctionName = 51, RULE_functionArgs = 52, RULE_functionArg = 53, - RULE_relevanceArg = 54, RULE_relevanceArgName = 55, RULE_relevanceFieldAndWeight = 56, - RULE_relevanceFieldWeight = 57, RULE_relevanceField = 58, RULE_relevanceQuery = 59, - RULE_relevanceArgValue = 60, RULE_mathematicalFunctionBase = 61, RULE_trigonometricFunctionName = 62, - RULE_dateAndTimeFunctionBase = 63, RULE_conditionFunctionBase = 64, RULE_textFunctionBase = 65, - RULE_comparisonOperator = 66, RULE_binaryOperator = 67, RULE_singleFieldRelevanceFunctionName = 68, - RULE_multiFieldRelevanceFunctionName = 69, RULE_literalValue = 70, RULE_intervalLiteral = 71, - RULE_stringLiteral = 72, RULE_integerLiteral = 73, RULE_decimalLiteral = 74, - RULE_booleanLiteral = 75, RULE_pattern = 76, RULE_intervalUnit = 77, RULE_timespanUnit = 78, - RULE_valueList = 79, RULE_qualifiedName = 80, RULE_wcQualifiedName = 81, - RULE_ident = 82, RULE_wildcard = 83, RULE_keywordsCanBeId = 84; - private static String[] makeRuleNames() { - return new String[] { - "root", "pplStatement", "commands", "searchCommand", "whereCommand", - "fieldsCommand", "renameCommand", "statsCommand", "dedupCommand", "sortCommand", - "evalCommand", "headCommand", "topCommand", "rareCommand", "parseCommand", - "kmeansCommand", "kmeansParameter", "adCommand", "adParameter", "fromClause", - "renameClasue", "byClause", "statsByClause", "bySpanClause", "spanClause", - "sortbyClause", "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", - "percentileAggFunction", "expression", "logicalExpression", "comparisonExpression", - "valueExpression", "primaryExpression", "booleanExpression", "relevanceExpression", - "singleFieldRelevanceFunction", "multiFieldRelevanceFunction", "tableSource", - "fieldList", "wcFieldList", "sortField", "sortFieldExpression", "fieldExpression", - "wcFieldExpression", "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", - "convertedDataType", "evalFunctionName", "functionArgs", "functionArg", - "relevanceArg", "relevanceArgName", "relevanceFieldAndWeight", "relevanceFieldWeight", - "relevanceField", "relevanceQuery", "relevanceArgValue", "mathematicalFunctionBase", - "trigonometricFunctionName", "dateAndTimeFunctionBase", "conditionFunctionBase", - "textFunctionBase", "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", - "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", - "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", - "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", - "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId" - }; - } - public static final String[] ruleNames = makeRuleNames(); - - private static String[] makeLiteralNames() { - return new String[] { - null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", - "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", - "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", - "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", - "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", - "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", - "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", - "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", - "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", - "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", - "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", - "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", - "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", - "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", - "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", - "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", - "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", - "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", - "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", - "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", - "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", - "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", - "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", - "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", - "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", - "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", - "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", - "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" - }; - } - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static String[] makeSymbolicNames() { - return new String[] { - null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", - "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", - "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", - "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", - "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", - "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", - "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", - "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", - "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", - "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", - "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", - "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } - - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } - - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } - - @Override - - public Vocabulary getVocabulary() { - return VOCABULARY; - } - - @Override - public String getGrammarFileName() { return "OpenSearchPPLParser.g4"; } - - @Override - public String[] getRuleNames() { return ruleNames; } - - @Override - public String getSerializedATN() { return _serializedATN; } - - @Override - public ATN getATN() { return _ATN; } - - public OpenSearchPPLParser(TokenStream input) { - super(input); - _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); - } - - public static class RootContext extends ParserRuleContext { - public TerminalNode EOF() { return getToken(OpenSearchPPLParser.EOF, 0); } - public PplStatementContext pplStatement() { - return getRuleContext(PplStatementContext.class,0); - } - public RootContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_root; } - } - - public final RootContext root() throws RecognitionException { - RootContext _localctx = new RootContext(_ctx, getState()); - enterRule(_localctx, 0, RULE_root); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(171); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << SEARCH) | (1L << SOURCE) | (1L << INDEX) | (1L << D) | (1L << NOT) | (1L << TRUE) | (1L << FALSE) | (1L << INTERVAL) | (1L << MICROSECOND) | (1L << MILLISECOND) | (1L << SECOND) | (1L << MINUTE) | (1L << HOUR) | (1L << DAY) | (1L << WEEK))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (MONTH - 64)) | (1L << (QUARTER - 64)) | (1L << (YEAR - 64)) | (1L << (DOT - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (LT_PRTHS - 64)) | (1L << (BACKTICK - 64)) | (1L << (AVG - 64)) | (1L << (COUNT - 64)) | (1L << (MAX - 64)) | (1L << (MIN - 64)) | (1L << (SUM - 64)))) != 0) || ((((_la - 129)) & ~0x3f) == 0 && ((1L << (_la - 129)) & ((1L << (VAR_SAMP - 129)) | (1L << (VAR_POP - 129)) | (1L << (STDDEV_SAMP - 129)) | (1L << (STDDEV_POP - 129)) | (1L << (FIRST - 129)) | (1L << (LAST - 129)) | (1L << (ABS - 129)) | (1L << (CEIL - 129)) | (1L << (CEILING - 129)) | (1L << (CONV - 129)) | (1L << (CRC32 - 129)) | (1L << (E - 129)) | (1L << (EXP - 129)) | (1L << (FLOOR - 129)) | (1L << (LN - 129)) | (1L << (LOG - 129)) | (1L << (LOG10 - 129)) | (1L << (LOG2 - 129)) | (1L << (MOD - 129)) | (1L << (PI - 129)) | (1L << (POW - 129)) | (1L << (POWER - 129)) | (1L << (RAND - 129)) | (1L << (ROUND - 129)) | (1L << (SIGN - 129)) | (1L << (SQRT - 129)) | (1L << (TRUNCATE - 129)) | (1L << (ACOS - 129)) | (1L << (ASIN - 129)) | (1L << (ATAN - 129)) | (1L << (ATAN2 - 129)) | (1L << (COS - 129)) | (1L << (COT - 129)) | (1L << (DEGREES - 129)) | (1L << (RADIANS - 129)) | (1L << (SIN - 129)) | (1L << (TAN - 129)) | (1L << (ADDDATE - 129)) | (1L << (DATE - 129)) | (1L << (DATE_ADD - 129)) | (1L << (DATE_SUB - 129)) | (1L << (DAYOFMONTH - 129)) | (1L << (DAYOFWEEK - 129)) | (1L << (DAYOFYEAR - 129)) | (1L << (DAYNAME - 129)) | (1L << (FROM_DAYS - 129)) | (1L << (MONTHNAME - 129)) | (1L << (SUBDATE - 129)) | (1L << (TIME - 129)))) != 0) || ((((_la - 193)) & ~0x3f) == 0 && ((1L << (_la - 193)) & ((1L << (TIME_TO_SEC - 193)) | (1L << (TIMESTAMP - 193)) | (1L << (DATE_FORMAT - 193)) | (1L << (TO_DAYS - 193)) | (1L << (SUBSTR - 193)) | (1L << (SUBSTRING - 193)) | (1L << (LTRIM - 193)) | (1L << (RTRIM - 193)) | (1L << (TRIM - 193)) | (1L << (LOWER - 193)) | (1L << (UPPER - 193)) | (1L << (CONCAT - 193)) | (1L << (CONCAT_WS - 193)) | (1L << (LENGTH - 193)) | (1L << (STRCMP - 193)) | (1L << (RIGHT - 193)) | (1L << (LEFT - 193)) | (1L << (ASCII - 193)) | (1L << (LOCATE - 193)) | (1L << (REPLACE - 193)) | (1L << (CAST - 193)) | (1L << (LIKE - 193)) | (1L << (ISNULL - 193)) | (1L << (ISNOTNULL - 193)) | (1L << (IFNULL - 193)) | (1L << (NULLIF - 193)) | (1L << (IF - 193)) | (1L << (MATCH - 193)) | (1L << (MATCH_PHRASE - 193)) | (1L << (SIMPLE_QUERY_STRING - 193)) | (1L << (SPAN - 193)) | (1L << (MS - 193)) | (1L << (S - 193)))) != 0) || ((((_la - 257)) & ~0x3f) == 0 && ((1L << (_la - 257)) & ((1L << (M - 257)) | (1L << (H - 257)) | (1L << (W - 257)) | (1L << (Q - 257)) | (1L << (Y - 257)) | (1L << (ID - 257)) | (1L << (INTEGER_LITERAL - 257)) | (1L << (DECIMAL_LITERAL - 257)) | (1L << (DQUOTA_STRING - 257)) | (1L << (SQUOTA_STRING - 257)) | (1L << (BQUOTA_STRING - 257)))) != 0)) { - { - setState(170); - pplStatement(); - } - } - - setState(173); - match(EOF); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class PplStatementContext extends ParserRuleContext { - public SearchCommandContext searchCommand() { - return getRuleContext(SearchCommandContext.class,0); - } - public List PIPE() { return getTokens(OpenSearchPPLParser.PIPE); } - public TerminalNode PIPE(int i) { - return getToken(OpenSearchPPLParser.PIPE, i); - } - public List commands() { - return getRuleContexts(CommandsContext.class); - } - public CommandsContext commands(int i) { - return getRuleContext(CommandsContext.class,i); - } - public PplStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_pplStatement; } - } - - public final PplStatementContext pplStatement() throws RecognitionException { - PplStatementContext _localctx = new PplStatementContext(_ctx, getState()); - enterRule(_localctx, 2, RULE_pplStatement); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(175); - searchCommand(); - setState(180); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==PIPE) { - { - { - setState(176); - match(PIPE); - setState(177); - commands(); - } - } - setState(182); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class CommandsContext extends ParserRuleContext { - public WhereCommandContext whereCommand() { - return getRuleContext(WhereCommandContext.class,0); - } - public FieldsCommandContext fieldsCommand() { - return getRuleContext(FieldsCommandContext.class,0); - } - public RenameCommandContext renameCommand() { - return getRuleContext(RenameCommandContext.class,0); - } - public StatsCommandContext statsCommand() { - return getRuleContext(StatsCommandContext.class,0); - } - public DedupCommandContext dedupCommand() { - return getRuleContext(DedupCommandContext.class,0); - } - public SortCommandContext sortCommand() { - return getRuleContext(SortCommandContext.class,0); - } - public EvalCommandContext evalCommand() { - return getRuleContext(EvalCommandContext.class,0); - } - public HeadCommandContext headCommand() { - return getRuleContext(HeadCommandContext.class,0); - } - public TopCommandContext topCommand() { - return getRuleContext(TopCommandContext.class,0); - } - public RareCommandContext rareCommand() { - return getRuleContext(RareCommandContext.class,0); - } - public ParseCommandContext parseCommand() { - return getRuleContext(ParseCommandContext.class,0); - } - public KmeansCommandContext kmeansCommand() { - return getRuleContext(KmeansCommandContext.class,0); - } - public AdCommandContext adCommand() { - return getRuleContext(AdCommandContext.class,0); - } - public CommandsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_commands; } - } - - public final CommandsContext commands() throws RecognitionException { - CommandsContext _localctx = new CommandsContext(_ctx, getState()); - enterRule(_localctx, 4, RULE_commands); - try { - setState(196); - _errHandler.sync(this); - switch (_input.LA(1)) { - case WHERE: - enterOuterAlt(_localctx, 1); - { - setState(183); - whereCommand(); - } - break; - case FIELDS: - enterOuterAlt(_localctx, 2); - { - setState(184); - fieldsCommand(); - } - break; - case RENAME: - enterOuterAlt(_localctx, 3); - { - setState(185); - renameCommand(); - } - break; - case STATS: - enterOuterAlt(_localctx, 4); - { - setState(186); - statsCommand(); - } - break; - case DEDUP: - enterOuterAlt(_localctx, 5); - { - setState(187); - dedupCommand(); - } - break; - case SORT: - enterOuterAlt(_localctx, 6); - { - setState(188); - sortCommand(); - } - break; - case EVAL: - enterOuterAlt(_localctx, 7); - { - setState(189); - evalCommand(); - } - break; - case HEAD: - enterOuterAlt(_localctx, 8); - { - setState(190); - headCommand(); - } - break; - case TOP: - enterOuterAlt(_localctx, 9); - { - setState(191); - topCommand(); - } - break; - case RARE: - enterOuterAlt(_localctx, 10); - { - setState(192); - rareCommand(); - } - break; - case PARSE: - enterOuterAlt(_localctx, 11); - { - setState(193); - parseCommand(); - } - break; - case KMEANS: - enterOuterAlt(_localctx, 12); - { - setState(194); - kmeansCommand(); - } - break; - case AD: - enterOuterAlt(_localctx, 13); - { - setState(195); - adCommand(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SearchCommandContext extends ParserRuleContext { - public SearchCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_searchCommand; } - - public SearchCommandContext() { } - public void copyFrom(SearchCommandContext ctx) { - super.copyFrom(ctx); - } - } - public static class SearchFromFilterContext extends SearchCommandContext { - public FromClauseContext fromClause() { - return getRuleContext(FromClauseContext.class,0); - } - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } - public SearchFromFilterContext(SearchCommandContext ctx) { copyFrom(ctx); } - } - public static class SearchFromContext extends SearchCommandContext { - public FromClauseContext fromClause() { - return getRuleContext(FromClauseContext.class,0); - } - public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } - public SearchFromContext(SearchCommandContext ctx) { copyFrom(ctx); } - } - public static class SearchFilterFromContext extends SearchCommandContext { - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public FromClauseContext fromClause() { - return getRuleContext(FromClauseContext.class,0); - } - public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } - public SearchFilterFromContext(SearchCommandContext ctx) { copyFrom(ctx); } - } - - public final SearchCommandContext searchCommand() throws RecognitionException { - SearchCommandContext _localctx = new SearchCommandContext(_ctx, getState()); - enterRule(_localctx, 6, RULE_searchCommand); - int _la; - try { - setState(214); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { - case 1: - _localctx = new SearchFromContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(199); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==SEARCH) { - { - setState(198); - match(SEARCH); - } - } - - setState(201); - fromClause(); - } - break; - case 2: - _localctx = new SearchFromFilterContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(203); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==SEARCH) { - { - setState(202); - match(SEARCH); - } - } - - setState(205); - fromClause(); - setState(206); - logicalExpression(0); - } - break; - case 3: - _localctx = new SearchFilterFromContext(_localctx); - enterOuterAlt(_localctx, 3); - { - setState(209); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==SEARCH) { - { - setState(208); - match(SEARCH); - } - } - - setState(211); - logicalExpression(0); - setState(212); - fromClause(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WhereCommandContext extends ParserRuleContext { - public TerminalNode WHERE() { return getToken(OpenSearchPPLParser.WHERE, 0); } - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public WhereCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_whereCommand; } - } - - public final WhereCommandContext whereCommand() throws RecognitionException { - WhereCommandContext _localctx = new WhereCommandContext(_ctx, getState()); - enterRule(_localctx, 8, RULE_whereCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(216); - match(WHERE); - setState(217); - logicalExpression(0); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FieldsCommandContext extends ParserRuleContext { - public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public FieldsCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fieldsCommand; } - } - - public final FieldsCommandContext fieldsCommand() throws RecognitionException { - FieldsCommandContext _localctx = new FieldsCommandContext(_ctx, getState()); - enterRule(_localctx, 10, RULE_fieldsCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(219); - match(FIELDS); - setState(221); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(220); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(223); - fieldList(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RenameCommandContext extends ParserRuleContext { - public TerminalNode RENAME() { return getToken(OpenSearchPPLParser.RENAME, 0); } - public List renameClasue() { - return getRuleContexts(RenameClasueContext.class); - } - public RenameClasueContext renameClasue(int i) { - return getRuleContext(RenameClasueContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public RenameCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_renameCommand; } - } - - public final RenameCommandContext renameCommand() throws RecognitionException { - RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); - enterRule(_localctx, 12, RULE_renameCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(225); - match(RENAME); - setState(226); - renameClasue(); - setState(231); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(227); - match(COMMA); - setState(228); - renameClasue(); - } - } - setState(233); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsCommandContext extends ParserRuleContext { - public IntegerLiteralContext partitions; - public BooleanLiteralContext allnum; - public StringLiteralContext delim; - public BooleanLiteralContext dedupsplit; - public TerminalNode STATS() { return getToken(OpenSearchPPLParser.STATS, 0); } - public List statsAggTerm() { - return getRuleContexts(StatsAggTermContext.class); - } - public StatsAggTermContext statsAggTerm(int i) { - return getRuleContext(StatsAggTermContext.class,i); - } - public TerminalNode PARTITIONS() { return getToken(OpenSearchPPLParser.PARTITIONS, 0); } - public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } - public TerminalNode EQUAL(int i) { - return getToken(OpenSearchPPLParser.EQUAL, i); - } - public TerminalNode ALLNUM() { return getToken(OpenSearchPPLParser.ALLNUM, 0); } - public TerminalNode DELIM() { return getToken(OpenSearchPPLParser.DELIM, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public StatsByClauseContext statsByClause() { - return getRuleContext(StatsByClauseContext.class,0); - } - public TerminalNode DEDUP_SPLITVALUES() { return getToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public List booleanLiteral() { - return getRuleContexts(BooleanLiteralContext.class); - } - public BooleanLiteralContext booleanLiteral(int i) { - return getRuleContext(BooleanLiteralContext.class,i); - } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public StatsCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsCommand; } - } - - public final StatsCommandContext statsCommand() throws RecognitionException { - StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState()); - enterRule(_localctx, 14, RULE_statsCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(234); - match(STATS); - setState(238); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PARTITIONS) { - { - setState(235); - match(PARTITIONS); - setState(236); - match(EQUAL); - setState(237); - ((StatsCommandContext)_localctx).partitions = integerLiteral(); - } - } - - setState(243); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==ALLNUM) { - { - setState(240); - match(ALLNUM); - setState(241); - match(EQUAL); - setState(242); - ((StatsCommandContext)_localctx).allnum = booleanLiteral(); - } - } - - setState(248); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==DELIM) { - { - setState(245); - match(DELIM); - setState(246); - match(EQUAL); - setState(247); - ((StatsCommandContext)_localctx).delim = stringLiteral(); - } - } - - setState(250); - statsAggTerm(); - setState(255); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(251); - match(COMMA); - setState(252); - statsAggTerm(); - } - } - setState(257); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(259); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==BY) { - { - setState(258); - statsByClause(); - } - } - - setState(264); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==DEDUP_SPLITVALUES) { - { - setState(261); - match(DEDUP_SPLITVALUES); - setState(262); - match(EQUAL); - setState(263); - ((StatsCommandContext)_localctx).dedupsplit = booleanLiteral(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DedupCommandContext extends ParserRuleContext { - public IntegerLiteralContext number; - public BooleanLiteralContext keepempty; - public BooleanLiteralContext consecutive; - public TerminalNode DEDUP() { return getToken(OpenSearchPPLParser.DEDUP, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public TerminalNode KEEPEMPTY() { return getToken(OpenSearchPPLParser.KEEPEMPTY, 0); } - public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } - public TerminalNode EQUAL(int i) { - return getToken(OpenSearchPPLParser.EQUAL, i); - } - public TerminalNode CONSECUTIVE() { return getToken(OpenSearchPPLParser.CONSECUTIVE, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public List booleanLiteral() { - return getRuleContexts(BooleanLiteralContext.class); - } - public BooleanLiteralContext booleanLiteral(int i) { - return getRuleContext(BooleanLiteralContext.class,i); - } - public DedupCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_dedupCommand; } - } - - public final DedupCommandContext dedupCommand() throws RecognitionException { - DedupCommandContext _localctx = new DedupCommandContext(_ctx, getState()); - enterRule(_localctx, 16, RULE_dedupCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(266); - match(DEDUP); - setState(268); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { - { - setState(267); - ((DedupCommandContext)_localctx).number = integerLiteral(); - } - } - - setState(270); - fieldList(); - setState(274); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==KEEPEMPTY) { - { - setState(271); - match(KEEPEMPTY); - setState(272); - match(EQUAL); - setState(273); - ((DedupCommandContext)_localctx).keepempty = booleanLiteral(); - } - } - - setState(279); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==CONSECUTIVE) { - { - setState(276); - match(CONSECUTIVE); - setState(277); - match(EQUAL); - setState(278); - ((DedupCommandContext)_localctx).consecutive = booleanLiteral(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortCommandContext extends ParserRuleContext { - public TerminalNode SORT() { return getToken(OpenSearchPPLParser.SORT, 0); } - public SortbyClauseContext sortbyClause() { - return getRuleContext(SortbyClauseContext.class,0); - } - public SortCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortCommand; } - } - - public final SortCommandContext sortCommand() throws RecognitionException { - SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); - enterRule(_localctx, 18, RULE_sortCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(281); - match(SORT); - setState(282); - sortbyClause(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalCommandContext extends ParserRuleContext { - public TerminalNode EVAL() { return getToken(OpenSearchPPLParser.EVAL, 0); } - public List evalClause() { - return getRuleContexts(EvalClauseContext.class); - } - public EvalClauseContext evalClause(int i) { - return getRuleContext(EvalClauseContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public EvalCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalCommand; } - } - - public final EvalCommandContext evalCommand() throws RecognitionException { - EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState()); - enterRule(_localctx, 20, RULE_evalCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(284); - match(EVAL); - setState(285); - evalClause(); - setState(290); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(286); - match(COMMA); - setState(287); - evalClause(); - } - } - setState(292); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class HeadCommandContext extends ParserRuleContext { - public IntegerLiteralContext number; - public IntegerLiteralContext from; - public TerminalNode HEAD() { return getToken(OpenSearchPPLParser.HEAD, 0); } - public TerminalNode FROM() { return getToken(OpenSearchPPLParser.FROM, 0); } - public List integerLiteral() { - return getRuleContexts(IntegerLiteralContext.class); - } - public IntegerLiteralContext integerLiteral(int i) { - return getRuleContext(IntegerLiteralContext.class,i); - } - public HeadCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_headCommand; } - } - - public final HeadCommandContext headCommand() throws RecognitionException { - HeadCommandContext _localctx = new HeadCommandContext(_ctx, getState()); - enterRule(_localctx, 22, RULE_headCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(293); - match(HEAD); - setState(295); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { - { - setState(294); - ((HeadCommandContext)_localctx).number = integerLiteral(); - } - } - - setState(299); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==FROM) { - { - setState(297); - match(FROM); - setState(298); - ((HeadCommandContext)_localctx).from = integerLiteral(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TopCommandContext extends ParserRuleContext { - public IntegerLiteralContext number; - public TerminalNode TOP() { return getToken(OpenSearchPPLParser.TOP, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public ByClauseContext byClause() { - return getRuleContext(ByClauseContext.class,0); - } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public TopCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_topCommand; } - } - - public final TopCommandContext topCommand() throws RecognitionException { - TopCommandContext _localctx = new TopCommandContext(_ctx, getState()); - enterRule(_localctx, 24, RULE_topCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(301); - match(TOP); - setState(303); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { - { - setState(302); - ((TopCommandContext)_localctx).number = integerLiteral(); - } - } - - setState(305); - fieldList(); - setState(307); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==BY) { - { - setState(306); - byClause(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RareCommandContext extends ParserRuleContext { - public TerminalNode RARE() { return getToken(OpenSearchPPLParser.RARE, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public ByClauseContext byClause() { - return getRuleContext(ByClauseContext.class,0); - } - public RareCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_rareCommand; } - } - - public final RareCommandContext rareCommand() throws RecognitionException { - RareCommandContext _localctx = new RareCommandContext(_ctx, getState()); - enterRule(_localctx, 26, RULE_rareCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(309); - match(RARE); - setState(310); - fieldList(); - setState(312); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==BY) { - { - setState(311); - byClause(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ParseCommandContext extends ParserRuleContext { - public TerminalNode PARSE() { return getToken(OpenSearchPPLParser.PARSE, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public PatternContext pattern() { - return getRuleContext(PatternContext.class,0); - } - public ParseCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_parseCommand; } - } - - public final ParseCommandContext parseCommand() throws RecognitionException { - ParseCommandContext _localctx = new ParseCommandContext(_ctx, getState()); - enterRule(_localctx, 28, RULE_parseCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(314); - match(PARSE); - setState(315); - expression(); - setState(316); - pattern(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class KmeansCommandContext extends ParserRuleContext { - public TerminalNode KMEANS() { return getToken(OpenSearchPPLParser.KMEANS, 0); } - public List kmeansParameter() { - return getRuleContexts(KmeansParameterContext.class); - } - public KmeansParameterContext kmeansParameter(int i) { - return getRuleContext(KmeansParameterContext.class,i); - } - public KmeansCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_kmeansCommand; } - } - - public final KmeansCommandContext kmeansCommand() throws RecognitionException { - KmeansCommandContext _localctx = new KmeansCommandContext(_ctx, getState()); - enterRule(_localctx, 30, RULE_kmeansCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(318); - match(KMEANS); - setState(322); - _errHandler.sync(this); - _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CENTROIDS) | (1L << ITERATIONS) | (1L << DISTANCE_TYPE))) != 0)) { - { - { - setState(319); - kmeansParameter(); - } - } - setState(324); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class KmeansParameterContext extends ParserRuleContext { - public IntegerLiteralContext centroids; - public IntegerLiteralContext iterations; - public StringLiteralContext distance_type; - public TerminalNode CENTROIDS() { return getToken(OpenSearchPPLParser.CENTROIDS, 0); } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public TerminalNode ITERATIONS() { return getToken(OpenSearchPPLParser.ITERATIONS, 0); } - public TerminalNode DISTANCE_TYPE() { return getToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public KmeansParameterContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_kmeansParameter; } - } - - public final KmeansParameterContext kmeansParameter() throws RecognitionException { - KmeansParameterContext _localctx = new KmeansParameterContext(_ctx, getState()); - enterRule(_localctx, 32, RULE_kmeansParameter); - try { - setState(334); - _errHandler.sync(this); - switch (_input.LA(1)) { - case CENTROIDS: - enterOuterAlt(_localctx, 1); - { - { - setState(325); - match(CENTROIDS); - setState(326); - match(EQUAL); - setState(327); - ((KmeansParameterContext)_localctx).centroids = integerLiteral(); - } - } - break; - case ITERATIONS: - enterOuterAlt(_localctx, 2); - { - { - setState(328); - match(ITERATIONS); - setState(329); - match(EQUAL); - setState(330); - ((KmeansParameterContext)_localctx).iterations = integerLiteral(); - } - } - break; - case DISTANCE_TYPE: - enterOuterAlt(_localctx, 3); - { - { - setState(331); - match(DISTANCE_TYPE); - setState(332); - match(EQUAL); - setState(333); - ((KmeansParameterContext)_localctx).distance_type = stringLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class AdCommandContext extends ParserRuleContext { - public TerminalNode AD() { return getToken(OpenSearchPPLParser.AD, 0); } - public List adParameter() { - return getRuleContexts(AdParameterContext.class); - } - public AdParameterContext adParameter(int i) { - return getRuleContext(AdParameterContext.class,i); - } - public AdCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_adCommand; } - } - - public final AdCommandContext adCommand() throws RecognitionException { - AdCommandContext _localctx = new AdCommandContext(_ctx, getState()); - enterRule(_localctx, 34, RULE_adCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(336); - match(AD); - setState(340); - _errHandler.sync(this); - _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << NUMBER_OF_TREES) | (1L << SHINGLE_SIZE) | (1L << SAMPLE_SIZE) | (1L << OUTPUT_AFTER) | (1L << TIME_DECAY) | (1L << ANOMALY_RATE) | (1L << TIME_FIELD) | (1L << TIME_ZONE) | (1L << TRAINING_DATA_SIZE) | (1L << ANOMALY_SCORE_THRESHOLD))) != 0) || _la==DATE_FORMAT) { - { - { - setState(337); - adParameter(); - } - } - setState(342); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class AdParameterContext extends ParserRuleContext { - public IntegerLiteralContext number_of_trees; - public IntegerLiteralContext shingle_size; - public IntegerLiteralContext sample_size; - public IntegerLiteralContext output_after; - public DecimalLiteralContext time_decay; - public DecimalLiteralContext anomaly_rate; - public StringLiteralContext time_field; - public StringLiteralContext date_format; - public StringLiteralContext time_zone; - public IntegerLiteralContext training_data_size; - public DecimalLiteralContext anomaly_score_threshold; - public TerminalNode NUMBER_OF_TREES() { return getToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public TerminalNode SHINGLE_SIZE() { return getToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } - public TerminalNode SAMPLE_SIZE() { return getToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } - public TerminalNode OUTPUT_AFTER() { return getToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } - public TerminalNode TIME_DECAY() { return getToken(OpenSearchPPLParser.TIME_DECAY, 0); } - public DecimalLiteralContext decimalLiteral() { - return getRuleContext(DecimalLiteralContext.class,0); - } - public TerminalNode ANOMALY_RATE() { return getToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } - public TerminalNode TIME_FIELD() { return getToken(OpenSearchPPLParser.TIME_FIELD, 0); } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TerminalNode TRAINING_DATA_SIZE() { return getToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } - public TerminalNode ANOMALY_SCORE_THRESHOLD() { return getToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } - public AdParameterContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_adParameter; } - } - - public final AdParameterContext adParameter() throws RecognitionException { - AdParameterContext _localctx = new AdParameterContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_adParameter); - try { - setState(376); - _errHandler.sync(this); - switch (_input.LA(1)) { - case NUMBER_OF_TREES: - enterOuterAlt(_localctx, 1); - { - { - setState(343); - match(NUMBER_OF_TREES); - setState(344); - match(EQUAL); - setState(345); - ((AdParameterContext)_localctx).number_of_trees = integerLiteral(); - } - } - break; - case SHINGLE_SIZE: - enterOuterAlt(_localctx, 2); - { - { - setState(346); - match(SHINGLE_SIZE); - setState(347); - match(EQUAL); - setState(348); - ((AdParameterContext)_localctx).shingle_size = integerLiteral(); - } - } - break; - case SAMPLE_SIZE: - enterOuterAlt(_localctx, 3); - { - { - setState(349); - match(SAMPLE_SIZE); - setState(350); - match(EQUAL); - setState(351); - ((AdParameterContext)_localctx).sample_size = integerLiteral(); - } - } - break; - case OUTPUT_AFTER: - enterOuterAlt(_localctx, 4); - { - { - setState(352); - match(OUTPUT_AFTER); - setState(353); - match(EQUAL); - setState(354); - ((AdParameterContext)_localctx).output_after = integerLiteral(); - } - } - break; - case TIME_DECAY: - enterOuterAlt(_localctx, 5); - { - { - setState(355); - match(TIME_DECAY); - setState(356); - match(EQUAL); - setState(357); - ((AdParameterContext)_localctx).time_decay = decimalLiteral(); - } - } - break; - case ANOMALY_RATE: - enterOuterAlt(_localctx, 6); - { - { - setState(358); - match(ANOMALY_RATE); - setState(359); - match(EQUAL); - setState(360); - ((AdParameterContext)_localctx).anomaly_rate = decimalLiteral(); - } - } - break; - case TIME_FIELD: - enterOuterAlt(_localctx, 7); - { - { - setState(361); - match(TIME_FIELD); - setState(362); - match(EQUAL); - setState(363); - ((AdParameterContext)_localctx).time_field = stringLiteral(); - } - } - break; - case DATE_FORMAT: - enterOuterAlt(_localctx, 8); - { - { - setState(364); - match(DATE_FORMAT); - setState(365); - match(EQUAL); - setState(366); - ((AdParameterContext)_localctx).date_format = stringLiteral(); - } - } - break; - case TIME_ZONE: - enterOuterAlt(_localctx, 9); - { - { - setState(367); - match(TIME_ZONE); - setState(368); - match(EQUAL); - setState(369); - ((AdParameterContext)_localctx).time_zone = stringLiteral(); - } - } - break; - case TRAINING_DATA_SIZE: - enterOuterAlt(_localctx, 10); - { - { - setState(370); - match(TRAINING_DATA_SIZE); - setState(371); - match(EQUAL); - setState(372); - ((AdParameterContext)_localctx).training_data_size = integerLiteral(); - } - } - break; - case ANOMALY_SCORE_THRESHOLD: - enterOuterAlt(_localctx, 11); - { - { - setState(373); - match(ANOMALY_SCORE_THRESHOLD); - setState(374); - match(EQUAL); - setState(375); - ((AdParameterContext)_localctx).anomaly_score_threshold = decimalLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FromClauseContext extends ParserRuleContext { - public TerminalNode SOURCE() { return getToken(OpenSearchPPLParser.SOURCE, 0); } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public List tableSource() { - return getRuleContexts(TableSourceContext.class); - } - public TableSourceContext tableSource(int i) { - return getRuleContext(TableSourceContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public TerminalNode INDEX() { return getToken(OpenSearchPPLParser.INDEX, 0); } - public FromClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fromClause; } - } - - public final FromClauseContext fromClause() throws RecognitionException { - FromClauseContext _localctx = new FromClauseContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_fromClause); - int _la; - try { - setState(398); - _errHandler.sync(this); - switch (_input.LA(1)) { - case SOURCE: - enterOuterAlt(_localctx, 1); - { - setState(378); - match(SOURCE); - setState(379); - match(EQUAL); - setState(380); - tableSource(); - setState(385); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(381); - match(COMMA); - setState(382); - tableSource(); - } - } - setState(387); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - break; - case INDEX: - enterOuterAlt(_localctx, 2); - { - setState(388); - match(INDEX); - setState(389); - match(EQUAL); - setState(390); - tableSource(); - setState(395); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(391); - match(COMMA); - setState(392); - tableSource(); - } - } - setState(397); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RenameClasueContext extends ParserRuleContext { - public WcFieldExpressionContext orignalField; - public WcFieldExpressionContext renamedField; - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public List wcFieldExpression() { - return getRuleContexts(WcFieldExpressionContext.class); - } - public WcFieldExpressionContext wcFieldExpression(int i) { - return getRuleContext(WcFieldExpressionContext.class,i); - } - public RenameClasueContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_renameClasue; } - } - - public final RenameClasueContext renameClasue() throws RecognitionException { - RenameClasueContext _localctx = new RenameClasueContext(_ctx, getState()); - enterRule(_localctx, 40, RULE_renameClasue); - try { - enterOuterAlt(_localctx, 1); - { - setState(400); - ((RenameClasueContext)_localctx).orignalField = wcFieldExpression(); - setState(401); - match(AS); - setState(402); - ((RenameClasueContext)_localctx).renamedField = wcFieldExpression(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ByClauseContext extends ParserRuleContext { - public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public ByClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_byClause; } - } - - public final ByClauseContext byClause() throws RecognitionException { - ByClauseContext _localctx = new ByClauseContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_byClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(404); - match(BY); - setState(405); - fieldList(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsByClauseContext extends ParserRuleContext { - public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public BySpanClauseContext bySpanClause() { - return getRuleContext(BySpanClauseContext.class,0); - } - public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } - public StatsByClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsByClause; } - } - - public final StatsByClauseContext statsByClause() throws RecognitionException { - StatsByClauseContext _localctx = new StatsByClauseContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_statsByClause); - try { - setState(416); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(407); - match(BY); - setState(408); - fieldList(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(409); - match(BY); - setState(410); - bySpanClause(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(411); - match(BY); - setState(412); - bySpanClause(); - setState(413); - match(COMMA); - setState(414); - fieldList(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BySpanClauseContext extends ParserRuleContext { - public QualifiedNameContext alias; - public SpanClauseContext spanClause() { - return getRuleContext(SpanClauseContext.class,0); - } - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public BySpanClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_bySpanClause; } - } - - public final BySpanClauseContext bySpanClause() throws RecognitionException { - BySpanClauseContext _localctx = new BySpanClauseContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_bySpanClause); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(418); - spanClause(); - setState(421); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==AS) { - { - setState(419); - match(AS); - setState(420); - ((BySpanClauseContext)_localctx).alias = qualifiedName(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SpanClauseContext extends ParserRuleContext { - public LiteralValueContext value; - public TimespanUnitContext unit; - public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public LiteralValueContext literalValue() { - return getRuleContext(LiteralValueContext.class,0); - } - public TimespanUnitContext timespanUnit() { - return getRuleContext(TimespanUnitContext.class,0); - } - public SpanClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_spanClause; } - } - - public final SpanClauseContext spanClause() throws RecognitionException { - SpanClauseContext _localctx = new SpanClauseContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_spanClause); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(423); - match(SPAN); - setState(424); - match(LT_PRTHS); - setState(425); - fieldExpression(); - setState(426); - match(COMMA); - setState(427); - ((SpanClauseContext)_localctx).value = literalValue(); - setState(429); - _errHandler.sync(this); - _la = _input.LA(1); - if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) { - { - setState(428); - ((SpanClauseContext)_localctx).unit = timespanUnit(); - } - } - - setState(431); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortbyClauseContext extends ParserRuleContext { - public List sortField() { - return getRuleContexts(SortFieldContext.class); - } - public SortFieldContext sortField(int i) { - return getRuleContext(SortFieldContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public SortbyClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortbyClause; } - } - - public final SortbyClauseContext sortbyClause() throws RecognitionException { - SortbyClauseContext _localctx = new SortbyClauseContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_sortbyClause); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(433); - sortField(); - setState(438); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(434); - match(COMMA); - setState(435); - sortField(); - } - } - setState(440); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalClauseContext extends ParserRuleContext { - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public EvalClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalClause; } - } - - public final EvalClauseContext evalClause() throws RecognitionException { - EvalClauseContext _localctx = new EvalClauseContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_evalClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(441); - fieldExpression(); - setState(442); - match(EQUAL); - setState(443); - expression(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsAggTermContext extends ParserRuleContext { - public WcFieldExpressionContext alias; - public StatsFunctionContext statsFunction() { - return getRuleContext(StatsFunctionContext.class,0); - } - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public WcFieldExpressionContext wcFieldExpression() { - return getRuleContext(WcFieldExpressionContext.class,0); - } - public StatsAggTermContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsAggTerm; } - } - - public final StatsAggTermContext statsAggTerm() throws RecognitionException { - StatsAggTermContext _localctx = new StatsAggTermContext(_ctx, getState()); - enterRule(_localctx, 54, RULE_statsAggTerm); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(445); - statsFunction(); - setState(448); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==AS) { - { - setState(446); - match(AS); - setState(447); - ((StatsAggTermContext)_localctx).alias = wcFieldExpression(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsFunctionContext extends ParserRuleContext { - public StatsFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsFunction; } - - public StatsFunctionContext() { } - public void copyFrom(StatsFunctionContext ctx) { - super.copyFrom(ctx); - } - } - public static class DistinctCountFunctionCallContext extends StatsFunctionContext { - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public TerminalNode DISTINCT_COUNT() { return getToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } - public TerminalNode DC() { return getToken(OpenSearchPPLParser.DC, 0); } - public DistinctCountFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - public static class StatsFunctionCallContext extends StatsFunctionContext { - public StatsFunctionNameContext statsFunctionName() { - return getRuleContext(StatsFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public StatsFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - public static class CountAllFunctionCallContext extends StatsFunctionContext { - public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public CountAllFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - public static class PercentileAggFunctionCallContext extends StatsFunctionContext { - public PercentileAggFunctionContext percentileAggFunction() { - return getRuleContext(PercentileAggFunctionContext.class,0); - } - public PercentileAggFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - - public final StatsFunctionContext statsFunction() throws RecognitionException { - StatsFunctionContext _localctx = new StatsFunctionContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_statsFunction); - int _la; - try { - setState(464); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { - case 1: - _localctx = new StatsFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(450); - statsFunctionName(); - setState(451); - match(LT_PRTHS); - setState(452); - valueExpression(0); - setState(453); - match(RT_PRTHS); - } - break; - case 2: - _localctx = new CountAllFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(455); - match(COUNT); - setState(456); - match(LT_PRTHS); - setState(457); - match(RT_PRTHS); - } - break; - case 3: - _localctx = new DistinctCountFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 3); - { - setState(458); - _la = _input.LA(1); - if ( !(_la==DISTINCT_COUNT || _la==DC) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(459); - match(LT_PRTHS); - setState(460); - valueExpression(0); - setState(461); - match(RT_PRTHS); - } - break; - case 4: - _localctx = new PercentileAggFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 4); - { - setState(463); - percentileAggFunction(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsFunctionNameContext extends ParserRuleContext { - public TerminalNode AVG() { return getToken(OpenSearchPPLParser.AVG, 0); } - public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } - public TerminalNode SUM() { return getToken(OpenSearchPPLParser.SUM, 0); } - public TerminalNode MIN() { return getToken(OpenSearchPPLParser.MIN, 0); } - public TerminalNode MAX() { return getToken(OpenSearchPPLParser.MAX, 0); } - public TerminalNode VAR_SAMP() { return getToken(OpenSearchPPLParser.VAR_SAMP, 0); } - public TerminalNode VAR_POP() { return getToken(OpenSearchPPLParser.VAR_POP, 0); } - public TerminalNode STDDEV_SAMP() { return getToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } - public TerminalNode STDDEV_POP() { return getToken(OpenSearchPPLParser.STDDEV_POP, 0); } - public StatsFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsFunctionName; } - } - - public final StatsFunctionNameContext statsFunctionName() throws RecognitionException { - StatsFunctionNameContext _localctx = new StatsFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_statsFunctionName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(466); - _la = _input.LA(1); - if ( !(((((_la - 114)) & ~0x3f) == 0 && ((1L << (_la - 114)) & ((1L << (AVG - 114)) | (1L << (COUNT - 114)) | (1L << (MAX - 114)) | (1L << (MIN - 114)) | (1L << (SUM - 114)) | (1L << (VAR_SAMP - 114)) | (1L << (VAR_POP - 114)) | (1L << (STDDEV_SAMP - 114)) | (1L << (STDDEV_POP - 114)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class PercentileAggFunctionContext extends ParserRuleContext { - public IntegerLiteralContext value; - public FieldExpressionContext aggField; - public TerminalNode PERCENTILE() { return getToken(OpenSearchPPLParser.PERCENTILE, 0); } - public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } - public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public PercentileAggFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_percentileAggFunction; } - } - - public final PercentileAggFunctionContext percentileAggFunction() throws RecognitionException { - PercentileAggFunctionContext _localctx = new PercentileAggFunctionContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_percentileAggFunction); - try { - enterOuterAlt(_localctx, 1); - { - setState(468); - match(PERCENTILE); - setState(469); - match(LESS); - setState(470); - ((PercentileAggFunctionContext)_localctx).value = integerLiteral(); - setState(471); - match(GREATER); - setState(472); - match(LT_PRTHS); - setState(473); - ((PercentileAggFunctionContext)_localctx).aggField = fieldExpression(); - setState(474); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ExpressionContext extends ParserRuleContext { - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public ComparisonExpressionContext comparisonExpression() { - return getRuleContext(ComparisonExpressionContext.class,0); - } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public ExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_expression; } - } - - public final ExpressionContext expression() throws RecognitionException { - ExpressionContext _localctx = new ExpressionContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_expression); - try { - setState(479); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(476); - logicalExpression(0); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(477); - comparisonExpression(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(478); - valueExpression(0); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class LogicalExpressionContext extends ParserRuleContext { - public LogicalExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_logicalExpression; } - - public LogicalExpressionContext() { } - public void copyFrom(LogicalExpressionContext ctx) { - super.copyFrom(ctx); - } - } - public static class RelevanceExprContext extends LogicalExpressionContext { - public RelevanceExpressionContext relevanceExpression() { - return getRuleContext(RelevanceExpressionContext.class,0); - } - public RelevanceExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalNotContext extends LogicalExpressionContext { - public TerminalNode NOT() { return getToken(OpenSearchPPLParser.NOT, 0); } - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public LogicalNotContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class BooleanExprContext extends LogicalExpressionContext { - public BooleanExpressionContext booleanExpression() { - return getRuleContext(BooleanExpressionContext.class,0); - } - public BooleanExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalAndContext extends LogicalExpressionContext { - public LogicalExpressionContext left; - public LogicalExpressionContext right; - public List logicalExpression() { - return getRuleContexts(LogicalExpressionContext.class); - } - public LogicalExpressionContext logicalExpression(int i) { - return getRuleContext(LogicalExpressionContext.class,i); - } - public TerminalNode AND() { return getToken(OpenSearchPPLParser.AND, 0); } - public LogicalAndContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class ComparsionContext extends LogicalExpressionContext { - public ComparisonExpressionContext comparisonExpression() { - return getRuleContext(ComparisonExpressionContext.class,0); - } - public ComparsionContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalXorContext extends LogicalExpressionContext { - public LogicalExpressionContext left; - public LogicalExpressionContext right; - public TerminalNode XOR() { return getToken(OpenSearchPPLParser.XOR, 0); } - public List logicalExpression() { - return getRuleContexts(LogicalExpressionContext.class); - } - public LogicalExpressionContext logicalExpression(int i) { - return getRuleContext(LogicalExpressionContext.class,i); - } - public LogicalXorContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalOrContext extends LogicalExpressionContext { - public LogicalExpressionContext left; - public LogicalExpressionContext right; - public TerminalNode OR() { return getToken(OpenSearchPPLParser.OR, 0); } - public List logicalExpression() { - return getRuleContexts(LogicalExpressionContext.class); - } - public LogicalExpressionContext logicalExpression(int i) { - return getRuleContext(LogicalExpressionContext.class,i); - } - public LogicalOrContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - - public final LogicalExpressionContext logicalExpression() throws RecognitionException { - return logicalExpression(0); - } - - private LogicalExpressionContext logicalExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - LogicalExpressionContext _localctx = new LogicalExpressionContext(_ctx, _parentState); - LogicalExpressionContext _prevctx = _localctx; - int _startState = 64; - enterRecursionRule(_localctx, 64, RULE_logicalExpression, _p); - int _la; - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(487); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { - case 1: - { - _localctx = new ComparsionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(482); - comparisonExpression(); - } - break; - case 2: - { - _localctx = new LogicalNotContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(483); - match(NOT); - setState(484); - logicalExpression(6); - } - break; - case 3: - { - _localctx = new BooleanExprContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(485); - booleanExpression(); - } - break; - case 4: - { - _localctx = new RelevanceExprContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(486); - relevanceExpression(); - } - break; - } - _ctx.stop = _input.LT(-1); - setState(502); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,41,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; - { - setState(500); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { - case 1: - { - _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); - ((LogicalOrContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); - setState(489); - if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(490); - match(OR); - setState(491); - ((LogicalOrContext)_localctx).right = logicalExpression(6); - } - break; - case 2: - { - _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); - ((LogicalAndContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); - setState(492); - if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(494); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==AND) { - { - setState(493); - match(AND); - } - } - - setState(496); - ((LogicalAndContext)_localctx).right = logicalExpression(5); - } - break; - case 3: - { - _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); - ((LogicalXorContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); - setState(497); - if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(498); - match(XOR); - setState(499); - ((LogicalXorContext)_localctx).right = logicalExpression(4); - } - break; - } - } - } - setState(504); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,41,_ctx); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - unrollRecursionContexts(_parentctx); - } - return _localctx; - } - - public static class ComparisonExpressionContext extends ParserRuleContext { - public ComparisonExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_comparisonExpression; } - - public ComparisonExpressionContext() { } - public void copyFrom(ComparisonExpressionContext ctx) { - super.copyFrom(ctx); - } - } - public static class InExprContext extends ComparisonExpressionContext { - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public TerminalNode IN() { return getToken(OpenSearchPPLParser.IN, 0); } - public ValueListContext valueList() { - return getRuleContext(ValueListContext.class,0); - } - public InExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } - } - public static class CompareExprContext extends ComparisonExpressionContext { - public ValueExpressionContext left; - public ValueExpressionContext right; - public ComparisonOperatorContext comparisonOperator() { - return getRuleContext(ComparisonOperatorContext.class,0); - } - public List valueExpression() { - return getRuleContexts(ValueExpressionContext.class); - } - public ValueExpressionContext valueExpression(int i) { - return getRuleContext(ValueExpressionContext.class,i); - } - public CompareExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } - } - - public final ComparisonExpressionContext comparisonExpression() throws RecognitionException { - ComparisonExpressionContext _localctx = new ComparisonExpressionContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_comparisonExpression); - try { - setState(513); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { - case 1: - _localctx = new CompareExprContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(505); - ((CompareExprContext)_localctx).left = valueExpression(0); - setState(506); - comparisonOperator(); - setState(507); - ((CompareExprContext)_localctx).right = valueExpression(0); - } - break; - case 2: - _localctx = new InExprContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(509); - valueExpression(0); - setState(510); - match(IN); - setState(511); - valueList(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ValueExpressionContext extends ParserRuleContext { - public ValueExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_valueExpression; } - - public ValueExpressionContext() { } - public void copyFrom(ValueExpressionContext ctx) { - super.copyFrom(ctx); - } - } - public static class ValueExpressionDefaultContext extends ValueExpressionContext { - public PrimaryExpressionContext primaryExpression() { - return getRuleContext(PrimaryExpressionContext.class,0); - } - public ValueExpressionDefaultContext(ValueExpressionContext ctx) { copyFrom(ctx); } - } - public static class ParentheticBinaryArithmeticContext extends ValueExpressionContext { - public ValueExpressionContext left; - public ValueExpressionContext right; - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public BinaryOperatorContext binaryOperator() { - return getRuleContext(BinaryOperatorContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public List valueExpression() { - return getRuleContexts(ValueExpressionContext.class); - } - public ValueExpressionContext valueExpression(int i) { - return getRuleContext(ValueExpressionContext.class,i); - } - public ParentheticBinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } - } - public static class BinaryArithmeticContext extends ValueExpressionContext { - public ValueExpressionContext left; - public ValueExpressionContext right; - public BinaryOperatorContext binaryOperator() { - return getRuleContext(BinaryOperatorContext.class,0); - } - public List valueExpression() { - return getRuleContexts(ValueExpressionContext.class); - } - public ValueExpressionContext valueExpression(int i) { - return getRuleContext(ValueExpressionContext.class,i); - } - public BinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } - } - - public final ValueExpressionContext valueExpression() throws RecognitionException { - return valueExpression(0); - } - - private ValueExpressionContext valueExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, _parentState); - ValueExpressionContext _prevctx = _localctx; - int _startState = 68; - enterRecursionRule(_localctx, 68, RULE_valueExpression, _p); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(523); - _errHandler.sync(this); - switch (_input.LA(1)) { - case LT_PRTHS: - { - _localctx = new ParentheticBinaryArithmeticContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(516); - match(LT_PRTHS); - setState(517); - ((ParentheticBinaryArithmeticContext)_localctx).left = valueExpression(0); - setState(518); - binaryOperator(); - setState(519); - ((ParentheticBinaryArithmeticContext)_localctx).right = valueExpression(0); - setState(520); - match(RT_PRTHS); - } - break; - case D: - case TRUE: - case FALSE: - case INTERVAL: - case MICROSECOND: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case PLUS: - case MINUS: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case ABS: - case CEIL: - case CEILING: - case CONV: - case CRC32: - case E: - case EXP: - case FLOOR: - case LN: - case LOG: - case LOG10: - case LOG2: - case MOD: - case PI: - case POW: - case POWER: - case RAND: - case ROUND: - case SIGN: - case SQRT: - case TRUNCATE: - case ACOS: - case ASIN: - case ATAN: - case ATAN2: - case COS: - case COT: - case DEGREES: - case RADIANS: - case SIN: - case TAN: - case ADDDATE: - case DATE: - case DATE_ADD: - case DATE_SUB: - case DAYOFMONTH: - case DAYOFWEEK: - case DAYOFYEAR: - case DAYNAME: - case FROM_DAYS: - case MONTHNAME: - case SUBDATE: - case TIME: - case TIME_TO_SEC: - case TIMESTAMP: - case DATE_FORMAT: - case TO_DAYS: - case SUBSTR: - case SUBSTRING: - case LTRIM: - case RTRIM: - case TRIM: - case LOWER: - case UPPER: - case CONCAT: - case CONCAT_WS: - case LENGTH: - case STRCMP: - case RIGHT: - case LEFT: - case ASCII: - case LOCATE: - case REPLACE: - case CAST: - case LIKE: - case ISNULL: - case ISNOTNULL: - case IFNULL: - case NULLIF: - case IF: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case INTEGER_LITERAL: - case DECIMAL_LITERAL: - case DQUOTA_STRING: - case SQUOTA_STRING: - case BQUOTA_STRING: - { - _localctx = new ValueExpressionDefaultContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(522); - primaryExpression(); - } - break; - default: - throw new NoViableAltException(this); - } - _ctx.stop = _input.LT(-1); - setState(531); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; - { - { - _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); - ((BinaryArithmeticContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_valueExpression); - setState(525); - if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(526); - binaryOperator(); - setState(527); - ((BinaryArithmeticContext)_localctx).right = valueExpression(4); - } - } - } - setState(533); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - unrollRecursionContexts(_parentctx); - } - return _localctx; - } - - public static class PrimaryExpressionContext extends ParserRuleContext { - public EvalFunctionCallContext evalFunctionCall() { - return getRuleContext(EvalFunctionCallContext.class,0); - } - public DataTypeFunctionCallContext dataTypeFunctionCall() { - return getRuleContext(DataTypeFunctionCallContext.class,0); - } - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public LiteralValueContext literalValue() { - return getRuleContext(LiteralValueContext.class,0); - } - public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_primaryExpression; } - } - - public final PrimaryExpressionContext primaryExpression() throws RecognitionException { - PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_primaryExpression); - try { - setState(538); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(534); - evalFunctionCall(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(535); - dataTypeFunctionCall(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(536); - fieldExpression(); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(537); - literalValue(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BooleanExpressionContext extends ParserRuleContext { - public BooleanFunctionCallContext booleanFunctionCall() { - return getRuleContext(BooleanFunctionCallContext.class,0); - } - public BooleanExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_booleanExpression; } - } - - public final BooleanExpressionContext booleanExpression() throws RecognitionException { - BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_booleanExpression); - try { - enterOuterAlt(_localctx, 1); - { - setState(540); - booleanFunctionCall(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceExpressionContext extends ParserRuleContext { - public SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() { - return getRuleContext(SingleFieldRelevanceFunctionContext.class,0); - } - public MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() { - return getRuleContext(MultiFieldRelevanceFunctionContext.class,0); - } - public RelevanceExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceExpression; } - } - - public final RelevanceExpressionContext relevanceExpression() throws RecognitionException { - RelevanceExpressionContext _localctx = new RelevanceExpressionContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_relevanceExpression); - try { - setState(544); - _errHandler.sync(this); - switch (_input.LA(1)) { - case MATCH: - case MATCH_PHRASE: - enterOuterAlt(_localctx, 1); - { - setState(542); - singleFieldRelevanceFunction(); - } - break; - case SIMPLE_QUERY_STRING: - enterOuterAlt(_localctx, 2); - { - setState(543); - multiFieldRelevanceFunction(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SingleFieldRelevanceFunctionContext extends ParserRuleContext { - public RelevanceFieldContext field; - public RelevanceQueryContext query; - public SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() { - return getRuleContext(SingleFieldRelevanceFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public RelevanceFieldContext relevanceField() { - return getRuleContext(RelevanceFieldContext.class,0); - } - public RelevanceQueryContext relevanceQuery() { - return getRuleContext(RelevanceQueryContext.class,0); - } - public List relevanceArg() { - return getRuleContexts(RelevanceArgContext.class); - } - public RelevanceArgContext relevanceArg(int i) { - return getRuleContext(RelevanceArgContext.class,i); - } - public SingleFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunction; } - } - - public final SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() throws RecognitionException { - SingleFieldRelevanceFunctionContext _localctx = new SingleFieldRelevanceFunctionContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_singleFieldRelevanceFunction); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(546); - singleFieldRelevanceFunctionName(); - setState(547); - match(LT_PRTHS); - setState(548); - ((SingleFieldRelevanceFunctionContext)_localctx).field = relevanceField(); - setState(549); - match(COMMA); - setState(550); - ((SingleFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); - setState(555); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(551); - match(COMMA); - setState(552); - relevanceArg(); - } - } - setState(557); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(558); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class MultiFieldRelevanceFunctionContext extends ParserRuleContext { - public RelevanceFieldAndWeightContext field; - public RelevanceQueryContext query; - public MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() { - return getRuleContext(MultiFieldRelevanceFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode LT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } - public TerminalNode RT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public List relevanceFieldAndWeight() { - return getRuleContexts(RelevanceFieldAndWeightContext.class); - } - public RelevanceFieldAndWeightContext relevanceFieldAndWeight(int i) { - return getRuleContext(RelevanceFieldAndWeightContext.class,i); - } - public RelevanceQueryContext relevanceQuery() { - return getRuleContext(RelevanceQueryContext.class,0); - } - public List relevanceArg() { - return getRuleContexts(RelevanceArgContext.class); - } - public RelevanceArgContext relevanceArg(int i) { - return getRuleContext(RelevanceArgContext.class,i); - } - public MultiFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunction; } - } - - public final MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() throws RecognitionException { - MultiFieldRelevanceFunctionContext _localctx = new MultiFieldRelevanceFunctionContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_multiFieldRelevanceFunction); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(560); - multiFieldRelevanceFunctionName(); - setState(561); - match(LT_PRTHS); - setState(562); - match(LT_SQR_PRTHS); - setState(563); - ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); - setState(568); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(564); - match(COMMA); - setState(565); - ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); - } - } - setState(570); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(571); - match(RT_SQR_PRTHS); - setState(572); - match(COMMA); - setState(573); - ((MultiFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); - setState(578); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(574); - match(COMMA); - setState(575); - relevanceArg(); - } - } - setState(580); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(581); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TableSourceContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public TerminalNode ID_DATE_SUFFIX() { return getToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } - public TableSourceContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_tableSource; } - } - - public final TableSourceContext tableSource() throws RecognitionException { - TableSourceContext _localctx = new TableSourceContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_tableSource); - try { - setState(585); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(583); - qualifiedName(); - } - break; - case ID_DATE_SUFFIX: - enterOuterAlt(_localctx, 2); - { - setState(584); - match(ID_DATE_SUFFIX); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FieldListContext extends ParserRuleContext { - public List fieldExpression() { - return getRuleContexts(FieldExpressionContext.class); - } - public FieldExpressionContext fieldExpression(int i) { - return getRuleContext(FieldExpressionContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public FieldListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fieldList; } - } - - public final FieldListContext fieldList() throws RecognitionException { - FieldListContext _localctx = new FieldListContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_fieldList); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(587); - fieldExpression(); - setState(592); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(588); - match(COMMA); - setState(589); - fieldExpression(); - } - } - setState(594); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WcFieldListContext extends ParserRuleContext { - public List wcFieldExpression() { - return getRuleContexts(WcFieldExpressionContext.class); - } - public WcFieldExpressionContext wcFieldExpression(int i) { - return getRuleContext(WcFieldExpressionContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public WcFieldListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wcFieldList; } - } - - public final WcFieldListContext wcFieldList() throws RecognitionException { - WcFieldListContext _localctx = new WcFieldListContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_wcFieldList); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(595); - wcFieldExpression(); - setState(600); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(596); - match(COMMA); - setState(597); - wcFieldExpression(); - } - } - setState(602); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortFieldContext extends ParserRuleContext { - public SortFieldExpressionContext sortFieldExpression() { - return getRuleContext(SortFieldExpressionContext.class,0); - } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public SortFieldContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortField; } - } - - public final SortFieldContext sortField() throws RecognitionException { - SortFieldContext _localctx = new SortFieldContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_sortField); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(604); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(603); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(606); - sortFieldExpression(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortFieldExpressionContext extends ParserRuleContext { - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public TerminalNode AUTO() { return getToken(OpenSearchPPLParser.AUTO, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public TerminalNode STR() { return getToken(OpenSearchPPLParser.STR, 0); } - public TerminalNode IP() { return getToken(OpenSearchPPLParser.IP, 0); } - public TerminalNode NUM() { return getToken(OpenSearchPPLParser.NUM, 0); } - public SortFieldExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortFieldExpression; } - } - - public final SortFieldExpressionContext sortFieldExpression() throws RecognitionException { - SortFieldExpressionContext _localctx = new SortFieldExpressionContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_sortFieldExpression); - try { - setState(629); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(608); - fieldExpression(); - } - break; - case AUTO: - enterOuterAlt(_localctx, 2); - { - setState(609); - match(AUTO); - setState(610); - match(LT_PRTHS); - setState(611); - fieldExpression(); - setState(612); - match(RT_PRTHS); - } - break; - case STR: - enterOuterAlt(_localctx, 3); - { - setState(614); - match(STR); - setState(615); - match(LT_PRTHS); - setState(616); - fieldExpression(); - setState(617); - match(RT_PRTHS); - } - break; - case IP: - enterOuterAlt(_localctx, 4); - { - setState(619); - match(IP); - setState(620); - match(LT_PRTHS); - setState(621); - fieldExpression(); - setState(622); - match(RT_PRTHS); - } - break; - case NUM: - enterOuterAlt(_localctx, 5); - { - setState(624); - match(NUM); - setState(625); - match(LT_PRTHS); - setState(626); - fieldExpression(); - setState(627); - match(RT_PRTHS); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FieldExpressionContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public FieldExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fieldExpression; } - } - - public final FieldExpressionContext fieldExpression() throws RecognitionException { - FieldExpressionContext _localctx = new FieldExpressionContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_fieldExpression); - try { - enterOuterAlt(_localctx, 1); - { - setState(631); - qualifiedName(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WcFieldExpressionContext extends ParserRuleContext { - public WcQualifiedNameContext wcQualifiedName() { - return getRuleContext(WcQualifiedNameContext.class,0); - } - public WcFieldExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wcFieldExpression; } - } - - public final WcFieldExpressionContext wcFieldExpression() throws RecognitionException { - WcFieldExpressionContext _localctx = new WcFieldExpressionContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_wcFieldExpression); - try { - enterOuterAlt(_localctx, 1); - { - setState(633); - wcQualifiedName(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalFunctionCallContext extends ParserRuleContext { - public EvalFunctionNameContext evalFunctionName() { - return getRuleContext(EvalFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public FunctionArgsContext functionArgs() { - return getRuleContext(FunctionArgsContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public EvalFunctionCallContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalFunctionCall; } - } - - public final EvalFunctionCallContext evalFunctionCall() throws RecognitionException { - EvalFunctionCallContext _localctx = new EvalFunctionCallContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_evalFunctionCall); - try { - enterOuterAlt(_localctx, 1); - { - setState(635); - evalFunctionName(); - setState(636); - match(LT_PRTHS); - setState(637); - functionArgs(); - setState(638); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DataTypeFunctionCallContext extends ParserRuleContext { - public TerminalNode CAST() { return getToken(OpenSearchPPLParser.CAST, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public ConvertedDataTypeContext convertedDataType() { - return getRuleContext(ConvertedDataTypeContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public DataTypeFunctionCallContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_dataTypeFunctionCall; } - } - - public final DataTypeFunctionCallContext dataTypeFunctionCall() throws RecognitionException { - DataTypeFunctionCallContext _localctx = new DataTypeFunctionCallContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_dataTypeFunctionCall); - try { - enterOuterAlt(_localctx, 1); - { - setState(640); - match(CAST); - setState(641); - match(LT_PRTHS); - setState(642); - expression(); - setState(643); - match(AS); - setState(644); - convertedDataType(); - setState(645); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BooleanFunctionCallContext extends ParserRuleContext { - public ConditionFunctionBaseContext conditionFunctionBase() { - return getRuleContext(ConditionFunctionBaseContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public FunctionArgsContext functionArgs() { - return getRuleContext(FunctionArgsContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public BooleanFunctionCallContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_booleanFunctionCall; } - } - - public final BooleanFunctionCallContext booleanFunctionCall() throws RecognitionException { - BooleanFunctionCallContext _localctx = new BooleanFunctionCallContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_booleanFunctionCall); - try { - enterOuterAlt(_localctx, 1); - { - setState(647); - conditionFunctionBase(); - setState(648); - match(LT_PRTHS); - setState(649); - functionArgs(); - setState(650); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ConvertedDataTypeContext extends ParserRuleContext { - public Token typeName; - public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } - public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } - public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TerminalNode INT() { return getToken(OpenSearchPPLParser.INT, 0); } - public TerminalNode INTEGER() { return getToken(OpenSearchPPLParser.INTEGER, 0); } - public TerminalNode DOUBLE() { return getToken(OpenSearchPPLParser.DOUBLE, 0); } - public TerminalNode LONG() { return getToken(OpenSearchPPLParser.LONG, 0); } - public TerminalNode FLOAT() { return getToken(OpenSearchPPLParser.FLOAT, 0); } - public TerminalNode STRING() { return getToken(OpenSearchPPLParser.STRING, 0); } - public TerminalNode BOOLEAN() { return getToken(OpenSearchPPLParser.BOOLEAN, 0); } - public ConvertedDataTypeContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_convertedDataType; } - } - - public final ConvertedDataTypeContext convertedDataType() throws RecognitionException { - ConvertedDataTypeContext _localctx = new ConvertedDataTypeContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_convertedDataType); - try { - setState(662); - _errHandler.sync(this); - switch (_input.LA(1)) { - case DATE: - enterOuterAlt(_localctx, 1); - { - setState(652); - ((ConvertedDataTypeContext)_localctx).typeName = match(DATE); - } - break; - case TIME: - enterOuterAlt(_localctx, 2); - { - setState(653); - ((ConvertedDataTypeContext)_localctx).typeName = match(TIME); - } - break; - case TIMESTAMP: - enterOuterAlt(_localctx, 3); - { - setState(654); - ((ConvertedDataTypeContext)_localctx).typeName = match(TIMESTAMP); - } - break; - case INT: - enterOuterAlt(_localctx, 4); - { - setState(655); - ((ConvertedDataTypeContext)_localctx).typeName = match(INT); - } - break; - case INTEGER: - enterOuterAlt(_localctx, 5); - { - setState(656); - ((ConvertedDataTypeContext)_localctx).typeName = match(INTEGER); - } - break; - case DOUBLE: - enterOuterAlt(_localctx, 6); - { - setState(657); - ((ConvertedDataTypeContext)_localctx).typeName = match(DOUBLE); - } - break; - case LONG: - enterOuterAlt(_localctx, 7); - { - setState(658); - ((ConvertedDataTypeContext)_localctx).typeName = match(LONG); - } - break; - case FLOAT: - enterOuterAlt(_localctx, 8); - { - setState(659); - ((ConvertedDataTypeContext)_localctx).typeName = match(FLOAT); - } - break; - case STRING: - enterOuterAlt(_localctx, 9); - { - setState(660); - ((ConvertedDataTypeContext)_localctx).typeName = match(STRING); - } - break; - case BOOLEAN: - enterOuterAlt(_localctx, 10); - { - setState(661); - ((ConvertedDataTypeContext)_localctx).typeName = match(BOOLEAN); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalFunctionNameContext extends ParserRuleContext { - public MathematicalFunctionBaseContext mathematicalFunctionBase() { - return getRuleContext(MathematicalFunctionBaseContext.class,0); - } - public DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() { - return getRuleContext(DateAndTimeFunctionBaseContext.class,0); - } - public TextFunctionBaseContext textFunctionBase() { - return getRuleContext(TextFunctionBaseContext.class,0); - } - public ConditionFunctionBaseContext conditionFunctionBase() { - return getRuleContext(ConditionFunctionBaseContext.class,0); - } - public EvalFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalFunctionName; } - } - - public final EvalFunctionNameContext evalFunctionName() throws RecognitionException { - EvalFunctionNameContext _localctx = new EvalFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_evalFunctionName); - try { - setState(668); - _errHandler.sync(this); - switch (_input.LA(1)) { - case ABS: - case CEIL: - case CEILING: - case CONV: - case CRC32: - case E: - case EXP: - case FLOOR: - case LN: - case LOG: - case LOG10: - case LOG2: - case MOD: - case PI: - case POW: - case POWER: - case RAND: - case ROUND: - case SIGN: - case SQRT: - case TRUNCATE: - case ACOS: - case ASIN: - case ATAN: - case ATAN2: - case COS: - case COT: - case DEGREES: - case RADIANS: - case SIN: - case TAN: - enterOuterAlt(_localctx, 1); - { - setState(664); - mathematicalFunctionBase(); - } - break; - case MICROSECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case ADDDATE: - case DATE: - case DATE_ADD: - case DATE_SUB: - case DAYOFMONTH: - case DAYOFWEEK: - case DAYOFYEAR: - case DAYNAME: - case FROM_DAYS: - case MONTHNAME: - case SUBDATE: - case TIME: - case TIME_TO_SEC: - case TIMESTAMP: - case DATE_FORMAT: - case TO_DAYS: - enterOuterAlt(_localctx, 2); - { - setState(665); - dateAndTimeFunctionBase(); - } - break; - case SUBSTR: - case SUBSTRING: - case LTRIM: - case RTRIM: - case TRIM: - case LOWER: - case UPPER: - case CONCAT: - case CONCAT_WS: - case LENGTH: - case STRCMP: - case RIGHT: - case LEFT: - case ASCII: - case LOCATE: - case REPLACE: - enterOuterAlt(_localctx, 3); - { - setState(666); - textFunctionBase(); - } - break; - case LIKE: - case ISNULL: - case ISNOTNULL: - case IFNULL: - case NULLIF: - case IF: - enterOuterAlt(_localctx, 4); - { - setState(667); - conditionFunctionBase(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FunctionArgsContext extends ParserRuleContext { - public List functionArg() { - return getRuleContexts(FunctionArgContext.class); - } - public FunctionArgContext functionArg(int i) { - return getRuleContext(FunctionArgContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public FunctionArgsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_functionArgs; } - } - - public final FunctionArgsContext functionArgs() throws RecognitionException { - FunctionArgsContext _localctx = new FunctionArgsContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_functionArgs); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(678); - _errHandler.sync(this); - _la = _input.LA(1); - if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (TRUE - 20)) | (1L << (FALSE - 20)) | (1L << (INTERVAL - 20)) | (1L << (MICROSECOND - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 90)) & ~0x3f) == 0 && ((1L << (_la - 90)) & ((1L << (DOT - 90)) | (1L << (PLUS - 90)) | (1L << (MINUS - 90)) | (1L << (LT_PRTHS - 90)) | (1L << (BACKTICK - 90)) | (1L << (AVG - 90)) | (1L << (COUNT - 90)) | (1L << (MAX - 90)) | (1L << (MIN - 90)) | (1L << (SUM - 90)) | (1L << (VAR_SAMP - 90)) | (1L << (VAR_POP - 90)) | (1L << (STDDEV_SAMP - 90)) | (1L << (STDDEV_POP - 90)) | (1L << (FIRST - 90)) | (1L << (LAST - 90)) | (1L << (ABS - 90)) | (1L << (CEIL - 90)) | (1L << (CEILING - 90)) | (1L << (CONV - 90)))) != 0) || ((((_la - 154)) & ~0x3f) == 0 && ((1L << (_la - 154)) & ((1L << (CRC32 - 154)) | (1L << (E - 154)) | (1L << (EXP - 154)) | (1L << (FLOOR - 154)) | (1L << (LN - 154)) | (1L << (LOG - 154)) | (1L << (LOG10 - 154)) | (1L << (LOG2 - 154)) | (1L << (MOD - 154)) | (1L << (PI - 154)) | (1L << (POW - 154)) | (1L << (POWER - 154)) | (1L << (RAND - 154)) | (1L << (ROUND - 154)) | (1L << (SIGN - 154)) | (1L << (SQRT - 154)) | (1L << (TRUNCATE - 154)) | (1L << (ACOS - 154)) | (1L << (ASIN - 154)) | (1L << (ATAN - 154)) | (1L << (ATAN2 - 154)) | (1L << (COS - 154)) | (1L << (COT - 154)) | (1L << (DEGREES - 154)) | (1L << (RADIANS - 154)) | (1L << (SIN - 154)) | (1L << (TAN - 154)) | (1L << (ADDDATE - 154)) | (1L << (DATE - 154)) | (1L << (DATE_ADD - 154)) | (1L << (DATE_SUB - 154)) | (1L << (DAYOFMONTH - 154)) | (1L << (DAYOFWEEK - 154)) | (1L << (DAYOFYEAR - 154)) | (1L << (DAYNAME - 154)) | (1L << (FROM_DAYS - 154)) | (1L << (MONTHNAME - 154)) | (1L << (SUBDATE - 154)) | (1L << (TIME - 154)) | (1L << (TIME_TO_SEC - 154)) | (1L << (TIMESTAMP - 154)) | (1L << (DATE_FORMAT - 154)) | (1L << (TO_DAYS - 154)) | (1L << (SUBSTR - 154)) | (1L << (SUBSTRING - 154)) | (1L << (LTRIM - 154)) | (1L << (RTRIM - 154)) | (1L << (TRIM - 154)) | (1L << (LOWER - 154)) | (1L << (UPPER - 154)) | (1L << (CONCAT - 154)) | (1L << (CONCAT_WS - 154)) | (1L << (LENGTH - 154)) | (1L << (STRCMP - 154)) | (1L << (RIGHT - 154)) | (1L << (LEFT - 154)) | (1L << (ASCII - 154)) | (1L << (LOCATE - 154)) | (1L << (REPLACE - 154)) | (1L << (CAST - 154)) | (1L << (LIKE - 154)) | (1L << (ISNULL - 154)) | (1L << (ISNOTNULL - 154)))) != 0) || ((((_la - 218)) & ~0x3f) == 0 && ((1L << (_la - 218)) & ((1L << (IFNULL - 218)) | (1L << (NULLIF - 218)) | (1L << (IF - 218)) | (1L << (SPAN - 218)) | (1L << (MS - 218)) | (1L << (S - 218)) | (1L << (M - 218)) | (1L << (H - 218)) | (1L << (W - 218)) | (1L << (Q - 218)) | (1L << (Y - 218)) | (1L << (ID - 218)) | (1L << (INTEGER_LITERAL - 218)) | (1L << (DECIMAL_LITERAL - 218)) | (1L << (DQUOTA_STRING - 218)) | (1L << (SQUOTA_STRING - 218)) | (1L << (BQUOTA_STRING - 218)))) != 0)) { - { - setState(670); - functionArg(); - setState(675); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(671); - match(COMMA); - setState(672); - functionArg(); - } - } - setState(677); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FunctionArgContext extends ParserRuleContext { - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public FunctionArgContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_functionArg; } - } - - public final FunctionArgContext functionArg() throws RecognitionException { - FunctionArgContext _localctx = new FunctionArgContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_functionArg); - try { - enterOuterAlt(_localctx, 1); - { - setState(680); - valueExpression(0); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceArgContext extends ParserRuleContext { - public RelevanceArgNameContext relevanceArgName() { - return getRuleContext(RelevanceArgNameContext.class,0); - } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public RelevanceArgValueContext relevanceArgValue() { - return getRuleContext(RelevanceArgValueContext.class,0); - } - public RelevanceArgContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceArg; } - } - - public final RelevanceArgContext relevanceArg() throws RecognitionException { - RelevanceArgContext _localctx = new RelevanceArgContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_relevanceArg); - try { - enterOuterAlt(_localctx, 1); - { - setState(682); - relevanceArgName(); - setState(683); - match(EQUAL); - setState(684); - relevanceArgValue(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceArgNameContext extends ParserRuleContext { - public TerminalNode ALLOW_LEADING_WILDCARD() { return getToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } - public TerminalNode ANALYZER() { return getToken(OpenSearchPPLParser.ANALYZER, 0); } - public TerminalNode ANALYZE_WILDCARD() { return getToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } - public TerminalNode AUTO_GENERATE_SYNONYMS_PHRASE_QUERY() { return getToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } - public TerminalNode BOOST() { return getToken(OpenSearchPPLParser.BOOST, 0); } - public TerminalNode CUTOFF_FREQUENCY() { return getToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } - public TerminalNode DEFAULT_FIELD() { return getToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } - public TerminalNode DEFAULT_OPERATOR() { return getToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } - public TerminalNode ENABLE_POSITION_INCREMENTS() { return getToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } - public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } - public TerminalNode FLAGS() { return getToken(OpenSearchPPLParser.FLAGS, 0); } - public TerminalNode FUZZINESS() { return getToken(OpenSearchPPLParser.FUZZINESS, 0); } - public TerminalNode FUZZY_MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } - public TerminalNode FUZZY_PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } - public TerminalNode FUZZY_REWRITE() { return getToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } - public TerminalNode FUZZY_TRANSPOSITIONS() { return getToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } - public TerminalNode LENIENT() { return getToken(OpenSearchPPLParser.LENIENT, 0); } - public TerminalNode LOW_FREQ_OPERATOR() { return getToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } - public TerminalNode MAX_DETERMINIZED_STATES() { return getToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } - public TerminalNode MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } - public TerminalNode MINIMUM_SHOULD_MATCH() { return getToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } - public TerminalNode OPERATOR() { return getToken(OpenSearchPPLParser.OPERATOR, 0); } - public TerminalNode PHRASE_SLOP() { return getToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } - public TerminalNode PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } - public TerminalNode QUOTE_ANALYZER() { return getToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } - public TerminalNode QUOTE_FIELD_SUFFIX() { return getToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } - public TerminalNode REWRITE() { return getToken(OpenSearchPPLParser.REWRITE, 0); } - public TerminalNode SLOP() { return getToken(OpenSearchPPLParser.SLOP, 0); } - public TerminalNode TIE_BREAKER() { return getToken(OpenSearchPPLParser.TIE_BREAKER, 0); } - public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TerminalNode TYPE() { return getToken(OpenSearchPPLParser.TYPE, 0); } - public TerminalNode ZERO_TERMS_QUERY() { return getToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } - public RelevanceArgNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceArgName; } - } - - public final RelevanceArgNameContext relevanceArgName() throws RecognitionException { - RelevanceArgNameContext _localctx = new RelevanceArgNameContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_relevanceArgName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(686); - _la = _input.LA(1); - if ( !(_la==FIELDS || _la==TIME_ZONE || ((((_la - 224)) & ~0x3f) == 0 && ((1L << (_la - 224)) & ((1L << (ALLOW_LEADING_WILDCARD - 224)) | (1L << (ANALYZE_WILDCARD - 224)) | (1L << (ANALYZER - 224)) | (1L << (AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1L << (BOOST - 224)) | (1L << (CUTOFF_FREQUENCY - 224)) | (1L << (DEFAULT_FIELD - 224)) | (1L << (DEFAULT_OPERATOR - 224)) | (1L << (ENABLE_POSITION_INCREMENTS - 224)) | (1L << (FLAGS - 224)) | (1L << (FUZZY_MAX_EXPANSIONS - 224)) | (1L << (FUZZY_PREFIX_LENGTH - 224)) | (1L << (FUZZY_TRANSPOSITIONS - 224)) | (1L << (FUZZY_REWRITE - 224)) | (1L << (FUZZINESS - 224)) | (1L << (LENIENT - 224)) | (1L << (LOW_FREQ_OPERATOR - 224)) | (1L << (MAX_DETERMINIZED_STATES - 224)) | (1L << (MAX_EXPANSIONS - 224)) | (1L << (MINIMUM_SHOULD_MATCH - 224)) | (1L << (OPERATOR - 224)) | (1L << (PHRASE_SLOP - 224)) | (1L << (PREFIX_LENGTH - 224)) | (1L << (QUOTE_ANALYZER - 224)) | (1L << (QUOTE_FIELD_SUFFIX - 224)) | (1L << (REWRITE - 224)) | (1L << (SLOP - 224)) | (1L << (TIE_BREAKER - 224)) | (1L << (TYPE - 224)) | (1L << (ZERO_TERMS_QUERY - 224)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceFieldAndWeightContext extends ParserRuleContext { - public RelevanceFieldContext field; - public RelevanceFieldWeightContext weight; - public RelevanceFieldContext relevanceField() { - return getRuleContext(RelevanceFieldContext.class,0); - } - public RelevanceFieldWeightContext relevanceFieldWeight() { - return getRuleContext(RelevanceFieldWeightContext.class,0); - } - public TerminalNode BIT_XOR_OP() { return getToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } - public RelevanceFieldAndWeightContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceFieldAndWeight; } - } - - public final RelevanceFieldAndWeightContext relevanceFieldAndWeight() throws RecognitionException { - RelevanceFieldAndWeightContext _localctx = new RelevanceFieldAndWeightContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_relevanceFieldAndWeight); - try { - setState(696); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(688); - ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(689); - ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); - setState(690); - ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(692); - ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); - setState(693); - match(BIT_XOR_OP); - setState(694); - ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceFieldWeightContext extends ParserRuleContext { - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public DecimalLiteralContext decimalLiteral() { - return getRuleContext(DecimalLiteralContext.class,0); - } - public RelevanceFieldWeightContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceFieldWeight; } - } - - public final RelevanceFieldWeightContext relevanceFieldWeight() throws RecognitionException { - RelevanceFieldWeightContext _localctx = new RelevanceFieldWeightContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_relevanceFieldWeight); - try { - setState(700); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(698); - integerLiteral(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(699); - decimalLiteral(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceFieldContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public RelevanceFieldContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceField; } - } - - public final RelevanceFieldContext relevanceField() throws RecognitionException { - RelevanceFieldContext _localctx = new RelevanceFieldContext(_ctx, getState()); - enterRule(_localctx, 116, RULE_relevanceField); - try { - setState(704); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(702); - qualifiedName(); - } - break; - case DQUOTA_STRING: - case SQUOTA_STRING: - enterOuterAlt(_localctx, 2); - { - setState(703); - stringLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceQueryContext extends ParserRuleContext { - public RelevanceArgValueContext relevanceArgValue() { - return getRuleContext(RelevanceArgValueContext.class,0); - } - public RelevanceQueryContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceQuery; } - } - - public final RelevanceQueryContext relevanceQuery() throws RecognitionException { - RelevanceQueryContext _localctx = new RelevanceQueryContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_relevanceQuery); - try { - enterOuterAlt(_localctx, 1); - { - setState(706); - relevanceArgValue(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceArgValueContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public LiteralValueContext literalValue() { - return getRuleContext(LiteralValueContext.class,0); - } - public RelevanceArgValueContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceArgValue; } - } - - public final RelevanceArgValueContext relevanceArgValue() throws RecognitionException { - RelevanceArgValueContext _localctx = new RelevanceArgValueContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_relevanceArgValue); - try { - setState(710); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(708); - qualifiedName(); - } - break; - case TRUE: - case FALSE: - case INTERVAL: - case PLUS: - case MINUS: - case INTEGER_LITERAL: - case DECIMAL_LITERAL: - case DQUOTA_STRING: - case SQUOTA_STRING: - enterOuterAlt(_localctx, 2); - { - setState(709); - literalValue(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class MathematicalFunctionBaseContext extends ParserRuleContext { - public TerminalNode ABS() { return getToken(OpenSearchPPLParser.ABS, 0); } - public TerminalNode CEIL() { return getToken(OpenSearchPPLParser.CEIL, 0); } - public TerminalNode CEILING() { return getToken(OpenSearchPPLParser.CEILING, 0); } - public TerminalNode CONV() { return getToken(OpenSearchPPLParser.CONV, 0); } - public TerminalNode CRC32() { return getToken(OpenSearchPPLParser.CRC32, 0); } - public TerminalNode E() { return getToken(OpenSearchPPLParser.E, 0); } - public TerminalNode EXP() { return getToken(OpenSearchPPLParser.EXP, 0); } - public TerminalNode FLOOR() { return getToken(OpenSearchPPLParser.FLOOR, 0); } - public TerminalNode LN() { return getToken(OpenSearchPPLParser.LN, 0); } - public TerminalNode LOG() { return getToken(OpenSearchPPLParser.LOG, 0); } - public TerminalNode LOG10() { return getToken(OpenSearchPPLParser.LOG10, 0); } - public TerminalNode LOG2() { return getToken(OpenSearchPPLParser.LOG2, 0); } - public TerminalNode MOD() { return getToken(OpenSearchPPLParser.MOD, 0); } - public TerminalNode PI() { return getToken(OpenSearchPPLParser.PI, 0); } - public TerminalNode POW() { return getToken(OpenSearchPPLParser.POW, 0); } - public TerminalNode POWER() { return getToken(OpenSearchPPLParser.POWER, 0); } - public TerminalNode RAND() { return getToken(OpenSearchPPLParser.RAND, 0); } - public TerminalNode ROUND() { return getToken(OpenSearchPPLParser.ROUND, 0); } - public TerminalNode SIGN() { return getToken(OpenSearchPPLParser.SIGN, 0); } - public TerminalNode SQRT() { return getToken(OpenSearchPPLParser.SQRT, 0); } - public TerminalNode TRUNCATE() { return getToken(OpenSearchPPLParser.TRUNCATE, 0); } - public TrigonometricFunctionNameContext trigonometricFunctionName() { - return getRuleContext(TrigonometricFunctionNameContext.class,0); - } - public MathematicalFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_mathematicalFunctionBase; } - } - - public final MathematicalFunctionBaseContext mathematicalFunctionBase() throws RecognitionException { - MathematicalFunctionBaseContext _localctx = new MathematicalFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_mathematicalFunctionBase); - try { - setState(734); - _errHandler.sync(this); - switch (_input.LA(1)) { - case ABS: - enterOuterAlt(_localctx, 1); - { - setState(712); - match(ABS); - } - break; - case CEIL: - enterOuterAlt(_localctx, 2); - { - setState(713); - match(CEIL); - } - break; - case CEILING: - enterOuterAlt(_localctx, 3); - { - setState(714); - match(CEILING); - } - break; - case CONV: - enterOuterAlt(_localctx, 4); - { - setState(715); - match(CONV); - } - break; - case CRC32: - enterOuterAlt(_localctx, 5); - { - setState(716); - match(CRC32); - } - break; - case E: - enterOuterAlt(_localctx, 6); - { - setState(717); - match(E); - } - break; - case EXP: - enterOuterAlt(_localctx, 7); - { - setState(718); - match(EXP); - } - break; - case FLOOR: - enterOuterAlt(_localctx, 8); - { - setState(719); - match(FLOOR); - } - break; - case LN: - enterOuterAlt(_localctx, 9); - { - setState(720); - match(LN); - } - break; - case LOG: - enterOuterAlt(_localctx, 10); - { - setState(721); - match(LOG); - } - break; - case LOG10: - enterOuterAlt(_localctx, 11); - { - setState(722); - match(LOG10); - } - break; - case LOG2: - enterOuterAlt(_localctx, 12); - { - setState(723); - match(LOG2); - } - break; - case MOD: - enterOuterAlt(_localctx, 13); - { - setState(724); - match(MOD); - } - break; - case PI: - enterOuterAlt(_localctx, 14); - { - setState(725); - match(PI); - } - break; - case POW: - enterOuterAlt(_localctx, 15); - { - setState(726); - match(POW); - } - break; - case POWER: - enterOuterAlt(_localctx, 16); - { - setState(727); - match(POWER); - } - break; - case RAND: - enterOuterAlt(_localctx, 17); - { - setState(728); - match(RAND); - } - break; - case ROUND: - enterOuterAlt(_localctx, 18); - { - setState(729); - match(ROUND); - } - break; - case SIGN: - enterOuterAlt(_localctx, 19); - { - setState(730); - match(SIGN); - } - break; - case SQRT: - enterOuterAlt(_localctx, 20); - { - setState(731); - match(SQRT); - } - break; - case TRUNCATE: - enterOuterAlt(_localctx, 21); - { - setState(732); - match(TRUNCATE); - } - break; - case ACOS: - case ASIN: - case ATAN: - case ATAN2: - case COS: - case COT: - case DEGREES: - case RADIANS: - case SIN: - case TAN: - enterOuterAlt(_localctx, 22); - { - setState(733); - trigonometricFunctionName(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TrigonometricFunctionNameContext extends ParserRuleContext { - public TerminalNode ACOS() { return getToken(OpenSearchPPLParser.ACOS, 0); } - public TerminalNode ASIN() { return getToken(OpenSearchPPLParser.ASIN, 0); } - public TerminalNode ATAN() { return getToken(OpenSearchPPLParser.ATAN, 0); } - public TerminalNode ATAN2() { return getToken(OpenSearchPPLParser.ATAN2, 0); } - public TerminalNode COS() { return getToken(OpenSearchPPLParser.COS, 0); } - public TerminalNode COT() { return getToken(OpenSearchPPLParser.COT, 0); } - public TerminalNode DEGREES() { return getToken(OpenSearchPPLParser.DEGREES, 0); } - public TerminalNode RADIANS() { return getToken(OpenSearchPPLParser.RADIANS, 0); } - public TerminalNode SIN() { return getToken(OpenSearchPPLParser.SIN, 0); } - public TerminalNode TAN() { return getToken(OpenSearchPPLParser.TAN, 0); } - public TrigonometricFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_trigonometricFunctionName; } - } - - public final TrigonometricFunctionNameContext trigonometricFunctionName() throws RecognitionException { - TrigonometricFunctionNameContext _localctx = new TrigonometricFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_trigonometricFunctionName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(736); - _la = _input.LA(1); - if ( !(((((_la - 171)) & ~0x3f) == 0 && ((1L << (_la - 171)) & ((1L << (ACOS - 171)) | (1L << (ASIN - 171)) | (1L << (ATAN - 171)) | (1L << (ATAN2 - 171)) | (1L << (COS - 171)) | (1L << (COT - 171)) | (1L << (DEGREES - 171)) | (1L << (RADIANS - 171)) | (1L << (SIN - 171)) | (1L << (TAN - 171)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DateAndTimeFunctionBaseContext extends ParserRuleContext { - public TerminalNode ADDDATE() { return getToken(OpenSearchPPLParser.ADDDATE, 0); } - public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } - public TerminalNode DATE_ADD() { return getToken(OpenSearchPPLParser.DATE_ADD, 0); } - public TerminalNode DATE_SUB() { return getToken(OpenSearchPPLParser.DATE_SUB, 0); } - public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } - public TerminalNode DAYNAME() { return getToken(OpenSearchPPLParser.DAYNAME, 0); } - public TerminalNode DAYOFMONTH() { return getToken(OpenSearchPPLParser.DAYOFMONTH, 0); } - public TerminalNode DAYOFWEEK() { return getToken(OpenSearchPPLParser.DAYOFWEEK, 0); } - public TerminalNode DAYOFYEAR() { return getToken(OpenSearchPPLParser.DAYOFYEAR, 0); } - public TerminalNode FROM_DAYS() { return getToken(OpenSearchPPLParser.FROM_DAYS, 0); } - public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } - public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } - public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } - public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } - public TerminalNode MONTHNAME() { return getToken(OpenSearchPPLParser.MONTHNAME, 0); } - public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } - public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } - public TerminalNode SUBDATE() { return getToken(OpenSearchPPLParser.SUBDATE, 0); } - public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } - public TerminalNode TIME_TO_SEC() { return getToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } - public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TerminalNode TO_DAYS() { return getToken(OpenSearchPPLParser.TO_DAYS, 0); } - public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } - public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } - public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - public DateAndTimeFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_dateAndTimeFunctionBase; } - } - - public final DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() throws RecognitionException { - DateAndTimeFunctionBaseContext _localctx = new DateAndTimeFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_dateAndTimeFunctionBase); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(738); - _la = _input.LA(1); - if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)))) != 0) || ((((_la - 181)) & ~0x3f) == 0 && ((1L << (_la - 181)) & ((1L << (ADDDATE - 181)) | (1L << (DATE - 181)) | (1L << (DATE_ADD - 181)) | (1L << (DATE_SUB - 181)) | (1L << (DAYOFMONTH - 181)) | (1L << (DAYOFWEEK - 181)) | (1L << (DAYOFYEAR - 181)) | (1L << (DAYNAME - 181)) | (1L << (FROM_DAYS - 181)) | (1L << (MONTHNAME - 181)) | (1L << (SUBDATE - 181)) | (1L << (TIME - 181)) | (1L << (TIME_TO_SEC - 181)) | (1L << (TIMESTAMP - 181)) | (1L << (DATE_FORMAT - 181)) | (1L << (TO_DAYS - 181)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ConditionFunctionBaseContext extends ParserRuleContext { - public TerminalNode LIKE() { return getToken(OpenSearchPPLParser.LIKE, 0); } - public TerminalNode IF() { return getToken(OpenSearchPPLParser.IF, 0); } - public TerminalNode ISNULL() { return getToken(OpenSearchPPLParser.ISNULL, 0); } - public TerminalNode ISNOTNULL() { return getToken(OpenSearchPPLParser.ISNOTNULL, 0); } - public TerminalNode IFNULL() { return getToken(OpenSearchPPLParser.IFNULL, 0); } - public TerminalNode NULLIF() { return getToken(OpenSearchPPLParser.NULLIF, 0); } - public ConditionFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_conditionFunctionBase; } - } - - public final ConditionFunctionBaseContext conditionFunctionBase() throws RecognitionException { - ConditionFunctionBaseContext _localctx = new ConditionFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_conditionFunctionBase); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(740); - _la = _input.LA(1); - if ( !(((((_la - 215)) & ~0x3f) == 0 && ((1L << (_la - 215)) & ((1L << (LIKE - 215)) | (1L << (ISNULL - 215)) | (1L << (ISNOTNULL - 215)) | (1L << (IFNULL - 215)) | (1L << (NULLIF - 215)) | (1L << (IF - 215)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TextFunctionBaseContext extends ParserRuleContext { - public TerminalNode SUBSTR() { return getToken(OpenSearchPPLParser.SUBSTR, 0); } - public TerminalNode SUBSTRING() { return getToken(OpenSearchPPLParser.SUBSTRING, 0); } - public TerminalNode TRIM() { return getToken(OpenSearchPPLParser.TRIM, 0); } - public TerminalNode LTRIM() { return getToken(OpenSearchPPLParser.LTRIM, 0); } - public TerminalNode RTRIM() { return getToken(OpenSearchPPLParser.RTRIM, 0); } - public TerminalNode LOWER() { return getToken(OpenSearchPPLParser.LOWER, 0); } - public TerminalNode UPPER() { return getToken(OpenSearchPPLParser.UPPER, 0); } - public TerminalNode CONCAT() { return getToken(OpenSearchPPLParser.CONCAT, 0); } - public TerminalNode CONCAT_WS() { return getToken(OpenSearchPPLParser.CONCAT_WS, 0); } - public TerminalNode LENGTH() { return getToken(OpenSearchPPLParser.LENGTH, 0); } - public TerminalNode STRCMP() { return getToken(OpenSearchPPLParser.STRCMP, 0); } - public TerminalNode RIGHT() { return getToken(OpenSearchPPLParser.RIGHT, 0); } - public TerminalNode LEFT() { return getToken(OpenSearchPPLParser.LEFT, 0); } - public TerminalNode ASCII() { return getToken(OpenSearchPPLParser.ASCII, 0); } - public TerminalNode LOCATE() { return getToken(OpenSearchPPLParser.LOCATE, 0); } - public TerminalNode REPLACE() { return getToken(OpenSearchPPLParser.REPLACE, 0); } - public TextFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_textFunctionBase; } - } - - public final TextFunctionBaseContext textFunctionBase() throws RecognitionException { - TextFunctionBaseContext _localctx = new TextFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_textFunctionBase); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(742); - _la = _input.LA(1); - if ( !(((((_la - 197)) & ~0x3f) == 0 && ((1L << (_la - 197)) & ((1L << (SUBSTR - 197)) | (1L << (SUBSTRING - 197)) | (1L << (LTRIM - 197)) | (1L << (RTRIM - 197)) | (1L << (TRIM - 197)) | (1L << (LOWER - 197)) | (1L << (UPPER - 197)) | (1L << (CONCAT - 197)) | (1L << (CONCAT_WS - 197)) | (1L << (LENGTH - 197)) | (1L << (STRCMP - 197)) | (1L << (RIGHT - 197)) | (1L << (LEFT - 197)) | (1L << (ASCII - 197)) | (1L << (LOCATE - 197)) | (1L << (REPLACE - 197)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ComparisonOperatorContext extends ParserRuleContext { - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public TerminalNode NOT_EQUAL() { return getToken(OpenSearchPPLParser.NOT_EQUAL, 0); } - public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } - public TerminalNode NOT_LESS() { return getToken(OpenSearchPPLParser.NOT_LESS, 0); } - public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } - public TerminalNode NOT_GREATER() { return getToken(OpenSearchPPLParser.NOT_GREATER, 0); } - public TerminalNode REGEXP() { return getToken(OpenSearchPPLParser.REGEXP, 0); } - public ComparisonOperatorContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_comparisonOperator; } - } - - public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { - ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_comparisonOperator); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(744); - _la = _input.LA(1); - if ( !(((((_la - 54)) & ~0x3f) == 0 && ((1L << (_la - 54)) & ((1L << (REGEXP - 54)) | (1L << (EQUAL - 54)) | (1L << (GREATER - 54)) | (1L << (LESS - 54)) | (1L << (NOT_GREATER - 54)) | (1L << (NOT_LESS - 54)) | (1L << (NOT_EQUAL - 54)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BinaryOperatorContext extends ParserRuleContext { - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public TerminalNode STAR() { return getToken(OpenSearchPPLParser.STAR, 0); } - public TerminalNode DIVIDE() { return getToken(OpenSearchPPLParser.DIVIDE, 0); } - public TerminalNode MODULE() { return getToken(OpenSearchPPLParser.MODULE, 0); } - public BinaryOperatorContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_binaryOperator; } - } - - public final BinaryOperatorContext binaryOperator() throws RecognitionException { - BinaryOperatorContext _localctx = new BinaryOperatorContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_binaryOperator); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(746); - _la = _input.LA(1); - if ( !(((((_la - 97)) & ~0x3f) == 0 && ((1L << (_la - 97)) & ((1L << (PLUS - 97)) | (1L << (MINUS - 97)) | (1L << (STAR - 97)) | (1L << (DIVIDE - 97)) | (1L << (MODULE - 97)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { - public TerminalNode MATCH() { return getToken(OpenSearchPPLParser.MATCH, 0); } - public TerminalNode MATCH_PHRASE() { return getToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } - public SingleFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunctionName; } - } - - public final SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() throws RecognitionException { - SingleFieldRelevanceFunctionNameContext _localctx = new SingleFieldRelevanceFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 136, RULE_singleFieldRelevanceFunctionName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(748); - _la = _input.LA(1); - if ( !(_la==MATCH || _la==MATCH_PHRASE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { - public TerminalNode SIMPLE_QUERY_STRING() { return getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } - public MultiFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunctionName; } - } - - public final MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() throws RecognitionException { - MultiFieldRelevanceFunctionNameContext _localctx = new MultiFieldRelevanceFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 138, RULE_multiFieldRelevanceFunctionName); - try { - enterOuterAlt(_localctx, 1); - { - setState(750); - match(SIMPLE_QUERY_STRING); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class LiteralValueContext extends ParserRuleContext { - public IntervalLiteralContext intervalLiteral() { - return getRuleContext(IntervalLiteralContext.class,0); - } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public DecimalLiteralContext decimalLiteral() { - return getRuleContext(DecimalLiteralContext.class,0); - } - public BooleanLiteralContext booleanLiteral() { - return getRuleContext(BooleanLiteralContext.class,0); - } - public LiteralValueContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_literalValue; } - } - - public final LiteralValueContext literalValue() throws RecognitionException { - LiteralValueContext _localctx = new LiteralValueContext(_ctx, getState()); - enterRule(_localctx, 140, RULE_literalValue); - try { - setState(757); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(752); - intervalLiteral(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(753); - stringLiteral(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(754); - integerLiteral(); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(755); - decimalLiteral(); - } - break; - case 5: - enterOuterAlt(_localctx, 5); - { - setState(756); - booleanLiteral(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IntervalLiteralContext extends ParserRuleContext { - public TerminalNode INTERVAL() { return getToken(OpenSearchPPLParser.INTERVAL, 0); } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public IntervalUnitContext intervalUnit() { - return getRuleContext(IntervalUnitContext.class,0); - } - public IntervalLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_intervalLiteral; } - } - - public final IntervalLiteralContext intervalLiteral() throws RecognitionException { - IntervalLiteralContext _localctx = new IntervalLiteralContext(_ctx, getState()); - enterRule(_localctx, 142, RULE_intervalLiteral); - try { - enterOuterAlt(_localctx, 1); - { - setState(759); - match(INTERVAL); - setState(760); - valueExpression(0); - setState(761); - intervalUnit(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StringLiteralContext extends ParserRuleContext { - public TerminalNode DQUOTA_STRING() { return getToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } - public TerminalNode SQUOTA_STRING() { return getToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } - public StringLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_stringLiteral; } - } - - public final StringLiteralContext stringLiteral() throws RecognitionException { - StringLiteralContext _localctx = new StringLiteralContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_stringLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(763); - _la = _input.LA(1); - if ( !(_la==DQUOTA_STRING || _la==SQUOTA_STRING) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IntegerLiteralContext extends ParserRuleContext { - public TerminalNode INTEGER_LITERAL() { return getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public IntegerLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_integerLiteral; } - } - - public final IntegerLiteralContext integerLiteral() throws RecognitionException { - IntegerLiteralContext _localctx = new IntegerLiteralContext(_ctx, getState()); - enterRule(_localctx, 146, RULE_integerLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(766); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(765); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(768); - match(INTEGER_LITERAL); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DecimalLiteralContext extends ParserRuleContext { - public TerminalNode DECIMAL_LITERAL() { return getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public DecimalLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_decimalLiteral; } - } - - public final DecimalLiteralContext decimalLiteral() throws RecognitionException { - DecimalLiteralContext _localctx = new DecimalLiteralContext(_ctx, getState()); - enterRule(_localctx, 148, RULE_decimalLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(771); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(770); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(773); - match(DECIMAL_LITERAL); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BooleanLiteralContext extends ParserRuleContext { - public TerminalNode TRUE() { return getToken(OpenSearchPPLParser.TRUE, 0); } - public TerminalNode FALSE() { return getToken(OpenSearchPPLParser.FALSE, 0); } - public BooleanLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_booleanLiteral; } - } - - public final BooleanLiteralContext booleanLiteral() throws RecognitionException { - BooleanLiteralContext _localctx = new BooleanLiteralContext(_ctx, getState()); - enterRule(_localctx, 150, RULE_booleanLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(775); - _la = _input.LA(1); - if ( !(_la==TRUE || _la==FALSE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class PatternContext extends ParserRuleContext { - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public PatternContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_pattern; } - } - - public final PatternContext pattern() throws RecognitionException { - PatternContext _localctx = new PatternContext(_ctx, getState()); - enterRule(_localctx, 152, RULE_pattern); - try { - enterOuterAlt(_localctx, 1); - { - setState(777); - stringLiteral(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IntervalUnitContext extends ParserRuleContext { - public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } - public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } - public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } - public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } - public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } - public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } - public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } - public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } - public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } - public TerminalNode SECOND_MICROSECOND() { return getToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } - public TerminalNode MINUTE_MICROSECOND() { return getToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } - public TerminalNode MINUTE_SECOND() { return getToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } - public TerminalNode HOUR_MICROSECOND() { return getToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } - public TerminalNode HOUR_SECOND() { return getToken(OpenSearchPPLParser.HOUR_SECOND, 0); } - public TerminalNode HOUR_MINUTE() { return getToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } - public TerminalNode DAY_MICROSECOND() { return getToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } - public TerminalNode DAY_SECOND() { return getToken(OpenSearchPPLParser.DAY_SECOND, 0); } - public TerminalNode DAY_MINUTE() { return getToken(OpenSearchPPLParser.DAY_MINUTE, 0); } - public TerminalNode DAY_HOUR() { return getToken(OpenSearchPPLParser.DAY_HOUR, 0); } - public TerminalNode YEAR_MONTH() { return getToken(OpenSearchPPLParser.YEAR_MONTH, 0); } - public IntervalUnitContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_intervalUnit; } - } - - public final IntervalUnitContext intervalUnit() throws RecognitionException { - IntervalUnitContext _localctx = new IntervalUnitContext(_ctx, getState()); - enterRule(_localctx, 154, RULE_intervalUnit); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(779); - _la = _input.LA(1); - if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)) | (1L << (SECOND_MICROSECOND - 57)) | (1L << (MINUTE_MICROSECOND - 57)) | (1L << (MINUTE_SECOND - 57)) | (1L << (HOUR_MICROSECOND - 57)) | (1L << (HOUR_SECOND - 57)) | (1L << (HOUR_MINUTE - 57)) | (1L << (DAY_MICROSECOND - 57)) | (1L << (DAY_SECOND - 57)) | (1L << (DAY_MINUTE - 57)) | (1L << (DAY_HOUR - 57)) | (1L << (YEAR_MONTH - 57)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TimespanUnitContext extends ParserRuleContext { - public TerminalNode MS() { return getToken(OpenSearchPPLParser.MS, 0); } - public TerminalNode S() { return getToken(OpenSearchPPLParser.S, 0); } - public TerminalNode M() { return getToken(OpenSearchPPLParser.M, 0); } - public TerminalNode H() { return getToken(OpenSearchPPLParser.H, 0); } - public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } - public TerminalNode W() { return getToken(OpenSearchPPLParser.W, 0); } - public TerminalNode Q() { return getToken(OpenSearchPPLParser.Q, 0); } - public TerminalNode Y() { return getToken(OpenSearchPPLParser.Y, 0); } - public TerminalNode MILLISECOND() { return getToken(OpenSearchPPLParser.MILLISECOND, 0); } - public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } - public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } - public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } - public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } - public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } - public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } - public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } - public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } - public TimespanUnitContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_timespanUnit; } - } - - public final TimespanUnitContext timespanUnit() throws RecognitionException { - TimespanUnitContext _localctx = new TimespanUnitContext(_ctx, getState()); - enterRule(_localctx, 156, RULE_timespanUnit); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(781); - _la = _input.LA(1); - if ( !(((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ValueListContext extends ParserRuleContext { - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public List literalValue() { - return getRuleContexts(LiteralValueContext.class); - } - public LiteralValueContext literalValue(int i) { - return getRuleContext(LiteralValueContext.class,i); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public ValueListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_valueList; } - } - - public final ValueListContext valueList() throws RecognitionException { - ValueListContext _localctx = new ValueListContext(_ctx, getState()); - enterRule(_localctx, 158, RULE_valueList); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(783); - match(LT_PRTHS); - setState(784); - literalValue(); - setState(789); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(785); - match(COMMA); - setState(786); - literalValue(); - } - } - setState(791); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(792); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class QualifiedNameContext extends ParserRuleContext { - public QualifiedNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_qualifiedName; } - - public QualifiedNameContext() { } - public void copyFrom(QualifiedNameContext ctx) { - super.copyFrom(ctx); - } - } - public static class IdentsAsQualifiedNameContext extends QualifiedNameContext { - public List ident() { - return getRuleContexts(IdentContext.class); - } - public IdentContext ident(int i) { - return getRuleContext(IdentContext.class,i); - } - public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } - public TerminalNode DOT(int i) { - return getToken(OpenSearchPPLParser.DOT, i); - } - public IdentsAsQualifiedNameContext(QualifiedNameContext ctx) { copyFrom(ctx); } - } - - public final QualifiedNameContext qualifiedName() throws RecognitionException { - QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState()); - enterRule(_localctx, 160, RULE_qualifiedName); - try { - int _alt; - _localctx = new IdentsAsQualifiedNameContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(794); - ident(); - setState(799); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,68,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(795); - match(DOT); - setState(796); - ident(); - } - } - } - setState(801); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,68,_ctx); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WcQualifiedNameContext extends ParserRuleContext { - public WcQualifiedNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wcQualifiedName; } - - public WcQualifiedNameContext() { } - public void copyFrom(WcQualifiedNameContext ctx) { - super.copyFrom(ctx); - } - } - public static class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { - public List wildcard() { - return getRuleContexts(WildcardContext.class); - } - public WildcardContext wildcard(int i) { - return getRuleContext(WildcardContext.class,i); - } - public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } - public TerminalNode DOT(int i) { - return getToken(OpenSearchPPLParser.DOT, i); - } - public IdentsAsWildcardQualifiedNameContext(WcQualifiedNameContext ctx) { copyFrom(ctx); } - } - - public final WcQualifiedNameContext wcQualifiedName() throws RecognitionException { - WcQualifiedNameContext _localctx = new WcQualifiedNameContext(_ctx, getState()); - enterRule(_localctx, 162, RULE_wcQualifiedName); - int _la; - try { - _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(802); - wildcard(); - setState(807); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==DOT) { - { - { - setState(803); - match(DOT); - setState(804); - wildcard(); - } - } - setState(809); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IdentContext extends ParserRuleContext { - public TerminalNode ID() { return getToken(OpenSearchPPLParser.ID, 0); } - public TerminalNode DOT() { return getToken(OpenSearchPPLParser.DOT, 0); } - public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } - public TerminalNode BACKTICK(int i) { - return getToken(OpenSearchPPLParser.BACKTICK, i); - } - public IdentContext ident() { - return getRuleContext(IdentContext.class,0); - } - public TerminalNode BQUOTA_STRING() { return getToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } - public KeywordsCanBeIdContext keywordsCanBeId() { - return getRuleContext(KeywordsCanBeIdContext.class,0); - } - public IdentContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_ident; } - } - - public final IdentContext ident() throws RecognitionException { - IdentContext _localctx = new IdentContext(_ctx, getState()); - enterRule(_localctx, 164, RULE_ident); - int _la; - try { - setState(820); - _errHandler.sync(this); - switch (_input.LA(1)) { - case DOT: - case ID: - enterOuterAlt(_localctx, 1); - { - setState(811); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==DOT) { - { - setState(810); - match(DOT); - } - } - - setState(813); - match(ID); - } - break; - case BACKTICK: - enterOuterAlt(_localctx, 2); - { - setState(814); - match(BACKTICK); - setState(815); - ident(); - setState(816); - match(BACKTICK); - } - break; - case BQUOTA_STRING: - enterOuterAlt(_localctx, 3); - { - setState(818); - match(BQUOTA_STRING); - } - break; - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - enterOuterAlt(_localctx, 4); - { - setState(819); - keywordsCanBeId(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WildcardContext extends ParserRuleContext { - public List ident() { - return getRuleContexts(IdentContext.class); - } - public IdentContext ident(int i) { - return getRuleContext(IdentContext.class,i); - } - public List MODULE() { return getTokens(OpenSearchPPLParser.MODULE); } - public TerminalNode MODULE(int i) { - return getToken(OpenSearchPPLParser.MODULE, i); - } - public List SINGLE_QUOTE() { return getTokens(OpenSearchPPLParser.SINGLE_QUOTE); } - public TerminalNode SINGLE_QUOTE(int i) { - return getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); - } - public WildcardContext wildcard() { - return getRuleContext(WildcardContext.class,0); - } - public List DOUBLE_QUOTE() { return getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); } - public TerminalNode DOUBLE_QUOTE(int i) { - return getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); - } - public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } - public TerminalNode BACKTICK(int i) { - return getToken(OpenSearchPPLParser.BACKTICK, i); - } - public WildcardContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wildcard; } - } - - public final WildcardContext wildcard() throws RecognitionException { - WildcardContext _localctx = new WildcardContext(_ctx, getState()); - enterRule(_localctx, 166, RULE_wildcard); - int _la; - try { - int _alt; - setState(845); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(822); - ident(); - setState(827); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,72,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(823); - match(MODULE); - setState(824); - ident(); - } - } - } - setState(829); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,72,_ctx); - } - setState(831); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==MODULE) { - { - setState(830); - match(MODULE); - } - } - - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(833); - match(SINGLE_QUOTE); - setState(834); - wildcard(); - setState(835); - match(SINGLE_QUOTE); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(837); - match(DOUBLE_QUOTE); - setState(838); - wildcard(); - setState(839); - match(DOUBLE_QUOTE); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(841); - match(BACKTICK); - setState(842); - wildcard(); - setState(843); - match(BACKTICK); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class KeywordsCanBeIdContext extends ParserRuleContext { - public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } - public StatsFunctionNameContext statsFunctionName() { - return getRuleContext(StatsFunctionNameContext.class,0); - } - public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } - public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } - public TerminalNode FIRST() { return getToken(OpenSearchPPLParser.FIRST, 0); } - public TerminalNode LAST() { return getToken(OpenSearchPPLParser.LAST, 0); } - public TimespanUnitContext timespanUnit() { - return getRuleContext(TimespanUnitContext.class,0); - } - public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } - public KeywordsCanBeIdContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_keywordsCanBeId; } - } - - public final KeywordsCanBeIdContext keywordsCanBeId() throws RecognitionException { - KeywordsCanBeIdContext _localctx = new KeywordsCanBeIdContext(_ctx, getState()); - enterRule(_localctx, 168, RULE_keywordsCanBeId); - try { - setState(856); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(847); - match(D); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(848); - statsFunctionName(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(849); - match(TIMESTAMP); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(850); - match(DATE); - } - break; - case 5: - enterOuterAlt(_localctx, 5); - { - setState(851); - match(TIME); - } - break; - case 6: - enterOuterAlt(_localctx, 6); - { - setState(852); - match(FIRST); - } - break; - case 7: - enterOuterAlt(_localctx, 7); - { - setState(853); - match(LAST); - } - break; - case 8: - enterOuterAlt(_localctx, 8); - { - setState(854); - timespanUnit(); - } - break; - case 9: - enterOuterAlt(_localctx, 9); - { - setState(855); - match(SPAN); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { - switch (ruleIndex) { - case 32: - return logicalExpression_sempred((LogicalExpressionContext)_localctx, predIndex); - case 34: - return valueExpression_sempred((ValueExpressionContext)_localctx, predIndex); - } - return true; - } - private boolean logicalExpression_sempred(LogicalExpressionContext _localctx, int predIndex) { - switch (predIndex) { - case 0: - return precpred(_ctx, 5); - case 1: - return precpred(_ctx, 4); - case 2: - return precpred(_ctx, 3); - } - return true; - } - private boolean valueExpression_sempred(ValueExpressionContext _localctx, int predIndex) { - switch (predIndex) { - case 3: - return precpred(_ctx, 3); - } - return true; - } - - public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u010f\u035d\4\2\t"+ - "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ - "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ - "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ - "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ - "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ - ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ - "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ - "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ - "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ - "\4U\tU\4V\tV\3\2\5\2\u00ae\n\2\3\2\3\2\3\3\3\3\3\3\7\3\u00b5\n\3\f\3\16"+ - "\3\u00b8\13\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\5\4"+ - "\u00c7\n\4\3\5\5\5\u00ca\n\5\3\5\3\5\5\5\u00ce\n\5\3\5\3\5\3\5\3\5\5\5"+ - "\u00d4\n\5\3\5\3\5\3\5\5\5\u00d9\n\5\3\6\3\6\3\6\3\7\3\7\5\7\u00e0\n\7"+ - "\3\7\3\7\3\b\3\b\3\b\3\b\7\b\u00e8\n\b\f\b\16\b\u00eb\13\b\3\t\3\t\3\t"+ - "\3\t\5\t\u00f1\n\t\3\t\3\t\3\t\5\t\u00f6\n\t\3\t\3\t\3\t\5\t\u00fb\n\t"+ - "\3\t\3\t\3\t\7\t\u0100\n\t\f\t\16\t\u0103\13\t\3\t\5\t\u0106\n\t\3\t\3"+ - "\t\3\t\5\t\u010b\n\t\3\n\3\n\5\n\u010f\n\n\3\n\3\n\3\n\3\n\5\n\u0115\n"+ - "\n\3\n\3\n\3\n\5\n\u011a\n\n\3\13\3\13\3\13\3\f\3\f\3\f\3\f\7\f\u0123"+ - "\n\f\f\f\16\f\u0126\13\f\3\r\3\r\5\r\u012a\n\r\3\r\3\r\5\r\u012e\n\r\3"+ - "\16\3\16\5\16\u0132\n\16\3\16\3\16\5\16\u0136\n\16\3\17\3\17\3\17\5\17"+ - "\u013b\n\17\3\20\3\20\3\20\3\20\3\21\3\21\7\21\u0143\n\21\f\21\16\21\u0146"+ - "\13\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\5\22\u0151\n\22\3"+ - "\23\3\23\7\23\u0155\n\23\f\23\16\23\u0158\13\23\3\24\3\24\3\24\3\24\3"+ - "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ - "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ - "\24\5\24\u017b\n\24\3\25\3\25\3\25\3\25\3\25\7\25\u0182\n\25\f\25\16\25"+ - "\u0185\13\25\3\25\3\25\3\25\3\25\3\25\7\25\u018c\n\25\f\25\16\25\u018f"+ - "\13\25\5\25\u0191\n\25\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\30\3\30\3"+ - "\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u01a3\n\30\3\31\3\31\3\31\5\31"+ - "\u01a8\n\31\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u01b0\n\32\3\32\3\32\3"+ - "\33\3\33\3\33\7\33\u01b7\n\33\f\33\16\33\u01ba\13\33\3\34\3\34\3\34\3"+ - "\34\3\35\3\35\3\35\5\35\u01c3\n\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+ - "\3\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36\u01d3\n\36\3\37\3\37\3 \3 \3"+ - " \3 \3 \3 \3 \3 \3!\3!\3!\5!\u01e2\n!\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u01ea"+ - "\n\"\3\"\3\"\3\"\3\"\3\"\5\"\u01f1\n\"\3\"\3\"\3\"\3\"\7\"\u01f7\n\"\f"+ - "\"\16\"\u01fa\13\"\3#\3#\3#\3#\3#\3#\3#\3#\5#\u0204\n#\3$\3$\3$\3$\3$"+ - "\3$\3$\3$\5$\u020e\n$\3$\3$\3$\3$\7$\u0214\n$\f$\16$\u0217\13$\3%\3%\3"+ - "%\3%\5%\u021d\n%\3&\3&\3\'\3\'\5\'\u0223\n\'\3(\3(\3(\3(\3(\3(\3(\7(\u022c"+ - "\n(\f(\16(\u022f\13(\3(\3(\3)\3)\3)\3)\3)\3)\7)\u0239\n)\f)\16)\u023c"+ - "\13)\3)\3)\3)\3)\3)\7)\u0243\n)\f)\16)\u0246\13)\3)\3)\3*\3*\5*\u024c"+ - "\n*\3+\3+\3+\7+\u0251\n+\f+\16+\u0254\13+\3,\3,\3,\7,\u0259\n,\f,\16,"+ - "\u025c\13,\3-\5-\u025f\n-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ - ".\3.\3.\3.\3.\3.\3.\3.\3.\5.\u0278\n.\3/\3/\3\60\3\60\3\61\3\61\3\61\3"+ - "\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3"+ - "\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\5\64\u0299\n\64\3\65"+ - "\3\65\3\65\3\65\5\65\u029f\n\65\3\66\3\66\3\66\7\66\u02a4\n\66\f\66\16"+ - "\66\u02a7\13\66\5\66\u02a9\n\66\3\67\3\67\38\38\38\38\39\39\3:\3:\3:\3"+ - ":\3:\3:\3:\3:\5:\u02bb\n:\3;\3;\5;\u02bf\n;\3<\3<\5<\u02c3\n<\3=\3=\3"+ - ">\3>\5>\u02c9\n>\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3"+ - "?\3?\3?\3?\3?\5?\u02e1\n?\3@\3@\3A\3A\3B\3B\3C\3C\3D\3D\3E\3E\3F\3F\3"+ - "G\3G\3H\3H\3H\3H\3H\5H\u02f8\nH\3I\3I\3I\3I\3J\3J\3K\5K\u0301\nK\3K\3"+ - "K\3L\5L\u0306\nL\3L\3L\3M\3M\3N\3N\3O\3O\3P\3P\3Q\3Q\3Q\3Q\7Q\u0316\n"+ - "Q\fQ\16Q\u0319\13Q\3Q\3Q\3R\3R\3R\7R\u0320\nR\fR\16R\u0323\13R\3S\3S\3"+ - "S\7S\u0328\nS\fS\16S\u032b\13S\3T\5T\u032e\nT\3T\3T\3T\3T\3T\3T\3T\5T"+ - "\u0337\nT\3U\3U\3U\7U\u033c\nU\fU\16U\u033f\13U\3U\5U\u0342\nU\3U\3U\3"+ - "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\5U\u0350\nU\3V\3V\3V\3V\3V\3V\3V\3V\3V\5"+ - "V\u035b\nV\3V\2\4BFW\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60"+ - "\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ - "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e"+ - "\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\2\21\3\2cd\4\2vv\u0097\u0097\7\2"+ - "tuyy||\u0081\u0081\u0083\u0086\5\2\6\6--\u00e2\u00ff\3\2\u00ad\u00b6\5"+ - "\2;;=D\u00b7\u00c6\3\2\u00d9\u00de\4\2\u00c7\u00cb\u00cd\u00d7\4\288]"+ - "b\3\2cg\3\2\u00df\u00e0\3\2\u010c\u010d\3\2\66\67\4\2;;=O\5\2\26\26\u01d6\3\2\2\2@\u01e1\3\2\2\2B\u01e9\3\2\2\2D\u0203\3\2\2\2F"+ - "\u020d\3\2\2\2H\u021c\3\2\2\2J\u021e\3\2\2\2L\u0222\3\2\2\2N\u0224\3\2"+ - "\2\2P\u0232\3\2\2\2R\u024b\3\2\2\2T\u024d\3\2\2\2V\u0255\3\2\2\2X\u025e"+ - "\3\2\2\2Z\u0277\3\2\2\2\\\u0279\3\2\2\2^\u027b\3\2\2\2`\u027d\3\2\2\2"+ - "b\u0282\3\2\2\2d\u0289\3\2\2\2f\u0298\3\2\2\2h\u029e\3\2\2\2j\u02a8\3"+ - "\2\2\2l\u02aa\3\2\2\2n\u02ac\3\2\2\2p\u02b0\3\2\2\2r\u02ba\3\2\2\2t\u02be"+ - "\3\2\2\2v\u02c2\3\2\2\2x\u02c4\3\2\2\2z\u02c8\3\2\2\2|\u02e0\3\2\2\2~"+ - "\u02e2\3\2\2\2\u0080\u02e4\3\2\2\2\u0082\u02e6\3\2\2\2\u0084\u02e8\3\2"+ - "\2\2\u0086\u02ea\3\2\2\2\u0088\u02ec\3\2\2\2\u008a\u02ee\3\2\2\2\u008c"+ - "\u02f0\3\2\2\2\u008e\u02f7\3\2\2\2\u0090\u02f9\3\2\2\2\u0092\u02fd\3\2"+ - "\2\2\u0094\u0300\3\2\2\2\u0096\u0305\3\2\2\2\u0098\u0309\3\2\2\2\u009a"+ - "\u030b\3\2\2\2\u009c\u030d\3\2\2\2\u009e\u030f\3\2\2\2\u00a0\u0311\3\2"+ - "\2\2\u00a2\u031c\3\2\2\2\u00a4\u0324\3\2\2\2\u00a6\u0336\3\2\2\2\u00a8"+ - "\u034f\3\2\2\2\u00aa\u035a\3\2\2\2\u00ac\u00ae\5\4\3\2\u00ad\u00ac\3\2"+ - "\2\2\u00ad\u00ae\3\2\2\2\u00ae\u00af\3\2\2\2\u00af\u00b0\7\2\2\3\u00b0"+ - "\3\3\2\2\2\u00b1\u00b6\5\b\5\2\u00b2\u00b3\7Z\2\2\u00b3\u00b5\5\6\4\2"+ - "\u00b4\u00b2\3\2\2\2\u00b5\u00b8\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b6\u00b7"+ - "\3\2\2\2\u00b7\5\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b9\u00c7\5\n\6\2\u00ba"+ - "\u00c7\5\f\7\2\u00bb\u00c7\5\16\b\2\u00bc\u00c7\5\20\t\2\u00bd\u00c7\5"+ - "\22\n\2\u00be\u00c7\5\24\13\2\u00bf\u00c7\5\26\f\2\u00c0\u00c7\5\30\r"+ - "\2\u00c1\u00c7\5\32\16\2\u00c2\u00c7\5\34\17\2\u00c3\u00c7\5\36\20\2\u00c4"+ - "\u00c7\5 \21\2\u00c5\u00c7\5$\23\2\u00c6\u00b9\3\2\2\2\u00c6\u00ba\3\2"+ - "\2\2\u00c6\u00bb\3\2\2\2\u00c6\u00bc\3\2\2\2\u00c6\u00bd\3\2\2\2\u00c6"+ - "\u00be\3\2\2\2\u00c6\u00bf\3\2\2\2\u00c6\u00c0\3\2\2\2\u00c6\u00c1\3\2"+ - "\2\2\u00c6\u00c2\3\2\2\2\u00c6\u00c3\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6"+ - "\u00c5\3\2\2\2\u00c7\7\3\2\2\2\u00c8\u00ca\7\3\2\2\u00c9\u00c8\3\2\2\2"+ - "\u00c9\u00ca\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00d9\5(\25\2\u00cc\u00ce"+ - "\7\3\2\2\u00cd\u00cc\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf"+ - "\u00d0\5(\25\2\u00d0\u00d1\5B\"\2\u00d1\u00d9\3\2\2\2\u00d2\u00d4\7\3"+ - "\2\2\u00d3\u00d2\3\2\2\2\u00d3\u00d4\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5"+ - "\u00d6\5B\"\2\u00d6\u00d7\5(\25\2\u00d7\u00d9\3\2\2\2\u00d8\u00c9\3\2"+ - "\2\2\u00d8\u00cd\3\2\2\2\u00d8\u00d3\3\2\2\2\u00d9\t\3\2\2\2\u00da\u00db"+ - "\7\5\2\2\u00db\u00dc\5B\"\2\u00dc\13\3\2\2\2\u00dd\u00df\7\6\2\2\u00de"+ - "\u00e0\t\2\2\2\u00df\u00de\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u00e1\3\2"+ - "\2\2\u00e1\u00e2\5T+\2\u00e2\r\3\2\2\2\u00e3\u00e4\7\7\2\2\u00e4\u00e9"+ - "\5*\26\2\u00e5\u00e6\7[\2\2\u00e6\u00e8\5*\26\2\u00e7\u00e5\3\2\2\2\u00e8"+ - "\u00eb\3\2\2\2\u00e9\u00e7\3\2\2\2\u00e9\u00ea\3\2\2\2\u00ea\17\3\2\2"+ - "\2\u00eb\u00e9\3\2\2\2\u00ec\u00f0\7\b\2\2\u00ed\u00ee\7 \2\2\u00ee\u00ef"+ - "\7]\2\2\u00ef\u00f1\5\u0094K\2\u00f0\u00ed\3\2\2\2\u00f0\u00f1\3\2\2\2"+ - "\u00f1\u00f5\3\2\2\2\u00f2\u00f3\7!\2\2\u00f3\u00f4\7]\2\2\u00f4\u00f6"+ - "\5\u0098M\2\u00f5\u00f2\3\2\2\2\u00f5\u00f6\3\2\2\2\u00f6\u00fa\3\2\2"+ - "\2\u00f7\u00f8\7\"\2\2\u00f8\u00f9\7]\2\2\u00f9\u00fb\5\u0092J\2\u00fa"+ - "\u00f7\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u0101\58"+ - "\35\2\u00fd\u00fe\7[\2\2\u00fe\u0100\58\35\2\u00ff\u00fd\3\2\2\2\u0100"+ - "\u0103\3\2\2\2\u0101\u00ff\3\2\2\2\u0101\u0102\3\2\2\2\u0102\u0105\3\2"+ - "\2\2\u0103\u0101\3\2\2\2\u0104\u0106\5.\30\2\u0105\u0104\3\2\2\2\u0105"+ - "\u0106\3\2\2\2\u0106\u010a\3\2\2\2\u0107\u0108\7\37\2\2\u0108\u0109\7"+ - "]\2\2\u0109\u010b\5\u0098M\2\u010a\u0107\3\2\2\2\u010a\u010b\3\2\2\2\u010b"+ - "\21\3\2\2\2\u010c\u010e\7\t\2\2\u010d\u010f\5\u0094K\2\u010e\u010d\3\2"+ - "\2\2\u010e\u010f\3\2\2\2\u010f\u0110\3\2\2\2\u0110\u0114\5T+\2\u0111\u0112"+ - "\7\35\2\2\u0112\u0113\7]\2\2\u0113\u0115\5\u0098M\2\u0114\u0111\3\2\2"+ - "\2\u0114\u0115\3\2\2\2\u0115\u0119\3\2\2\2\u0116\u0117\7\36\2\2\u0117"+ - "\u0118\7]\2\2\u0118\u011a\5\u0098M\2\u0119\u0116\3\2\2\2\u0119\u011a\3"+ - "\2\2\2\u011a\23\3\2\2\2\u011b\u011c\7\n\2\2\u011c\u011d\5\64\33\2\u011d"+ - "\25\3\2\2\2\u011e\u011f\7\13\2\2\u011f\u0124\5\66\34\2\u0120\u0121\7["+ - "\2\2\u0121\u0123\5\66\34\2\u0122\u0120\3\2\2\2\u0123\u0126\3\2\2\2\u0124"+ - "\u0122\3\2\2\2\u0124\u0125\3\2\2\2\u0125\27\3\2\2\2\u0126\u0124\3\2\2"+ - "\2\u0127\u0129\7\f\2\2\u0128\u012a\5\u0094K\2\u0129\u0128\3\2\2\2\u0129"+ - "\u012a\3\2\2\2\u012a\u012d\3\2\2\2\u012b\u012c\7\4\2\2\u012c\u012e\5\u0094"+ - "K\2\u012d\u012b\3\2\2\2\u012d\u012e\3\2\2\2\u012e\31\3\2\2\2\u012f\u0131"+ - "\7\r\2\2\u0130\u0132\5\u0094K\2\u0131\u0130\3\2\2\2\u0131\u0132\3\2\2"+ - "\2\u0132\u0133\3\2\2\2\u0133\u0135\5T+\2\u0134\u0136\5,\27\2\u0135\u0134"+ - "\3\2\2\2\u0135\u0136\3\2\2\2\u0136\33\3\2\2\2\u0137\u0138\7\16\2\2\u0138"+ - "\u013a\5T+\2\u0139\u013b\5,\27\2\u013a\u0139\3\2\2\2\u013a\u013b\3\2\2"+ - "\2\u013b\35\3\2\2\2\u013c\u013d\7\17\2\2\u013d\u013e\5@!\2\u013e\u013f"+ - "\5\u009aN\2\u013f\37\3\2\2\2\u0140\u0144\7\20\2\2\u0141\u0143\5\"\22\2"+ - "\u0142\u0141\3\2\2\2\u0143\u0146\3\2\2\2\u0144\u0142\3\2\2\2\u0144\u0145"+ - "\3\2\2\2\u0145!\3\2\2\2\u0146\u0144\3\2\2\2\u0147\u0148\7#\2\2\u0148\u0149"+ - "\7]\2\2\u0149\u0151\5\u0094K\2\u014a\u014b\7$\2\2\u014b\u014c\7]\2\2\u014c"+ - "\u0151\5\u0094K\2\u014d\u014e\7%\2\2\u014e\u014f\7]\2\2\u014f\u0151\5"+ - "\u0092J\2\u0150\u0147\3\2\2\2\u0150\u014a\3\2\2\2\u0150\u014d\3\2\2\2"+ - "\u0151#\3\2\2\2\u0152\u0156\7\21\2\2\u0153\u0155\5&\24\2\u0154\u0153\3"+ - "\2\2\2\u0155\u0158\3\2\2\2\u0156\u0154\3\2\2\2\u0156\u0157\3\2\2\2\u0157"+ - "%\3\2\2\2\u0158\u0156\3\2\2\2\u0159\u015a\7&\2\2\u015a\u015b\7]\2\2\u015b"+ - "\u017b\5\u0094K\2\u015c\u015d\7\'\2\2\u015d\u015e\7]\2\2\u015e\u017b\5"+ - "\u0094K\2\u015f\u0160\7(\2\2\u0160\u0161\7]\2\2\u0161\u017b\5\u0094K\2"+ - "\u0162\u0163\7)\2\2\u0163\u0164\7]\2\2\u0164\u017b\5\u0094K\2\u0165\u0166"+ - "\7*\2\2\u0166\u0167\7]\2\2\u0167\u017b\5\u0096L\2\u0168\u0169\7+\2\2\u0169"+ - "\u016a\7]\2\2\u016a\u017b\5\u0096L\2\u016b\u016c\7,\2\2\u016c\u016d\7"+ - "]\2\2\u016d\u017b\5\u0092J\2\u016e\u016f\7\u00c5\2\2\u016f\u0170\7]\2"+ - "\2\u0170\u017b\5\u0092J\2\u0171\u0172\7-\2\2\u0172\u0173\7]\2\2\u0173"+ - "\u017b\5\u0092J\2\u0174\u0175\7.\2\2\u0175\u0176\7]\2\2\u0176\u017b\5"+ - "\u0094K\2\u0177\u0178\7/\2\2\u0178\u0179\7]\2\2\u0179\u017b\5\u0096L\2"+ - "\u017a\u0159\3\2\2\2\u017a\u015c\3\2\2\2\u017a\u015f\3\2\2\2\u017a\u0162"+ - "\3\2\2\2\u017a\u0165\3\2\2\2\u017a\u0168\3\2\2\2\u017a\u016b\3\2\2\2\u017a"+ - "\u016e\3\2\2\2\u017a\u0171\3\2\2\2\u017a\u0174\3\2\2\2\u017a\u0177\3\2"+ - "\2\2\u017b\'\3\2\2\2\u017c\u017d\7\24\2\2\u017d\u017e\7]\2\2\u017e\u0183"+ - "\5R*\2\u017f\u0180\7[\2\2\u0180\u0182\5R*\2\u0181\u017f\3\2\2\2\u0182"+ - "\u0185\3\2\2\2\u0183\u0181\3\2\2\2\u0183\u0184\3\2\2\2\u0184\u0191\3\2"+ - "\2\2\u0185\u0183\3\2\2\2\u0186\u0187\7\25\2\2\u0187\u0188\7]\2\2\u0188"+ - "\u018d\5R*\2\u0189\u018a\7[\2\2\u018a\u018c\5R*\2\u018b\u0189\3\2\2\2"+ - "\u018c\u018f\3\2\2\2\u018d\u018b\3\2\2\2\u018d\u018e\3\2\2\2\u018e\u0191"+ - "\3\2\2\2\u018f\u018d\3\2\2\2\u0190\u017c\3\2\2\2\u0190\u0186\3\2\2\2\u0191"+ - ")\3\2\2\2\u0192\u0193\5^\60\2\u0193\u0194\7\22\2\2\u0194\u0195\5^\60\2"+ - "\u0195+\3\2\2\2\u0196\u0197\7\23\2\2\u0197\u0198\5T+\2\u0198-\3\2\2\2"+ - "\u0199\u019a\7\23\2\2\u019a\u01a3\5T+\2\u019b\u019c\7\23\2\2\u019c\u01a3"+ - "\5\60\31\2\u019d\u019e\7\23\2\2\u019e\u019f\5\60\31\2\u019f\u01a0\7[\2"+ - "\2\u01a0\u01a1\5T+\2\u01a1\u01a3\3\2\2\2\u01a2\u0199\3\2\2\2\u01a2\u019b"+ - "\3\2\2\2\u01a2\u019d\3\2\2\2\u01a3/\3\2\2\2\u01a4\u01a7\5\62\32\2\u01a5"+ - "\u01a6\7\22\2\2\u01a6\u01a8\5\u00a2R\2\u01a7\u01a5\3\2\2\2\u01a7\u01a8"+ - "\3\2\2\2\u01a8\61\3\2\2\2\u01a9\u01aa\7\u0100\2\2\u01aa\u01ab\7j\2\2\u01ab"+ - "\u01ac\5\\/\2\u01ac\u01ad\7[\2\2\u01ad\u01af\5\u008eH\2\u01ae\u01b0\5"+ - "\u009eP\2\u01af\u01ae\3\2\2\2\u01af\u01b0\3\2\2\2\u01b0\u01b1\3\2\2\2"+ - "\u01b1\u01b2\7k\2\2\u01b2\63\3\2\2\2\u01b3\u01b8\5X-\2\u01b4\u01b5\7["+ - "\2\2\u01b5\u01b7\5X-\2\u01b6\u01b4\3\2\2\2\u01b7\u01ba\3\2\2\2\u01b8\u01b6"+ - "\3\2\2\2\u01b8\u01b9\3\2\2\2\u01b9\65\3\2\2\2\u01ba\u01b8\3\2\2\2\u01bb"+ - "\u01bc\5\\/\2\u01bc\u01bd\7]\2\2\u01bd\u01be\5@!\2\u01be\67\3\2\2\2\u01bf"+ - "\u01c2\5:\36\2\u01c0\u01c1\7\22\2\2\u01c1\u01c3\5^\60\2\u01c2\u01c0\3"+ - "\2\2\2\u01c2\u01c3\3\2\2\2\u01c39\3\2\2\2\u01c4\u01c5\5<\37\2\u01c5\u01c6"+ - "\7j\2\2\u01c6\u01c7\5F$\2\u01c7\u01c8\7k\2\2\u01c8\u01d3\3\2\2\2\u01c9"+ - "\u01ca\7u\2\2\u01ca\u01cb\7j\2\2\u01cb\u01d3\7k\2\2\u01cc\u01cd\t\3\2"+ - "\2\u01cd\u01ce\7j\2\2\u01ce\u01cf\5F$\2\u01cf\u01d0\7k\2\2\u01d0\u01d3"+ - "\3\2\2\2\u01d1\u01d3\5> \2\u01d2\u01c4\3\2\2\2\u01d2\u01c9\3\2\2\2\u01d2"+ - "\u01cc\3\2\2\2\u01d2\u01d1\3\2\2\2\u01d3;\3\2\2\2\u01d4\u01d5\t\4\2\2"+ - "\u01d5=\3\2\2\2\u01d6\u01d7\7\u0087\2\2\u01d7\u01d8\7_\2\2\u01d8\u01d9"+ - "\5\u0094K\2\u01d9\u01da\7^\2\2\u01da\u01db\7j\2\2\u01db\u01dc\5\\/\2\u01dc"+ - "\u01dd\7k\2\2\u01dd?\3\2\2\2\u01de\u01e2\5B\"\2\u01df\u01e2\5D#\2\u01e0"+ - "\u01e2\5F$\2\u01e1\u01de\3\2\2\2\u01e1\u01df\3\2\2\2\u01e1\u01e0\3\2\2"+ - "\2\u01e2A\3\2\2\2\u01e3\u01e4\b\"\1\2\u01e4\u01ea\5D#\2\u01e5\u01e6\7"+ - "\62\2\2\u01e6\u01ea\5B\"\b\u01e7\u01ea\5J&\2\u01e8\u01ea\5L\'\2\u01e9"+ - "\u01e3\3\2\2\2\u01e9\u01e5\3\2\2\2\u01e9\u01e7\3\2\2\2\u01e9\u01e8\3\2"+ - "\2\2\u01ea\u01f8\3\2\2\2\u01eb\u01ec\f\7\2\2\u01ec\u01ed\7\63\2\2\u01ed"+ - "\u01f7\5B\"\b\u01ee\u01f0\f\6\2\2\u01ef\u01f1\7\64\2\2\u01f0\u01ef\3\2"+ - "\2\2\u01f0\u01f1\3\2\2\2\u01f1\u01f2\3\2\2\2\u01f2\u01f7\5B\"\7\u01f3"+ - "\u01f4\f\5\2\2\u01f4\u01f5\7\65\2\2\u01f5\u01f7\5B\"\6\u01f6\u01eb\3\2"+ - "\2\2\u01f6\u01ee\3\2\2\2\u01f6\u01f3\3\2\2\2\u01f7\u01fa\3\2\2\2\u01f8"+ - "\u01f6\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9C\3\2\2\2\u01fa\u01f8\3\2\2\2"+ - "\u01fb\u01fc\5F$\2\u01fc\u01fd\5\u0086D\2\u01fd\u01fe\5F$\2\u01fe\u0204"+ - "\3\2\2\2\u01ff\u0200\5F$\2\u0200\u0201\7\61\2\2\u0201\u0202\5\u00a0Q\2"+ - "\u0202\u0204\3\2\2\2\u0203\u01fb\3\2\2\2\u0203\u01ff\3\2\2\2\u0204E\3"+ - "\2\2\2\u0205\u0206\b$\1\2\u0206\u0207\7j\2\2\u0207\u0208\5F$\2\u0208\u0209"+ - "\5\u0088E\2\u0209\u020a\5F$\2\u020a\u020b\7k\2\2\u020b\u020e\3\2\2\2\u020c"+ - "\u020e\5H%\2\u020d\u0205\3\2\2\2\u020d\u020c\3\2\2\2\u020e\u0215\3\2\2"+ - "\2\u020f\u0210\f\5\2\2\u0210\u0211\5\u0088E\2\u0211\u0212\5F$\6\u0212"+ - "\u0214\3\2\2\2\u0213\u020f\3\2\2\2\u0214\u0217\3\2\2\2\u0215\u0213\3\2"+ - "\2\2\u0215\u0216\3\2\2\2\u0216G\3\2\2\2\u0217\u0215\3\2\2\2\u0218\u021d"+ - "\5`\61\2\u0219\u021d\5b\62\2\u021a\u021d\5\\/\2\u021b\u021d\5\u008eH\2"+ - "\u021c\u0218\3\2\2\2\u021c\u0219\3\2\2\2\u021c\u021a\3\2\2\2\u021c\u021b"+ - "\3\2\2\2\u021dI\3\2\2\2\u021e\u021f\5d\63\2\u021fK\3\2\2\2\u0220\u0223"+ - "\5N(\2\u0221\u0223\5P)\2\u0222\u0220\3\2\2\2\u0222\u0221\3\2\2\2\u0223"+ - "M\3\2\2\2\u0224\u0225\5\u008aF\2\u0225\u0226\7j\2\2\u0226\u0227\5v<\2"+ - "\u0227\u0228\7[\2\2\u0228\u022d\5x=\2\u0229\u022a\7[\2\2\u022a\u022c\5"+ - "n8\2\u022b\u0229\3\2\2\2\u022c\u022f\3\2\2\2\u022d\u022b\3\2\2\2\u022d"+ - "\u022e\3\2\2\2\u022e\u0230\3\2\2\2\u022f\u022d\3\2\2\2\u0230\u0231\7k"+ - "\2\2\u0231O\3\2\2\2\u0232\u0233\5\u008cG\2\u0233\u0234\7j\2\2\u0234\u0235"+ - "\7l\2\2\u0235\u023a\5r:\2\u0236\u0237\7[\2\2\u0237\u0239\5r:\2\u0238\u0236"+ - "\3\2\2\2\u0239\u023c\3\2\2\2\u023a\u0238\3\2\2\2\u023a\u023b\3\2\2\2\u023b"+ - "\u023d\3\2\2\2\u023c\u023a\3\2\2\2\u023d\u023e\7m\2\2\u023e\u023f\7[\2"+ - "\2\u023f\u0244\5x=\2\u0240\u0241\7[\2\2\u0241\u0243\5n8\2\u0242\u0240"+ - "\3\2\2\2\u0243\u0246\3\2\2\2\u0244\u0242\3\2\2\2\u0244\u0245\3\2\2\2\u0245"+ - "\u0247\3\2\2\2\u0246\u0244\3\2\2\2\u0247\u0248\7k\2\2\u0248Q\3\2\2\2\u0249"+ - "\u024c\5\u00a2R\2\u024a\u024c\7\u010b\2\2\u024b\u0249\3\2\2\2\u024b\u024a"+ - "\3\2\2\2\u024cS\3\2\2\2\u024d\u0252\5\\/\2\u024e\u024f\7[\2\2\u024f\u0251"+ - "\5\\/\2\u0250\u024e\3\2\2\2\u0251\u0254\3\2\2\2\u0252\u0250\3\2\2\2\u0252"+ - "\u0253\3\2\2\2\u0253U\3\2\2\2\u0254\u0252\3\2\2\2\u0255\u025a\5^\60\2"+ - "\u0256\u0257\7[\2\2\u0257\u0259\5^\60\2\u0258\u0256\3\2\2\2\u0259\u025c"+ - "\3\2\2\2\u025a\u0258\3\2\2\2\u025a\u025b\3\2\2\2\u025bW\3\2\2\2\u025c"+ - "\u025a\3\2\2\2\u025d\u025f\t\2\2\2\u025e\u025d\3\2\2\2\u025e\u025f\3\2"+ - "\2\2\u025f\u0260\3\2\2\2\u0260\u0261\5Z.\2\u0261Y\3\2\2\2\u0262\u0278"+ - "\5\\/\2\u0263\u0264\7\31\2\2\u0264\u0265\7j\2\2\u0265\u0266\5\\/\2\u0266"+ - "\u0267\7k\2\2\u0267\u0278\3\2\2\2\u0268\u0269\7\32\2\2\u0269\u026a\7j"+ - "\2\2\u026a\u026b\5\\/\2\u026b\u026c\7k\2\2\u026c\u0278\3\2\2\2\u026d\u026e"+ - "\7\33\2\2\u026e\u026f\7j\2\2\u026f\u0270\5\\/\2\u0270\u0271\7k\2\2\u0271"+ - "\u0278\3\2\2\2\u0272\u0273\7\34\2\2\u0273\u0274\7j\2\2\u0274\u0275\5\\"+ - "/\2\u0275\u0276\7k\2\2\u0276\u0278\3\2\2\2\u0277\u0262\3\2\2\2\u0277\u0263"+ - "\3\2\2\2\u0277\u0268\3\2\2\2\u0277\u026d\3\2\2\2\u0277\u0272\3\2\2\2\u0278"+ - "[\3\2\2\2\u0279\u027a\5\u00a2R\2\u027a]\3\2\2\2\u027b\u027c\5\u00a4S\2"+ - "\u027c_\3\2\2\2\u027d\u027e\5h\65\2\u027e\u027f\7j\2\2\u027f\u0280\5j"+ - "\66\2\u0280\u0281\7k\2\2\u0281a\3\2\2\2\u0282\u0283\7\u00d8\2\2\u0283"+ - "\u0284\7j\2\2\u0284\u0285\5@!\2\u0285\u0286\7\22\2\2\u0286\u0287\5f\64"+ - "\2\u0287\u0288\7k\2\2\u0288c\3\2\2\2\u0289\u028a\5\u0082B\2\u028a\u028b"+ - "\7j\2\2\u028b\u028c\5j\66\2\u028c\u028d\7k\2\2\u028de\3\2\2\2\u028e\u0299"+ - "\7\u00b8\2\2\u028f\u0299\7\u00c2\2\2\u0290\u0299\7\u00c4\2\2\u0291\u0299"+ - "\7S\2\2\u0292\u0299\7T\2\2\u0293\u0299\7U\2\2\u0294\u0299\7V\2\2\u0295"+ - "\u0299\7W\2\2\u0296\u0299\7X\2\2\u0297\u0299\7Y\2\2\u0298\u028e\3\2\2"+ - "\2\u0298\u028f\3\2\2\2\u0298\u0290\3\2\2\2\u0298\u0291\3\2\2\2\u0298\u0292"+ - "\3\2\2\2\u0298\u0293\3\2\2\2\u0298\u0294\3\2\2\2\u0298\u0295\3\2\2\2\u0298"+ - "\u0296\3\2\2\2\u0298\u0297\3\2\2\2\u0299g\3\2\2\2\u029a\u029f\5|?\2\u029b"+ - "\u029f\5\u0080A\2\u029c\u029f\5\u0084C\2\u029d\u029f\5\u0082B\2\u029e"+ - "\u029a\3\2\2\2\u029e\u029b\3\2\2\2\u029e\u029c\3\2\2\2\u029e\u029d\3\2"+ - "\2\2\u029fi\3\2\2\2\u02a0\u02a5\5l\67\2\u02a1\u02a2\7[\2\2\u02a2\u02a4"+ - "\5l\67\2\u02a3\u02a1\3\2\2\2\u02a4\u02a7\3\2\2\2\u02a5\u02a3\3\2\2\2\u02a5"+ - "\u02a6\3\2\2\2\u02a6\u02a9\3\2\2\2\u02a7\u02a5\3\2\2\2\u02a8\u02a0\3\2"+ - "\2\2\u02a8\u02a9\3\2\2\2\u02a9k\3\2\2\2\u02aa\u02ab\5F$\2\u02abm\3\2\2"+ - "\2\u02ac\u02ad\5p9\2\u02ad\u02ae\7]\2\2\u02ae\u02af\5z>\2\u02afo\3\2\2"+ - "\2\u02b0\u02b1\t\5\2\2\u02b1q\3\2\2\2\u02b2\u02bb\5v<\2\u02b3\u02b4\5"+ - "v<\2\u02b4\u02b5\5t;\2\u02b5\u02bb\3\2\2\2\u02b6\u02b7\5v<\2\u02b7\u02b8"+ - "\7s\2\2\u02b8\u02b9\5t;\2\u02b9\u02bb\3\2\2\2\u02ba\u02b2\3\2\2\2\u02ba"+ - "\u02b3\3\2\2\2\u02ba\u02b6\3\2\2\2\u02bbs\3\2\2\2\u02bc\u02bf\5\u0094"+ - "K\2\u02bd\u02bf\5\u0096L\2\u02be\u02bc\3\2\2\2\u02be\u02bd\3\2\2\2\u02bf"+ - "u\3\2\2\2\u02c0\u02c3\5\u00a2R\2\u02c1\u02c3\5\u0092J\2\u02c2\u02c0\3"+ - "\2\2\2\u02c2\u02c1\3\2\2\2\u02c3w\3\2\2\2\u02c4\u02c5\5z>\2\u02c5y\3\2"+ - "\2\2\u02c6\u02c9\5\u00a2R\2\u02c7\u02c9\5\u008eH\2\u02c8\u02c6\3\2\2\2"+ - "\u02c8\u02c7\3\2\2\2\u02c9{\3\2\2\2\u02ca\u02e1\7\u0098\2\2\u02cb\u02e1"+ - "\7\u0099\2\2\u02cc\u02e1\7\u009a\2\2\u02cd\u02e1\7\u009b\2\2\u02ce\u02e1"+ - "\7\u009c\2\2\u02cf\u02e1\7\u009d\2\2\u02d0\u02e1\7\u009e\2\2\u02d1\u02e1"+ - "\7\u009f\2\2\u02d2\u02e1\7\u00a0\2\2\u02d3\u02e1\7\u00a1\2\2\u02d4\u02e1"+ - "\7\u00a2\2\2\u02d5\u02e1\7\u00a3\2\2\u02d6\u02e1\7\u00a4\2\2\u02d7\u02e1"+ - "\7\u00a5\2\2\u02d8\u02e1\7\u00a6\2\2\u02d9\u02e1\7\u00a7\2\2\u02da\u02e1"+ - "\7\u00a8\2\2\u02db\u02e1\7\u00a9\2\2\u02dc\u02e1\7\u00aa\2\2\u02dd\u02e1"+ - "\7\u00ab\2\2\u02de\u02e1\7\u00ac\2\2\u02df\u02e1\5~@\2\u02e0\u02ca\3\2"+ - "\2\2\u02e0\u02cb\3\2\2\2\u02e0\u02cc\3\2\2\2\u02e0\u02cd\3\2\2\2\u02e0"+ - "\u02ce\3\2\2\2\u02e0\u02cf\3\2\2\2\u02e0\u02d0\3\2\2\2\u02e0\u02d1\3\2"+ - "\2\2\u02e0\u02d2\3\2\2\2\u02e0\u02d3\3\2\2\2\u02e0\u02d4\3\2\2\2\u02e0"+ - "\u02d5\3\2\2\2\u02e0\u02d6\3\2\2\2\u02e0\u02d7\3\2\2\2\u02e0\u02d8\3\2"+ - "\2\2\u02e0\u02d9\3\2\2\2\u02e0\u02da\3\2\2\2\u02e0\u02db\3\2\2\2\u02e0"+ - "\u02dc\3\2\2\2\u02e0\u02dd\3\2\2\2\u02e0\u02de\3\2\2\2\u02e0\u02df\3\2"+ - "\2\2\u02e1}\3\2\2\2\u02e2\u02e3\t\6\2\2\u02e3\177\3\2\2\2\u02e4\u02e5"+ - "\t\7\2\2\u02e5\u0081\3\2\2\2\u02e6\u02e7\t\b\2\2\u02e7\u0083\3\2\2\2\u02e8"+ - "\u02e9\t\t\2\2\u02e9\u0085\3\2\2\2\u02ea\u02eb\t\n\2\2\u02eb\u0087\3\2"+ - "\2\2\u02ec\u02ed\t\13\2\2\u02ed\u0089\3\2\2\2\u02ee\u02ef\t\f\2\2\u02ef"+ - "\u008b\3\2\2\2\u02f0\u02f1\7\u00e1\2\2\u02f1\u008d\3\2\2\2\u02f2\u02f8"+ - "\5\u0090I\2\u02f3\u02f8\5\u0092J\2\u02f4\u02f8\5\u0094K\2\u02f5\u02f8"+ - "\5\u0096L\2\u02f6\u02f8\5\u0098M\2\u02f7\u02f2\3\2\2\2\u02f7\u02f3\3\2"+ - "\2\2\u02f7\u02f4\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f7\u02f6\3\2\2\2\u02f8"+ - "\u008f\3\2\2\2\u02f9\u02fa\7:\2\2\u02fa\u02fb\5F$\2\u02fb\u02fc\5\u009c"+ - "O\2\u02fc\u0091\3\2\2\2\u02fd\u02fe\t\r\2\2\u02fe\u0093\3\2\2\2\u02ff"+ - "\u0301\t\2\2\2\u0300\u02ff\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u0302\3\2"+ - "\2\2\u0302\u0303\7\u0109\2\2\u0303\u0095\3\2\2\2\u0304\u0306\t\2\2\2\u0305"+ - "\u0304\3\2\2\2\u0305\u0306\3\2\2\2\u0306\u0307\3\2\2\2\u0307\u0308\7\u010a"+ - "\2\2\u0308\u0097\3\2\2\2\u0309\u030a\t\16\2\2\u030a\u0099\3\2\2\2\u030b"+ - "\u030c\5\u0092J\2\u030c\u009b\3\2\2\2\u030d\u030e\t\17\2\2\u030e\u009d"+ - "\3\2\2\2\u030f\u0310\t\20\2\2\u0310\u009f\3\2\2\2\u0311\u0312\7j\2\2\u0312"+ - "\u0317\5\u008eH\2\u0313\u0314\7[\2\2\u0314\u0316\5\u008eH\2\u0315\u0313"+ - "\3\2\2\2\u0316\u0319\3\2\2\2\u0317\u0315\3\2\2\2\u0317\u0318\3\2\2\2\u0318"+ - "\u031a\3\2\2\2\u0319\u0317\3\2\2\2\u031a\u031b\7k\2\2\u031b\u00a1\3\2"+ - "\2\2\u031c\u0321\5\u00a6T\2\u031d\u031e\7\\\2\2\u031e\u0320\5\u00a6T\2"+ - "\u031f\u031d\3\2\2\2\u0320\u0323\3\2\2\2\u0321\u031f\3\2\2\2\u0321\u0322"+ - "\3\2\2\2\u0322\u00a3\3\2\2\2\u0323\u0321\3\2\2\2\u0324\u0329\5\u00a8U"+ - "\2\u0325\u0326\7\\\2\2\u0326\u0328\5\u00a8U\2\u0327\u0325\3\2\2\2\u0328"+ - "\u032b\3\2\2\2\u0329\u0327\3\2\2\2\u0329\u032a\3\2\2\2\u032a\u00a5\3\2"+ - "\2\2\u032b\u0329\3\2\2\2\u032c\u032e\7\\\2\2\u032d\u032c\3\2\2\2\u032d"+ - "\u032e\3\2\2\2\u032e\u032f\3\2\2\2\u032f\u0337\7\u0108\2\2\u0330\u0331"+ - "\7p\2\2\u0331\u0332\5\u00a6T\2\u0332\u0333\7p\2\2\u0333\u0337\3\2\2\2"+ - "\u0334\u0337\7\u010e\2\2\u0335\u0337\5\u00aaV\2\u0336\u032d\3\2\2\2\u0336"+ - "\u0330\3\2\2\2\u0336\u0334\3\2\2\2\u0336\u0335\3\2\2\2\u0337\u00a7\3\2"+ - "\2\2\u0338\u033d\5\u00a6T\2\u0339\u033a\7g\2\2\u033a\u033c\5\u00a6T\2"+ - "\u033b\u0339\3\2\2\2\u033c\u033f\3\2\2\2\u033d\u033b\3\2\2\2\u033d\u033e"+ - "\3\2\2\2\u033e\u0341\3\2\2\2\u033f\u033d\3\2\2\2\u0340\u0342\7g\2\2\u0341"+ - "\u0340\3\2\2\2\u0341\u0342\3\2\2\2\u0342\u0350\3\2\2\2\u0343\u0344\7n"+ - "\2\2\u0344\u0345\5\u00a8U\2\u0345\u0346\7n\2\2\u0346\u0350\3\2\2\2\u0347"+ - "\u0348\7o\2\2\u0348\u0349\5\u00a8U\2\u0349\u034a\7o\2\2\u034a\u0350\3"+ - "\2\2\2\u034b\u034c\7p\2\2\u034c\u034d\5\u00a8U\2\u034d\u034e\7p\2\2\u034e"+ - "\u0350\3\2\2\2\u034f\u0338\3\2\2\2\u034f\u0343\3\2\2\2\u034f\u0347\3\2"+ - "\2\2\u034f\u034b\3\2\2\2\u0350\u00a9\3\2\2\2\u0351\u035b\7\26\2\2\u0352"+ - "\u035b\5<\37\2\u0353\u035b\7\u00c4\2\2\u0354\u035b\7\u00b8\2\2\u0355\u035b"+ - "\7\u00c2\2\2\u0356\u035b\7\u0088\2\2\u0357\u035b\7\u0089\2\2\u0358\u035b"+ - "\5\u009eP\2\u0359\u035b\7\u0100\2\2\u035a\u0351\3\2\2\2\u035a\u0352\3"+ - "\2\2\2\u035a\u0353\3\2\2\2\u035a\u0354\3\2\2\2\u035a\u0355\3\2\2\2\u035a"+ - "\u0356\3\2\2\2\u035a\u0357\3\2\2\2\u035a\u0358\3\2\2\2\u035a\u0359\3\2"+ - "\2\2\u035b\u00ab\3\2\2\2N\u00ad\u00b6\u00c6\u00c9\u00cd\u00d3\u00d8\u00df"+ - "\u00e9\u00f0\u00f5\u00fa\u0101\u0105\u010a\u010e\u0114\u0119\u0124\u0129"+ - "\u012d\u0131\u0135\u013a\u0144\u0150\u0156\u017a\u0183\u018d\u0190\u01a2"+ - "\u01a7\u01af\u01b8\u01c2\u01d2\u01e1\u01e9\u01f0\u01f6\u01f8\u0203\u020d"+ - "\u0215\u021c\u0222\u022d\u023a\u0244\u024b\u0252\u025a\u025e\u0277\u0298"+ - "\u029e\u02a5\u02a8\u02ba\u02be\u02c2\u02c8\u02e0\u02f7\u0300\u0305\u0317"+ - "\u0321\u0329\u032d\u0336\u033d\u0341\u034f\u035a"; - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } -} \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens b/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/query_manager/antlr/bin/.antlr/OpenSearchPPLParser.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp deleted file mode 100644 index 635beec9a..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.interp +++ /dev/null @@ -1,831 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -DATE_SUFFIX -ID_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -DEC_DIGIT -ERROR_RECOGNITION - -channel names: -DEFAULT_TOKEN_CHANNEL -HIDDEN -null -null -WHITESPACE -ERRORCHANNEL - -mode names: -DEFAULT_MODE - -atn: -[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 2, 274, 3, 2, 3, 5, 2, 4, 7, 2, 5, 9, 2, 6, 11, 2, 7, 13, 2, 8, 15, 2, 9, 17, 2, 10, 19, 2, 11, 21, 2, 12, 23, 2, 13, 25, 2, 14, 27, 2, 15, 29, 2, 16, 31, 2, 17, 33, 2, 18, 35, 2, 19, 37, 2, 20, 39, 2, 21, 41, 2, 22, 43, 2, 23, 45, 2, 24, 47, 2, 25, 49, 2, 26, 51, 2, 27, 53, 2, 28, 55, 2, 29, 57, 2, 30, 59, 2, 31, 61, 2, 32, 63, 2, 33, 65, 2, 34, 67, 2, 35, 69, 2, 36, 71, 2, 37, 73, 2, 38, 75, 2, 39, 77, 2, 40, 79, 2, 41, 81, 2, 42, 83, 2, 43, 85, 2, 44, 87, 2, 45, 89, 2, 46, 91, 2, 47, 93, 2, 48, 95, 2, 49, 97, 2, 50, 99, 2, 51, 101, 2, 52, 103, 2, 53, 105, 2, 54, 107, 2, 55, 109, 2, 56, 111, 2, 57, 113, 2, 58, 115, 2, 59, 117, 2, 60, 119, 2, 61, 121, 2, 62, 123, 2, 63, 125, 2, 64, 127, 2, 65, 129, 2, 66, 131, 2, 67, 133, 2, 68, 135, 2, 69, 137, 2, 70, 139, 2, 71, 141, 2, 72, 143, 2, 73, 145, 2, 74, 147, 2, 75, 149, 2, 76, 151, 2, 77, 153, 2, 78, 155, 2, 79, 157, 2, 80, 159, 2, 81, 161, 2, 82, 163, 2, 83, 165, 2, 84, 167, 2, 85, 169, 2, 86, 171, 2, 87, 173, 2, 88, 175, 2, 89, 177, 2, 90, 179, 2, 91, 181, 2, 92, 183, 2, 93, 185, 2, 94, 187, 2, 95, 189, 2, 96, 191, 2, 97, 193, 2, 98, 195, 2, 99, 197, 2, 100, 199, 2, 101, 201, 2, 102, 203, 2, 103, 205, 2, 104, 207, 2, 105, 209, 2, 106, 211, 2, 107, 213, 2, 108, 215, 2, 109, 217, 2, 110, 219, 2, 111, 221, 2, 112, 223, 2, 113, 225, 2, 114, 227, 2, 115, 229, 2, 116, 231, 2, 117, 233, 2, 118, 235, 2, 119, 237, 2, 120, 239, 2, 121, 241, 2, 122, 243, 2, 123, 245, 2, 124, 247, 2, 125, 249, 2, 126, 251, 2, 127, 253, 2, 128, 255, 2, 129, 257, 2, 130, 259, 2, 131, 261, 2, 132, 263, 2, 133, 265, 2, 134, 267, 2, 135, 269, 2, 136, 271, 2, 137, 273, 2, 138, 275, 2, 139, 277, 2, 140, 279, 2, 141, 281, 2, 142, 283, 2, 143, 285, 2, 144, 287, 2, 145, 289, 2, 146, 291, 2, 147, 293, 2, 148, 295, 2, 149, 297, 2, 150, 299, 2, 151, 301, 2, 152, 303, 2, 153, 305, 2, 154, 307, 2, 155, 309, 2, 156, 311, 2, 157, 313, 2, 158, 315, 2, 159, 317, 2, 160, 319, 2, 161, 321, 2, 162, 323, 2, 163, 325, 2, 164, 327, 2, 165, 329, 2, 166, 331, 2, 167, 333, 2, 168, 335, 2, 169, 337, 2, 170, 339, 2, 171, 341, 2, 172, 343, 2, 173, 345, 2, 174, 347, 2, 175, 349, 2, 176, 351, 2, 177, 353, 2, 178, 355, 2, 179, 357, 2, 180, 359, 2, 181, 361, 2, 182, 363, 2, 183, 365, 2, 184, 367, 2, 185, 369, 2, 186, 371, 2, 187, 373, 2, 188, 375, 2, 189, 377, 2, 190, 379, 2, 191, 381, 2, 192, 383, 2, 193, 385, 2, 194, 387, 2, 195, 389, 2, 196, 391, 2, 197, 393, 2, 198, 395, 2, 199, 397, 2, 200, 399, 2, 201, 401, 2, 202, 403, 2, 203, 405, 2, 204, 407, 2, 205, 409, 2, 206, 411, 2, 207, 413, 2, 208, 415, 2, 209, 417, 2, 210, 419, 2, 211, 421, 2, 212, 423, 2, 213, 425, 2, 214, 427, 2, 215, 429, 2, 216, 431, 2, 217, 433, 2, 218, 435, 2, 219, 437, 2, 220, 439, 2, 221, 441, 2, 222, 443, 2, 223, 445, 2, 224, 447, 2, 225, 449, 2, 226, 451, 2, 227, 453, 2, 228, 455, 2, 229, 457, 2, 230, 459, 2, 231, 461, 2, 232, 463, 2, 233, 465, 2, 234, 467, 2, 235, 469, 2, 236, 471, 2, 237, 473, 2, 238, 475, 2, 239, 477, 2, 240, 479, 2, 241, 481, 2, 242, 483, 2, 243, 485, 2, 244, 487, 2, 245, 489, 2, 246, 491, 2, 247, 493, 2, 248, 495, 2, 249, 497, 2, 250, 499, 2, 251, 501, 2, 252, 503, 2, 253, 505, 2, 254, 507, 2, 255, 509, 2, 256, 511, 2, 257, 513, 2, 258, 515, 2, 259, 517, 2, 260, 519, 2, 261, 521, 2, 262, 523, 2, 263, 525, 2, 264, 527, 2, 265, 529, 2, 266, 531, 2, 2, 533, 2, 2, 535, 2, 267, 537, 2, 268, 539, 2, 269, 541, 2, 270, 543, 2, 2, 545, 2, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts deleted file mode 100644 index 5ef073dac..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLLexer.ts +++ /dev/null @@ -1,1768 +0,0 @@ -// Generated from ./antlr/OpenSearchPPLLexer.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ATN } from "antlr4ts/atn/ATN"; -import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; -import { CharStream } from "antlr4ts/CharStream"; -import { Lexer } from "antlr4ts/Lexer"; -import { LexerATNSimulator } from "antlr4ts/atn/LexerATNSimulator"; -import { NotNull } from "antlr4ts/Decorators"; -import { Override } from "antlr4ts/Decorators"; -import { RuleContext } from "antlr4ts/RuleContext"; -import { Vocabulary } from "antlr4ts/Vocabulary"; -import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; - -import * as Utils from "antlr4ts/misc/Utils"; - - -export class OpenSearchPPLLexer extends Lexer { - public static readonly SEARCH = 1; - public static readonly FROM = 2; - public static readonly WHERE = 3; - public static readonly FIELDS = 4; - public static readonly RENAME = 5; - public static readonly STATS = 6; - public static readonly DEDUP = 7; - public static readonly SORT = 8; - public static readonly EVAL = 9; - public static readonly HEAD = 10; - public static readonly TOP = 11; - public static readonly RARE = 12; - public static readonly PARSE = 13; - public static readonly KMEANS = 14; - public static readonly AD = 15; - public static readonly AS = 16; - public static readonly BY = 17; - public static readonly SOURCE = 18; - public static readonly INDEX = 19; - public static readonly D = 20; - public static readonly DESC = 21; - public static readonly SORTBY = 22; - public static readonly AUTO = 23; - public static readonly STR = 24; - public static readonly IP = 25; - public static readonly NUM = 26; - public static readonly KEEPEMPTY = 27; - public static readonly CONSECUTIVE = 28; - public static readonly DEDUP_SPLITVALUES = 29; - public static readonly PARTITIONS = 30; - public static readonly ALLNUM = 31; - public static readonly DELIM = 32; - public static readonly CENTROIDS = 33; - public static readonly ITERATIONS = 34; - public static readonly DISTANCE_TYPE = 35; - public static readonly NUMBER_OF_TREES = 36; - public static readonly SHINGLE_SIZE = 37; - public static readonly SAMPLE_SIZE = 38; - public static readonly OUTPUT_AFTER = 39; - public static readonly TIME_DECAY = 40; - public static readonly ANOMALY_RATE = 41; - public static readonly TIME_FIELD = 42; - public static readonly TIME_ZONE = 43; - public static readonly TRAINING_DATA_SIZE = 44; - public static readonly ANOMALY_SCORE_THRESHOLD = 45; - public static readonly CASE = 46; - public static readonly IN = 47; - public static readonly NOT = 48; - public static readonly OR = 49; - public static readonly AND = 50; - public static readonly XOR = 51; - public static readonly TRUE = 52; - public static readonly FALSE = 53; - public static readonly REGEXP = 54; - public static readonly DATETIME = 55; - public static readonly INTERVAL = 56; - public static readonly MICROSECOND = 57; - public static readonly MILLISECOND = 58; - public static readonly SECOND = 59; - public static readonly MINUTE = 60; - public static readonly HOUR = 61; - public static readonly DAY = 62; - public static readonly WEEK = 63; - public static readonly MONTH = 64; - public static readonly QUARTER = 65; - public static readonly YEAR = 66; - public static readonly SECOND_MICROSECOND = 67; - public static readonly MINUTE_MICROSECOND = 68; - public static readonly MINUTE_SECOND = 69; - public static readonly HOUR_MICROSECOND = 70; - public static readonly HOUR_SECOND = 71; - public static readonly HOUR_MINUTE = 72; - public static readonly DAY_MICROSECOND = 73; - public static readonly DAY_SECOND = 74; - public static readonly DAY_MINUTE = 75; - public static readonly DAY_HOUR = 76; - public static readonly YEAR_MONTH = 77; - public static readonly DATAMODEL = 78; - public static readonly LOOKUP = 79; - public static readonly SAVEDSEARCH = 80; - public static readonly INT = 81; - public static readonly INTEGER = 82; - public static readonly DOUBLE = 83; - public static readonly LONG = 84; - public static readonly FLOAT = 85; - public static readonly STRING = 86; - public static readonly BOOLEAN = 87; - public static readonly PIPE = 88; - public static readonly COMMA = 89; - public static readonly DOT = 90; - public static readonly EQUAL = 91; - public static readonly GREATER = 92; - public static readonly LESS = 93; - public static readonly NOT_GREATER = 94; - public static readonly NOT_LESS = 95; - public static readonly NOT_EQUAL = 96; - public static readonly PLUS = 97; - public static readonly MINUS = 98; - public static readonly STAR = 99; - public static readonly DIVIDE = 100; - public static readonly MODULE = 101; - public static readonly EXCLAMATION_SYMBOL = 102; - public static readonly COLON = 103; - public static readonly LT_PRTHS = 104; - public static readonly RT_PRTHS = 105; - public static readonly LT_SQR_PRTHS = 106; - public static readonly RT_SQR_PRTHS = 107; - public static readonly SINGLE_QUOTE = 108; - public static readonly DOUBLE_QUOTE = 109; - public static readonly BACKTICK = 110; - public static readonly BIT_NOT_OP = 111; - public static readonly BIT_AND_OP = 112; - public static readonly BIT_XOR_OP = 113; - public static readonly AVG = 114; - public static readonly COUNT = 115; - public static readonly DISTINCT_COUNT = 116; - public static readonly ESTDC = 117; - public static readonly ESTDC_ERROR = 118; - public static readonly MAX = 119; - public static readonly MEAN = 120; - public static readonly MEDIAN = 121; - public static readonly MIN = 122; - public static readonly MODE = 123; - public static readonly RANGE = 124; - public static readonly STDEV = 125; - public static readonly STDEVP = 126; - public static readonly SUM = 127; - public static readonly SUMSQ = 128; - public static readonly VAR_SAMP = 129; - public static readonly VAR_POP = 130; - public static readonly STDDEV_SAMP = 131; - public static readonly STDDEV_POP = 132; - public static readonly PERCENTILE = 133; - public static readonly FIRST = 134; - public static readonly LAST = 135; - public static readonly LIST = 136; - public static readonly VALUES = 137; - public static readonly EARLIEST = 138; - public static readonly EARLIEST_TIME = 139; - public static readonly LATEST = 140; - public static readonly LATEST_TIME = 141; - public static readonly PER_DAY = 142; - public static readonly PER_HOUR = 143; - public static readonly PER_MINUTE = 144; - public static readonly PER_SECOND = 145; - public static readonly RATE = 146; - public static readonly SPARKLINE = 147; - public static readonly C = 148; - public static readonly DC = 149; - public static readonly ABS = 150; - public static readonly CEIL = 151; - public static readonly CEILING = 152; - public static readonly CONV = 153; - public static readonly CRC32 = 154; - public static readonly E = 155; - public static readonly EXP = 156; - public static readonly FLOOR = 157; - public static readonly LN = 158; - public static readonly LOG = 159; - public static readonly LOG10 = 160; - public static readonly LOG2 = 161; - public static readonly MOD = 162; - public static readonly PI = 163; - public static readonly POW = 164; - public static readonly POWER = 165; - public static readonly RAND = 166; - public static readonly ROUND = 167; - public static readonly SIGN = 168; - public static readonly SQRT = 169; - public static readonly TRUNCATE = 170; - public static readonly ACOS = 171; - public static readonly ASIN = 172; - public static readonly ATAN = 173; - public static readonly ATAN2 = 174; - public static readonly COS = 175; - public static readonly COT = 176; - public static readonly DEGREES = 177; - public static readonly RADIANS = 178; - public static readonly SIN = 179; - public static readonly TAN = 180; - public static readonly ADDDATE = 181; - public static readonly DATE = 182; - public static readonly DATE_ADD = 183; - public static readonly DATE_SUB = 184; - public static readonly DAYOFMONTH = 185; - public static readonly DAYOFWEEK = 186; - public static readonly DAYOFYEAR = 187; - public static readonly DAYNAME = 188; - public static readonly FROM_DAYS = 189; - public static readonly MONTHNAME = 190; - public static readonly SUBDATE = 191; - public static readonly TIME = 192; - public static readonly TIME_TO_SEC = 193; - public static readonly TIMESTAMP = 194; - public static readonly DATE_FORMAT = 195; - public static readonly TO_DAYS = 196; - public static readonly SUBSTR = 197; - public static readonly SUBSTRING = 198; - public static readonly LTRIM = 199; - public static readonly RTRIM = 200; - public static readonly TRIM = 201; - public static readonly TO = 202; - public static readonly LOWER = 203; - public static readonly UPPER = 204; - public static readonly CONCAT = 205; - public static readonly CONCAT_WS = 206; - public static readonly LENGTH = 207; - public static readonly STRCMP = 208; - public static readonly RIGHT = 209; - public static readonly LEFT = 210; - public static readonly ASCII = 211; - public static readonly LOCATE = 212; - public static readonly REPLACE = 213; - public static readonly CAST = 214; - public static readonly LIKE = 215; - public static readonly ISNULL = 216; - public static readonly ISNOTNULL = 217; - public static readonly IFNULL = 218; - public static readonly NULLIF = 219; - public static readonly IF = 220; - public static readonly MATCH = 221; - public static readonly MATCH_PHRASE = 222; - public static readonly SIMPLE_QUERY_STRING = 223; - public static readonly ALLOW_LEADING_WILDCARD = 224; - public static readonly ANALYZE_WILDCARD = 225; - public static readonly ANALYZER = 226; - public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; - public static readonly BOOST = 228; - public static readonly CUTOFF_FREQUENCY = 229; - public static readonly DEFAULT_FIELD = 230; - public static readonly DEFAULT_OPERATOR = 231; - public static readonly ENABLE_POSITION_INCREMENTS = 232; - public static readonly FLAGS = 233; - public static readonly FUZZY_MAX_EXPANSIONS = 234; - public static readonly FUZZY_PREFIX_LENGTH = 235; - public static readonly FUZZY_TRANSPOSITIONS = 236; - public static readonly FUZZY_REWRITE = 237; - public static readonly FUZZINESS = 238; - public static readonly LENIENT = 239; - public static readonly LOW_FREQ_OPERATOR = 240; - public static readonly MAX_DETERMINIZED_STATES = 241; - public static readonly MAX_EXPANSIONS = 242; - public static readonly MINIMUM_SHOULD_MATCH = 243; - public static readonly OPERATOR = 244; - public static readonly PHRASE_SLOP = 245; - public static readonly PREFIX_LENGTH = 246; - public static readonly QUOTE_ANALYZER = 247; - public static readonly QUOTE_FIELD_SUFFIX = 248; - public static readonly REWRITE = 249; - public static readonly SLOP = 250; - public static readonly TIE_BREAKER = 251; - public static readonly TYPE = 252; - public static readonly ZERO_TERMS_QUERY = 253; - public static readonly SPAN = 254; - public static readonly MS = 255; - public static readonly S = 256; - public static readonly M = 257; - public static readonly H = 258; - public static readonly W = 259; - public static readonly Q = 260; - public static readonly Y = 261; - public static readonly ID = 262; - public static readonly INTEGER_LITERAL = 263; - public static readonly DECIMAL_LITERAL = 264; - public static readonly ID_DATE_SUFFIX = 265; - public static readonly DQUOTA_STRING = 266; - public static readonly SQUOTA_STRING = 267; - public static readonly BQUOTA_STRING = 268; - public static readonly ERROR_RECOGNITION = 269; - public static readonly WHITESPACE = 2; - public static readonly ERRORCHANNEL = 3; - - // tslint:disable:no-trailing-whitespace - public static readonly channelNames: string[] = [ - "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL", - ]; - - // tslint:disable:no-trailing-whitespace - public static readonly modeNames: string[] = [ - "DEFAULT_MODE", - ]; - - public static readonly ruleNames: string[] = [ - "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", - "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", - "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", - "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", "CENTROIDS", - "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", "SAMPLE_SIZE", - "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", "TIME_ZONE", - "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", "IN", "NOT", - "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", "INTERVAL", - "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", "DAY", "WEEK", - "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", - "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", - "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", - "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", - "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", - "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", - "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", - "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", - "DATE_SUFFIX", "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", - "BQUOTA_STRING", "DEC_DIGIT", "ERROR_RECOGNITION", - ]; - - private static readonly _LITERAL_NAMES: Array = [ - undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", - "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", - "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", - "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", - "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", - "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", - "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", - "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", - "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", - "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, - undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", - "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", - "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", - "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", - "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", - "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", - "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", - "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", - "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", - "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", - "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", - "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", - "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", - "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", - "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", - "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", - "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", - "'W'", "'Q'", "'Y'", - ]; - private static readonly _SYMBOLIC_NAMES: Array = [ - undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", - "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", - "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", - "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", - "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", - "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", - "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", - "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", - "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", - "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", - "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", - ]; - public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLLexer._LITERAL_NAMES, OpenSearchPPLLexer._SYMBOLIC_NAMES, []); - - // @Override - // @NotNull - public get vocabulary(): Vocabulary { - return OpenSearchPPLLexer.VOCABULARY; - } - // tslint:enable:no-trailing-whitespace - - - constructor(input: CharStream) { - super(input); - this._interp = new LexerATNSimulator(OpenSearchPPLLexer._ATN, this); - } - - // @Override - public get grammarFileName(): string { return "OpenSearchPPLLexer.g4"; } - - // @Override - public get ruleNames(): string[] { return OpenSearchPPLLexer.ruleNames; } - - // @Override - public get serializedATN(): string { return OpenSearchPPLLexer._serializedATN; } - - // @Override - public get channelNames(): string[] { return OpenSearchPPLLexer.channelNames; } - - // @Override - public get modeNames(): string[] { return OpenSearchPPLLexer.modeNames; } - - private static readonly _serializedATNSegments: number = 5; - private static readonly _serializedATNSegment0: string = - "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02\u010F\u0A6F\b" + - "\x01\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t" + - "\x06\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04" + - "\r\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12" + - "\t\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17" + - "\t\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C" + - "\t\x1C\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"" + - "\t\"\x04#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t" + - "*\x04+\t+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x04" + - "3\t3\x044\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04" + - "<\t<\x04=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04" + - "E\tE\x04F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04" + - "N\tN\x04O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x04" + - "W\tW\x04X\tX\x04Y\tY\x04Z\tZ\x04[\t[\x04\\\t\\\x04]\t]\x04^\t^\x04_\t" + - "_\x04`\t`\x04a\ta\x04b\tb\x04c\tc\x04d\td\x04e\te\x04f\tf\x04g\tg\x04" + - "h\th\x04i\ti\x04j\tj\x04k\tk\x04l\tl\x04m\tm\x04n\tn\x04o\to\x04p\tp\x04" + - "q\tq\x04r\tr\x04s\ts\x04t\tt\x04u\tu\x04v\tv\x04w\tw\x04x\tx\x04y\ty\x04" + - "z\tz\x04{\t{\x04|\t|\x04}\t}\x04~\t~\x04\x7F\t\x7F\x04\x80\t\x80\x04\x81" + - "\t\x81\x04\x82\t\x82\x04\x83\t\x83\x04\x84\t\x84\x04\x85\t\x85\x04\x86" + - "\t\x86\x04\x87\t\x87\x04\x88\t\x88\x04\x89\t\x89\x04\x8A\t\x8A\x04\x8B" + - "\t\x8B\x04\x8C\t\x8C\x04\x8D\t\x8D\x04\x8E\t\x8E\x04\x8F\t\x8F\x04\x90" + - "\t\x90\x04\x91\t\x91\x04\x92\t\x92\x04\x93\t\x93\x04\x94\t\x94\x04\x95" + - "\t\x95\x04\x96\t\x96\x04\x97\t\x97\x04\x98\t\x98\x04\x99\t\x99\x04\x9A" + - "\t\x9A\x04\x9B\t\x9B\x04\x9C\t\x9C\x04\x9D\t\x9D\x04\x9E\t\x9E\x04\x9F" + - "\t\x9F\x04\xA0\t\xA0\x04\xA1\t\xA1\x04\xA2\t\xA2\x04\xA3\t\xA3\x04\xA4" + - "\t\xA4\x04\xA5\t\xA5\x04\xA6\t\xA6\x04\xA7\t\xA7\x04\xA8\t\xA8\x04\xA9" + - "\t\xA9\x04\xAA\t\xAA\x04\xAB\t\xAB\x04\xAC\t\xAC\x04\xAD\t\xAD\x04\xAE" + - "\t\xAE\x04\xAF\t\xAF\x04\xB0\t\xB0\x04\xB1\t\xB1\x04\xB2\t\xB2\x04\xB3" + - "\t\xB3\x04\xB4\t\xB4\x04\xB5\t\xB5\x04\xB6\t\xB6\x04\xB7\t\xB7\x04\xB8" + - "\t\xB8\x04\xB9\t\xB9\x04\xBA\t\xBA\x04\xBB\t\xBB\x04\xBC\t\xBC\x04\xBD" + - "\t\xBD\x04\xBE\t\xBE\x04\xBF\t\xBF\x04\xC0\t\xC0\x04\xC1\t\xC1\x04\xC2" + - "\t\xC2\x04\xC3\t\xC3\x04\xC4\t\xC4\x04\xC5\t\xC5\x04\xC6\t\xC6\x04\xC7" + - "\t\xC7\x04\xC8\t\xC8\x04\xC9\t\xC9\x04\xCA\t\xCA\x04\xCB\t\xCB\x04\xCC" + - "\t\xCC\x04\xCD\t\xCD\x04\xCE\t\xCE\x04\xCF\t\xCF\x04\xD0\t\xD0\x04\xD1" + - "\t\xD1\x04\xD2\t\xD2\x04\xD3\t\xD3\x04\xD4\t\xD4\x04\xD5\t\xD5\x04\xD6" + - "\t\xD6\x04\xD7\t\xD7\x04\xD8\t\xD8\x04\xD9\t\xD9\x04\xDA\t\xDA\x04\xDB" + - "\t\xDB\x04\xDC\t\xDC\x04\xDD\t\xDD\x04\xDE\t\xDE\x04\xDF\t\xDF\x04\xE0" + - "\t\xE0\x04\xE1\t\xE1\x04\xE2\t\xE2\x04\xE3\t\xE3\x04\xE4\t\xE4\x04\xE5" + - "\t\xE5\x04\xE6\t\xE6\x04\xE7\t\xE7\x04\xE8\t\xE8\x04\xE9\t\xE9\x04\xEA" + - "\t\xEA\x04\xEB\t\xEB\x04\xEC\t\xEC\x04\xED\t\xED\x04\xEE\t\xEE\x04\xEF" + - "\t\xEF\x04\xF0\t\xF0\x04\xF1\t\xF1\x04\xF2\t\xF2\x04\xF3\t\xF3\x04\xF4" + - "\t\xF4\x04\xF5\t\xF5\x04\xF6\t\xF6\x04\xF7\t\xF7\x04\xF8\t\xF8\x04\xF9" + - "\t\xF9\x04\xFA\t\xFA\x04\xFB\t\xFB\x04\xFC\t\xFC\x04\xFD\t\xFD\x04\xFE" + - "\t\xFE\x04\xFF\t\xFF\x04\u0100\t\u0100\x04\u0101\t\u0101\x04\u0102\t\u0102" + - "\x04\u0103\t\u0103\x04\u0104\t\u0104\x04\u0105\t\u0105\x04\u0106\t\u0106" + - "\x04\u0107\t\u0107\x04\u0108\t\u0108\x04\u0109\t\u0109\x04\u010A\t\u010A" + - "\x04\u010B\t\u010B\x04\u010C\t\u010C\x04\u010D\t\u010D\x04\u010E\t\u010E" + - "\x04\u010F\t\u010F\x04\u0110\t\u0110\x04\u0111\t\u0111\x03\x02\x03\x02" + - "\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x03\x03" + - "\x03\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05\x03\x05" + - "\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x06\x03\x06\x03\x06\x03\x06" + - "\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07" + - "\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03" + - "\n\x03\n\x03\n\x03\n\x03\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + - "\f\x03\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03\x0E\x03\x0E\x03\x0E\x03\x0E" + - "\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F" + - "\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x03\x11\x03\x12\x03\x12\x03\x12" + - "\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x14\x03\x14" + - "\x03\x14\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" + - "\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x19\x03\x19\x03\x19\x03\x19" + - "\x03\x1A\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1C\x03\x1C" + - "\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D" + - "\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D" + - "\x03\x1D\x03\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + - "\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + - "\x03\x1E\x03\x1E\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F" + - "\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03" + - "!\x03!\x03!\x03!\x03!\x03!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03" + - "\"\x03\"\x03\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#" + - "\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03" + - "$\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03" + - "%\x03%\x03%\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03" + - "&\x03&\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03" + - "\'\x03\'\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03" + - "(\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03*\x03*\x03" + - "*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03+\x03+\x03+\x03" + - "+\x03+\x03+\x03+\x03+\x03+\x03+\x03+\x03,\x03,\x03,\x03,\x03,\x03,\x03" + - ",\x03,\x03,\x03,\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03" + - "-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03.\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x03.\x03.\x03/\x03/\x03/\x03/\x03/\x030\x030\x030\x031\x03" + - "1\x031\x031\x032\x032\x032\x033\x033\x033\x033\x034\x034\x034\x034\x03" + - "5\x035\x035\x035\x035\x036\x036\x036\x036\x036\x036\x037\x037\x037\x03" + - "7\x037\x037\x037\x038\x038\x038\x038\x038\x038\x038\x038\x038\x039\x03" + - "9\x039\x039\x039\x039\x039\x039\x039\x03:\x03:\x03:\x03:\x03:\x03:\x03" + - ":\x03:\x03:\x03:\x03:\x03:\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03" + - ";\x03;\x03;\x03;\x03<\x03<\x03<\x03<\x03<\x03<\x03<\x03=\x03=\x03=\x03" + - "=\x03=\x03=\x03=\x03>\x03>\x03>\x03>\x03>\x03?\x03?\x03?\x03?\x03@\x03" + - "@\x03@\x03@\x03@\x03A\x03A\x03A\x03A\x03A\x03A\x03B\x03B\x03B\x03B\x03" + - "B\x03B\x03B\x03B\x03C\x03C\x03C\x03C\x03C\x03D\x03D\x03D\x03D\x03D\x03" + - "D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03" + - "E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03" + - "E\x03E\x03E\x03E\x03E\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03" + - "F\x03F\x03F\x03F\x03F\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03" + - "G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x03H\x03" + - "H\x03H\x03H\x03H\x03H\x03H\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03" + - "I\x03I\x03I\x03I\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03" + - "J\x03J\x03J\x03J\x03J\x03J\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03" + - "K\x03K\x03K\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03" + - "M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03N\x03N\x03N\x03N\x03N\x03" + - "N\x03N\x03N\x03N\x03N\x03N\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03" + - "O\x03O\x03P\x03P\x03P\x03P\x03P\x03P\x03P\x03Q\x03Q\x03Q\x03Q\x03Q\x03" + - "Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03R\x03R\x03R\x03R\x03S\x03S\x03S\x03" + - "S\x03S\x03S\x03S\x03S\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x03U\x03U\x03" + - "U\x03U\x03U\x03V\x03V\x03V\x03V\x03V\x03V\x03W\x03W\x03W\x03W\x03W\x03" + - "W\x03W\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03Y\x03Y\x03Z\x03Z\x03" + - "[\x03[\x03\\\x03\\\x03]\x03]\x03^\x03^\x03_\x03_\x03_\x03`\x03`\x03`\x03" + - "a\x03a\x03a\x03b\x03b\x03c\x03c\x03d\x03d\x03e\x03e\x03f\x03f\x03g\x03" + - "g\x03h\x03h\x03i\x03i\x03j\x03j\x03k\x03k\x03l\x03l\x03m\x03m\x03n\x03" + - "n\x03o\x03o\x03p\x03p\x03q\x03q\x03r\x03r\x03s\x03s\x03s\x03s\x03t\x03" + - "t\x03t\x03t\x03t\x03t\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03" + - "u\x03u\x03u\x03u\x03u\x03u\x03v\x03v\x03v\x03v\x03v\x03v\x03w\x03w\x03" + - "w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03x\x03x\x03x\x03x\x03" + - "y\x03y\x03y\x03y\x03y\x03z\x03z\x03z\x03z\x03z\x03z\x03z\x03{\x03{\x03" + - "{\x03{\x03|\x03|\x03|\x03|\x03|\x03}\x03}\x03}\x03}\x03}\x03}\x03~\x03" + - "~\x03~\x03~\x03~\x03~\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F" + - "\x03\x7F\x03\x80\x03\x80\x03\x80\x03\x80\x03\x81\x03\x81\x03\x81\x03\x81" + - "\x03\x81\x03\x81\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82" + - "\x03\x82\x03\x82\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83" + - "\x03\x83\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84" + - "\x03\x84\x03\x84\x03\x84\x03\x84\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85" + - "\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x86\x03\x86\x03\x86" + - "\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x87" + - "\x03\x87\x03\x87\x03\x87\x03\x87\x03\x87\x03\x88\x03\x88\x03\x88\x03\x88" + - "\x03\x88\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x8A\x03\x8A\x03\x8A" + - "\x03\x8A\x03\x8A\x03\x8A\x03\x8A\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8B" + - "\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + - "\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + - "\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8E\x03\x8E" + - "\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E" + - "\x03\x8E\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F" + - "\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90" + - "\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91" + - "\x03\x91\x03\x91\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92" + - "\x03\x92\x03\x92\x03\x92\x03\x92\x03\x93\x03\x93\x03\x93\x03\x93\x03\x93" + - "\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94" + - "\x03\x94\x03\x95\x03\x95\x03\x96\x03\x96\x03\x96\x03\x97\x03\x97\x03\x97" + - "\x03\x97\x03\x98\x03\x98\x03\x98\x03\x98\x03\x98\x03\x99\x03\x99\x03\x99" + - "\x03\x99\x03\x99\x03\x99\x03\x99\x03\x99\x03\x9A\x03\x9A\x03\x9A\x03\x9A" + - "\x03\x9A\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9C\x03\x9C" + - "\x03\x9D\x03\x9D\x03\x9D\x03\x9D\x03\x9E\x03\x9E\x03\x9E\x03\x9E\x03\x9E" + - "\x03\x9E\x03\x9F\x03\x9F\x03\x9F\x03\xA0\x03\xA0\x03\xA0\x03\xA0\x03\xA1" + - "\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA2\x03\xA2\x03\xA2\x03\xA2" + - "\x03\xA2\x03\xA3\x03\xA3\x03\xA3\x03\xA3\x03\xA4\x03\xA4\x03\xA4\x03\xA5" + - "\x03\xA5\x03\xA5\x03\xA5\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6" + - "\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA8\x03\xA8\x03\xA8\x03\xA8" + - "\x03\xA8\x03\xA8\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xAA\x03\xAA" + - "\x03\xAA\x03\xAA\x03\xAA\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB" + - "\x03\xAB\x03\xAB\x03\xAB\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAD" + - "\x03\xAD\x03\xAD\x03\xAD\x03\xAD\x03\xAE\x03\xAE\x03\xAE\x03\xAE\x03\xAE" + - "\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xB0\x03\xB0\x03\xB0" + - "\x03\xB0\x03\xB1\x03\xB1\x03\xB1\x03\xB1\x03\xB2\x03\xB2\x03\xB2\x03\xB2" + - "\x03\xB2\x03\xB2\x03\xB2\x03\xB2\x03\xB3\x03\xB3\x03\xB3\x03\xB3\x03\xB3" + - "\x03\xB3\x03\xB3\x03\xB3\x03\xB4\x03\xB4\x03\xB4\x03\xB4\x03\xB5\x03\xB5" + - "\x03\xB5\x03\xB5\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6" + - "\x03\xB6\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB8\x03\xB8\x03\xB8" + - "\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB9\x03\xB9\x03\xB9" + - "\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xBA\x03\xBA\x03\xBA" + - "\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBB" + - "\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB" + - "\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC" + - "\x03\xBC\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD" + - "\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE" + - "\x03\xBE\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF" + - "\x03\xBF\x03\xBF\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0" + - "\x03\xC0\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC2\x03\xC2\x03\xC2" + - "\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2" + - "\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3" + - "\x03\xC3\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4" + - "\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC5\x03\xC5\x03\xC5\x03\xC5\x03\xC5" + - "\x03\xC5\x03\xC5\x03\xC5\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6" + - "\x03\xC6\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7" + - "\x03\xC7\x03\xC7\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC9" + - "\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xCA\x03\xCA\x03\xCA\x03\xCA" + - "\x03\xCA\x03\xCB\x03\xCB\x03\xCB\x03\xCC\x03\xCC\x03\xCC\x03\xCC\x03\xCC" + - "\x03\xCC\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCE\x03\xCE" + - "\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCF\x03\xCF\x03\xCF\x03\xCF" + - "\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xD0\x03\xD0\x03\xD0" + - "\x03\xD0\x03\xD0\x03\xD0\x03\xD0\x03\xD1\x03\xD1\x03\xD1\x03\xD1\x03\xD1" + - "\x03\xD1\x03\xD1\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD3" + - "\x03\xD3\x03\xD3\x03\xD3\x03\xD3\x03\xD4\x03\xD4\x03\xD4\x03\xD4\x03\xD4" + - "\x03\xD4\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD6" + - "\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD7\x03\xD7" + - "\x03\xD7\x03\xD7\x03\xD7\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD9" + - "\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xDA\x03\xDA\x03\xDA" + - "\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDB\x03\xDB" + - "\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDC\x03\xDC\x03\xDC\x03\xDC" + - "\x03\xDC\x03\xDC\x03\xDC\x03\xDD\x03\xDD\x03\xDD\x03\xDE\x03\xDE\x03\xDE" + - "\x03\xDE\x03\xDE\x03\xDE\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF" + - "\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xE0\x03\xE0" + - "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + - "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + - "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + - "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + - "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + - "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + - "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE3" + - "\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE5\x03\xE5\x03\xE5\x03\xE5\x03\xE5" + - "\x03\xE5\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + - "\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + - "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7" + - "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + - "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + - "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + - "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + - "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + - "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xEA\x03\xEA\x03\xEA\x03\xEA\x03\xEA" + - "\x03\xEA\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + - "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + - "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + - "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + - "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xED\x03\xED\x03\xED" + - "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + - "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + - "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE" + - "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEF\x03\xEF\x03\xEF\x03\xEF" + - "\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xF0\x03\xF0\x03\xF0" + - "\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + - "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + - "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + - "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + - "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + - "\x03\xF2\x03\xF2\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3" + - "\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF4" + - "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + - "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + - "\x03\xF4\x03\xF4\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5" + - "\x03\xF5\x03\xF5\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6" + - "\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + - "\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + - "\x03\xF7\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8" + - "\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF9"; - private static readonly _serializedATNSegment1: string = - "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + - "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + - "\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFB" + - "\x03\xFB\x03\xFB\x03\xFB\x03\xFB\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC" + - "\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFD\x03\xFD" + - "\x03\xFD\x03\xFD\x03\xFD\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + - "\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + - "\x03\xFE\x03\xFE\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\u0100\x03" + - "\u0100\x03\u0100\x03\u0101\x03\u0101\x03\u0102\x03\u0102\x03\u0103\x03" + - "\u0103\x03\u0104\x03\u0104\x03\u0105\x03\u0105\x03\u0106\x03\u0106\x03" + - "\u0107\x03\u0107\x03\u0108\x06\u0108\u0A19\n\u0108\r\u0108\x0E\u0108\u0A1A" + - "\x03\u0109\x06\u0109\u0A1E\n\u0109\r\u0109\x0E\u0109\u0A1F\x05\u0109\u0A22" + - "\n\u0109\x03\u0109\x03\u0109\x06\u0109\u0A26\n\u0109\r\u0109\x0E\u0109" + - "\u0A27\x03\u010A\x03\u010A\x06\u010A\u0A2C\n\u010A\r\u010A\x0E\u010A\u0A2D" + - "\x07\u010A\u0A30\n\u010A\f\u010A\x0E\u010A\u0A33\v\u010A\x03\u010B\x06" + - "\u010B\u0A36\n\u010B\r\u010B\x0E\u010B\u0A37\x03\u010B\x07\u010B\u0A3B" + - "\n\u010B\f\u010B\x0E\u010B\u0A3E\v\u010B\x03\u010C\x03\u010C\x03\u010C" + - "\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x07\u010D" + - "\u0A49\n\u010D\f\u010D\x0E\u010D\u0A4C\v\u010D\x03\u010D\x03\u010D\x03" + - "\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x07\u010E\u0A56" + - "\n\u010E\f\u010E\x0E\u010E\u0A59\v\u010E\x03\u010E\x03\u010E\x03\u010F" + - "\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x07\u010F\u0A63\n\u010F" + - "\f\u010F\x0E\u010F\u0A66\v\u010F\x03\u010F\x03\u010F\x03\u0110\x03\u0110" + - "\x03\u0111\x03\u0111\x03\u0111\x03\u0111\x03\u0A37\x02\x02\u0112\x03\x02" + - "\x03\x05\x02\x04\x07\x02\x05\t\x02\x06\v\x02\x07\r\x02\b\x0F\x02\t\x11" + - "\x02\n\x13\x02\v\x15\x02\f\x17\x02\r\x19\x02\x0E\x1B\x02\x0F\x1D\x02\x10" + - "\x1F\x02\x11!\x02\x12#\x02\x13%\x02\x14\'\x02\x15)\x02\x16+\x02\x17-\x02" + - "\x18/\x02\x191\x02\x1A3\x02\x1B5\x02\x1C7\x02\x1D9\x02\x1E;\x02\x1F=\x02" + - " ?\x02!A\x02\"C\x02#E\x02$G\x02%I\x02&K\x02\'M\x02(O\x02)Q\x02*S\x02+" + - "U\x02,W\x02-Y\x02.[\x02/]\x020_\x021a\x022c\x023e\x024g\x025i\x026k\x02" + - "7m\x028o\x029q\x02:s\x02;u\x02{\x02?}\x02@\x7F\x02A\x81\x02" + - "B\x83\x02C\x85\x02D\x87\x02E\x89\x02F\x8B\x02G\x8D\x02H\x8F\x02I\x91\x02" + - "J\x93\x02K\x95\x02L\x97\x02M\x99\x02N\x9B\x02O\x9D\x02P\x9F\x02Q\xA1\x02" + - "R\xA3\x02S\xA5\x02T\xA7\x02U\xA9\x02V\xAB\x02W\xAD\x02X\xAF\x02Y\xB1\x02" + - "Z\xB3\x02[\xB5\x02\\\xB7\x02]\xB9\x02^\xBB\x02_\xBD\x02`\xBF\x02a\xC1" + - "\x02b\xC3\x02c\xC5\x02d\xC7\x02e\xC9\x02f\xCB\x02g\xCD\x02h\xCF\x02i\xD1" + - "\x02j\xD3\x02k\xD5\x02l\xD7\x02m\xD9\x02n\xDB\x02o\xDD\x02p\xDF\x02q\xE1" + - "\x02r\xE3\x02s\xE5\x02t\xE7\x02u\xE9\x02v\xEB\x02w\xED\x02x\xEF\x02y\xF1" + - "\x02z\xF3\x02{\xF5\x02|\xF7\x02}\xF9\x02~\xFB\x02\x7F\xFD\x02\x80\xFF" + - "\x02\x81\u0101\x02\x82\u0103\x02\x83\u0105\x02\x84\u0107\x02\x85\u0109" + - "\x02\x86\u010B\x02\x87\u010D\x02\x88\u010F\x02\x89\u0111\x02\x8A\u0113" + - "\x02\x8B\u0115\x02\x8C\u0117\x02\x8D\u0119\x02\x8E\u011B\x02\x8F\u011D" + - "\x02\x90\u011F\x02\x91\u0121\x02\x92\u0123\x02\x93\u0125\x02\x94\u0127" + - "\x02\x95\u0129\x02\x96\u012B\x02\x97\u012D\x02\x98\u012F\x02\x99\u0131" + - "\x02\x9A\u0133\x02\x9B\u0135\x02\x9C\u0137\x02\x9D\u0139\x02\x9E\u013B" + - "\x02\x9F\u013D\x02\xA0\u013F\x02\xA1\u0141\x02\xA2\u0143\x02\xA3\u0145" + - "\x02\xA4\u0147\x02\xA5\u0149\x02\xA6\u014B\x02\xA7\u014D\x02\xA8\u014F" + - "\x02\xA9\u0151\x02\xAA\u0153\x02\xAB\u0155\x02\xAC\u0157\x02\xAD\u0159" + - "\x02\xAE\u015B\x02\xAF\u015D\x02\xB0\u015F\x02\xB1\u0161\x02\xB2\u0163" + - "\x02\xB3\u0165\x02\xB4\u0167\x02\xB5\u0169\x02\xB6\u016B\x02\xB7\u016D" + - "\x02\xB8\u016F\x02\xB9\u0171\x02\xBA\u0173\x02\xBB\u0175\x02\xBC\u0177" + - "\x02\xBD\u0179\x02\xBE\u017B\x02\xBF\u017D\x02\xC0\u017F\x02\xC1\u0181" + - "\x02\xC2\u0183\x02\xC3\u0185\x02\xC4\u0187\x02\xC5\u0189\x02\xC6\u018B" + - "\x02\xC7\u018D\x02\xC8\u018F\x02\xC9\u0191\x02\xCA\u0193\x02\xCB\u0195" + - "\x02\xCC\u0197\x02\xCD\u0199\x02\xCE\u019B\x02\xCF\u019D\x02\xD0\u019F" + - "\x02\xD1\u01A1\x02\xD2\u01A3\x02\xD3\u01A5\x02\xD4\u01A7\x02\xD5\u01A9" + - "\x02\xD6\u01AB\x02\xD7\u01AD\x02\xD8\u01AF\x02\xD9\u01B1\x02\xDA\u01B3" + - "\x02\xDB\u01B5\x02\xDC\u01B7\x02\xDD\u01B9\x02\xDE\u01BB\x02\xDF\u01BD" + - "\x02\xE0\u01BF\x02\xE1\u01C1\x02\xE2\u01C3\x02\xE3\u01C5\x02\xE4\u01C7" + - "\x02\xE5\u01C9\x02\xE6\u01CB\x02\xE7\u01CD\x02\xE8\u01CF\x02\xE9\u01D1" + - "\x02\xEA\u01D3\x02\xEB\u01D5\x02\xEC\u01D7\x02\xED\u01D9\x02\xEE\u01DB" + - "\x02\xEF\u01DD\x02\xF0\u01DF\x02\xF1\u01E1\x02\xF2\u01E3\x02\xF3\u01E5" + - "\x02\xF4\u01E7\x02\xF5\u01E9\x02\xF6\u01EB\x02\xF7\u01ED\x02\xF8\u01EF" + - "\x02\xF9\u01F1\x02\xFA\u01F3\x02\xFB\u01F5\x02\xFC\u01F7\x02\xFD\u01F9" + - "\x02\xFE\u01FB\x02\xFF\u01FD\x02\u0100\u01FF\x02\u0101\u0201\x02\u0102" + - "\u0203\x02\u0103\u0205\x02\u0104\u0207\x02\u0105\u0209\x02\u0106\u020B" + - "\x02\u0107\u020D\x02\u0108\u020F\x02\u0109\u0211\x02\u010A\u0213\x02\x02" + - "\u0215\x02\x02\u0217\x02\u010B\u0219\x02\u010C\u021B\x02\u010D\u021D\x02" + - "\u010E\u021F\x02\x02\u0221\x02\u010F\x03\x02\n\x03\x02/0\x04\x02,,2;\x04" + - "\x02,,B\\\x07\x02,,//2;C\\aa\x04\x02$$^^\x04\x02))^^\x04\x02^^bb\x03\x02" + - "2;\x02\u0A7C\x02\x03\x03\x02\x02\x02\x02\x05\x03\x02\x02\x02\x02\x07\x03" + - "\x02\x02\x02\x02\t\x03\x02\x02\x02\x02\v\x03\x02\x02\x02\x02\r\x03\x02" + - "\x02\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03\x02\x02\x02\x02\x13\x03\x02" + - "\x02\x02\x02\x15\x03\x02\x02\x02\x02\x17\x03\x02\x02\x02\x02\x19\x03\x02" + - "\x02\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03\x02\x02\x02\x02\x1F\x03\x02" + - "\x02\x02\x02!\x03\x02\x02\x02\x02#\x03\x02\x02\x02\x02%\x03\x02\x02\x02" + - "\x02\'\x03\x02\x02\x02\x02)\x03\x02\x02\x02\x02+\x03\x02\x02\x02\x02-" + - "\x03\x02\x02\x02\x02/\x03\x02\x02\x02\x021\x03\x02\x02\x02\x023\x03\x02" + - "\x02\x02\x025\x03\x02\x02\x02\x027\x03\x02\x02\x02\x029\x03\x02\x02\x02" + - "\x02;\x03\x02\x02\x02\x02=\x03\x02\x02\x02\x02?\x03\x02\x02\x02\x02A\x03" + - "\x02\x02\x02\x02C\x03\x02\x02\x02\x02E\x03\x02\x02\x02\x02G\x03\x02\x02" + - "\x02\x02I\x03\x02\x02\x02\x02K\x03\x02\x02\x02\x02M\x03\x02\x02\x02\x02" + - "O\x03\x02\x02\x02\x02Q\x03\x02\x02\x02\x02S\x03\x02\x02\x02\x02U\x03\x02" + - "\x02\x02\x02W\x03\x02\x02\x02\x02Y\x03\x02\x02\x02\x02[\x03\x02\x02\x02" + - "\x02]\x03\x02\x02\x02\x02_\x03\x02\x02\x02\x02a\x03\x02\x02\x02\x02c\x03" + - "\x02\x02\x02\x02e\x03\x02\x02\x02\x02g\x03\x02\x02\x02\x02i\x03\x02\x02" + - "\x02\x02k\x03\x02\x02\x02\x02m\x03\x02\x02\x02\x02o\x03\x02\x02\x02\x02" + - "q\x03\x02\x02\x02\x02s\x03\x02\x02\x02\x02u\x03\x02\x02\x02\x02w\x03\x02" + - "\x02\x02\x02y\x03\x02\x02\x02\x02{\x03\x02\x02\x02\x02}\x03\x02\x02\x02" + - "\x02\x7F\x03\x02\x02\x02\x02\x81\x03\x02\x02\x02\x02\x83\x03\x02\x02\x02" + - "\x02\x85\x03\x02\x02\x02\x02\x87\x03\x02\x02\x02\x02\x89\x03\x02\x02\x02" + - "\x02\x8B\x03\x02\x02\x02\x02\x8D\x03\x02\x02\x02\x02\x8F\x03\x02\x02\x02" + - "\x02\x91\x03\x02\x02\x02\x02\x93\x03\x02\x02\x02\x02\x95\x03\x02\x02\x02" + - "\x02\x97\x03\x02\x02\x02\x02\x99\x03\x02\x02\x02\x02\x9B\x03\x02\x02\x02" + - "\x02\x9D\x03\x02\x02\x02\x02\x9F\x03\x02\x02\x02\x02\xA1\x03\x02\x02\x02" + - "\x02\xA3\x03\x02\x02\x02\x02\xA5\x03\x02\x02\x02\x02\xA7\x03\x02\x02\x02" + - "\x02\xA9\x03\x02\x02\x02\x02\xAB\x03\x02\x02\x02\x02\xAD\x03\x02\x02\x02" + - "\x02\xAF\x03\x02\x02\x02\x02\xB1\x03\x02\x02\x02\x02\xB3\x03\x02\x02\x02" + - "\x02\xB5\x03\x02\x02\x02\x02\xB7\x03\x02\x02\x02\x02\xB9\x03\x02\x02\x02" + - "\x02\xBB\x03\x02\x02\x02\x02\xBD\x03\x02\x02\x02\x02\xBF\x03\x02\x02\x02" + - "\x02\xC1\x03\x02\x02\x02\x02\xC3\x03\x02\x02\x02\x02\xC5\x03\x02\x02\x02" + - "\x02\xC7\x03\x02\x02\x02\x02\xC9\x03\x02\x02\x02\x02\xCB\x03\x02\x02\x02" + - "\x02\xCD\x03\x02\x02\x02\x02\xCF\x03\x02\x02\x02\x02\xD1\x03\x02\x02\x02" + - "\x02\xD3\x03\x02\x02\x02\x02\xD5\x03\x02\x02\x02\x02\xD7\x03\x02\x02\x02" + - "\x02\xD9\x03\x02\x02\x02\x02\xDB\x03\x02\x02\x02\x02\xDD\x03\x02\x02\x02" + - "\x02\xDF\x03\x02\x02\x02\x02\xE1\x03\x02\x02\x02\x02\xE3\x03\x02\x02\x02" + - "\x02\xE5\x03\x02\x02\x02\x02\xE7\x03\x02\x02\x02\x02\xE9\x03\x02\x02\x02" + - "\x02\xEB\x03\x02\x02\x02\x02\xED\x03\x02\x02\x02\x02\xEF\x03\x02\x02\x02" + - "\x02\xF1\x03\x02\x02\x02\x02\xF3\x03\x02\x02\x02\x02\xF5\x03\x02\x02\x02" + - "\x02\xF7\x03\x02\x02\x02\x02\xF9\x03\x02\x02\x02\x02\xFB\x03\x02\x02\x02" + - "\x02\xFD\x03\x02\x02\x02\x02\xFF\x03\x02\x02\x02\x02\u0101\x03\x02\x02" + - "\x02\x02\u0103\x03\x02\x02\x02\x02\u0105\x03\x02\x02\x02\x02\u0107\x03" + - "\x02\x02\x02\x02\u0109\x03\x02\x02\x02\x02\u010B\x03\x02\x02\x02\x02\u010D" + - "\x03\x02\x02\x02\x02\u010F\x03\x02\x02\x02\x02\u0111\x03\x02\x02\x02\x02" + - "\u0113\x03\x02\x02\x02\x02\u0115\x03\x02\x02\x02\x02\u0117\x03\x02\x02" + - "\x02\x02\u0119\x03\x02\x02\x02\x02\u011B\x03\x02\x02\x02\x02\u011D\x03" + - "\x02\x02\x02\x02\u011F\x03\x02\x02\x02\x02\u0121\x03\x02\x02\x02\x02\u0123" + - "\x03\x02\x02\x02\x02\u0125\x03\x02\x02\x02\x02\u0127\x03\x02\x02\x02\x02" + - "\u0129\x03\x02\x02\x02\x02\u012B\x03\x02\x02\x02\x02\u012D\x03\x02\x02" + - "\x02\x02\u012F\x03\x02\x02\x02\x02\u0131\x03\x02\x02\x02\x02\u0133\x03" + - "\x02\x02\x02\x02\u0135\x03\x02\x02\x02\x02\u0137\x03\x02\x02\x02\x02\u0139" + - "\x03\x02\x02\x02\x02\u013B\x03\x02\x02\x02\x02\u013D\x03\x02\x02\x02\x02" + - "\u013F\x03\x02\x02\x02\x02\u0141\x03\x02\x02\x02\x02\u0143\x03\x02\x02" + - "\x02\x02\u0145\x03\x02\x02\x02\x02\u0147\x03\x02\x02\x02\x02\u0149\x03" + - "\x02\x02\x02\x02\u014B\x03\x02\x02\x02\x02\u014D\x03\x02\x02\x02\x02\u014F" + - "\x03\x02\x02\x02\x02\u0151\x03\x02\x02\x02\x02\u0153\x03\x02\x02\x02\x02" + - "\u0155\x03\x02\x02\x02\x02\u0157\x03\x02\x02\x02\x02\u0159\x03\x02\x02" + - "\x02\x02\u015B\x03\x02\x02\x02\x02\u015D\x03\x02\x02\x02\x02\u015F\x03" + - "\x02\x02\x02\x02\u0161\x03\x02\x02\x02\x02\u0163\x03\x02\x02\x02\x02\u0165" + - "\x03\x02\x02\x02\x02\u0167\x03\x02\x02\x02\x02\u0169\x03\x02\x02\x02\x02" + - "\u016B\x03\x02\x02\x02\x02\u016D\x03\x02\x02\x02\x02\u016F\x03\x02\x02" + - "\x02\x02\u0171\x03\x02\x02\x02\x02\u0173\x03\x02\x02\x02\x02\u0175\x03" + - "\x02\x02\x02\x02\u0177\x03\x02\x02\x02\x02\u0179\x03\x02\x02\x02\x02\u017B" + - "\x03\x02\x02\x02\x02\u017D\x03\x02\x02\x02\x02\u017F\x03\x02\x02\x02\x02" + - "\u0181\x03\x02\x02\x02\x02\u0183\x03\x02\x02\x02\x02\u0185\x03\x02\x02" + - "\x02\x02\u0187\x03\x02\x02\x02\x02\u0189\x03\x02\x02\x02\x02\u018B\x03" + - "\x02\x02\x02\x02\u018D\x03\x02\x02\x02\x02\u018F\x03\x02\x02\x02\x02\u0191" + - "\x03\x02\x02\x02\x02\u0193\x03\x02\x02\x02\x02\u0195\x03\x02\x02\x02\x02" + - "\u0197\x03\x02\x02\x02\x02\u0199\x03\x02\x02\x02\x02\u019B\x03\x02\x02" + - "\x02\x02\u019D\x03\x02\x02\x02\x02\u019F\x03\x02\x02\x02\x02\u01A1\x03" + - "\x02\x02\x02\x02\u01A3\x03\x02\x02\x02\x02\u01A5\x03\x02\x02\x02\x02\u01A7" + - "\x03\x02\x02\x02\x02\u01A9\x03\x02\x02\x02\x02\u01AB\x03\x02\x02\x02\x02" + - "\u01AD\x03\x02\x02\x02\x02\u01AF\x03\x02\x02\x02\x02\u01B1\x03\x02\x02" + - "\x02\x02\u01B3\x03\x02\x02\x02\x02\u01B5\x03\x02\x02\x02\x02\u01B7\x03" + - "\x02\x02\x02\x02\u01B9\x03\x02\x02\x02\x02\u01BB\x03\x02\x02\x02\x02\u01BD" + - "\x03\x02\x02\x02\x02\u01BF\x03\x02\x02\x02\x02\u01C1\x03\x02\x02\x02\x02" + - "\u01C3\x03\x02\x02\x02\x02\u01C5\x03\x02\x02\x02\x02\u01C7\x03\x02\x02" + - "\x02\x02\u01C9\x03\x02\x02\x02\x02\u01CB\x03\x02\x02\x02\x02\u01CD\x03" + - "\x02\x02\x02\x02\u01CF\x03\x02\x02\x02\x02\u01D1\x03\x02\x02\x02\x02\u01D3" + - "\x03\x02\x02\x02\x02\u01D5\x03\x02\x02\x02\x02\u01D7\x03\x02\x02\x02\x02" + - "\u01D9\x03\x02\x02\x02\x02\u01DB\x03\x02\x02\x02\x02\u01DD\x03\x02\x02" + - "\x02\x02\u01DF\x03\x02\x02\x02\x02\u01E1\x03\x02\x02\x02\x02\u01E3\x03" + - "\x02\x02\x02\x02\u01E5\x03\x02\x02\x02\x02\u01E7\x03\x02\x02\x02\x02\u01E9" + - "\x03\x02\x02\x02\x02\u01EB\x03\x02\x02\x02\x02\u01ED\x03\x02\x02\x02\x02" + - "\u01EF\x03\x02\x02\x02\x02\u01F1\x03\x02\x02\x02\x02\u01F3\x03\x02\x02" + - "\x02\x02\u01F5\x03\x02\x02\x02\x02\u01F7\x03\x02\x02\x02\x02\u01F9\x03" + - "\x02\x02\x02\x02\u01FB\x03\x02\x02\x02\x02\u01FD\x03\x02\x02\x02\x02\u01FF" + - "\x03\x02\x02\x02\x02\u0201\x03\x02\x02\x02\x02\u0203\x03\x02\x02\x02\x02" + - "\u0205\x03\x02\x02\x02\x02\u0207\x03\x02\x02\x02\x02\u0209\x03\x02\x02" + - "\x02\x02\u020B\x03\x02\x02\x02\x02\u020D\x03\x02\x02\x02\x02\u020F\x03" + - "\x02\x02\x02\x02\u0211\x03\x02\x02\x02\x02\u0217\x03\x02\x02\x02\x02\u0219" + - "\x03\x02\x02\x02\x02\u021B\x03\x02\x02\x02\x02\u021D\x03\x02\x02\x02\x02" + - "\u0221\x03\x02\x02\x02\x03\u0223\x03\x02\x02\x02\x05\u022A\x03\x02\x02" + - "\x02\x07\u022F\x03\x02\x02\x02\t\u0235\x03\x02\x02\x02\v\u023C\x03\x02" + - "\x02\x02\r\u0243\x03\x02\x02\x02\x0F\u0249\x03\x02\x02\x02\x11\u024F\x03" + - "\x02\x02\x02\x13\u0254\x03\x02\x02\x02\x15\u0259\x03\x02\x02\x02\x17\u025E" + - "\x03\x02\x02\x02\x19\u0262\x03\x02\x02\x02\x1B\u0267\x03\x02\x02\x02\x1D" + - "\u026D\x03\x02\x02\x02\x1F\u0274\x03\x02\x02\x02!\u0277\x03\x02\x02\x02" + - "#\u027A\x03\x02\x02\x02%\u027D\x03\x02\x02\x02\'\u0284\x03\x02\x02\x02" + - ")\u028A\x03\x02\x02\x02+\u028C\x03\x02\x02\x02-\u0291\x03\x02\x02\x02" + - "/\u0298\x03\x02\x02\x021\u029D\x03\x02\x02\x023\u02A1\x03\x02\x02\x02" + - "5\u02A4\x03\x02\x02\x027\u02A8\x03\x02\x02\x029\u02B2\x03\x02\x02\x02" + - ";\u02BE\x03\x02\x02\x02=\u02D0\x03\x02\x02\x02?\u02DB\x03\x02\x02\x02" + - "A\u02E2\x03\x02\x02\x02C\u02E8\x03\x02\x02\x02E\u02F2\x03\x02\x02\x02" + - "G\u02FD\x03\x02\x02\x02I\u030B\x03\x02\x02\x02K\u031B\x03\x02\x02\x02" + - "M\u0328\x03\x02\x02\x02O\u0334\x03\x02\x02\x02Q\u0341\x03\x02\x02\x02" + - "S\u034C\x03\x02\x02\x02U\u0359\x03\x02\x02\x02W\u0364\x03\x02\x02\x02" + - "Y\u036E\x03\x02\x02\x02[\u0381\x03\x02\x02\x02]\u0399\x03\x02\x02\x02" + - "_\u039E\x03\x02\x02\x02a\u03A1\x03\x02\x02\x02c\u03A5\x03\x02\x02\x02" + - "e\u03A8\x03\x02\x02\x02g\u03AC\x03\x02\x02\x02i\u03B0\x03\x02\x02\x02" + - "k\u03B5\x03\x02\x02\x02m\u03BB\x03\x02\x02\x02o\u03C2\x03\x02\x02\x02" + - "q\u03CB\x03\x02\x02\x02s\u03D4\x03\x02\x02\x02u\u03E0\x03\x02\x02\x02" + - "w\u03EC\x03\x02\x02\x02y\u03F3\x03\x02\x02\x02{\u03FA\x03\x02\x02\x02" + - "}\u03FF\x03\x02\x02\x02\x7F\u0403\x03\x02\x02\x02\x81\u0408\x03\x02\x02" + - "\x02\x83\u040E\x03\x02\x02\x02\x85\u0416\x03\x02\x02\x02\x87\u041B\x03" + - "\x02\x02\x02\x89\u042E\x03\x02\x02\x02\x8B\u0441\x03\x02\x02\x02\x8D\u044F" + - "\x03\x02\x02\x02\x8F\u0460\x03\x02\x02\x02\x91\u046C\x03\x02\x02\x02\x93" + - "\u0478\x03\x02\x02\x02\x95\u0488\x03\x02\x02\x02\x97\u0493\x03\x02\x02" + - "\x02\x99\u049E\x03\x02\x02\x02\x9B\u04A7\x03\x02\x02\x02\x9D\u04B2\x03" + - "\x02\x02\x02\x9F\u04BC\x03\x02\x02\x02\xA1\u04C3\x03\x02\x02\x02\xA3\u04CF" + - "\x03\x02\x02\x02\xA5\u04D3\x03\x02\x02\x02\xA7\u04DB\x03\x02\x02\x02\xA9" + - "\u04E2\x03\x02\x02\x02\xAB\u04E7\x03\x02\x02\x02\xAD\u04ED\x03\x02\x02" + - "\x02\xAF\u04F4\x03\x02\x02\x02\xB1\u04FC\x03\x02\x02\x02\xB3\u04FE\x03" + - "\x02\x02\x02\xB5\u0500\x03\x02\x02\x02\xB7\u0502\x03\x02\x02\x02\xB9\u0504" + - "\x03\x02\x02\x02\xBB\u0506\x03\x02\x02\x02\xBD\u0508\x03\x02\x02\x02\xBF" + - "\u050B\x03\x02\x02\x02\xC1\u050E\x03\x02\x02\x02\xC3\u0511\x03\x02\x02" + - "\x02\xC5\u0513\x03\x02\x02\x02\xC7\u0515\x03\x02\x02\x02\xC9\u0517\x03" + - "\x02\x02\x02\xCB\u0519\x03\x02\x02\x02\xCD\u051B\x03\x02\x02\x02\xCF\u051D" + - "\x03\x02\x02\x02\xD1\u051F\x03\x02\x02\x02\xD3\u0521\x03\x02\x02\x02\xD5" + - "\u0523\x03\x02\x02\x02\xD7\u0525\x03\x02\x02\x02\xD9\u0527\x03\x02\x02" + - "\x02\xDB\u0529\x03\x02\x02\x02\xDD\u052B\x03\x02\x02\x02\xDF\u052D\x03" + - "\x02\x02\x02\xE1\u052F\x03\x02\x02\x02\xE3\u0531\x03\x02\x02\x02\xE5\u0533" + - "\x03\x02\x02\x02\xE7\u0537\x03\x02\x02\x02\xE9\u053D\x03\x02\x02\x02\xEB" + - "\u054C\x03\x02\x02\x02\xED\u0552\x03\x02\x02\x02\xEF\u055E\x03\x02\x02" + - "\x02\xF1\u0562\x03\x02\x02\x02\xF3\u0567\x03\x02\x02\x02\xF5\u056E\x03" + - "\x02\x02\x02\xF7\u0572\x03\x02\x02\x02\xF9\u0577\x03\x02\x02\x02\xFB\u057D" + - "\x03\x02\x02\x02\xFD\u0583\x03\x02\x02\x02\xFF\u058A\x03\x02\x02\x02\u0101" + - "\u058E\x03\x02\x02\x02\u0103\u0594\x03\x02\x02\x02\u0105\u059D\x03\x02" + - "\x02\x02\u0107\u05A5\x03\x02\x02\x02\u0109\u05B1\x03\x02\x02\x02\u010B" + - "\u05BC\x03\x02\x02\x02\u010D\u05C7\x03\x02\x02\x02\u010F\u05CD\x03\x02" + - "\x02\x02\u0111\u05D2\x03\x02\x02\x02\u0113\u05D7\x03\x02\x02\x02\u0115" + - "\u05DE\x03\x02\x02\x02\u0117\u05E7\x03\x02\x02\x02\u0119\u05F5\x03\x02" + - "\x02\x02\u011B\u05FC\x03\x02\x02\x02\u011D\u0608\x03\x02\x02\x02\u011F" + - "\u0610\x03\x02\x02\x02\u0121\u0619\x03\x02\x02\x02\u0123\u0624\x03\x02" + - "\x02\x02\u0125\u062F\x03\x02\x02\x02\u0127\u0634\x03\x02\x02\x02\u0129" + - "\u063E\x03\x02\x02\x02\u012B\u0640\x03\x02\x02\x02\u012D\u0643\x03\x02" + - "\x02\x02\u012F\u0647\x03\x02\x02\x02\u0131\u064C\x03\x02\x02\x02\u0133" + - "\u0654\x03\x02\x02\x02\u0135\u0659\x03\x02\x02\x02\u0137\u065F\x03\x02" + - "\x02\x02\u0139\u0661\x03\x02\x02\x02\u013B\u0665\x03\x02\x02\x02\u013D" + - "\u066B\x03\x02\x02\x02\u013F\u066E\x03\x02\x02\x02\u0141\u0672\x03\x02" + - "\x02\x02\u0143\u0678\x03\x02\x02\x02\u0145\u067D\x03\x02\x02\x02\u0147" + - "\u0681\x03\x02\x02\x02\u0149\u0684\x03\x02\x02\x02\u014B\u0688\x03\x02" + - "\x02\x02\u014D\u068E\x03\x02\x02\x02\u014F\u0693\x03\x02\x02\x02\u0151" + - "\u0699\x03\x02\x02\x02\u0153\u069E\x03\x02\x02\x02\u0155\u06A3\x03\x02" + - "\x02\x02\u0157\u06AC\x03\x02\x02\x02\u0159\u06B1\x03\x02\x02\x02\u015B" + - "\u06B6\x03\x02\x02\x02\u015D\u06BB\x03\x02\x02\x02\u015F\u06C1\x03\x02" + - "\x02\x02\u0161\u06C5\x03\x02\x02\x02\u0163\u06C9\x03\x02\x02\x02\u0165" + - "\u06D1\x03\x02\x02\x02\u0167\u06D9\x03\x02\x02\x02\u0169\u06DD\x03\x02" + - "\x02\x02\u016B\u06E1\x03\x02\x02\x02\u016D\u06E9\x03\x02\x02\x02\u016F" + - "\u06EE\x03\x02\x02\x02\u0171\u06F7\x03\x02\x02\x02\u0173\u0700\x03\x02" + - "\x02\x02\u0175\u070B\x03\x02\x02\x02\u0177\u0715\x03\x02\x02\x02\u0179" + - "\u071F\x03\x02\x02\x02\u017B\u0727\x03\x02\x02\x02\u017D\u0731\x03\x02" + - "\x02\x02\u017F\u073B\x03\x02\x02\x02\u0181\u0743\x03\x02\x02\x02\u0183" + - "\u0748\x03\x02\x02\x02\u0185\u0754\x03\x02\x02\x02\u0187\u075E\x03\x02" + - "\x02\x02\u0189\u076A\x03\x02\x02\x02\u018B\u0772\x03\x02\x02\x02\u018D" + - "\u0779\x03\x02\x02\x02\u018F\u0783\x03\x02\x02\x02\u0191\u0789\x03\x02" + - "\x02\x02\u0193\u078F\x03\x02\x02\x02\u0195\u0794\x03\x02\x02\x02\u0197" + - "\u0797\x03\x02\x02\x02\u0199\u079D\x03\x02\x02\x02\u019B\u07A3\x03\x02" + - "\x02\x02\u019D\u07AA\x03\x02\x02\x02\u019F\u07B4\x03\x02\x02\x02\u01A1" + - "\u07BB\x03\x02\x02\x02\u01A3\u07C2\x03\x02\x02\x02\u01A5\u07C8\x03\x02" + - "\x02\x02\u01A7\u07CD\x03\x02\x02\x02\u01A9\u07D3\x03\x02\x02\x02\u01AB" + - "\u07DA\x03\x02\x02\x02\u01AD\u07E2\x03\x02\x02\x02\u01AF\u07E7\x03\x02" + - "\x02\x02\u01B1\u07EC\x03\x02\x02\x02\u01B3\u07F3\x03\x02\x02\x02\u01B5" + - "\u07FD\x03\x02\x02\x02\u01B7\u0804\x03\x02\x02\x02\u01B9\u080B\x03\x02" + - "\x02\x02\u01BB\u080E\x03\x02\x02\x02\u01BD\u0814\x03\x02\x02\x02\u01BF" + - "\u0821\x03\x02\x02\x02\u01C1\u0835\x03\x02\x02\x02\u01C3\u084C\x03\x02" + - "\x02\x02\u01C5\u085D\x03\x02\x02\x02\u01C7\u0866\x03\x02\x02\x02\u01C9" + - "\u088A\x03\x02\x02\x02\u01CB\u0890\x03\x02\x02\x02\u01CD\u08A1\x03\x02" + - "\x02\x02\u01CF\u08AF\x03\x02\x02\x02\u01D1\u08C0\x03\x02\x02\x02\u01D3" + - "\u08DB\x03\x02\x02\x02\u01D5\u08E1\x03\x02\x02\x02\u01D7\u08F6\x03\x02" + - "\x02\x02\u01D9\u090A\x03\x02\x02\x02\u01DB\u091F\x03\x02\x02\x02\u01DD" + - "\u092D\x03\x02\x02\x02\u01DF\u0937\x03\x02\x02\x02\u01E1\u093F\x03\x02" + - "\x02\x02\u01E3\u0951\x03\x02\x02\x02\u01E5\u0969\x03\x02\x02\x02\u01E7" + - "\u0978\x03\x02\x02\x02\u01E9\u098D\x03\x02\x02\x02\u01EB\u0996\x03\x02" + - "\x02\x02\u01ED\u09A2\x03\x02\x02\x02\u01EF\u09B0\x03\x02\x02\x02\u01F1" + - "\u09BF\x03\x02\x02\x02\u01F3\u09D2\x03\x02\x02\x02\u01F5\u09DA\x03\x02" + - "\x02\x02\u01F7\u09DF\x03\x02\x02\x02\u01F9\u09EB\x03\x02\x02\x02\u01FB" + - "\u09F0\x03\x02\x02\x02\u01FD\u0A01\x03\x02\x02\x02\u01FF\u0A06\x03\x02" + - "\x02\x02\u0201\u0A09\x03\x02\x02\x02\u0203\u0A0B\x03\x02\x02\x02\u0205" + - "\u0A0D\x03\x02\x02\x02\u0207\u0A0F\x03\x02\x02\x02\u0209\u0A11\x03\x02" + - "\x02\x02\u020B\u0A13\x03\x02\x02\x02\u020D\u0A15\x03\x02\x02\x02\u020F" + - "\u0A18\x03\x02\x02\x02\u0211\u0A21\x03\x02\x02\x02\u0213\u0A31\x03\x02" + - "\x02\x02\u0215\u0A35\x03\x02\x02\x02\u0217\u0A3F\x03\x02\x02\x02\u0219" + - "\u0A42\x03\x02\x02\x02\u021B\u0A4F\x03\x02\x02\x02\u021D\u0A5C\x03\x02" + - "\x02\x02\u021F\u0A69\x03\x02\x02\x02\u0221\u0A6B\x03\x02\x02\x02\u0223" + - "\u0224\x07U\x02\x02\u0224\u0225\x07G\x02\x02\u0225\u0226\x07C\x02\x02" + - "\u0226\u0227\x07T\x02\x02\u0227\u0228\x07E\x02\x02\u0228\u0229\x07J\x02" + - "\x02\u0229\x04\x03\x02\x02\x02\u022A\u022B\x07H\x02\x02\u022B\u022C\x07" + - "T\x02\x02\u022C\u022D\x07Q\x02\x02\u022D\u022E\x07O\x02\x02\u022E\x06" + - "\x03\x02\x02\x02\u022F\u0230\x07Y\x02\x02\u0230\u0231\x07J\x02\x02\u0231" + - "\u0232\x07G\x02\x02\u0232\u0233\x07T\x02\x02\u0233\u0234\x07G\x02\x02" + - "\u0234\b\x03\x02\x02\x02\u0235\u0236\x07H\x02\x02\u0236\u0237\x07K\x02" + - "\x02\u0237\u0238\x07G\x02\x02\u0238\u0239\x07N\x02\x02\u0239\u023A\x07" + - "F\x02\x02\u023A\u023B\x07U\x02\x02\u023B\n\x03\x02\x02\x02\u023C\u023D" + - "\x07T\x02\x02\u023D\u023E\x07G\x02\x02\u023E\u023F\x07P\x02\x02\u023F" + - "\u0240\x07C\x02\x02\u0240\u0241\x07O\x02\x02\u0241\u0242\x07G\x02\x02" + - "\u0242\f\x03\x02\x02\x02\u0243\u0244\x07U\x02\x02\u0244\u0245\x07V\x02" + - "\x02\u0245\u0246\x07C\x02\x02\u0246\u0247\x07V\x02\x02\u0247\u0248\x07" + - "U\x02\x02\u0248\x0E\x03\x02\x02\x02\u0249\u024A\x07F\x02\x02\u024A\u024B" + - "\x07G\x02\x02\u024B\u024C\x07F\x02\x02\u024C\u024D\x07W\x02\x02\u024D" + - "\u024E\x07R\x02\x02\u024E\x10\x03\x02\x02\x02\u024F\u0250\x07U\x02\x02" + - "\u0250\u0251\x07Q\x02\x02\u0251\u0252\x07T\x02\x02\u0252\u0253\x07V\x02" + - "\x02\u0253\x12\x03\x02\x02\x02\u0254\u0255\x07G\x02\x02\u0255\u0256\x07" + - "X\x02\x02\u0256\u0257\x07C\x02\x02\u0257\u0258\x07N\x02\x02\u0258\x14" + - "\x03\x02\x02\x02\u0259\u025A\x07J\x02\x02\u025A\u025B\x07G\x02\x02\u025B" + - "\u025C\x07C\x02\x02\u025C\u025D\x07F\x02\x02\u025D\x16\x03\x02\x02\x02" + - "\u025E\u025F\x07V\x02\x02\u025F\u0260\x07Q\x02\x02\u0260\u0261\x07R\x02" + - "\x02\u0261\x18\x03\x02\x02\x02\u0262\u0263\x07T\x02\x02\u0263\u0264\x07" + - "C\x02\x02\u0264\u0265\x07T\x02\x02\u0265\u0266\x07G\x02\x02\u0266\x1A" + - "\x03\x02\x02\x02\u0267\u0268\x07R\x02\x02\u0268\u0269\x07C\x02\x02\u0269" + - "\u026A\x07T\x02\x02\u026A\u026B\x07U\x02\x02\u026B\u026C\x07G\x02\x02" + - "\u026C\x1C\x03\x02\x02\x02\u026D\u026E\x07M\x02\x02\u026E\u026F\x07O\x02" + - "\x02\u026F\u0270\x07G\x02\x02\u0270\u0271\x07C\x02\x02\u0271\u0272\x07" + - "P\x02\x02\u0272\u0273\x07U\x02\x02\u0273\x1E\x03\x02\x02\x02\u0274\u0275" + - "\x07C\x02\x02\u0275\u0276\x07F\x02\x02\u0276 \x03\x02\x02\x02\u0277\u0278" + - "\x07"; - private static readonly _serializedATNSegment2: string = - "C\x02\x02\u0278\u0279\x07U\x02\x02\u0279\"\x03\x02\x02\x02\u027A\u027B" + - "\x07D\x02\x02\u027B\u027C\x07[\x02\x02\u027C$\x03\x02\x02\x02\u027D\u027E" + - "\x07U\x02\x02\u027E\u027F\x07Q\x02\x02\u027F\u0280\x07W\x02\x02\u0280" + - "\u0281\x07T\x02\x02\u0281\u0282\x07E\x02\x02\u0282\u0283\x07G\x02\x02" + - "\u0283&\x03\x02\x02\x02\u0284\u0285\x07K\x02\x02\u0285\u0286\x07P\x02" + - "\x02\u0286\u0287\x07F\x02\x02\u0287\u0288\x07G\x02\x02\u0288\u0289\x07" + - "Z\x02\x02\u0289(\x03\x02\x02\x02\u028A\u028B\x07F\x02\x02\u028B*\x03\x02" + - "\x02\x02\u028C\u028D\x07F\x02\x02\u028D\u028E\x07G\x02\x02\u028E\u028F" + - "\x07U\x02\x02\u028F\u0290\x07E\x02\x02\u0290,\x03\x02\x02\x02\u0291\u0292" + - "\x07U\x02\x02\u0292\u0293\x07Q\x02\x02\u0293\u0294\x07T\x02\x02\u0294" + - "\u0295\x07V\x02\x02\u0295\u0296\x07D\x02\x02\u0296\u0297\x07[\x02\x02" + - "\u0297.\x03\x02\x02\x02\u0298\u0299\x07C\x02\x02\u0299\u029A\x07W\x02" + - "\x02\u029A\u029B\x07V\x02\x02\u029B\u029C\x07Q\x02\x02\u029C0\x03\x02" + - "\x02\x02\u029D\u029E\x07U\x02\x02\u029E\u029F\x07V\x02\x02\u029F\u02A0" + - "\x07T\x02\x02\u02A02\x03\x02\x02\x02\u02A1\u02A2\x07K\x02\x02\u02A2\u02A3" + - "\x07R\x02\x02\u02A34\x03\x02\x02\x02\u02A4\u02A5\x07P\x02\x02\u02A5\u02A6" + - "\x07W\x02\x02\u02A6\u02A7\x07O\x02\x02\u02A76\x03\x02\x02\x02\u02A8\u02A9" + - "\x07M\x02\x02\u02A9\u02AA\x07G\x02\x02\u02AA\u02AB\x07G\x02\x02\u02AB" + - "\u02AC\x07R\x02\x02\u02AC\u02AD\x07G\x02\x02\u02AD\u02AE\x07O\x02\x02" + - "\u02AE\u02AF\x07R\x02\x02\u02AF\u02B0\x07V\x02\x02\u02B0\u02B1\x07[\x02" + - "\x02\u02B18\x03\x02\x02\x02\u02B2\u02B3\x07E\x02\x02\u02B3\u02B4\x07Q" + - "\x02\x02\u02B4\u02B5\x07P\x02\x02\u02B5\u02B6\x07U\x02\x02\u02B6\u02B7" + - "\x07G\x02\x02\u02B7\u02B8\x07E\x02\x02\u02B8\u02B9\x07W\x02\x02\u02B9" + - "\u02BA\x07V\x02\x02\u02BA\u02BB\x07K\x02\x02\u02BB\u02BC\x07X\x02\x02" + - "\u02BC\u02BD\x07G\x02\x02\u02BD:\x03\x02\x02\x02\u02BE\u02BF\x07F\x02" + - "\x02\u02BF\u02C0\x07G\x02\x02\u02C0\u02C1\x07F\x02\x02\u02C1\u02C2\x07" + - "W\x02\x02\u02C2\u02C3\x07R\x02\x02\u02C3\u02C4\x07a\x02\x02\u02C4\u02C5" + - "\x07U\x02\x02\u02C5\u02C6\x07R\x02\x02\u02C6\u02C7\x07N\x02\x02\u02C7" + - "\u02C8\x07K\x02\x02\u02C8\u02C9\x07V\x02\x02\u02C9\u02CA\x07X\x02\x02" + - "\u02CA\u02CB\x07C\x02\x02\u02CB\u02CC\x07N\x02\x02\u02CC\u02CD\x07W\x02" + - "\x02\u02CD\u02CE\x07G\x02\x02\u02CE\u02CF\x07U\x02\x02\u02CF<\x03\x02" + - "\x02\x02\u02D0\u02D1\x07R\x02\x02\u02D1\u02D2\x07C\x02\x02\u02D2\u02D3" + - "\x07T\x02\x02\u02D3\u02D4\x07V\x02\x02\u02D4\u02D5\x07K\x02\x02\u02D5" + - "\u02D6\x07V\x02\x02\u02D6\u02D7\x07K\x02\x02\u02D7\u02D8\x07Q\x02\x02" + - "\u02D8\u02D9\x07P\x02\x02\u02D9\u02DA\x07U\x02\x02\u02DA>\x03\x02\x02" + - "\x02\u02DB\u02DC\x07C\x02\x02\u02DC\u02DD\x07N\x02\x02\u02DD\u02DE\x07" + - "N\x02\x02\u02DE\u02DF\x07P\x02\x02\u02DF\u02E0\x07W\x02\x02\u02E0\u02E1" + - "\x07O\x02\x02\u02E1@\x03\x02\x02\x02\u02E2\u02E3\x07F\x02\x02\u02E3\u02E4" + - "\x07G\x02\x02\u02E4\u02E5\x07N\x02\x02\u02E5\u02E6\x07K\x02\x02\u02E6" + - "\u02E7\x07O\x02\x02\u02E7B\x03\x02\x02\x02\u02E8\u02E9\x07E\x02\x02\u02E9" + - "\u02EA\x07G\x02\x02\u02EA\u02EB\x07P\x02\x02\u02EB\u02EC\x07V\x02\x02" + - "\u02EC\u02ED\x07T\x02\x02\u02ED\u02EE\x07Q\x02\x02\u02EE\u02EF\x07K\x02" + - "\x02\u02EF\u02F0\x07F\x02\x02\u02F0\u02F1\x07U\x02\x02\u02F1D\x03\x02" + - "\x02\x02\u02F2\u02F3\x07K\x02\x02\u02F3\u02F4\x07V\x02\x02\u02F4\u02F5" + - "\x07G\x02\x02\u02F5\u02F6\x07T\x02\x02\u02F6\u02F7\x07C\x02\x02\u02F7" + - "\u02F8\x07V\x02\x02\u02F8\u02F9\x07K\x02\x02\u02F9\u02FA\x07Q\x02\x02" + - "\u02FA\u02FB\x07P\x02\x02\u02FB\u02FC\x07U\x02\x02\u02FCF\x03\x02\x02" + - "\x02\u02FD\u02FE\x07F\x02\x02\u02FE\u02FF\x07K\x02\x02\u02FF\u0300\x07" + - "U\x02\x02\u0300\u0301\x07V\x02\x02\u0301\u0302\x07C\x02\x02\u0302\u0303" + - "\x07P\x02\x02\u0303\u0304\x07E\x02\x02\u0304\u0305\x07G\x02\x02\u0305" + - "\u0306\x07a\x02\x02\u0306\u0307\x07V\x02\x02\u0307\u0308\x07[\x02\x02" + - "\u0308\u0309\x07R\x02\x02\u0309\u030A\x07G\x02\x02\u030AH\x03\x02\x02" + - "\x02\u030B\u030C\x07P\x02\x02\u030C\u030D\x07W\x02\x02\u030D\u030E\x07" + - "O\x02\x02\u030E\u030F\x07D\x02\x02\u030F\u0310\x07G\x02\x02\u0310\u0311" + - "\x07T\x02\x02\u0311\u0312\x07a\x02\x02\u0312\u0313\x07Q\x02\x02\u0313" + - "\u0314\x07H\x02\x02\u0314\u0315\x07a\x02\x02\u0315\u0316\x07V\x02\x02" + - "\u0316\u0317\x07T\x02\x02\u0317\u0318\x07G\x02\x02\u0318\u0319\x07G\x02" + - "\x02\u0319\u031A\x07U\x02\x02\u031AJ\x03\x02\x02\x02\u031B\u031C\x07U" + - "\x02\x02\u031C\u031D\x07J\x02\x02\u031D\u031E\x07K\x02\x02\u031E\u031F" + - "\x07P\x02\x02\u031F\u0320\x07I\x02\x02\u0320\u0321\x07N\x02\x02\u0321" + - "\u0322\x07G\x02\x02\u0322\u0323\x07a\x02\x02\u0323\u0324\x07U\x02\x02" + - "\u0324\u0325\x07K\x02\x02\u0325\u0326\x07\\\x02\x02\u0326\u0327\x07G\x02" + - "\x02\u0327L\x03\x02\x02\x02\u0328\u0329\x07U\x02\x02\u0329\u032A\x07C" + - "\x02\x02\u032A\u032B\x07O\x02\x02\u032B\u032C\x07R\x02\x02\u032C\u032D" + - "\x07N\x02\x02\u032D\u032E\x07G\x02\x02\u032E\u032F\x07a\x02\x02\u032F" + - "\u0330\x07U\x02\x02\u0330\u0331\x07K\x02\x02\u0331\u0332\x07\\\x02\x02" + - "\u0332\u0333\x07G\x02\x02\u0333N\x03\x02\x02\x02\u0334\u0335\x07Q\x02" + - "\x02\u0335\u0336\x07W\x02\x02\u0336\u0337\x07V\x02\x02\u0337\u0338\x07" + - "R\x02\x02\u0338\u0339\x07W\x02\x02\u0339\u033A\x07V\x02\x02\u033A\u033B" + - "\x07a\x02\x02\u033B\u033C\x07C\x02\x02\u033C\u033D\x07H\x02\x02\u033D" + - "\u033E\x07V\x02\x02\u033E\u033F\x07G\x02\x02\u033F\u0340\x07T\x02\x02" + - "\u0340P\x03\x02\x02\x02\u0341\u0342\x07V\x02\x02\u0342\u0343\x07K\x02" + - "\x02\u0343\u0344\x07O\x02\x02\u0344\u0345\x07G\x02\x02\u0345\u0346\x07" + - "a\x02\x02\u0346\u0347\x07F\x02\x02\u0347\u0348\x07G\x02\x02\u0348\u0349" + - "\x07E\x02\x02\u0349\u034A\x07C\x02\x02\u034A\u034B\x07[\x02\x02\u034B" + - "R\x03\x02\x02\x02\u034C\u034D\x07C\x02\x02\u034D\u034E\x07P\x02\x02\u034E" + - "\u034F\x07Q\x02\x02\u034F\u0350\x07O\x02\x02\u0350\u0351\x07C\x02\x02" + - "\u0351\u0352\x07N\x02\x02\u0352\u0353\x07[\x02\x02\u0353\u0354\x07a\x02" + - "\x02\u0354\u0355\x07T\x02\x02\u0355\u0356\x07C\x02\x02\u0356\u0357\x07" + - "V\x02\x02\u0357\u0358\x07G\x02\x02\u0358T\x03\x02\x02\x02\u0359\u035A" + - "\x07V\x02\x02\u035A\u035B\x07K\x02\x02\u035B\u035C\x07O\x02\x02\u035C" + - "\u035D\x07G\x02\x02\u035D\u035E\x07a\x02\x02\u035E\u035F\x07H\x02\x02" + - "\u035F\u0360\x07K\x02\x02\u0360\u0361\x07G\x02\x02\u0361\u0362\x07N\x02" + - "\x02\u0362\u0363\x07F\x02\x02\u0363V\x03\x02\x02\x02\u0364\u0365\x07V" + - "\x02\x02\u0365\u0366\x07K\x02\x02\u0366\u0367\x07O\x02\x02\u0367\u0368" + - "\x07G\x02\x02\u0368\u0369\x07a\x02\x02\u0369\u036A\x07\\\x02\x02\u036A" + - "\u036B\x07Q\x02\x02\u036B\u036C\x07P\x02\x02\u036C\u036D\x07G\x02\x02" + - "\u036DX\x03\x02\x02\x02\u036E\u036F\x07V\x02\x02\u036F\u0370\x07T\x02" + - "\x02\u0370\u0371\x07C\x02\x02\u0371\u0372\x07K\x02\x02\u0372\u0373\x07" + - "P\x02\x02\u0373\u0374\x07K\x02\x02\u0374\u0375\x07P\x02\x02\u0375\u0376" + - "\x07I\x02\x02\u0376\u0377\x07a\x02\x02\u0377\u0378\x07F\x02\x02\u0378" + - "\u0379\x07C\x02\x02\u0379\u037A\x07V\x02\x02\u037A\u037B\x07C\x02\x02" + - "\u037B\u037C\x07a\x02\x02\u037C\u037D\x07U\x02\x02\u037D\u037E\x07K\x02" + - "\x02\u037E\u037F\x07\\\x02\x02\u037F\u0380\x07G\x02\x02\u0380Z\x03\x02" + - "\x02\x02\u0381\u0382\x07C\x02\x02\u0382\u0383\x07P\x02\x02\u0383\u0384" + - "\x07Q\x02\x02\u0384\u0385\x07O\x02\x02\u0385\u0386\x07C\x02\x02\u0386" + - "\u0387\x07N\x02\x02\u0387\u0388\x07[\x02\x02\u0388\u0389\x07a\x02\x02" + - "\u0389\u038A\x07U\x02\x02\u038A\u038B\x07E\x02\x02\u038B\u038C\x07Q\x02" + - "\x02\u038C\u038D\x07T\x02\x02\u038D\u038E\x07G\x02\x02\u038E\u038F\x07" + - "a\x02\x02\u038F\u0390\x07V\x02\x02\u0390\u0391\x07J\x02\x02\u0391\u0392" + - "\x07T\x02\x02\u0392\u0393\x07G\x02\x02\u0393\u0394\x07U\x02\x02\u0394" + - "\u0395\x07J\x02\x02\u0395\u0396\x07Q\x02\x02\u0396\u0397\x07N\x02\x02" + - "\u0397\u0398\x07F\x02\x02\u0398\\\x03\x02\x02\x02\u0399\u039A\x07E\x02" + - "\x02\u039A\u039B\x07C\x02\x02\u039B\u039C\x07U\x02\x02\u039C\u039D\x07" + - "G\x02\x02\u039D^\x03\x02\x02\x02\u039E\u039F\x07K\x02\x02\u039F\u03A0" + - "\x07P\x02\x02\u03A0`\x03\x02\x02\x02\u03A1\u03A2\x07P\x02\x02\u03A2\u03A3" + - "\x07Q\x02\x02\u03A3\u03A4\x07V\x02\x02\u03A4b\x03\x02\x02\x02\u03A5\u03A6" + - "\x07Q\x02\x02\u03A6\u03A7\x07T\x02\x02\u03A7d\x03\x02\x02\x02\u03A8\u03A9" + - "\x07C\x02\x02\u03A9\u03AA\x07P\x02\x02\u03AA\u03AB\x07F\x02\x02\u03AB" + - "f\x03\x02\x02\x02\u03AC\u03AD\x07Z\x02\x02\u03AD\u03AE\x07Q\x02\x02\u03AE" + - "\u03AF\x07T\x02\x02\u03AFh\x03\x02\x02\x02\u03B0\u03B1\x07V\x02\x02\u03B1" + - "\u03B2\x07T\x02\x02\u03B2\u03B3\x07W\x02\x02\u03B3\u03B4\x07G\x02\x02" + - "\u03B4j\x03\x02\x02\x02\u03B5\u03B6\x07H\x02\x02\u03B6\u03B7\x07C\x02" + - "\x02\u03B7\u03B8\x07N\x02\x02\u03B8\u03B9\x07U\x02\x02\u03B9\u03BA\x07" + - "G\x02\x02\u03BAl\x03\x02\x02\x02\u03BB\u03BC\x07T\x02\x02\u03BC\u03BD" + - "\x07G\x02\x02\u03BD\u03BE\x07I\x02\x02\u03BE\u03BF\x07G\x02\x02\u03BF" + - "\u03C0\x07Z\x02\x02\u03C0\u03C1\x07R\x02\x02\u03C1n\x03\x02\x02\x02\u03C2" + - "\u03C3\x07F\x02\x02\u03C3\u03C4\x07C\x02\x02\u03C4\u03C5\x07V\x02\x02" + - "\u03C5\u03C6\x07G\x02\x02\u03C6\u03C7\x07V\x02\x02\u03C7\u03C8\x07K\x02" + - "\x02\u03C8\u03C9\x07O\x02\x02\u03C9\u03CA\x07G\x02\x02\u03CAp\x03\x02" + - "\x02\x02\u03CB\u03CC\x07K\x02\x02\u03CC\u03CD\x07P\x02\x02\u03CD\u03CE" + - "\x07V\x02\x02\u03CE\u03CF\x07G\x02\x02\u03CF\u03D0\x07T\x02\x02\u03D0" + - "\u03D1\x07X\x02\x02\u03D1\u03D2\x07C\x02\x02\u03D2\u03D3\x07N\x02\x02" + - "\u03D3r\x03\x02\x02\x02\u03D4\u03D5\x07O\x02\x02\u03D5\u03D6\x07K\x02" + - "\x02\u03D6\u03D7\x07E\x02\x02\u03D7\u03D8\x07T\x02\x02\u03D8\u03D9\x07" + - "Q\x02\x02\u03D9\u03DA\x07U\x02\x02\u03DA\u03DB\x07G\x02\x02\u03DB\u03DC" + - "\x07E\x02\x02\u03DC\u03DD\x07Q\x02\x02\u03DD\u03DE\x07P\x02\x02\u03DE" + - "\u03DF\x07F\x02\x02\u03DFt\x03\x02\x02\x02\u03E0\u03E1\x07O\x02\x02\u03E1" + - "\u03E2\x07K\x02\x02\u03E2\u03E3\x07N\x02\x02\u03E3\u03E4\x07N\x02\x02" + - "\u03E4\u03E5\x07K\x02\x02\u03E5\u03E6\x07U\x02\x02\u03E6\u03E7\x07G\x02" + - "\x02\u03E7\u03E8\x07E\x02\x02\u03E8\u03E9\x07Q\x02\x02\u03E9\u03EA\x07" + - "P\x02\x02\u03EA\u03EB\x07F\x02\x02\u03EBv\x03\x02\x02\x02\u03EC\u03ED" + - "\x07U\x02\x02\u03ED\u03EE\x07G\x02\x02\u03EE\u03EF\x07E\x02\x02\u03EF" + - "\u03F0\x07Q\x02\x02\u03F0\u03F1\x07P\x02\x02\u03F1\u03F2\x07F\x02\x02" + - "\u03F2x\x03\x02\x02\x02\u03F3\u03F4\x07O\x02\x02\u03F4\u03F5\x07K\x02" + - "\x02\u03F5\u03F6\x07P\x02\x02\u03F6\u03F7\x07W\x02\x02\u03F7\u03F8\x07" + - "V\x02\x02\u03F8\u03F9\x07G\x02\x02\u03F9z\x03\x02\x02\x02\u03FA\u03FB" + - "\x07J\x02\x02\u03FB\u03FC\x07Q\x02\x02\u03FC\u03FD\x07W\x02\x02\u03FD" + - "\u03FE\x07T\x02\x02\u03FE|\x03\x02\x02\x02\u03FF\u0400\x07F\x02\x02\u0400" + - "\u0401\x07C\x02\x02\u0401\u0402\x07[\x02\x02\u0402~\x03\x02\x02\x02\u0403" + - "\u0404\x07Y\x02\x02\u0404\u0405\x07G\x02\x02\u0405\u0406\x07G\x02\x02" + - "\u0406\u0407\x07M\x02\x02\u0407\x80\x03\x02\x02\x02\u0408\u0409\x07O\x02" + - "\x02\u0409\u040A\x07Q\x02\x02\u040A\u040B\x07P\x02\x02\u040B\u040C\x07" + - "V\x02\x02\u040C\u040D\x07J\x02\x02\u040D\x82\x03\x02\x02\x02\u040E\u040F" + - "\x07S\x02\x02\u040F\u0410\x07W\x02\x02\u0410\u0411\x07C\x02\x02\u0411" + - "\u0412\x07T\x02\x02\u0412\u0413\x07V\x02\x02\u0413\u0414\x07G\x02\x02" + - "\u0414\u0415\x07T\x02\x02\u0415\x84\x03\x02\x02\x02\u0416\u0417\x07[\x02" + - "\x02\u0417\u0418\x07G\x02\x02\u0418\u0419\x07C\x02\x02\u0419\u041A\x07" + - "T\x02\x02\u041A\x86\x03\x02\x02\x02\u041B\u041C\x07U\x02\x02\u041C\u041D" + - "\x07G\x02\x02\u041D\u041E\x07E\x02\x02\u041E\u041F\x07Q\x02\x02\u041F" + - "\u0420\x07P\x02\x02\u0420\u0421\x07F\x02\x02\u0421\u0422\x07a\x02\x02" + - "\u0422\u0423\x07O\x02\x02\u0423\u0424\x07K\x02\x02\u0424\u0425\x07E\x02" + - "\x02\u0425\u0426\x07T\x02\x02\u0426\u0427\x07Q\x02\x02\u0427\u0428\x07" + - "U\x02\x02\u0428\u0429\x07G\x02\x02\u0429\u042A\x07E\x02\x02\u042A\u042B" + - "\x07Q\x02\x02\u042B\u042C\x07P\x02\x02\u042C\u042D\x07F\x02\x02\u042D" + - "\x88\x03\x02\x02\x02\u042E\u042F\x07O\x02\x02\u042F\u0430\x07K\x02\x02" + - "\u0430\u0431\x07P\x02\x02\u0431\u0432\x07W\x02\x02\u0432\u0433\x07V\x02" + - "\x02\u0433\u0434\x07G\x02\x02\u0434\u0435\x07a\x02\x02\u0435\u0436\x07" + - "O\x02\x02\u0436\u0437\x07K\x02\x02\u0437\u0438\x07E\x02\x02\u0438\u0439" + - "\x07T\x02\x02\u0439\u043A\x07Q\x02\x02\u043A\u043B\x07U\x02\x02\u043B" + - "\u043C\x07G\x02\x02\u043C\u043D\x07E\x02\x02\u043D\u043E\x07Q\x02\x02" + - "\u043E\u043F\x07P\x02\x02\u043F\u0440\x07F\x02\x02\u0440\x8A\x03\x02\x02" + - "\x02\u0441\u0442\x07O\x02\x02\u0442\u0443\x07K\x02\x02\u0443\u0444\x07" + - "P\x02\x02\u0444\u0445\x07W\x02\x02\u0445\u0446\x07V\x02\x02\u0446\u0447" + - "\x07G\x02\x02\u0447\u0448\x07a\x02\x02\u0448\u0449\x07U\x02\x02\u0449" + - "\u044A\x07G\x02\x02\u044A\u044B\x07E\x02\x02\u044B\u044C\x07Q\x02\x02" + - "\u044C\u044D\x07P\x02\x02\u044D\u044E\x07F\x02\x02\u044E\x8C\x03\x02\x02" + - "\x02\u044F\u0450\x07J\x02\x02\u0450\u0451\x07Q\x02\x02\u0451\u0452\x07" + - "W\x02\x02\u0452\u0453\x07T\x02\x02\u0453\u0454\x07a\x02\x02\u0454\u0455" + - "\x07O\x02\x02\u0455\u0456\x07K\x02\x02\u0456\u0457\x07E\x02\x02\u0457" + - "\u0458\x07T\x02\x02\u0458\u0459\x07Q\x02\x02\u0459\u045A\x07U\x02\x02" + - "\u045A\u045B\x07G\x02\x02\u045B\u045C\x07E\x02\x02\u045C\u045D\x07Q\x02" + - "\x02\u045D\u045E\x07P\x02\x02\u045E\u045F\x07F\x02\x02\u045F\x8E\x03\x02" + - "\x02\x02\u0460\u0461\x07J\x02\x02\u0461\u0462\x07Q\x02\x02\u0462\u0463" + - "\x07W\x02\x02\u0463\u0464\x07T\x02\x02\u0464\u0465\x07a\x02\x02\u0465" + - "\u0466\x07U\x02\x02\u0466\u0467\x07G\x02\x02\u0467\u0468\x07E\x02\x02" + - "\u0468\u0469\x07Q\x02\x02\u0469\u046A\x07P\x02\x02\u046A\u046B\x07F\x02" + - "\x02\u046B\x90\x03\x02\x02\x02\u046C\u046D\x07J\x02\x02\u046D\u046E\x07" + - "Q\x02\x02\u046E\u046F\x07W\x02\x02\u046F\u0470\x07T\x02\x02\u0470\u0471" + - "\x07a\x02\x02\u0471\u0472\x07O\x02\x02\u0472\u0473\x07K\x02\x02\u0473" + - "\u0474\x07P\x02\x02\u0474\u0475\x07W\x02\x02\u0475\u0476\x07V\x02\x02" + - "\u0476\u0477\x07G\x02\x02\u0477\x92\x03\x02\x02\x02\u0478\u0479\x07F\x02" + - "\x02\u0479\u047A\x07C\x02\x02\u047A\u047B\x07[\x02\x02\u047B\u047C\x07" + - "a\x02\x02\u047C\u047D\x07O\x02\x02\u047D\u047E\x07K\x02\x02\u047E\u047F" + - "\x07E\x02\x02\u047F\u0480\x07T\x02\x02\u0480\u0481\x07Q\x02\x02\u0481" + - "\u0482\x07U\x02\x02\u0482\u0483\x07G\x02\x02\u0483\u0484\x07E\x02\x02" + - "\u0484\u0485\x07Q\x02\x02\u0485\u0486\x07P\x02\x02\u0486\u0487\x07F\x02" + - "\x02\u0487\x94\x03\x02\x02\x02\u0488\u0489\x07F\x02\x02\u0489\u048A\x07" + - "C\x02\x02\u048A\u048B\x07[\x02\x02\u048B\u048C\x07a\x02\x02\u048C\u048D" + - "\x07U\x02\x02\u048D\u048E\x07G\x02\x02\u048E\u048F\x07E\x02\x02\u048F" + - "\u0490\x07Q\x02\x02\u0490\u0491\x07P\x02\x02\u0491\u0492\x07F\x02\x02" + - "\u0492\x96\x03\x02\x02\x02\u0493\u0494\x07F\x02\x02\u0494\u0495\x07C\x02" + - "\x02\u0495\u0496\x07[\x02\x02\u0496\u0497\x07a\x02\x02\u0497\u0498\x07" + - "O\x02\x02\u0498\u0499\x07K\x02\x02\u0499\u049A\x07P\x02\x02\u049A\u049B" + - "\x07W\x02\x02\u049B\u049C\x07V\x02\x02\u049C\u049D\x07G\x02\x02\u049D" + - "\x98\x03\x02\x02\x02\u049E\u049F\x07F\x02\x02\u049F\u04A0\x07C\x02\x02" + - "\u04A0\u04A1\x07[\x02\x02\u04A1\u04A2\x07a\x02\x02\u04A2\u04A3\x07J\x02" + - "\x02\u04A3\u04A4\x07Q\x02\x02\u04A4\u04A5\x07W\x02\x02\u04A5\u04A6\x07" + - "T\x02\x02\u04A6\x9A\x03\x02\x02\x02\u04A7\u04A8\x07[\x02\x02\u04A8\u04A9" + - "\x07G\x02\x02\u04A9\u04AA\x07C\x02\x02\u04AA\u04AB\x07T\x02\x02\u04AB" + - "\u04AC\x07a\x02\x02\u04AC\u04AD\x07O\x02\x02\u04AD\u04AE\x07Q\x02\x02" + - "\u04AE\u04AF\x07P\x02\x02\u04AF\u04B0\x07V\x02\x02\u04B0\u04B1\x07J\x02" + - "\x02\u04B1\x9C\x03\x02\x02\x02\u04B2\u04B3\x07F\x02\x02\u04B3\u04B4\x07" + - "C\x02\x02\u04B4\u04B5\x07V\x02\x02\u04B5\u04B6\x07C\x02\x02\u04B6\u04B7" + - "\x07O\x02\x02\u04B7\u04B8\x07Q\x02\x02\u04B8\u04B9\x07F\x02\x02\u04B9" + - "\u04BA\x07G\x02\x02\u04BA\u04BB\x07N\x02\x02\u04BB\x9E\x03\x02\x02\x02" + - "\u04BC\u04BD\x07N\x02\x02\u04BD\u04BE\x07Q\x02\x02\u04BE\u04BF\x07Q\x02" + - "\x02\u04BF\u04C0\x07M\x02\x02\u04C0\u04C1\x07W\x02\x02\u04C1\u04C2\x07" + - "R\x02\x02\u04C2\xA0\x03\x02\x02\x02\u04C3\u04C4\x07U\x02\x02\u04C4\u04C5" + - "\x07C\x02\x02\u04C5\u04C6\x07X\x02\x02\u04C6\u04C7\x07G\x02\x02\u04C7" + - "\u04C8\x07F\x02\x02\u04C8\u04C9\x07U\x02\x02\u04C9\u04CA\x07G\x02\x02" + - "\u04CA\u04CB\x07C\x02\x02\u04CB\u04CC\x07T\x02\x02\u04CC\u04CD\x07E\x02" + - "\x02\u04CD\u04CE\x07J\x02\x02\u04CE\xA2\x03\x02\x02\x02\u04CF\u04D0\x07" + - "K\x02\x02\u04D0\u04D1\x07P\x02\x02\u04D1\u04D2\x07V\x02\x02\u04D2\xA4" + - "\x03\x02\x02\x02\u04D3\u04D4\x07K\x02\x02\u04D4\u04D5\x07P\x02\x02\u04D5" + - "\u04D6\x07V\x02\x02\u04D6\u04D7\x07G\x02\x02\u04D7\u04D8\x07I\x02\x02" + - "\u04D8\u04D9\x07G\x02\x02\u04D9\u04DA\x07T\x02\x02\u04DA\xA6\x03\x02\x02" + - "\x02\u04DB\u04DC\x07F\x02\x02\u04DC\u04DD\x07Q\x02\x02\u04DD\u04DE\x07" + - "W\x02\x02\u04DE\u04DF\x07D\x02\x02\u04DF\u04E0\x07N\x02\x02\u04E0\u04E1" + - "\x07G\x02\x02\u04E1\xA8\x03\x02\x02\x02\u04E2\u04E3\x07N\x02\x02\u04E3" + - "\u04E4\x07Q\x02\x02\u04E4\u04E5\x07P\x02\x02\u04E5\u04E6\x07I\x02\x02" + - "\u04E6\xAA\x03\x02\x02\x02\u04E7\u04E8\x07H\x02\x02\u04E8\u04E9\x07N\x02" + - "\x02\u04E9\u04EA\x07Q\x02\x02\u04EA\u04EB\x07C\x02\x02\u04EB\u04EC\x07" + - "V\x02\x02\u04EC\xAC\x03\x02\x02\x02\u04ED\u04EE\x07U\x02\x02\u04EE\u04EF" + - "\x07V\x02\x02\u04EF\u04F0\x07T\x02\x02\u04F0\u04F1\x07K\x02\x02\u04F1" + - "\u04F2\x07P\x02\x02\u04F2\u04F3\x07I\x02\x02\u04F3\xAE\x03\x02\x02\x02" + - "\u04F4\u04F5\x07D\x02\x02\u04F5\u04F6\x07Q\x02\x02\u04F6\u04F7\x07Q\x02" + - "\x02\u04F7\u04F8\x07N\x02\x02\u04F8\u04F9\x07G\x02\x02\u04F9\u04FA\x07" + - "C\x02\x02\u04FA\u04FB\x07P\x02\x02\u04FB\xB0\x03\x02\x02\x02\u04FC\u04FD" + - "\x07~\x02\x02\u04FD\xB2\x03\x02\x02\x02\u04FE\u04FF\x07.\x02\x02\u04FF" + - "\xB4\x03\x02\x02\x02\u0500\u0501\x070\x02\x02\u0501\xB6\x03\x02\x02\x02" + - "\u0502\u0503\x07?\x02\x02\u0503\xB8\x03\x02\x02\x02\u0504\u0505\x07@\x02" + - "\x02\u0505\xBA\x03\x02\x02\x02\u0506\u0507\x07>\x02\x02\u0507\xBC\x03" + - "\x02\x02\x02\u0508\u0509\x07>\x02\x02\u0509\u050A\x07?\x02\x02\u050A\xBE" + - "\x03\x02\x02\x02\u050B\u050C\x07@\x02\x02\u050C\u050D\x07?\x02\x02\u050D" + - "\xC0\x03\x02\x02\x02\u050E\u050F\x07#\x02\x02\u050F\u0510\x07?\x02\x02" + - "\u0510\xC2\x03\x02\x02\x02\u0511\u0512\x07-\x02\x02\u0512\xC4\x03\x02" + - "\x02\x02\u0513\u0514\x07/\x02\x02\u0514\xC6\x03\x02\x02\x02\u0515\u0516" + - "\x07,\x02\x02\u0516\xC8\x03\x02\x02\x02\u0517\u0518\x071\x02\x02\u0518" + - "\xCA\x03\x02\x02\x02\u0519\u051A\x07\'\x02\x02\u051A\xCC\x03\x02\x02\x02" + - "\u051B\u051C\x07#\x02\x02\u051C\xCE\x03\x02\x02\x02\u051D\u051E\x07<\x02" + - "\x02\u051E\xD0\x03\x02\x02\x02\u051F\u0520\x07*\x02\x02\u0520\xD2\x03" + - "\x02\x02\x02\u0521\u0522\x07+\x02\x02\u0522\xD4\x03\x02\x02\x02\u0523" + - "\u0524\x07]\x02\x02\u0524\xD6\x03\x02\x02\x02\u0525\u0526\x07_\x02\x02" + - "\u0526\xD8\x03\x02\x02\x02\u0527\u0528\x07)\x02\x02\u0528\xDA\x03\x02" + - "\x02\x02\u0529\u052A\x07$\x02\x02\u052A\xDC\x03\x02\x02\x02\u052B\u052C" + - "\x07b\x02\x02\u052C\xDE\x03\x02\x02\x02\u052D\u052E\x07\x80\x02\x02\u052E" + - "\xE0\x03\x02\x02\x02\u052F\u0530\x07(\x02\x02\u0530\xE2\x03\x02\x02\x02" + - "\u0531\u0532\x07`\x02\x02\u0532\xE4\x03\x02\x02\x02\u0533\u0534\x07C\x02" + - "\x02\u0534\u0535\x07X\x02\x02\u0535\u0536\x07I\x02\x02\u0536\xE6\x03\x02" + - "\x02\x02\u0537\u0538\x07E\x02\x02\u0538\u0539\x07Q\x02\x02\u0539\u053A" + - "\x07W\x02\x02\u053A\u053B\x07P\x02\x02\u053B\u053C\x07V\x02\x02\u053C" + - "\xE8\x03\x02\x02\x02\u053D\u053E\x07F\x02\x02\u053E\u053F\x07K\x02\x02" + - "\u053F\u0540\x07U\x02\x02\u0540\u0541\x07V\x02\x02\u0541\u0542\x07K\x02" + - "\x02\u0542\u0543\x07P\x02\x02\u0543\u0544\x07E\x02\x02\u0544\u0545\x07" + - "V\x02\x02\u0545\u0546\x07a\x02\x02\u0546\u0547\x07E\x02\x02\u0547\u0548" + - "\x07Q\x02\x02\u0548\u0549\x07W\x02\x02\u0549\u054A\x07P\x02\x02\u054A" + - "\u054B\x07V\x02\x02\u054B\xEA\x03\x02\x02\x02\u054C\u054D\x07G\x02\x02" + - "\u054D\u054E\x07U\x02\x02\u054E\u054F\x07V\x02\x02\u054F\u0550\x07F\x02" + - "\x02\u0550\u0551\x07E\x02\x02\u0551\xEC\x03\x02\x02\x02\u0552\u0553\x07" + - "G\x02\x02\u0553\u0554\x07U\x02\x02\u0554\u0555\x07V\x02\x02\u0555\u0556" + - "\x07F\x02\x02\u0556\u0557\x07E\x02\x02\u0557\u0558\x07a\x02\x02\u0558" + - "\u0559\x07G\x02\x02\u0559\u055A\x07T\x02\x02\u055A\u055B\x07T\x02\x02" + - "\u055B\u055C\x07Q\x02\x02\u055C\u055D\x07T\x02\x02\u055D\xEE\x03\x02\x02" + - "\x02\u055E\u055F\x07O\x02\x02\u055F\u0560\x07C\x02\x02\u0560\u0561\x07" + - "Z\x02\x02\u0561\xF0\x03\x02\x02\x02\u0562\u0563\x07O\x02\x02\u0563\u0564" + - "\x07G\x02\x02\u0564\u0565\x07C\x02\x02\u0565\u0566\x07P\x02\x02\u0566" + - "\xF2\x03\x02\x02\x02\u0567\u0568\x07O\x02\x02\u0568\u0569\x07G\x02\x02" + - "\u0569\u056A\x07F\x02\x02\u056A\u056B\x07K\x02\x02\u056B\u056C\x07C\x02" + - "\x02\u056C\u056D\x07P\x02\x02\u056D\xF4\x03\x02\x02\x02\u056E\u056F\x07" + - "O\x02\x02\u056F\u0570\x07K\x02\x02\u0570\u0571\x07P\x02\x02\u0571\xF6" + - "\x03\x02\x02\x02\u0572\u0573\x07O\x02\x02\u0573\u0574\x07Q\x02\x02\u0574" + - "\u0575\x07F\x02\x02\u0575\u0576\x07G\x02\x02\u0576\xF8\x03\x02\x02\x02" + - "\u0577\u0578\x07T\x02\x02\u0578\u0579\x07C\x02\x02\u0579\u057A\x07P\x02" + - "\x02\u057A\u057B\x07I\x02\x02\u057B\u057C\x07G\x02\x02\u057C\xFA\x03\x02" + - "\x02\x02\u057D\u057E\x07U\x02\x02\u057E\u057F\x07V\x02\x02\u057F\u0580" + - "\x07F\x02\x02\u0580\u0581\x07G\x02\x02\u0581\u0582\x07X\x02\x02\u0582" + - "\xFC\x03\x02\x02\x02\u0583\u0584\x07U\x02\x02\u0584\u0585\x07V\x02\x02" + - "\u0585\u0586\x07F\x02\x02\u0586\u0587\x07G\x02\x02\u0587\u0588\x07X\x02" + - "\x02\u0588\u0589\x07R\x02\x02\u0589\xFE\x03\x02\x02\x02\u058A\u058B\x07" + - "U\x02\x02\u058B\u058C\x07W\x02\x02\u058C\u058D\x07O\x02\x02\u058D\u0100" + - "\x03\x02\x02\x02\u058E\u058F\x07U\x02\x02\u058F\u0590\x07W\x02\x02\u0590" + - "\u0591\x07O\x02\x02\u0591\u0592\x07U\x02\x02\u0592\u0593\x07S\x02\x02" + - "\u0593\u0102\x03\x02\x02\x02\u0594\u0595\x07X\x02\x02\u0595\u0596\x07" + - "C\x02\x02\u0596\u0597\x07T\x02\x02\u0597\u0598\x07a\x02\x02\u0598\u0599" + - "\x07U\x02\x02\u0599\u059A\x07C\x02\x02\u059A\u059B\x07O\x02\x02\u059B" + - "\u059C\x07R\x02\x02\u059C\u0104\x03\x02\x02\x02\u059D\u059E\x07X\x02\x02" + - "\u059E\u059F\x07C\x02\x02\u059F\u05A0\x07T\x02\x02\u05A0\u05A1\x07a\x02" + - "\x02\u05A1\u05A2\x07R\x02\x02\u05A2\u05A3\x07Q\x02\x02\u05A3\u05A4\x07" + - "R\x02\x02\u05A4\u0106\x03\x02\x02\x02\u05A5\u05A6\x07U\x02\x02\u05A6\u05A7" + - "\x07V\x02\x02\u05A7\u05A8\x07F\x02\x02\u05A8\u05A9\x07F\x02\x02\u05A9" + - "\u05AA\x07G\x02\x02\u05AA\u05AB\x07X\x02\x02\u05AB\u05AC\x07a\x02\x02" + - "\u05AC\u05AD\x07U\x02\x02\u05AD\u05AE\x07C\x02\x02\u05AE\u05AF\x07O\x02" + - "\x02\u05AF\u05B0\x07R\x02\x02\u05B0\u0108\x03\x02\x02\x02\u05B1\u05B2" + - "\x07U\x02\x02\u05B2\u05B3\x07V\x02\x02\u05B3\u05B4\x07F\x02\x02\u05B4" + - "\u05B5\x07F\x02\x02\u05B5\u05B6\x07G\x02\x02\u05B6\u05B7\x07X\x02\x02" + - "\u05B7\u05B8\x07a\x02\x02\u05B8\u05B9\x07R\x02"; - private static readonly _serializedATNSegment3: string = - "\x02\u05B9\u05BA\x07Q\x02\x02\u05BA\u05BB\x07R\x02\x02\u05BB\u010A\x03" + - "\x02\x02\x02\u05BC\u05BD\x07R\x02\x02\u05BD\u05BE\x07G\x02\x02\u05BE\u05BF" + - "\x07T\x02\x02\u05BF\u05C0\x07E\x02\x02\u05C0\u05C1\x07G\x02\x02\u05C1" + - "\u05C2\x07P\x02\x02\u05C2\u05C3\x07V\x02\x02\u05C3\u05C4\x07K\x02\x02" + - "\u05C4\u05C5\x07N\x02\x02\u05C5\u05C6\x07G\x02\x02\u05C6\u010C\x03\x02" + - "\x02\x02\u05C7\u05C8\x07H\x02\x02\u05C8\u05C9\x07K\x02\x02\u05C9\u05CA" + - "\x07T\x02\x02\u05CA\u05CB\x07U\x02\x02\u05CB\u05CC\x07V\x02\x02\u05CC" + - "\u010E\x03\x02\x02\x02\u05CD\u05CE\x07N\x02\x02\u05CE\u05CF\x07C\x02\x02" + - "\u05CF\u05D0\x07U\x02\x02\u05D0\u05D1\x07V\x02\x02\u05D1\u0110\x03\x02" + - "\x02\x02\u05D2\u05D3\x07N\x02\x02\u05D3\u05D4\x07K\x02\x02\u05D4\u05D5" + - "\x07U\x02\x02\u05D5\u05D6\x07V\x02\x02\u05D6\u0112\x03\x02\x02\x02\u05D7" + - "\u05D8\x07X\x02\x02\u05D8\u05D9\x07C\x02\x02\u05D9\u05DA\x07N\x02\x02" + - "\u05DA\u05DB\x07W\x02\x02\u05DB\u05DC\x07G\x02\x02\u05DC\u05DD\x07U\x02" + - "\x02\u05DD\u0114\x03\x02\x02\x02\u05DE\u05DF\x07G\x02\x02\u05DF\u05E0" + - "\x07C\x02\x02\u05E0\u05E1\x07T\x02\x02\u05E1\u05E2\x07N\x02\x02\u05E2" + - "\u05E3\x07K\x02\x02\u05E3\u05E4\x07G\x02\x02\u05E4\u05E5\x07U\x02\x02" + - "\u05E5\u05E6\x07V\x02\x02\u05E6\u0116\x03\x02\x02\x02\u05E7\u05E8\x07" + - "G\x02\x02\u05E8\u05E9\x07C\x02\x02\u05E9\u05EA\x07T\x02\x02\u05EA\u05EB" + - "\x07N\x02\x02\u05EB\u05EC\x07K\x02\x02\u05EC\u05ED\x07G\x02\x02\u05ED" + - "\u05EE\x07U\x02\x02\u05EE\u05EF\x07V\x02\x02\u05EF\u05F0\x07a\x02\x02" + - "\u05F0\u05F1\x07V\x02\x02\u05F1\u05F2\x07K\x02\x02\u05F2\u05F3\x07O\x02" + - "\x02\u05F3\u05F4\x07G\x02\x02\u05F4\u0118\x03\x02\x02\x02\u05F5\u05F6" + - "\x07N\x02\x02\u05F6\u05F7\x07C\x02\x02\u05F7\u05F8\x07V\x02\x02\u05F8" + - "\u05F9\x07G\x02\x02\u05F9\u05FA\x07U\x02\x02\u05FA\u05FB\x07V\x02\x02" + - "\u05FB\u011A\x03\x02\x02\x02\u05FC\u05FD\x07N\x02\x02\u05FD\u05FE\x07" + - "C\x02\x02\u05FE\u05FF\x07V\x02\x02\u05FF\u0600\x07G\x02\x02\u0600\u0601" + - "\x07U\x02\x02\u0601\u0602\x07V\x02\x02\u0602\u0603\x07a\x02\x02\u0603" + - "\u0604\x07V\x02\x02\u0604\u0605\x07K\x02\x02\u0605\u0606\x07O\x02\x02" + - "\u0606\u0607\x07G\x02\x02\u0607\u011C\x03\x02\x02\x02\u0608\u0609\x07" + - "R\x02\x02\u0609\u060A\x07G\x02\x02\u060A\u060B\x07T\x02\x02\u060B\u060C" + - "\x07a\x02\x02\u060C\u060D\x07F\x02\x02\u060D\u060E\x07C\x02\x02\u060E" + - "\u060F\x07[\x02\x02\u060F\u011E\x03\x02\x02\x02\u0610\u0611\x07R\x02\x02" + - "\u0611\u0612\x07G\x02\x02\u0612\u0613\x07T\x02\x02\u0613\u0614\x07a\x02" + - "\x02\u0614\u0615\x07J\x02\x02\u0615\u0616\x07Q\x02\x02\u0616\u0617\x07" + - "W\x02\x02\u0617\u0618\x07T\x02\x02\u0618\u0120\x03\x02\x02\x02\u0619\u061A" + - "\x07R\x02\x02\u061A\u061B\x07G\x02\x02\u061B\u061C\x07T\x02\x02\u061C" + - "\u061D\x07a\x02\x02\u061D\u061E\x07O\x02\x02\u061E\u061F\x07K\x02\x02" + - "\u061F\u0620\x07P\x02\x02\u0620\u0621\x07W\x02\x02\u0621\u0622\x07V\x02" + - "\x02\u0622\u0623\x07G\x02\x02\u0623\u0122\x03\x02\x02\x02\u0624\u0625" + - "\x07R\x02\x02\u0625\u0626\x07G\x02\x02\u0626\u0627\x07T\x02\x02\u0627" + - "\u0628\x07a\x02\x02\u0628\u0629\x07U\x02\x02\u0629\u062A\x07G\x02\x02" + - "\u062A\u062B\x07E\x02\x02\u062B\u062C\x07Q\x02\x02\u062C\u062D\x07P\x02" + - "\x02\u062D\u062E\x07F\x02\x02\u062E\u0124\x03\x02\x02\x02\u062F\u0630" + - "\x07T\x02\x02\u0630\u0631\x07C\x02\x02\u0631\u0632\x07V\x02\x02\u0632" + - "\u0633\x07G\x02\x02\u0633\u0126\x03\x02\x02\x02\u0634\u0635\x07U\x02\x02" + - "\u0635\u0636\x07R\x02\x02\u0636\u0637\x07C\x02\x02\u0637\u0638\x07T\x02" + - "\x02\u0638\u0639\x07M\x02\x02\u0639\u063A\x07N\x02\x02\u063A\u063B\x07" + - "K\x02\x02\u063B\u063C\x07P\x02\x02\u063C\u063D\x07G\x02\x02\u063D\u0128" + - "\x03\x02\x02\x02\u063E\u063F\x07E\x02\x02\u063F\u012A\x03\x02\x02\x02" + - "\u0640\u0641\x07F\x02\x02\u0641\u0642\x07E\x02\x02\u0642\u012C\x03\x02" + - "\x02\x02\u0643\u0644\x07C\x02\x02\u0644\u0645\x07D\x02\x02\u0645\u0646" + - "\x07U\x02\x02\u0646\u012E\x03\x02\x02\x02\u0647\u0648\x07E\x02\x02\u0648" + - "\u0649\x07G\x02\x02\u0649\u064A\x07K\x02\x02\u064A\u064B\x07N\x02\x02" + - "\u064B\u0130\x03\x02\x02\x02\u064C\u064D\x07E\x02\x02\u064D\u064E\x07" + - "G\x02\x02\u064E\u064F\x07K\x02\x02\u064F\u0650\x07N\x02\x02\u0650\u0651" + - "\x07K\x02\x02\u0651\u0652\x07P\x02\x02\u0652\u0653\x07I\x02\x02\u0653" + - "\u0132\x03\x02\x02\x02\u0654\u0655\x07E\x02\x02\u0655\u0656\x07Q\x02\x02" + - "\u0656\u0657\x07P\x02\x02\u0657\u0658\x07X\x02\x02\u0658\u0134\x03\x02" + - "\x02\x02\u0659\u065A\x07E\x02\x02\u065A\u065B\x07T\x02\x02\u065B\u065C" + - "\x07E\x02\x02\u065C\u065D\x075\x02\x02\u065D\u065E\x074\x02\x02\u065E" + - "\u0136\x03\x02\x02\x02\u065F\u0660\x07G\x02\x02\u0660\u0138\x03\x02\x02" + - "\x02\u0661\u0662\x07G\x02\x02\u0662\u0663\x07Z\x02\x02\u0663\u0664\x07" + - "R\x02\x02\u0664\u013A\x03\x02\x02\x02\u0665\u0666\x07H\x02\x02\u0666\u0667" + - "\x07N\x02\x02\u0667\u0668\x07Q\x02\x02\u0668\u0669\x07Q\x02\x02\u0669" + - "\u066A\x07T\x02\x02\u066A\u013C\x03\x02\x02\x02\u066B\u066C\x07N\x02\x02" + - "\u066C\u066D\x07P\x02\x02\u066D\u013E\x03\x02\x02\x02\u066E\u066F\x07" + - "N\x02\x02\u066F\u0670\x07Q\x02\x02\u0670\u0671\x07I\x02\x02\u0671\u0140" + - "\x03\x02\x02\x02\u0672\u0673\x07N\x02\x02\u0673\u0674\x07Q\x02\x02\u0674" + - "\u0675\x07I\x02\x02\u0675\u0676\x073\x02\x02\u0676\u0677\x072\x02\x02" + - "\u0677\u0142\x03\x02\x02\x02\u0678\u0679\x07N\x02\x02\u0679\u067A\x07" + - "Q\x02\x02\u067A\u067B\x07I\x02\x02\u067B\u067C\x074\x02\x02\u067C\u0144" + - "\x03\x02\x02\x02\u067D\u067E\x07O\x02\x02\u067E\u067F\x07Q\x02\x02\u067F" + - "\u0680\x07F\x02\x02\u0680\u0146\x03\x02\x02\x02\u0681\u0682\x07R\x02\x02" + - "\u0682\u0683\x07K\x02\x02\u0683\u0148\x03\x02\x02\x02\u0684\u0685\x07" + - "R\x02\x02\u0685\u0686\x07Q\x02\x02\u0686\u0687\x07Y\x02\x02\u0687\u014A" + - "\x03\x02\x02\x02\u0688\u0689\x07R\x02\x02\u0689\u068A\x07Q\x02\x02\u068A" + - "\u068B\x07Y\x02\x02\u068B\u068C\x07G\x02\x02\u068C\u068D\x07T\x02\x02" + - "\u068D\u014C\x03\x02\x02\x02\u068E\u068F\x07T\x02\x02\u068F\u0690\x07" + - "C\x02\x02\u0690\u0691\x07P\x02\x02\u0691\u0692\x07F\x02\x02\u0692\u014E" + - "\x03\x02\x02\x02\u0693\u0694\x07T\x02\x02\u0694\u0695\x07Q\x02\x02\u0695" + - "\u0696\x07W\x02\x02\u0696\u0697\x07P\x02\x02\u0697\u0698\x07F\x02\x02" + - "\u0698\u0150\x03\x02\x02\x02\u0699\u069A\x07U\x02\x02\u069A\u069B\x07" + - "K\x02\x02\u069B\u069C\x07I\x02\x02\u069C\u069D\x07P\x02\x02\u069D\u0152" + - "\x03\x02\x02\x02\u069E\u069F\x07U\x02\x02\u069F\u06A0\x07S\x02\x02\u06A0" + - "\u06A1\x07T\x02\x02\u06A1\u06A2\x07V\x02\x02\u06A2\u0154\x03\x02\x02\x02" + - "\u06A3\u06A4\x07V\x02\x02\u06A4\u06A5\x07T\x02\x02\u06A5\u06A6\x07W\x02" + - "\x02\u06A6\u06A7\x07P\x02\x02\u06A7\u06A8\x07E\x02\x02\u06A8\u06A9\x07" + - "C\x02\x02\u06A9\u06AA\x07V\x02\x02\u06AA\u06AB\x07G\x02\x02\u06AB\u0156" + - "\x03\x02\x02\x02\u06AC\u06AD\x07C\x02\x02\u06AD\u06AE\x07E\x02\x02\u06AE" + - "\u06AF\x07Q\x02\x02\u06AF\u06B0\x07U\x02\x02\u06B0\u0158\x03\x02\x02\x02" + - "\u06B1\u06B2\x07C\x02\x02\u06B2\u06B3\x07U\x02\x02\u06B3\u06B4\x07K\x02" + - "\x02\u06B4\u06B5\x07P\x02\x02\u06B5\u015A\x03\x02\x02\x02\u06B6\u06B7" + - "\x07C\x02\x02\u06B7\u06B8\x07V\x02\x02\u06B8\u06B9\x07C\x02\x02\u06B9" + - "\u06BA\x07P\x02\x02\u06BA\u015C\x03\x02\x02\x02\u06BB\u06BC\x07C\x02\x02" + - "\u06BC\u06BD\x07V\x02\x02\u06BD\u06BE\x07C\x02\x02\u06BE\u06BF\x07P\x02" + - "\x02\u06BF\u06C0\x074\x02\x02\u06C0\u015E\x03\x02\x02\x02\u06C1\u06C2" + - "\x07E\x02\x02\u06C2\u06C3\x07Q\x02\x02\u06C3\u06C4\x07U\x02\x02\u06C4" + - "\u0160\x03\x02\x02\x02\u06C5\u06C6\x07E\x02\x02\u06C6\u06C7\x07Q\x02\x02" + - "\u06C7\u06C8\x07V\x02\x02\u06C8\u0162\x03\x02\x02\x02\u06C9\u06CA\x07" + - "F\x02\x02\u06CA\u06CB\x07G\x02\x02\u06CB\u06CC\x07I\x02\x02\u06CC\u06CD" + - "\x07T\x02\x02\u06CD\u06CE\x07G\x02\x02\u06CE\u06CF\x07G\x02\x02\u06CF" + - "\u06D0\x07U\x02\x02\u06D0\u0164\x03\x02\x02\x02\u06D1\u06D2\x07T\x02\x02" + - "\u06D2\u06D3\x07C\x02\x02\u06D3\u06D4\x07F\x02\x02\u06D4\u06D5\x07K\x02" + - "\x02\u06D5\u06D6\x07C\x02\x02\u06D6\u06D7\x07P\x02\x02\u06D7\u06D8\x07" + - "U\x02\x02\u06D8\u0166\x03\x02\x02\x02\u06D9\u06DA\x07U\x02\x02\u06DA\u06DB" + - "\x07K\x02\x02\u06DB\u06DC\x07P\x02\x02\u06DC\u0168\x03\x02\x02\x02\u06DD" + - "\u06DE\x07V\x02\x02\u06DE\u06DF\x07C\x02\x02\u06DF\u06E0\x07P\x02\x02" + - "\u06E0\u016A\x03\x02\x02\x02\u06E1\u06E2\x07C\x02\x02\u06E2\u06E3\x07" + - "F\x02\x02\u06E3\u06E4\x07F\x02\x02\u06E4\u06E5\x07F\x02\x02\u06E5\u06E6" + - "\x07C\x02\x02\u06E6\u06E7\x07V\x02\x02\u06E7\u06E8\x07G\x02\x02\u06E8" + - "\u016C\x03\x02\x02\x02\u06E9\u06EA\x07F\x02\x02\u06EA\u06EB\x07C\x02\x02" + - "\u06EB\u06EC\x07V\x02\x02\u06EC\u06ED\x07G\x02\x02\u06ED\u016E\x03\x02" + - "\x02\x02\u06EE\u06EF\x07F\x02\x02\u06EF\u06F0\x07C\x02\x02\u06F0\u06F1" + - "\x07V\x02\x02\u06F1\u06F2\x07G\x02\x02\u06F2\u06F3\x07a\x02\x02\u06F3" + - "\u06F4\x07C\x02\x02\u06F4\u06F5\x07F\x02\x02\u06F5\u06F6\x07F\x02\x02" + - "\u06F6\u0170\x03\x02\x02\x02\u06F7\u06F8\x07F\x02\x02\u06F8\u06F9\x07" + - "C\x02\x02\u06F9\u06FA\x07V\x02\x02\u06FA\u06FB\x07G\x02\x02\u06FB\u06FC" + - "\x07a\x02\x02\u06FC\u06FD\x07U\x02\x02\u06FD\u06FE\x07W\x02\x02\u06FE" + - "\u06FF\x07D\x02\x02\u06FF\u0172\x03\x02\x02\x02\u0700\u0701\x07F\x02\x02" + - "\u0701\u0702\x07C\x02\x02\u0702\u0703\x07[\x02\x02\u0703\u0704\x07Q\x02" + - "\x02\u0704\u0705\x07H\x02\x02\u0705\u0706\x07O\x02\x02\u0706\u0707\x07" + - "Q\x02\x02\u0707\u0708\x07P\x02\x02\u0708\u0709\x07V\x02\x02\u0709\u070A" + - "\x07J\x02\x02\u070A\u0174\x03\x02\x02\x02\u070B\u070C\x07F\x02\x02\u070C" + - "\u070D\x07C\x02\x02\u070D\u070E\x07[\x02\x02\u070E\u070F\x07Q\x02\x02" + - "\u070F\u0710\x07H\x02\x02\u0710\u0711\x07Y\x02\x02\u0711\u0712\x07G\x02" + - "\x02\u0712\u0713\x07G\x02\x02\u0713\u0714\x07M\x02\x02\u0714\u0176\x03" + - "\x02\x02\x02\u0715\u0716\x07F\x02\x02\u0716\u0717\x07C\x02\x02\u0717\u0718" + - "\x07[\x02\x02\u0718\u0719\x07Q\x02\x02\u0719\u071A\x07H\x02\x02\u071A" + - "\u071B\x07[\x02\x02\u071B\u071C\x07G\x02\x02\u071C\u071D\x07C\x02\x02" + - "\u071D\u071E\x07T\x02\x02\u071E\u0178\x03\x02\x02\x02\u071F\u0720\x07" + - "F\x02\x02\u0720\u0721\x07C\x02\x02\u0721\u0722\x07[\x02\x02\u0722\u0723" + - "\x07P\x02\x02\u0723\u0724\x07C\x02\x02\u0724\u0725\x07O\x02\x02\u0725" + - "\u0726\x07G\x02\x02\u0726\u017A\x03\x02\x02\x02\u0727\u0728\x07H\x02\x02" + - "\u0728\u0729\x07T\x02\x02\u0729\u072A\x07Q\x02\x02\u072A\u072B\x07O\x02" + - "\x02\u072B\u072C\x07a\x02\x02\u072C\u072D\x07F\x02\x02\u072D\u072E\x07" + - "C\x02\x02\u072E\u072F\x07[\x02\x02\u072F\u0730\x07U\x02\x02\u0730\u017C" + - "\x03\x02\x02\x02\u0731\u0732\x07O\x02\x02\u0732\u0733\x07Q\x02\x02\u0733" + - "\u0734\x07P\x02\x02\u0734\u0735\x07V\x02\x02\u0735\u0736\x07J\x02\x02" + - "\u0736\u0737\x07P\x02\x02\u0737\u0738\x07C\x02\x02\u0738\u0739\x07O\x02" + - "\x02\u0739\u073A\x07G\x02\x02\u073A\u017E\x03\x02\x02\x02\u073B\u073C" + - "\x07U\x02\x02\u073C\u073D\x07W\x02\x02\u073D\u073E\x07D\x02\x02\u073E" + - "\u073F\x07F\x02\x02\u073F\u0740\x07C\x02\x02\u0740\u0741\x07V\x02\x02" + - "\u0741\u0742\x07G\x02\x02\u0742\u0180\x03\x02\x02\x02\u0743\u0744\x07" + - "V\x02\x02\u0744\u0745\x07K\x02\x02\u0745\u0746\x07O\x02\x02\u0746\u0747" + - "\x07G\x02\x02\u0747\u0182\x03\x02\x02\x02\u0748\u0749\x07V\x02\x02\u0749" + - "\u074A\x07K\x02\x02\u074A\u074B\x07O\x02\x02\u074B\u074C\x07G\x02\x02" + - "\u074C\u074D\x07a\x02\x02\u074D\u074E\x07V\x02\x02\u074E\u074F\x07Q\x02" + - "\x02\u074F\u0750\x07a\x02\x02\u0750\u0751\x07U\x02\x02\u0751\u0752\x07" + - "G\x02\x02\u0752\u0753\x07E\x02\x02\u0753\u0184\x03\x02\x02\x02\u0754\u0755" + - "\x07V\x02\x02\u0755\u0756\x07K\x02\x02\u0756\u0757\x07O\x02\x02\u0757" + - "\u0758\x07G\x02\x02\u0758\u0759\x07U\x02\x02\u0759\u075A\x07V\x02\x02" + - "\u075A\u075B\x07C\x02\x02\u075B\u075C\x07O\x02\x02\u075C\u075D\x07R\x02" + - "\x02\u075D\u0186\x03\x02\x02\x02\u075E\u075F\x07F\x02\x02\u075F\u0760" + - "\x07C\x02\x02\u0760\u0761\x07V\x02\x02\u0761\u0762\x07G\x02\x02\u0762" + - "\u0763\x07a\x02\x02\u0763\u0764\x07H\x02\x02\u0764\u0765\x07Q\x02\x02" + - "\u0765\u0766\x07T\x02\x02\u0766\u0767\x07O\x02\x02\u0767\u0768\x07C\x02" + - "\x02\u0768\u0769\x07V\x02\x02\u0769\u0188\x03\x02\x02\x02\u076A\u076B" + - "\x07V\x02\x02\u076B\u076C\x07Q\x02\x02\u076C\u076D\x07a\x02\x02\u076D" + - "\u076E\x07F\x02\x02\u076E\u076F\x07C\x02\x02\u076F\u0770\x07[\x02\x02" + - "\u0770\u0771\x07U\x02\x02\u0771\u018A\x03\x02\x02\x02\u0772\u0773\x07" + - "U\x02\x02\u0773\u0774\x07W\x02\x02\u0774\u0775\x07D\x02\x02\u0775\u0776" + - "\x07U\x02\x02\u0776\u0777\x07V\x02\x02\u0777\u0778\x07T\x02\x02\u0778" + - "\u018C\x03\x02\x02\x02\u0779\u077A\x07U\x02\x02\u077A\u077B\x07W\x02\x02" + - "\u077B\u077C\x07D\x02\x02\u077C\u077D\x07U\x02\x02\u077D\u077E\x07V\x02" + - "\x02\u077E\u077F\x07T\x02\x02\u077F\u0780\x07K\x02\x02\u0780\u0781\x07" + - "P\x02\x02\u0781\u0782\x07I\x02\x02\u0782\u018E\x03\x02\x02\x02\u0783\u0784" + - "\x07N\x02\x02\u0784\u0785\x07V\x02\x02\u0785\u0786\x07T\x02\x02\u0786" + - "\u0787\x07K\x02\x02\u0787\u0788\x07O\x02\x02\u0788\u0190\x03\x02\x02\x02" + - "\u0789\u078A\x07T\x02\x02\u078A\u078B\x07V\x02\x02\u078B\u078C\x07T\x02" + - "\x02\u078C\u078D\x07K\x02\x02\u078D\u078E\x07O\x02\x02\u078E\u0192\x03" + - "\x02\x02\x02\u078F\u0790\x07V\x02\x02\u0790\u0791\x07T\x02\x02\u0791\u0792" + - "\x07K\x02\x02\u0792\u0793\x07O\x02\x02\u0793\u0194\x03\x02\x02\x02\u0794" + - "\u0795\x07V\x02\x02\u0795\u0796\x07Q\x02\x02\u0796\u0196\x03\x02\x02\x02" + - "\u0797\u0798\x07N\x02\x02\u0798\u0799\x07Q\x02\x02\u0799\u079A\x07Y\x02" + - "\x02\u079A\u079B\x07G\x02\x02\u079B\u079C\x07T\x02\x02\u079C\u0198\x03" + - "\x02\x02\x02\u079D\u079E\x07W\x02\x02\u079E\u079F\x07R\x02\x02\u079F\u07A0" + - "\x07R\x02\x02\u07A0\u07A1\x07G\x02\x02\u07A1\u07A2\x07T\x02\x02\u07A2" + - "\u019A\x03\x02\x02\x02\u07A3\u07A4\x07E\x02\x02\u07A4\u07A5\x07Q\x02\x02" + - "\u07A5\u07A6\x07P\x02\x02\u07A6\u07A7\x07E\x02\x02\u07A7\u07A8\x07C\x02" + - "\x02\u07A8\u07A9\x07V\x02\x02\u07A9\u019C\x03\x02\x02\x02\u07AA\u07AB" + - "\x07E\x02\x02\u07AB\u07AC\x07Q\x02\x02\u07AC\u07AD\x07P\x02\x02\u07AD" + - "\u07AE\x07E\x02\x02\u07AE\u07AF\x07C\x02\x02\u07AF\u07B0\x07V\x02\x02" + - "\u07B0\u07B1\x07a\x02\x02\u07B1\u07B2\x07Y\x02\x02\u07B2\u07B3\x07U\x02" + - "\x02\u07B3\u019E\x03\x02\x02\x02\u07B4\u07B5\x07N\x02\x02\u07B5\u07B6" + - "\x07G\x02\x02\u07B6\u07B7\x07P\x02\x02\u07B7\u07B8\x07I\x02\x02\u07B8" + - "\u07B9\x07V\x02\x02\u07B9\u07BA\x07J\x02\x02\u07BA\u01A0\x03\x02\x02\x02" + - "\u07BB\u07BC\x07U\x02\x02\u07BC\u07BD\x07V\x02\x02\u07BD\u07BE\x07T\x02" + - "\x02\u07BE\u07BF\x07E\x02\x02\u07BF\u07C0\x07O\x02\x02\u07C0\u07C1\x07" + - "R\x02\x02\u07C1\u01A2\x03\x02\x02\x02\u07C2\u07C3\x07T\x02\x02\u07C3\u07C4" + - "\x07K\x02\x02\u07C4\u07C5\x07I\x02\x02\u07C5\u07C6\x07J\x02\x02\u07C6" + - "\u07C7\x07V\x02\x02\u07C7\u01A4\x03\x02\x02\x02\u07C8\u07C9\x07N\x02\x02" + - "\u07C9\u07CA\x07G\x02\x02\u07CA\u07CB\x07H\x02\x02\u07CB\u07CC\x07V\x02" + - "\x02\u07CC\u01A6\x03\x02\x02\x02\u07CD\u07CE\x07C\x02\x02\u07CE\u07CF" + - "\x07U\x02\x02\u07CF\u07D0\x07E\x02\x02\u07D0\u07D1\x07K\x02\x02\u07D1" + - "\u07D2\x07K\x02\x02\u07D2\u01A8\x03\x02\x02\x02\u07D3\u07D4\x07N\x02\x02" + - "\u07D4\u07D5\x07Q\x02\x02\u07D5\u07D6\x07E\x02\x02\u07D6\u07D7\x07C\x02" + - "\x02\u07D7\u07D8\x07V\x02\x02\u07D8\u07D9\x07G\x02\x02\u07D9\u01AA\x03" + - "\x02\x02\x02\u07DA\u07DB\x07T\x02\x02\u07DB\u07DC\x07G\x02\x02\u07DC\u07DD" + - "\x07R\x02\x02\u07DD\u07DE\x07N\x02\x02\u07DE\u07DF\x07C\x02\x02\u07DF" + - "\u07E0\x07E\x02\x02\u07E0\u07E1\x07G\x02\x02\u07E1\u01AC\x03\x02\x02\x02" + - "\u07E2\u07E3\x07E\x02\x02\u07E3\u07E4\x07C\x02\x02\u07E4\u07E5\x07U\x02" + - "\x02\u07E5\u07E6\x07V\x02\x02\u07E6\u01AE\x03\x02\x02\x02\u07E7\u07E8" + - "\x07N\x02\x02\u07E8\u07E9\x07K\x02\x02\u07E9\u07EA\x07M\x02\x02\u07EA" + - "\u07EB\x07G\x02\x02\u07EB\u01B0\x03\x02\x02\x02\u07EC\u07ED\x07K\x02\x02" + - "\u07ED\u07EE\x07U\x02\x02\u07EE\u07EF\x07P\x02\x02\u07EF\u07F0\x07W\x02" + - "\x02\u07F0\u07F1\x07N\x02\x02\u07F1\u07F2\x07N\x02\x02\u07F2\u01B2\x03" + - "\x02\x02\x02\u07F3\u07F4\x07K\x02\x02\u07F4\u07F5\x07U\x02\x02\u07F5\u07F6" + - "\x07P\x02\x02\u07F6\u07F7\x07Q\x02\x02\u07F7\u07F8\x07V\x02\x02\u07F8" + - "\u07F9\x07P\x02\x02\u07F9\u07FA\x07W\x02\x02\u07FA\u07FB\x07N\x02\x02" + - "\u07FB\u07FC\x07N\x02\x02\u07FC\u01B4\x03\x02\x02\x02\u07FD\u07FE\x07" + - "K\x02\x02\u07FE\u07FF\x07H\x02\x02\u07FF\u0800\x07P\x02\x02\u0800\u0801" + - "\x07W\x02\x02\u0801\u0802\x07N\x02\x02\u0802\u0803\x07N\x02\x02\u0803" + - "\u01B6\x03\x02\x02\x02\u0804\u0805\x07P\x02\x02\u0805\u0806\x07W\x02\x02" + - "\u0806\u0807\x07N\x02\x02\u0807\u0808\x07N\x02\x02\u0808\u0809\x07K\x02" + - "\x02\u0809\u080A\x07H\x02\x02\u080A\u01B8\x03\x02\x02\x02\u080B\u080C" + - "\x07K\x02\x02\u080C\u080D\x07H\x02\x02\u080D\u01BA\x03\x02\x02\x02\u080E" + - "\u080F\x07O\x02\x02\u080F\u0810\x07C\x02\x02\u0810\u0811\x07V\x02\x02" + - "\u0811\u0812\x07E\x02\x02\u0812\u0813\x07J\x02\x02\u0813\u01BC\x03\x02" + - "\x02\x02\u0814\u0815\x07O\x02\x02\u0815\u0816\x07C\x02\x02\u0816\u0817" + - "\x07V\x02\x02\u0817\u0818\x07E\x02\x02\u0818\u0819\x07J\x02\x02\u0819" + - "\u081A\x07a\x02\x02\u081A\u081B\x07R\x02\x02\u081B\u081C\x07J\x02\x02" + - "\u081C\u081D\x07T\x02\x02\u081D\u081E\x07C\x02\x02\u081E\u081F\x07U\x02" + - "\x02\u081F\u0820\x07G\x02\x02\u0820\u01BE\x03\x02\x02\x02\u0821\u0822" + - "\x07U\x02\x02\u0822\u0823\x07K\x02\x02\u0823\u0824\x07O\x02\x02\u0824" + - "\u0825\x07R\x02\x02\u0825\u0826\x07N\x02\x02\u0826\u0827\x07G\x02\x02" + - "\u0827\u0828\x07a\x02\x02\u0828\u0829\x07S\x02\x02\u0829\u082A\x07W\x02" + - "\x02\u082A\u082B\x07G\x02\x02\u082B\u082C\x07T\x02\x02\u082C\u082D\x07" + - "[\x02\x02\u082D\u082E\x07a\x02\x02\u082E\u082F\x07U\x02\x02\u082F\u0830" + - "\x07V\x02\x02\u0830\u0831\x07T\x02\x02\u0831\u0832\x07K\x02\x02\u0832" + - "\u0833\x07P\x02\x02\u0833\u0834\x07I\x02\x02\u0834\u01C0\x03\x02\x02\x02" + - "\u0835\u0836\x07C\x02\x02\u0836\u0837\x07N\x02\x02\u0837\u0838\x07N\x02" + - "\x02\u0838\u0839\x07Q\x02\x02\u0839\u083A\x07Y\x02\x02\u083A\u083B\x07" + - "a\x02\x02\u083B\u083C\x07N\x02\x02\u083C\u083D\x07G\x02\x02\u083D\u083E" + - "\x07C\x02\x02\u083E\u083F\x07F\x02\x02\u083F\u0840\x07K\x02\x02\u0840" + - "\u0841\x07P\x02\x02\u0841\u0842\x07I\x02\x02\u0842\u0843\x07a\x02\x02" + - "\u0843\u0844\x07Y\x02\x02\u0844\u0845\x07K\x02\x02\u0845\u0846\x07N\x02" + - "\x02\u0846\u0847\x07F\x02\x02\u0847\u0848\x07E\x02\x02\u0848\u0849\x07" + - "C\x02\x02\u0849\u084A\x07T\x02\x02\u084A\u084B\x07F\x02\x02\u084B\u01C2" + - "\x03\x02\x02\x02\u084C\u084D\x07C\x02\x02\u084D\u084E\x07P\x02\x02\u084E" + - "\u084F\x07C\x02\x02\u084F\u0850\x07N\x02\x02\u0850\u0851\x07[\x02\x02" + - "\u0851\u0852\x07\\\x02\x02\u0852\u0853\x07G\x02\x02\u0853\u0854\x07a\x02" + - "\x02\u0854\u0855\x07Y\x02\x02\u0855\u0856\x07K\x02\x02\u0856\u0857\x07" + - "N\x02\x02\u0857\u0858\x07F\x02\x02\u0858\u0859\x07E\x02\x02\u0859\u085A" + - "\x07C\x02\x02\u085A\u085B\x07T\x02\x02\u085B\u085C\x07F\x02\x02\u085C" + - "\u01C4\x03\x02\x02\x02\u085D\u085E\x07C\x02\x02\u085E\u085F\x07P\x02\x02" + - "\u085F\u0860\x07C\x02\x02\u0860\u0861\x07N\x02\x02\u0861\u0862\x07[\x02" + - "\x02\u0862\u0863\x07\\\x02\x02\u0863\u0864\x07G\x02\x02\u0864\u0865\x07" + - "T\x02\x02\u0865\u01C6\x03\x02\x02\x02\u0866\u0867\x07C\x02\x02\u0867\u0868" + - "\x07W\x02\x02\u0868\u0869\x07V\x02\x02\u0869\u086A\x07Q\x02\x02\u086A" + - "\u086B\x07a\x02\x02\u086B\u086C\x07I\x02\x02\u086C\u086D\x07G\x02\x02" + - "\u086D\u086E\x07P\x02\x02\u086E\u086F\x07G\x02\x02\u086F\u0870\x07T\x02" + - "\x02\u0870\u0871\x07C\x02\x02\u0871\u0872\x07V\x02\x02\u0872\u0873\x07" + - "G\x02\x02\u0873\u0874\x07a\x02\x02\u0874\u0875\x07U\x02\x02\u0875\u0876" + - "\x07[\x02\x02\u0876\u0877\x07P\x02\x02\u0877\u0878\x07Q\x02\x02\u0878" + - "\u0879\x07P\x02\x02\u0879\u087A\x07[\x02\x02\u087A\u087B\x07O\x02\x02" + - "\u087B\u087C\x07U\x02\x02\u087C\u087D\x07a\x02\x02\u087D\u087E\x07R\x02" + - "\x02\u087E\u087F\x07J\x02\x02\u087F\u0880\x07T\x02\x02\u0880\u0881\x07" + - "C\x02\x02\u0881\u0882\x07U\x02\x02\u0882\u0883\x07G\x02\x02\u0883\u0884" + - "\x07a\x02\x02\u0884\u0885\x07S\x02\x02\u0885\u0886\x07W\x02\x02\u0886" + - "\u0887\x07G\x02\x02\u0887\u0888\x07T\x02\x02\u0888\u0889\x07[\x02\x02" + - "\u0889\u01C8\x03\x02\x02\x02\u088A\u088B\x07D\x02\x02\u088B\u088C\x07" + - "Q\x02\x02\u088C\u088D\x07Q\x02\x02\u088D\u088E\x07U\x02\x02\u088E\u088F" + - "\x07V\x02\x02\u088F\u01CA\x03\x02\x02\x02\u0890\u0891\x07E\x02\x02\u0891" + - "\u0892\x07W\x02\x02\u0892\u0893\x07V\x02\x02\u0893\u0894\x07Q\x02\x02" + - "\u0894\u0895\x07H\x02\x02\u0895\u0896\x07H\x02\x02\u0896\u0897\x07a\x02" + - "\x02\u0897\u0898\x07H\x02\x02\u0898\u0899\x07T\x02\x02\u0899\u089A\x07" + - "G\x02\x02\u089A\u089B\x07S\x02\x02\u089B\u089C\x07W\x02\x02\u089C\u089D" + - "\x07G\x02\x02\u089D\u089E\x07P\x02\x02\u089E\u089F\x07E\x02\x02\u089F" + - "\u08A0\x07[\x02\x02\u08A0\u01CC\x03\x02\x02\x02\u08A1\u08A2\x07F\x02\x02" + - "\u08A2\u08A3\x07G\x02\x02\u08A3\u08A4\x07H\x02\x02\u08A4\u08A5\x07C\x02" + - "\x02\u08A5\u08A6\x07W\x02\x02\u08A6\u08A7\x07N\x02\x02\u08A7\u08A8\x07" + - "V\x02\x02\u08A8\u08A9\x07a\x02\x02\u08A9\u08AA\x07H\x02\x02\u08AA\u08AB" + - "\x07K\x02\x02\u08AB\u08AC\x07G\x02\x02\u08AC\u08AD\x07N\x02\x02\u08AD" + - "\u08AE\x07F\x02\x02\u08AE\u01CE\x03\x02\x02\x02\u08AF\u08B0\x07F\x02\x02" + - "\u08B0\u08B1\x07G\x02\x02\u08B1\u08B2\x07H\x02\x02\u08B2\u08B3\x07C\x02" + - "\x02\u08B3\u08B4\x07W\x02\x02\u08B4\u08B5\x07N\x02\x02\u08B5\u08B6\x07" + - "V\x02\x02\u08B6\u08B7\x07a\x02\x02\u08B7\u08B8\x07Q\x02\x02\u08B8\u08B9" + - "\x07R\x02\x02\u08B9\u08BA\x07G\x02\x02\u08BA\u08BB\x07T\x02\x02\u08BB" + - "\u08BC\x07C\x02\x02\u08BC\u08BD\x07V\x02\x02\u08BD\u08BE\x07Q\x02\x02" + - "\u08BE\u08BF\x07T\x02\x02\u08BF\u01D0\x03\x02\x02\x02\u08C0\u08C1\x07" + - "G\x02\x02\u08C1\u08C2\x07P\x02\x02\u08C2\u08C3\x07C\x02\x02\u08C3\u08C4" + - "\x07D\x02\x02\u08C4\u08C5\x07N\x02\x02\u08C5\u08C6\x07G\x02\x02\u08C6" + - "\u08C7\x07a\x02\x02\u08C7\u08C8\x07R\x02\x02\u08C8\u08C9\x07Q\x02\x02" + - "\u08C9\u08CA\x07U\x02\x02\u08CA\u08CB\x07K\x02\x02\u08CB\u08CC\x07V\x02" + - "\x02\u08CC\u08CD\x07K\x02\x02\u08CD\u08CE\x07Q\x02\x02\u08CE\u08CF\x07" + - "P\x02\x02\u08CF\u08D0\x07a\x02\x02\u08D0\u08D1\x07K\x02\x02\u08D1\u08D2" + - "\x07P\x02\x02\u08D2\u08D3\x07E\x02\x02\u08D3\u08D4\x07T\x02\x02\u08D4" + - "\u08D5\x07G\x02\x02\u08D5\u08D6\x07O\x02\x02\u08D6\u08D7\x07G\x02\x02" + - "\u08D7\u08D8\x07P\x02\x02\u08D8\u08D9\x07V\x02\x02\u08D9\u08DA\x07U\x02" + - "\x02\u08DA\u01D2\x03\x02\x02\x02\u08DB\u08DC\x07H\x02\x02\u08DC\u08DD" + - "\x07N\x02\x02\u08DD\u08DE\x07C\x02\x02\u08DE\u08DF\x07I\x02\x02\u08DF" + - "\u08E0\x07U\x02\x02\u08E0\u01D4\x03\x02\x02\x02\u08E1\u08E2\x07H\x02\x02" + - "\u08E2\u08E3\x07W\x02\x02\u08E3\u08E4\x07\\\x02\x02\u08E4\u08E5\x07\\" + - "\x02\x02\u08E5\u08E6\x07[\x02\x02\u08E6\u08E7\x07a\x02\x02\u08E7\u08E8" + - "\x07O\x02\x02\u08E8\u08E9\x07C\x02\x02\u08E9\u08EA\x07Z\x02\x02\u08EA" + - "\u08EB\x07a\x02\x02\u08EB\u08EC\x07G\x02\x02\u08EC\u08ED\x07Z\x02\x02" + - "\u08ED\u08EE\x07R\x02\x02\u08EE\u08EF\x07C\x02\x02\u08EF\u08F0\x07P\x02" + - "\x02\u08F0\u08F1\x07U\x02\x02\u08F1\u08F2\x07K\x02\x02\u08F2\u08F3\x07" + - "Q\x02\x02\u08F3\u08F4\x07P\x02\x02\u08F4\u08F5\x07U\x02\x02\u08F5\u01D6" + - "\x03\x02\x02\x02\u08F6\u08F7\x07H\x02\x02\u08F7\u08F8\x07W\x02\x02\u08F8" + - "\u08F9\x07\\\x02\x02\u08F9\u08FA\x07\\\x02\x02\u08FA"; - private static readonly _serializedATNSegment4: string = - "\u08FB\x07[\x02\x02\u08FB\u08FC\x07a\x02\x02\u08FC\u08FD\x07R\x02\x02" + - "\u08FD\u08FE\x07T\x02\x02\u08FE\u08FF\x07G\x02\x02\u08FF\u0900\x07H\x02" + - "\x02\u0900\u0901\x07K\x02\x02\u0901\u0902\x07Z\x02\x02\u0902\u0903\x07" + - "a\x02\x02\u0903\u0904\x07N\x02\x02\u0904\u0905\x07G\x02\x02\u0905\u0906" + - "\x07P\x02\x02\u0906\u0907\x07I\x02\x02\u0907\u0908\x07V\x02\x02\u0908" + - "\u0909\x07J\x02\x02\u0909\u01D8\x03\x02\x02\x02\u090A\u090B\x07H\x02\x02" + - "\u090B\u090C\x07W\x02\x02\u090C\u090D\x07\\\x02\x02\u090D\u090E\x07\\" + - "\x02\x02\u090E\u090F\x07[\x02\x02\u090F\u0910\x07a\x02\x02\u0910\u0911" + - "\x07V\x02\x02\u0911\u0912\x07T\x02\x02\u0912\u0913\x07C\x02\x02\u0913" + - "\u0914\x07P\x02\x02\u0914\u0915\x07U\x02\x02\u0915\u0916\x07R\x02\x02" + - "\u0916\u0917\x07Q\x02\x02\u0917\u0918\x07U\x02\x02\u0918\u0919\x07K\x02" + - "\x02\u0919\u091A\x07V\x02\x02\u091A\u091B\x07K\x02\x02\u091B\u091C\x07" + - "Q\x02\x02\u091C\u091D\x07P\x02\x02\u091D\u091E\x07U\x02\x02\u091E\u01DA" + - "\x03\x02\x02\x02\u091F\u0920\x07H\x02\x02\u0920\u0921\x07W\x02\x02\u0921" + - "\u0922\x07\\\x02\x02\u0922\u0923\x07\\\x02\x02\u0923\u0924\x07[\x02\x02" + - "\u0924\u0925\x07a\x02\x02\u0925\u0926\x07T\x02\x02\u0926\u0927\x07G\x02" + - "\x02\u0927\u0928\x07Y\x02\x02\u0928\u0929\x07T\x02\x02\u0929\u092A\x07" + - "K\x02\x02\u092A\u092B\x07V\x02\x02\u092B\u092C\x07G\x02\x02\u092C\u01DC" + - "\x03\x02\x02\x02\u092D\u092E\x07H\x02\x02\u092E\u092F\x07W\x02\x02\u092F" + - "\u0930\x07\\\x02\x02\u0930\u0931\x07\\\x02\x02\u0931\u0932\x07K\x02\x02" + - "\u0932\u0933\x07P\x02\x02\u0933\u0934\x07G\x02\x02\u0934\u0935\x07U\x02" + - "\x02\u0935\u0936\x07U\x02\x02\u0936\u01DE\x03\x02\x02\x02\u0937\u0938" + - "\x07N\x02\x02\u0938\u0939\x07G\x02\x02\u0939\u093A\x07P\x02\x02\u093A" + - "\u093B\x07K\x02\x02\u093B\u093C\x07G\x02\x02\u093C\u093D\x07P\x02\x02" + - "\u093D\u093E\x07V\x02\x02\u093E\u01E0\x03\x02\x02\x02\u093F\u0940\x07" + - "N\x02\x02\u0940\u0941\x07Q\x02\x02\u0941\u0942\x07Y\x02\x02\u0942\u0943" + - "\x07a\x02\x02\u0943\u0944\x07H\x02\x02\u0944\u0945\x07T\x02\x02\u0945" + - "\u0946\x07G\x02\x02\u0946\u0947\x07S\x02\x02\u0947\u0948\x07a\x02\x02" + - "\u0948\u0949\x07Q\x02\x02\u0949\u094A\x07R\x02\x02\u094A\u094B\x07G\x02" + - "\x02\u094B\u094C\x07T\x02\x02\u094C\u094D\x07C\x02\x02\u094D\u094E\x07" + - "V\x02\x02\u094E\u094F\x07Q\x02\x02\u094F\u0950\x07T\x02\x02\u0950\u01E2" + - "\x03\x02\x02\x02\u0951\u0952\x07O\x02\x02\u0952\u0953\x07C\x02\x02\u0953" + - "\u0954\x07Z\x02\x02\u0954\u0955\x07a\x02\x02\u0955\u0956\x07F\x02\x02" + - "\u0956\u0957\x07G\x02\x02\u0957\u0958\x07V\x02\x02\u0958\u0959\x07G\x02" + - "\x02\u0959\u095A\x07T\x02\x02\u095A\u095B\x07O\x02\x02\u095B\u095C\x07" + - "K\x02\x02\u095C\u095D\x07P\x02\x02\u095D\u095E\x07K\x02\x02\u095E\u095F" + - "\x07\\\x02\x02\u095F\u0960\x07G\x02\x02\u0960\u0961\x07F\x02\x02\u0961" + - "\u0962\x07a\x02\x02\u0962\u0963\x07U\x02\x02\u0963\u0964\x07V\x02\x02" + - "\u0964\u0965\x07C\x02\x02\u0965\u0966\x07V\x02\x02\u0966\u0967\x07G\x02" + - "\x02\u0967\u0968\x07U\x02\x02\u0968\u01E4\x03\x02\x02\x02\u0969\u096A" + - "\x07O\x02\x02\u096A\u096B\x07C\x02\x02\u096B\u096C\x07Z\x02\x02\u096C" + - "\u096D\x07a\x02\x02\u096D\u096E\x07G\x02\x02\u096E\u096F\x07Z\x02\x02" + - "\u096F\u0970\x07R\x02\x02\u0970\u0971\x07C\x02\x02\u0971\u0972\x07P\x02" + - "\x02\u0972\u0973\x07U\x02\x02\u0973\u0974\x07K\x02\x02\u0974\u0975\x07" + - "Q\x02\x02\u0975\u0976\x07P\x02\x02\u0976\u0977\x07U\x02\x02\u0977\u01E6" + - "\x03\x02\x02\x02\u0978\u0979\x07O\x02\x02\u0979\u097A\x07K\x02\x02\u097A" + - "\u097B\x07P\x02\x02\u097B\u097C\x07K\x02\x02\u097C\u097D\x07O\x02\x02" + - "\u097D\u097E\x07W\x02\x02\u097E\u097F\x07O\x02\x02\u097F\u0980\x07a\x02" + - "\x02\u0980\u0981\x07U\x02\x02\u0981\u0982\x07J\x02\x02\u0982\u0983\x07" + - "Q\x02\x02\u0983\u0984\x07W\x02\x02\u0984\u0985\x07N\x02\x02\u0985\u0986" + - "\x07F\x02\x02\u0986\u0987\x07a\x02\x02\u0987\u0988\x07O\x02\x02\u0988" + - "\u0989\x07C\x02\x02\u0989\u098A\x07V\x02\x02\u098A\u098B\x07E\x02\x02" + - "\u098B\u098C\x07J\x02\x02\u098C\u01E8\x03\x02\x02\x02\u098D\u098E\x07" + - "Q\x02\x02\u098E\u098F\x07R\x02\x02\u098F\u0990\x07G\x02\x02\u0990\u0991" + - "\x07T\x02\x02\u0991\u0992\x07C\x02\x02\u0992\u0993\x07V\x02\x02\u0993" + - "\u0994\x07Q\x02\x02\u0994\u0995\x07T\x02\x02\u0995\u01EA\x03\x02\x02\x02" + - "\u0996\u0997\x07R\x02\x02\u0997\u0998\x07J\x02\x02\u0998\u0999\x07T\x02" + - "\x02\u0999\u099A\x07C\x02\x02\u099A\u099B\x07U\x02\x02\u099B\u099C\x07" + - "G\x02\x02\u099C\u099D\x07a\x02\x02\u099D\u099E\x07U\x02\x02\u099E\u099F" + - "\x07N\x02\x02\u099F\u09A0\x07Q\x02\x02\u09A0\u09A1\x07R\x02\x02\u09A1" + - "\u01EC\x03\x02\x02\x02\u09A2\u09A3\x07R\x02\x02\u09A3\u09A4\x07T\x02\x02" + - "\u09A4\u09A5\x07G\x02\x02\u09A5\u09A6\x07H\x02\x02\u09A6\u09A7\x07K\x02" + - "\x02\u09A7\u09A8\x07Z\x02\x02\u09A8\u09A9\x07a\x02\x02\u09A9\u09AA\x07" + - "N\x02\x02\u09AA\u09AB\x07G\x02\x02\u09AB\u09AC\x07P\x02\x02\u09AC\u09AD" + - "\x07I\x02\x02\u09AD\u09AE\x07V\x02\x02\u09AE\u09AF\x07J\x02\x02\u09AF" + - "\u01EE\x03\x02\x02\x02\u09B0\u09B1\x07S\x02\x02\u09B1\u09B2\x07W\x02\x02" + - "\u09B2\u09B3\x07Q\x02\x02\u09B3\u09B4\x07V\x02\x02\u09B4\u09B5\x07G\x02" + - "\x02\u09B5\u09B6\x07a\x02\x02\u09B6\u09B7\x07C\x02\x02\u09B7\u09B8\x07" + - "P\x02\x02\u09B8\u09B9\x07C\x02\x02\u09B9\u09BA\x07N\x02\x02\u09BA\u09BB" + - "\x07[\x02\x02\u09BB\u09BC\x07\\\x02\x02\u09BC\u09BD\x07G\x02\x02\u09BD" + - "\u09BE\x07T\x02\x02\u09BE\u01F0\x03\x02\x02\x02\u09BF\u09C0\x07S\x02\x02" + - "\u09C0\u09C1\x07W\x02\x02\u09C1\u09C2\x07Q\x02\x02\u09C2\u09C3\x07V\x02" + - "\x02\u09C3\u09C4\x07G\x02\x02\u09C4\u09C5\x07a\x02\x02\u09C5\u09C6\x07" + - "H\x02\x02\u09C6\u09C7\x07K\x02\x02\u09C7\u09C8\x07G\x02\x02\u09C8\u09C9" + - "\x07N\x02\x02\u09C9\u09CA\x07F\x02\x02\u09CA\u09CB\x07a\x02\x02\u09CB" + - "\u09CC\x07U\x02\x02\u09CC\u09CD\x07W\x02\x02\u09CD\u09CE\x07H\x02\x02" + - "\u09CE\u09CF\x07H\x02\x02\u09CF\u09D0\x07K\x02\x02\u09D0\u09D1\x07Z\x02" + - "\x02\u09D1\u01F2\x03\x02\x02\x02\u09D2\u09D3\x07T\x02\x02\u09D3\u09D4" + - "\x07G\x02\x02\u09D4\u09D5\x07Y\x02\x02\u09D5\u09D6\x07T\x02\x02\u09D6" + - "\u09D7\x07K\x02\x02\u09D7\u09D8\x07V\x02\x02\u09D8\u09D9\x07G\x02\x02" + - "\u09D9\u01F4\x03\x02\x02\x02\u09DA\u09DB\x07U\x02\x02\u09DB\u09DC\x07" + - "N\x02\x02\u09DC\u09DD\x07Q\x02\x02\u09DD\u09DE\x07R\x02\x02\u09DE\u01F6" + - "\x03\x02\x02\x02\u09DF\u09E0\x07V\x02\x02\u09E0\u09E1\x07K\x02\x02\u09E1" + - "\u09E2\x07G\x02\x02\u09E2\u09E3\x07a\x02\x02\u09E3\u09E4\x07D\x02\x02" + - "\u09E4\u09E5\x07T\x02\x02\u09E5\u09E6\x07G\x02\x02\u09E6\u09E7\x07C\x02" + - "\x02\u09E7\u09E8\x07M\x02\x02\u09E8\u09E9\x07G\x02\x02\u09E9\u09EA\x07" + - "T\x02\x02\u09EA\u01F8\x03\x02\x02\x02\u09EB\u09EC\x07V\x02\x02\u09EC\u09ED" + - "\x07[\x02\x02\u09ED\u09EE\x07R\x02\x02\u09EE\u09EF\x07G\x02\x02\u09EF" + - "\u01FA\x03\x02\x02\x02\u09F0\u09F1\x07\\\x02\x02\u09F1\u09F2\x07G\x02" + - "\x02\u09F2\u09F3\x07T\x02\x02\u09F3\u09F4\x07Q\x02\x02\u09F4\u09F5\x07" + - "a\x02\x02\u09F5\u09F6\x07V\x02\x02\u09F6\u09F7\x07G\x02\x02\u09F7\u09F8" + - "\x07T\x02\x02\u09F8\u09F9\x07O\x02\x02\u09F9\u09FA\x07U\x02\x02\u09FA" + - "\u09FB\x07a\x02\x02\u09FB\u09FC\x07S\x02\x02\u09FC\u09FD\x07W\x02\x02" + - "\u09FD\u09FE\x07G\x02\x02\u09FE\u09FF\x07T\x02\x02\u09FF\u0A00\x07[\x02" + - "\x02\u0A00\u01FC\x03\x02\x02\x02\u0A01\u0A02\x07U\x02\x02\u0A02\u0A03" + - "\x07R\x02\x02\u0A03\u0A04\x07C\x02\x02\u0A04\u0A05\x07P\x02\x02\u0A05" + - "\u01FE\x03\x02\x02\x02\u0A06\u0A07\x07O\x02\x02\u0A07\u0A08\x07U\x02\x02" + - "\u0A08\u0200\x03\x02\x02\x02\u0A09\u0A0A\x07U\x02\x02\u0A0A\u0202\x03" + - "\x02\x02\x02\u0A0B\u0A0C\x07O\x02\x02\u0A0C\u0204\x03\x02\x02\x02\u0A0D" + - "\u0A0E\x07J\x02\x02\u0A0E\u0206\x03\x02\x02\x02\u0A0F\u0A10\x07Y\x02\x02" + - "\u0A10\u0208\x03\x02\x02\x02\u0A11\u0A12\x07S\x02\x02\u0A12\u020A\x03" + - "\x02\x02\x02\u0A13\u0A14\x07[\x02\x02\u0A14\u020C\x03\x02\x02\x02\u0A15" + - "\u0A16\x05\u0215\u010B\x02\u0A16\u020E\x03\x02\x02\x02\u0A17\u0A19\x05" + - "\u021F\u0110\x02\u0A18\u0A17\x03\x02\x02\x02\u0A19\u0A1A\x03\x02\x02\x02" + - "\u0A1A\u0A18\x03\x02\x02\x02\u0A1A\u0A1B\x03\x02\x02\x02\u0A1B\u0210\x03" + - "\x02\x02\x02\u0A1C\u0A1E\x05\u021F\u0110\x02\u0A1D\u0A1C\x03\x02\x02\x02" + - "\u0A1E\u0A1F\x03\x02\x02\x02\u0A1F\u0A1D\x03\x02\x02\x02\u0A1F\u0A20\x03" + - "\x02\x02\x02\u0A20\u0A22\x03\x02\x02\x02\u0A21\u0A1D\x03\x02\x02\x02\u0A21" + - "\u0A22\x03\x02\x02\x02\u0A22\u0A23\x03\x02\x02\x02\u0A23\u0A25\x070\x02" + - "\x02\u0A24\u0A26\x05\u021F\u0110\x02\u0A25\u0A24\x03\x02\x02\x02\u0A26" + - "\u0A27\x03\x02\x02\x02\u0A27\u0A25\x03\x02\x02\x02\u0A27\u0A28\x03\x02" + - "\x02\x02\u0A28\u0212\x03\x02\x02\x02\u0A29\u0A2B\t\x02\x02\x02\u0A2A\u0A2C" + - "\t\x03\x02\x02\u0A2B\u0A2A\x03\x02\x02\x02\u0A2C\u0A2D\x03\x02\x02\x02" + - "\u0A2D\u0A2B\x03\x02\x02\x02\u0A2D\u0A2E\x03\x02\x02\x02\u0A2E\u0A30\x03" + - "\x02\x02\x02\u0A2F\u0A29\x03\x02\x02\x02\u0A30\u0A33\x03\x02\x02\x02\u0A31" + - "\u0A2F\x03\x02\x02\x02\u0A31\u0A32\x03\x02\x02\x02\u0A32\u0214\x03\x02" + - "\x02\x02\u0A33\u0A31\x03\x02\x02\x02\u0A34\u0A36\t\x04\x02\x02\u0A35\u0A34" + - "\x03\x02\x02\x02\u0A36\u0A37\x03\x02\x02\x02\u0A37\u0A38\x03\x02\x02\x02" + - "\u0A37\u0A35\x03\x02\x02\x02\u0A38\u0A3C\x03\x02\x02\x02\u0A39\u0A3B\t" + - "\x05\x02\x02\u0A3A\u0A39\x03\x02\x02\x02\u0A3B\u0A3E\x03\x02\x02\x02\u0A3C" + - "\u0A3A\x03\x02\x02\x02\u0A3C\u0A3D\x03\x02\x02\x02\u0A3D\u0216\x03\x02" + - "\x02\x02\u0A3E\u0A3C\x03\x02\x02\x02\u0A3F\u0A40\x05\u0215\u010B\x02\u0A40" + - "\u0A41\x05\u0213\u010A\x02\u0A41\u0218\x03\x02\x02\x02\u0A42\u0A4A\x07" + - "$\x02\x02\u0A43\u0A44\x07^\x02\x02\u0A44\u0A49\v\x02\x02\x02\u0A45\u0A46" + - "\x07$\x02\x02\u0A46\u0A49\x07$\x02\x02\u0A47\u0A49\n\x06\x02\x02\u0A48" + - "\u0A43\x03\x02\x02\x02\u0A48\u0A45\x03\x02\x02\x02\u0A48\u0A47\x03\x02" + - "\x02\x02\u0A49\u0A4C\x03\x02\x02\x02\u0A4A\u0A48\x03\x02\x02\x02\u0A4A" + - "\u0A4B\x03\x02\x02\x02\u0A4B\u0A4D\x03\x02\x02\x02\u0A4C\u0A4A\x03\x02" + - "\x02\x02\u0A4D\u0A4E\x07$\x02\x02\u0A4E\u021A\x03\x02\x02\x02\u0A4F\u0A57" + - "\x07)\x02\x02\u0A50\u0A51\x07^\x02\x02\u0A51\u0A56\v\x02\x02\x02\u0A52" + - "\u0A53\x07)\x02\x02\u0A53\u0A56\x07)\x02\x02\u0A54\u0A56\n\x07\x02\x02" + - "\u0A55\u0A50\x03\x02\x02\x02\u0A55\u0A52\x03\x02\x02\x02\u0A55\u0A54\x03" + - "\x02\x02\x02\u0A56\u0A59\x03\x02\x02\x02\u0A57\u0A55\x03\x02\x02\x02\u0A57" + - "\u0A58\x03\x02\x02\x02\u0A58\u0A5A\x03\x02\x02\x02\u0A59\u0A57\x03\x02" + - "\x02\x02\u0A5A\u0A5B\x07)\x02\x02\u0A5B\u021C\x03\x02\x02\x02\u0A5C\u0A64" + - "\x07b\x02\x02\u0A5D\u0A5E\x07^\x02\x02\u0A5E\u0A63\v\x02\x02\x02\u0A5F" + - "\u0A60\x07b\x02\x02\u0A60\u0A63\x07b\x02\x02\u0A61\u0A63\n\b\x02\x02\u0A62" + - "\u0A5D\x03\x02\x02\x02\u0A62\u0A5F\x03\x02\x02\x02\u0A62\u0A61\x03\x02" + - "\x02\x02\u0A63\u0A66\x03\x02\x02\x02\u0A64\u0A62\x03\x02\x02\x02\u0A64" + - "\u0A65\x03\x02\x02\x02\u0A65\u0A67\x03\x02\x02\x02\u0A66\u0A64\x03\x02" + - "\x02\x02\u0A67\u0A68\x07b\x02\x02\u0A68\u021E\x03\x02\x02\x02\u0A69\u0A6A" + - "\t\t\x02\x02\u0A6A\u0220\x03\x02\x02\x02\u0A6B\u0A6C\v\x02\x02\x02\u0A6C" + - "\u0A6D\x03\x02\x02\x02\u0A6D\u0A6E\b\u0111\x02\x02\u0A6E\u0222\x03\x02" + - "\x02\x02\x11\x02\u0A1A\u0A1F\u0A21\u0A27\u0A2D\u0A31\u0A37\u0A3C\u0A48" + - "\u0A4A\u0A55\u0A57\u0A62\u0A64\x03\x02\x05\x02"; - public static readonly _serializedATN: string = Utils.join( - [ - OpenSearchPPLLexer._serializedATNSegment0, - OpenSearchPPLLexer._serializedATNSegment1, - OpenSearchPPLLexer._serializedATNSegment2, - OpenSearchPPLLexer._serializedATNSegment3, - OpenSearchPPLLexer._serializedATNSegment4, - ], - "", - ); - public static __ATN: ATN; - public static get _ATN(): ATN { - if (!OpenSearchPPLLexer.__ATN) { - OpenSearchPPLLexer.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLLexer._serializedATN)); - } - - return OpenSearchPPLLexer.__ATN; - } - -} - diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp deleted file mode 100644 index a9db73a19..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.interp +++ /dev/null @@ -1,634 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -root -pplStatement -commands -searchCommand -whereCommand -fieldsCommand -renameCommand -statsCommand -dedupCommand -sortCommand -evalCommand -headCommand -topCommand -rareCommand -parseCommand -kmeansCommand -kmeansParameter -adCommand -adParameter -fromClause -renameClasue -byClause -statsByClause -bySpanClause -spanClause -sortbyClause -evalClause -statsAggTerm -statsFunction -statsFunctionName -percentileAggFunction -expression -logicalExpression -comparisonExpression -valueExpression -primaryExpression -booleanExpression -relevanceExpression -singleFieldRelevanceFunction -multiFieldRelevanceFunction -tableSource -fieldList -wcFieldList -sortField -sortFieldExpression -fieldExpression -wcFieldExpression -evalFunctionCall -dataTypeFunctionCall -booleanFunctionCall -convertedDataType -evalFunctionName -functionArgs -functionArg -relevanceArg -relevanceArgName -relevanceFieldAndWeight -relevanceFieldWeight -relevanceField -relevanceQuery -relevanceArgValue -mathematicalFunctionBase -trigonometricFunctionName -dateAndTimeFunctionBase -conditionFunctionBase -textFunctionBase -comparisonOperator -binaryOperator -singleFieldRelevanceFunctionName -multiFieldRelevanceFunctionName -literalValue -intervalLiteral -stringLiteral -integerLiteral -decimalLiteral -booleanLiteral -pattern -intervalUnit -timespanUnit -valueList -qualifiedName -wcQualifiedName -ident -wildcard -keywordsCanBeId - - -atn: -[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 2, 4, 66, 70, 87, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 78, 2, 80, 2, 82, 2, 84, 2, 86, 2, 88, 2, 90, 2, 92, 2, 94, 2, 96, 2, 98, 2, 100, 2, 102, 2, 104, 2, 106, 2, 108, 2, 110, 2, 112, 2, 114, 2, 116, 2, 118, 2, 120, 2, 122, 2, 124, 2, 126, 2, 128, 2, 130, 2, 132, 2, 134, 2, 136, 2, 138, 2, 140, 2, 142, 2, 144, 2, 146, 2, 148, 2, 150, 2, 152, 2, 154, 2, 156, 2, 158, 2, 160, 2, 162, 2, 164, 2, 166, 2, 168, 2, 170, 2, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts deleted file mode 100644 index ddc4aeb96..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParser.ts +++ /dev/null @@ -1,9805 +0,0 @@ -// Generated from ./antlr/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ATN } from "antlr4ts/atn/ATN"; -import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; -import { FailedPredicateException } from "antlr4ts/FailedPredicateException"; -import { NotNull } from "antlr4ts/Decorators"; -import { NoViableAltException } from "antlr4ts/NoViableAltException"; -import { Override } from "antlr4ts/Decorators"; -import { Parser } from "antlr4ts/Parser"; -import { ParserRuleContext } from "antlr4ts/ParserRuleContext"; -import { ParserATNSimulator } from "antlr4ts/atn/ParserATNSimulator"; -import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; -import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; -import { RecognitionException } from "antlr4ts/RecognitionException"; -import { RuleContext } from "antlr4ts/RuleContext"; -//import { RuleVersion } from "antlr4ts/RuleVersion"; -import { TerminalNode } from "antlr4ts/tree/TerminalNode"; -import { Token } from "antlr4ts/Token"; -import { TokenStream } from "antlr4ts/TokenStream"; -import { Vocabulary } from "antlr4ts/Vocabulary"; -import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; - -import * as Utils from "antlr4ts/misc/Utils"; - -import { OpenSearchPPLParserListener } from "./OpenSearchPPLParserListener"; -import { OpenSearchPPLParserVisitor } from "./OpenSearchPPLParserVisitor"; - - -export class OpenSearchPPLParser extends Parser { - public static readonly SEARCH = 1; - public static readonly FROM = 2; - public static readonly WHERE = 3; - public static readonly FIELDS = 4; - public static readonly RENAME = 5; - public static readonly STATS = 6; - public static readonly DEDUP = 7; - public static readonly SORT = 8; - public static readonly EVAL = 9; - public static readonly HEAD = 10; - public static readonly TOP = 11; - public static readonly RARE = 12; - public static readonly PARSE = 13; - public static readonly KMEANS = 14; - public static readonly AD = 15; - public static readonly AS = 16; - public static readonly BY = 17; - public static readonly SOURCE = 18; - public static readonly INDEX = 19; - public static readonly D = 20; - public static readonly DESC = 21; - public static readonly SORTBY = 22; - public static readonly AUTO = 23; - public static readonly STR = 24; - public static readonly IP = 25; - public static readonly NUM = 26; - public static readonly KEEPEMPTY = 27; - public static readonly CONSECUTIVE = 28; - public static readonly DEDUP_SPLITVALUES = 29; - public static readonly PARTITIONS = 30; - public static readonly ALLNUM = 31; - public static readonly DELIM = 32; - public static readonly CENTROIDS = 33; - public static readonly ITERATIONS = 34; - public static readonly DISTANCE_TYPE = 35; - public static readonly NUMBER_OF_TREES = 36; - public static readonly SHINGLE_SIZE = 37; - public static readonly SAMPLE_SIZE = 38; - public static readonly OUTPUT_AFTER = 39; - public static readonly TIME_DECAY = 40; - public static readonly ANOMALY_RATE = 41; - public static readonly TIME_FIELD = 42; - public static readonly TIME_ZONE = 43; - public static readonly TRAINING_DATA_SIZE = 44; - public static readonly ANOMALY_SCORE_THRESHOLD = 45; - public static readonly CASE = 46; - public static readonly IN = 47; - public static readonly NOT = 48; - public static readonly OR = 49; - public static readonly AND = 50; - public static readonly XOR = 51; - public static readonly TRUE = 52; - public static readonly FALSE = 53; - public static readonly REGEXP = 54; - public static readonly DATETIME = 55; - public static readonly INTERVAL = 56; - public static readonly MICROSECOND = 57; - public static readonly MILLISECOND = 58; - public static readonly SECOND = 59; - public static readonly MINUTE = 60; - public static readonly HOUR = 61; - public static readonly DAY = 62; - public static readonly WEEK = 63; - public static readonly MONTH = 64; - public static readonly QUARTER = 65; - public static readonly YEAR = 66; - public static readonly SECOND_MICROSECOND = 67; - public static readonly MINUTE_MICROSECOND = 68; - public static readonly MINUTE_SECOND = 69; - public static readonly HOUR_MICROSECOND = 70; - public static readonly HOUR_SECOND = 71; - public static readonly HOUR_MINUTE = 72; - public static readonly DAY_MICROSECOND = 73; - public static readonly DAY_SECOND = 74; - public static readonly DAY_MINUTE = 75; - public static readonly DAY_HOUR = 76; - public static readonly YEAR_MONTH = 77; - public static readonly DATAMODEL = 78; - public static readonly LOOKUP = 79; - public static readonly SAVEDSEARCH = 80; - public static readonly INT = 81; - public static readonly INTEGER = 82; - public static readonly DOUBLE = 83; - public static readonly LONG = 84; - public static readonly FLOAT = 85; - public static readonly STRING = 86; - public static readonly BOOLEAN = 87; - public static readonly PIPE = 88; - public static readonly COMMA = 89; - public static readonly DOT = 90; - public static readonly EQUAL = 91; - public static readonly GREATER = 92; - public static readonly LESS = 93; - public static readonly NOT_GREATER = 94; - public static readonly NOT_LESS = 95; - public static readonly NOT_EQUAL = 96; - public static readonly PLUS = 97; - public static readonly MINUS = 98; - public static readonly STAR = 99; - public static readonly DIVIDE = 100; - public static readonly MODULE = 101; - public static readonly EXCLAMATION_SYMBOL = 102; - public static readonly COLON = 103; - public static readonly LT_PRTHS = 104; - public static readonly RT_PRTHS = 105; - public static readonly LT_SQR_PRTHS = 106; - public static readonly RT_SQR_PRTHS = 107; - public static readonly SINGLE_QUOTE = 108; - public static readonly DOUBLE_QUOTE = 109; - public static readonly BACKTICK = 110; - public static readonly BIT_NOT_OP = 111; - public static readonly BIT_AND_OP = 112; - public static readonly BIT_XOR_OP = 113; - public static readonly AVG = 114; - public static readonly COUNT = 115; - public static readonly DISTINCT_COUNT = 116; - public static readonly ESTDC = 117; - public static readonly ESTDC_ERROR = 118; - public static readonly MAX = 119; - public static readonly MEAN = 120; - public static readonly MEDIAN = 121; - public static readonly MIN = 122; - public static readonly MODE = 123; - public static readonly RANGE = 124; - public static readonly STDEV = 125; - public static readonly STDEVP = 126; - public static readonly SUM = 127; - public static readonly SUMSQ = 128; - public static readonly VAR_SAMP = 129; - public static readonly VAR_POP = 130; - public static readonly STDDEV_SAMP = 131; - public static readonly STDDEV_POP = 132; - public static readonly PERCENTILE = 133; - public static readonly FIRST = 134; - public static readonly LAST = 135; - public static readonly LIST = 136; - public static readonly VALUES = 137; - public static readonly EARLIEST = 138; - public static readonly EARLIEST_TIME = 139; - public static readonly LATEST = 140; - public static readonly LATEST_TIME = 141; - public static readonly PER_DAY = 142; - public static readonly PER_HOUR = 143; - public static readonly PER_MINUTE = 144; - public static readonly PER_SECOND = 145; - public static readonly RATE = 146; - public static readonly SPARKLINE = 147; - public static readonly C = 148; - public static readonly DC = 149; - public static readonly ABS = 150; - public static readonly CEIL = 151; - public static readonly CEILING = 152; - public static readonly CONV = 153; - public static readonly CRC32 = 154; - public static readonly E = 155; - public static readonly EXP = 156; - public static readonly FLOOR = 157; - public static readonly LN = 158; - public static readonly LOG = 159; - public static readonly LOG10 = 160; - public static readonly LOG2 = 161; - public static readonly MOD = 162; - public static readonly PI = 163; - public static readonly POW = 164; - public static readonly POWER = 165; - public static readonly RAND = 166; - public static readonly ROUND = 167; - public static readonly SIGN = 168; - public static readonly SQRT = 169; - public static readonly TRUNCATE = 170; - public static readonly ACOS = 171; - public static readonly ASIN = 172; - public static readonly ATAN = 173; - public static readonly ATAN2 = 174; - public static readonly COS = 175; - public static readonly COT = 176; - public static readonly DEGREES = 177; - public static readonly RADIANS = 178; - public static readonly SIN = 179; - public static readonly TAN = 180; - public static readonly ADDDATE = 181; - public static readonly DATE = 182; - public static readonly DATE_ADD = 183; - public static readonly DATE_SUB = 184; - public static readonly DAYOFMONTH = 185; - public static readonly DAYOFWEEK = 186; - public static readonly DAYOFYEAR = 187; - public static readonly DAYNAME = 188; - public static readonly FROM_DAYS = 189; - public static readonly MONTHNAME = 190; - public static readonly SUBDATE = 191; - public static readonly TIME = 192; - public static readonly TIME_TO_SEC = 193; - public static readonly TIMESTAMP = 194; - public static readonly DATE_FORMAT = 195; - public static readonly TO_DAYS = 196; - public static readonly SUBSTR = 197; - public static readonly SUBSTRING = 198; - public static readonly LTRIM = 199; - public static readonly RTRIM = 200; - public static readonly TRIM = 201; - public static readonly TO = 202; - public static readonly LOWER = 203; - public static readonly UPPER = 204; - public static readonly CONCAT = 205; - public static readonly CONCAT_WS = 206; - public static readonly LENGTH = 207; - public static readonly STRCMP = 208; - public static readonly RIGHT = 209; - public static readonly LEFT = 210; - public static readonly ASCII = 211; - public static readonly LOCATE = 212; - public static readonly REPLACE = 213; - public static readonly CAST = 214; - public static readonly LIKE = 215; - public static readonly ISNULL = 216; - public static readonly ISNOTNULL = 217; - public static readonly IFNULL = 218; - public static readonly NULLIF = 219; - public static readonly IF = 220; - public static readonly MATCH = 221; - public static readonly MATCH_PHRASE = 222; - public static readonly SIMPLE_QUERY_STRING = 223; - public static readonly ALLOW_LEADING_WILDCARD = 224; - public static readonly ANALYZE_WILDCARD = 225; - public static readonly ANALYZER = 226; - public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; - public static readonly BOOST = 228; - public static readonly CUTOFF_FREQUENCY = 229; - public static readonly DEFAULT_FIELD = 230; - public static readonly DEFAULT_OPERATOR = 231; - public static readonly ENABLE_POSITION_INCREMENTS = 232; - public static readonly FLAGS = 233; - public static readonly FUZZY_MAX_EXPANSIONS = 234; - public static readonly FUZZY_PREFIX_LENGTH = 235; - public static readonly FUZZY_TRANSPOSITIONS = 236; - public static readonly FUZZY_REWRITE = 237; - public static readonly FUZZINESS = 238; - public static readonly LENIENT = 239; - public static readonly LOW_FREQ_OPERATOR = 240; - public static readonly MAX_DETERMINIZED_STATES = 241; - public static readonly MAX_EXPANSIONS = 242; - public static readonly MINIMUM_SHOULD_MATCH = 243; - public static readonly OPERATOR = 244; - public static readonly PHRASE_SLOP = 245; - public static readonly PREFIX_LENGTH = 246; - public static readonly QUOTE_ANALYZER = 247; - public static readonly QUOTE_FIELD_SUFFIX = 248; - public static readonly REWRITE = 249; - public static readonly SLOP = 250; - public static readonly TIE_BREAKER = 251; - public static readonly TYPE = 252; - public static readonly ZERO_TERMS_QUERY = 253; - public static readonly SPAN = 254; - public static readonly MS = 255; - public static readonly S = 256; - public static readonly M = 257; - public static readonly H = 258; - public static readonly W = 259; - public static readonly Q = 260; - public static readonly Y = 261; - public static readonly ID = 262; - public static readonly INTEGER_LITERAL = 263; - public static readonly DECIMAL_LITERAL = 264; - public static readonly ID_DATE_SUFFIX = 265; - public static readonly DQUOTA_STRING = 266; - public static readonly SQUOTA_STRING = 267; - public static readonly BQUOTA_STRING = 268; - public static readonly ERROR_RECOGNITION = 269; - public static readonly RULE_root = 0; - public static readonly RULE_pplStatement = 1; - public static readonly RULE_commands = 2; - public static readonly RULE_searchCommand = 3; - public static readonly RULE_whereCommand = 4; - public static readonly RULE_fieldsCommand = 5; - public static readonly RULE_renameCommand = 6; - public static readonly RULE_statsCommand = 7; - public static readonly RULE_dedupCommand = 8; - public static readonly RULE_sortCommand = 9; - public static readonly RULE_evalCommand = 10; - public static readonly RULE_headCommand = 11; - public static readonly RULE_topCommand = 12; - public static readonly RULE_rareCommand = 13; - public static readonly RULE_parseCommand = 14; - public static readonly RULE_kmeansCommand = 15; - public static readonly RULE_kmeansParameter = 16; - public static readonly RULE_adCommand = 17; - public static readonly RULE_adParameter = 18; - public static readonly RULE_fromClause = 19; - public static readonly RULE_renameClasue = 20; - public static readonly RULE_byClause = 21; - public static readonly RULE_statsByClause = 22; - public static readonly RULE_bySpanClause = 23; - public static readonly RULE_spanClause = 24; - public static readonly RULE_sortbyClause = 25; - public static readonly RULE_evalClause = 26; - public static readonly RULE_statsAggTerm = 27; - public static readonly RULE_statsFunction = 28; - public static readonly RULE_statsFunctionName = 29; - public static readonly RULE_percentileAggFunction = 30; - public static readonly RULE_expression = 31; - public static readonly RULE_logicalExpression = 32; - public static readonly RULE_comparisonExpression = 33; - public static readonly RULE_valueExpression = 34; - public static readonly RULE_primaryExpression = 35; - public static readonly RULE_booleanExpression = 36; - public static readonly RULE_relevanceExpression = 37; - public static readonly RULE_singleFieldRelevanceFunction = 38; - public static readonly RULE_multiFieldRelevanceFunction = 39; - public static readonly RULE_tableSource = 40; - public static readonly RULE_fieldList = 41; - public static readonly RULE_wcFieldList = 42; - public static readonly RULE_sortField = 43; - public static readonly RULE_sortFieldExpression = 44; - public static readonly RULE_fieldExpression = 45; - public static readonly RULE_wcFieldExpression = 46; - public static readonly RULE_evalFunctionCall = 47; - public static readonly RULE_dataTypeFunctionCall = 48; - public static readonly RULE_booleanFunctionCall = 49; - public static readonly RULE_convertedDataType = 50; - public static readonly RULE_evalFunctionName = 51; - public static readonly RULE_functionArgs = 52; - public static readonly RULE_functionArg = 53; - public static readonly RULE_relevanceArg = 54; - public static readonly RULE_relevanceArgName = 55; - public static readonly RULE_relevanceFieldAndWeight = 56; - public static readonly RULE_relevanceFieldWeight = 57; - public static readonly RULE_relevanceField = 58; - public static readonly RULE_relevanceQuery = 59; - public static readonly RULE_relevanceArgValue = 60; - public static readonly RULE_mathematicalFunctionBase = 61; - public static readonly RULE_trigonometricFunctionName = 62; - public static readonly RULE_dateAndTimeFunctionBase = 63; - public static readonly RULE_conditionFunctionBase = 64; - public static readonly RULE_textFunctionBase = 65; - public static readonly RULE_comparisonOperator = 66; - public static readonly RULE_binaryOperator = 67; - public static readonly RULE_singleFieldRelevanceFunctionName = 68; - public static readonly RULE_multiFieldRelevanceFunctionName = 69; - public static readonly RULE_literalValue = 70; - public static readonly RULE_intervalLiteral = 71; - public static readonly RULE_stringLiteral = 72; - public static readonly RULE_integerLiteral = 73; - public static readonly RULE_decimalLiteral = 74; - public static readonly RULE_booleanLiteral = 75; - public static readonly RULE_pattern = 76; - public static readonly RULE_intervalUnit = 77; - public static readonly RULE_timespanUnit = 78; - public static readonly RULE_valueList = 79; - public static readonly RULE_qualifiedName = 80; - public static readonly RULE_wcQualifiedName = 81; - public static readonly RULE_ident = 82; - public static readonly RULE_wildcard = 83; - public static readonly RULE_keywordsCanBeId = 84; - // tslint:disable:no-trailing-whitespace - public static readonly ruleNames: string[] = [ - "root", "pplStatement", "commands", "searchCommand", "whereCommand", "fieldsCommand", - "renameCommand", "statsCommand", "dedupCommand", "sortCommand", "evalCommand", - "headCommand", "topCommand", "rareCommand", "parseCommand", "kmeansCommand", - "kmeansParameter", "adCommand", "adParameter", "fromClause", "renameClasue", - "byClause", "statsByClause", "bySpanClause", "spanClause", "sortbyClause", - "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", "percentileAggFunction", - "expression", "logicalExpression", "comparisonExpression", "valueExpression", - "primaryExpression", "booleanExpression", "relevanceExpression", "singleFieldRelevanceFunction", - "multiFieldRelevanceFunction", "tableSource", "fieldList", "wcFieldList", - "sortField", "sortFieldExpression", "fieldExpression", "wcFieldExpression", - "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", "convertedDataType", - "evalFunctionName", "functionArgs", "functionArg", "relevanceArg", "relevanceArgName", - "relevanceFieldAndWeight", "relevanceFieldWeight", "relevanceField", "relevanceQuery", - "relevanceArgValue", "mathematicalFunctionBase", "trigonometricFunctionName", - "dateAndTimeFunctionBase", "conditionFunctionBase", "textFunctionBase", - "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", - "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", - "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", - "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", - "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId", - ]; - - private static readonly _LITERAL_NAMES: Array = [ - undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", - "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", - "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", - "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", - "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", - "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", - "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", - "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", - "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", - "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, - undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", - "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", - "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", - "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", - "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", - "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", - "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", - "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", - "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", - "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", - "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", - "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", - "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", - "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", - "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", - "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", - "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", - "'W'", "'Q'", "'Y'", - ]; - private static readonly _SYMBOLIC_NAMES: Array = [ - undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", - "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", - "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", - "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", - "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", - "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", - "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", - "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", - "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", - "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", - "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", - ]; - public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLParser._LITERAL_NAMES, OpenSearchPPLParser._SYMBOLIC_NAMES, []); - - // @Override - // @NotNull - public get vocabulary(): Vocabulary { - return OpenSearchPPLParser.VOCABULARY; - } - // tslint:enable:no-trailing-whitespace - - // @Override - public get grammarFileName(): string { return "OpenSearchPPLParser.g4"; } - - // @Override - public get ruleNames(): string[] { return OpenSearchPPLParser.ruleNames; } - - // @Override - public get serializedATN(): string { return OpenSearchPPLParser._serializedATN; } - - protected createFailedPredicateException(predicate?: string, message?: string): FailedPredicateException { - return new FailedPredicateException(this, predicate, message); - } - - constructor(input: TokenStream) { - super(input); - this._interp = new ParserATNSimulator(OpenSearchPPLParser._ATN, this); - } - // @RuleVersion(0) - public root(): RootContext { - let _localctx: RootContext = new RootContext(this._ctx, this.state); - this.enterRule(_localctx, 0, OpenSearchPPLParser.RULE_root); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 171; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << OpenSearchPPLParser.SEARCH) | (1 << OpenSearchPPLParser.SOURCE) | (1 << OpenSearchPPLParser.INDEX) | (1 << OpenSearchPPLParser.D))) !== 0) || ((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & ((1 << (OpenSearchPPLParser.NOT - 48)) | (1 << (OpenSearchPPLParser.TRUE - 48)) | (1 << (OpenSearchPPLParser.FALSE - 48)) | (1 << (OpenSearchPPLParser.INTERVAL - 48)) | (1 << (OpenSearchPPLParser.MICROSECOND - 48)) | (1 << (OpenSearchPPLParser.MILLISECOND - 48)) | (1 << (OpenSearchPPLParser.SECOND - 48)) | (1 << (OpenSearchPPLParser.MINUTE - 48)) | (1 << (OpenSearchPPLParser.HOUR - 48)) | (1 << (OpenSearchPPLParser.DAY - 48)) | (1 << (OpenSearchPPLParser.WEEK - 48)) | (1 << (OpenSearchPPLParser.MONTH - 48)) | (1 << (OpenSearchPPLParser.QUARTER - 48)) | (1 << (OpenSearchPPLParser.YEAR - 48)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)) | (1 << (OpenSearchPPLParser.MATCH - 218)) | (1 << (OpenSearchPPLParser.MATCH_PHRASE - 218)) | (1 << (OpenSearchPPLParser.SIMPLE_QUERY_STRING - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { - { - this.state = 170; - this.pplStatement(); - } - } - - this.state = 173; - this.match(OpenSearchPPLParser.EOF); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public pplStatement(): PplStatementContext { - let _localctx: PplStatementContext = new PplStatementContext(this._ctx, this.state); - this.enterRule(_localctx, 2, OpenSearchPPLParser.RULE_pplStatement); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 175; - this.searchCommand(); - this.state = 180; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.PIPE) { - { - { - this.state = 176; - this.match(OpenSearchPPLParser.PIPE); - this.state = 177; - this.commands(); - } - } - this.state = 182; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public commands(): CommandsContext { - let _localctx: CommandsContext = new CommandsContext(this._ctx, this.state); - this.enterRule(_localctx, 4, OpenSearchPPLParser.RULE_commands); - try { - this.state = 196; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.WHERE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 183; - this.whereCommand(); - } - break; - case OpenSearchPPLParser.FIELDS: - this.enterOuterAlt(_localctx, 2); - { - this.state = 184; - this.fieldsCommand(); - } - break; - case OpenSearchPPLParser.RENAME: - this.enterOuterAlt(_localctx, 3); - { - this.state = 185; - this.renameCommand(); - } - break; - case OpenSearchPPLParser.STATS: - this.enterOuterAlt(_localctx, 4); - { - this.state = 186; - this.statsCommand(); - } - break; - case OpenSearchPPLParser.DEDUP: - this.enterOuterAlt(_localctx, 5); - { - this.state = 187; - this.dedupCommand(); - } - break; - case OpenSearchPPLParser.SORT: - this.enterOuterAlt(_localctx, 6); - { - this.state = 188; - this.sortCommand(); - } - break; - case OpenSearchPPLParser.EVAL: - this.enterOuterAlt(_localctx, 7); - { - this.state = 189; - this.evalCommand(); - } - break; - case OpenSearchPPLParser.HEAD: - this.enterOuterAlt(_localctx, 8); - { - this.state = 190; - this.headCommand(); - } - break; - case OpenSearchPPLParser.TOP: - this.enterOuterAlt(_localctx, 9); - { - this.state = 191; - this.topCommand(); - } - break; - case OpenSearchPPLParser.RARE: - this.enterOuterAlt(_localctx, 10); - { - this.state = 192; - this.rareCommand(); - } - break; - case OpenSearchPPLParser.PARSE: - this.enterOuterAlt(_localctx, 11); - { - this.state = 193; - this.parseCommand(); - } - break; - case OpenSearchPPLParser.KMEANS: - this.enterOuterAlt(_localctx, 12); - { - this.state = 194; - this.kmeansCommand(); - } - break; - case OpenSearchPPLParser.AD: - this.enterOuterAlt(_localctx, 13); - { - this.state = 195; - this.adCommand(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public searchCommand(): SearchCommandContext { - let _localctx: SearchCommandContext = new SearchCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 6, OpenSearchPPLParser.RULE_searchCommand); - let _la: number; - try { - this.state = 214; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 6, this._ctx) ) { - case 1: - _localctx = new SearchFromContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 199; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.SEARCH) { - { - this.state = 198; - this.match(OpenSearchPPLParser.SEARCH); - } - } - - this.state = 201; - this.fromClause(); - } - break; - - case 2: - _localctx = new SearchFromFilterContext(_localctx); - this.enterOuterAlt(_localctx, 2); - { - this.state = 203; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.SEARCH) { - { - this.state = 202; - this.match(OpenSearchPPLParser.SEARCH); - } - } - - this.state = 205; - this.fromClause(); - this.state = 206; - this.logicalExpression(0); - } - break; - - case 3: - _localctx = new SearchFilterFromContext(_localctx); - this.enterOuterAlt(_localctx, 3); - { - this.state = 209; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.SEARCH) { - { - this.state = 208; - this.match(OpenSearchPPLParser.SEARCH); - } - } - - this.state = 211; - this.logicalExpression(0); - this.state = 212; - this.fromClause(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public whereCommand(): WhereCommandContext { - let _localctx: WhereCommandContext = new WhereCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 8, OpenSearchPPLParser.RULE_whereCommand); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 216; - this.match(OpenSearchPPLParser.WHERE); - this.state = 217; - this.logicalExpression(0); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fieldsCommand(): FieldsCommandContext { - let _localctx: FieldsCommandContext = new FieldsCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 10, OpenSearchPPLParser.RULE_fieldsCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 219; - this.match(OpenSearchPPLParser.FIELDS); - this.state = 221; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 220; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 223; - this.fieldList(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public renameCommand(): RenameCommandContext { - let _localctx: RenameCommandContext = new RenameCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 12, OpenSearchPPLParser.RULE_renameCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 225; - this.match(OpenSearchPPLParser.RENAME); - this.state = 226; - this.renameClasue(); - this.state = 231; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 227; - this.match(OpenSearchPPLParser.COMMA); - this.state = 228; - this.renameClasue(); - } - } - this.state = 233; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsCommand(): StatsCommandContext { - let _localctx: StatsCommandContext = new StatsCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 14, OpenSearchPPLParser.RULE_statsCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 234; - this.match(OpenSearchPPLParser.STATS); - this.state = 238; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PARTITIONS) { - { - this.state = 235; - this.match(OpenSearchPPLParser.PARTITIONS); - this.state = 236; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 237; - _localctx._partitions = this.integerLiteral(); - } - } - - this.state = 243; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.ALLNUM) { - { - this.state = 240; - this.match(OpenSearchPPLParser.ALLNUM); - this.state = 241; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 242; - _localctx._allnum = this.booleanLiteral(); - } - } - - this.state = 248; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.DELIM) { - { - this.state = 245; - this.match(OpenSearchPPLParser.DELIM); - this.state = 246; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 247; - _localctx._delim = this.stringLiteral(); - } - } - - this.state = 250; - this.statsAggTerm(); - this.state = 255; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 251; - this.match(OpenSearchPPLParser.COMMA); - this.state = 252; - this.statsAggTerm(); - } - } - this.state = 257; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 259; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.BY) { - { - this.state = 258; - this.statsByClause(); - } - } - - this.state = 264; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.DEDUP_SPLITVALUES) { - { - this.state = 261; - this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); - this.state = 262; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 263; - _localctx._dedupsplit = this.booleanLiteral(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public dedupCommand(): DedupCommandContext { - let _localctx: DedupCommandContext = new DedupCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 16, OpenSearchPPLParser.RULE_dedupCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 266; - this.match(OpenSearchPPLParser.DEDUP); - this.state = 268; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { - { - this.state = 267; - _localctx._number = this.integerLiteral(); - } - } - - this.state = 270; - this.fieldList(); - this.state = 274; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.KEEPEMPTY) { - { - this.state = 271; - this.match(OpenSearchPPLParser.KEEPEMPTY); - this.state = 272; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 273; - _localctx._keepempty = this.booleanLiteral(); - } - } - - this.state = 279; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.CONSECUTIVE) { - { - this.state = 276; - this.match(OpenSearchPPLParser.CONSECUTIVE); - this.state = 277; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 278; - _localctx._consecutive = this.booleanLiteral(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortCommand(): SortCommandContext { - let _localctx: SortCommandContext = new SortCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 18, OpenSearchPPLParser.RULE_sortCommand); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 281; - this.match(OpenSearchPPLParser.SORT); - this.state = 282; - this.sortbyClause(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalCommand(): EvalCommandContext { - let _localctx: EvalCommandContext = new EvalCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 20, OpenSearchPPLParser.RULE_evalCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 284; - this.match(OpenSearchPPLParser.EVAL); - this.state = 285; - this.evalClause(); - this.state = 290; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 286; - this.match(OpenSearchPPLParser.COMMA); - this.state = 287; - this.evalClause(); - } - } - this.state = 292; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public headCommand(): HeadCommandContext { - let _localctx: HeadCommandContext = new HeadCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 22, OpenSearchPPLParser.RULE_headCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 293; - this.match(OpenSearchPPLParser.HEAD); - this.state = 295; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { - { - this.state = 294; - _localctx._number = this.integerLiteral(); - } - } - - this.state = 299; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.FROM) { - { - this.state = 297; - this.match(OpenSearchPPLParser.FROM); - this.state = 298; - _localctx._from = this.integerLiteral(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public topCommand(): TopCommandContext { - let _localctx: TopCommandContext = new TopCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 24, OpenSearchPPLParser.RULE_topCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 301; - this.match(OpenSearchPPLParser.TOP); - this.state = 303; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { - { - this.state = 302; - _localctx._number = this.integerLiteral(); - } - } - - this.state = 305; - this.fieldList(); - this.state = 307; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.BY) { - { - this.state = 306; - this.byClause(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public rareCommand(): RareCommandContext { - let _localctx: RareCommandContext = new RareCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 26, OpenSearchPPLParser.RULE_rareCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 309; - this.match(OpenSearchPPLParser.RARE); - this.state = 310; - this.fieldList(); - this.state = 312; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.BY) { - { - this.state = 311; - this.byClause(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public parseCommand(): ParseCommandContext { - let _localctx: ParseCommandContext = new ParseCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 28, OpenSearchPPLParser.RULE_parseCommand); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 314; - this.match(OpenSearchPPLParser.PARSE); - this.state = 315; - this.expression(); - this.state = 316; - this.pattern(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public kmeansCommand(): KmeansCommandContext { - let _localctx: KmeansCommandContext = new KmeansCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 30, OpenSearchPPLParser.RULE_kmeansCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 318; - this.match(OpenSearchPPLParser.KMEANS); - this.state = 322; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & ((1 << (OpenSearchPPLParser.CENTROIDS - 33)) | (1 << (OpenSearchPPLParser.ITERATIONS - 33)) | (1 << (OpenSearchPPLParser.DISTANCE_TYPE - 33)))) !== 0)) { - { - { - this.state = 319; - this.kmeansParameter(); - } - } - this.state = 324; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public kmeansParameter(): KmeansParameterContext { - let _localctx: KmeansParameterContext = new KmeansParameterContext(this._ctx, this.state); - this.enterRule(_localctx, 32, OpenSearchPPLParser.RULE_kmeansParameter); - try { - this.state = 334; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.CENTROIDS: - this.enterOuterAlt(_localctx, 1); - { - { - this.state = 325; - this.match(OpenSearchPPLParser.CENTROIDS); - this.state = 326; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 327; - _localctx._centroids = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.ITERATIONS: - this.enterOuterAlt(_localctx, 2); - { - { - this.state = 328; - this.match(OpenSearchPPLParser.ITERATIONS); - this.state = 329; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 330; - _localctx._iterations = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.DISTANCE_TYPE: - this.enterOuterAlt(_localctx, 3); - { - { - this.state = 331; - this.match(OpenSearchPPLParser.DISTANCE_TYPE); - this.state = 332; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 333; - _localctx._distance_type = this.stringLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public adCommand(): AdCommandContext { - let _localctx: AdCommandContext = new AdCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 34, OpenSearchPPLParser.RULE_adCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 336; - this.match(OpenSearchPPLParser.AD); - this.state = 340; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & ((1 << (OpenSearchPPLParser.NUMBER_OF_TREES - 36)) | (1 << (OpenSearchPPLParser.SHINGLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.SAMPLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.OUTPUT_AFTER - 36)) | (1 << (OpenSearchPPLParser.TIME_DECAY - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_RATE - 36)) | (1 << (OpenSearchPPLParser.TIME_FIELD - 36)) | (1 << (OpenSearchPPLParser.TIME_ZONE - 36)) | (1 << (OpenSearchPPLParser.TRAINING_DATA_SIZE - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD - 36)))) !== 0) || _la === OpenSearchPPLParser.DATE_FORMAT) { - { - { - this.state = 337; - this.adParameter(); - } - } - this.state = 342; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public adParameter(): AdParameterContext { - let _localctx: AdParameterContext = new AdParameterContext(this._ctx, this.state); - this.enterRule(_localctx, 36, OpenSearchPPLParser.RULE_adParameter); - try { - this.state = 376; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.NUMBER_OF_TREES: - this.enterOuterAlt(_localctx, 1); - { - { - this.state = 343; - this.match(OpenSearchPPLParser.NUMBER_OF_TREES); - this.state = 344; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 345; - _localctx._number_of_trees = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.SHINGLE_SIZE: - this.enterOuterAlt(_localctx, 2); - { - { - this.state = 346; - this.match(OpenSearchPPLParser.SHINGLE_SIZE); - this.state = 347; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 348; - _localctx._shingle_size = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.SAMPLE_SIZE: - this.enterOuterAlt(_localctx, 3); - { - { - this.state = 349; - this.match(OpenSearchPPLParser.SAMPLE_SIZE); - this.state = 350; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 351; - _localctx._sample_size = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.OUTPUT_AFTER: - this.enterOuterAlt(_localctx, 4); - { - { - this.state = 352; - this.match(OpenSearchPPLParser.OUTPUT_AFTER); - this.state = 353; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 354; - _localctx._output_after = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.TIME_DECAY: - this.enterOuterAlt(_localctx, 5); - { - { - this.state = 355; - this.match(OpenSearchPPLParser.TIME_DECAY); - this.state = 356; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 357; - _localctx._time_decay = this.decimalLiteral(); - } - } - break; - case OpenSearchPPLParser.ANOMALY_RATE: - this.enterOuterAlt(_localctx, 6); - { - { - this.state = 358; - this.match(OpenSearchPPLParser.ANOMALY_RATE); - this.state = 359; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 360; - _localctx._anomaly_rate = this.decimalLiteral(); - } - } - break; - case OpenSearchPPLParser.TIME_FIELD: - this.enterOuterAlt(_localctx, 7); - { - { - this.state = 361; - this.match(OpenSearchPPLParser.TIME_FIELD); - this.state = 362; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 363; - _localctx._time_field = this.stringLiteral(); - } - } - break; - case OpenSearchPPLParser.DATE_FORMAT: - this.enterOuterAlt(_localctx, 8); - { - { - this.state = 364; - this.match(OpenSearchPPLParser.DATE_FORMAT); - this.state = 365; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 366; - _localctx._date_format = this.stringLiteral(); - } - } - break; - case OpenSearchPPLParser.TIME_ZONE: - this.enterOuterAlt(_localctx, 9); - { - { - this.state = 367; - this.match(OpenSearchPPLParser.TIME_ZONE); - this.state = 368; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 369; - _localctx._time_zone = this.stringLiteral(); - } - } - break; - case OpenSearchPPLParser.TRAINING_DATA_SIZE: - this.enterOuterAlt(_localctx, 10); - { - { - this.state = 370; - this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); - this.state = 371; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 372; - _localctx._training_data_size = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD: - this.enterOuterAlt(_localctx, 11); - { - { - this.state = 373; - this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); - this.state = 374; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 375; - _localctx._anomaly_score_threshold = this.decimalLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fromClause(): FromClauseContext { - let _localctx: FromClauseContext = new FromClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 38, OpenSearchPPLParser.RULE_fromClause); - let _la: number; - try { - this.state = 398; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.SOURCE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 378; - this.match(OpenSearchPPLParser.SOURCE); - this.state = 379; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 380; - this.tableSource(); - this.state = 385; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 381; - this.match(OpenSearchPPLParser.COMMA); - this.state = 382; - this.tableSource(); - } - } - this.state = 387; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - break; - case OpenSearchPPLParser.INDEX: - this.enterOuterAlt(_localctx, 2); - { - this.state = 388; - this.match(OpenSearchPPLParser.INDEX); - this.state = 389; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 390; - this.tableSource(); - this.state = 395; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 391; - this.match(OpenSearchPPLParser.COMMA); - this.state = 392; - this.tableSource(); - } - } - this.state = 397; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public renameClasue(): RenameClasueContext { - let _localctx: RenameClasueContext = new RenameClasueContext(this._ctx, this.state); - this.enterRule(_localctx, 40, OpenSearchPPLParser.RULE_renameClasue); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 400; - _localctx._orignalField = this.wcFieldExpression(); - this.state = 401; - this.match(OpenSearchPPLParser.AS); - this.state = 402; - _localctx._renamedField = this.wcFieldExpression(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public byClause(): ByClauseContext { - let _localctx: ByClauseContext = new ByClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 42, OpenSearchPPLParser.RULE_byClause); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 404; - this.match(OpenSearchPPLParser.BY); - this.state = 405; - this.fieldList(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsByClause(): StatsByClauseContext { - let _localctx: StatsByClauseContext = new StatsByClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 44, OpenSearchPPLParser.RULE_statsByClause); - try { - this.state = 416; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 31, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 407; - this.match(OpenSearchPPLParser.BY); - this.state = 408; - this.fieldList(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 409; - this.match(OpenSearchPPLParser.BY); - this.state = 410; - this.bySpanClause(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 411; - this.match(OpenSearchPPLParser.BY); - this.state = 412; - this.bySpanClause(); - this.state = 413; - this.match(OpenSearchPPLParser.COMMA); - this.state = 414; - this.fieldList(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public bySpanClause(): BySpanClauseContext { - let _localctx: BySpanClauseContext = new BySpanClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 46, OpenSearchPPLParser.RULE_bySpanClause); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 418; - this.spanClause(); - this.state = 421; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.AS) { - { - this.state = 419; - this.match(OpenSearchPPLParser.AS); - this.state = 420; - _localctx._alias = this.qualifiedName(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public spanClause(): SpanClauseContext { - let _localctx: SpanClauseContext = new SpanClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 48, OpenSearchPPLParser.RULE_spanClause); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 423; - this.match(OpenSearchPPLParser.SPAN); - this.state = 424; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 425; - this.fieldExpression(); - this.state = 426; - this.match(OpenSearchPPLParser.COMMA); - this.state = 427; - _localctx._value = this.literalValue(); - this.state = 429; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0)) { - { - this.state = 428; - _localctx._unit = this.timespanUnit(); - } - } - - this.state = 431; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortbyClause(): SortbyClauseContext { - let _localctx: SortbyClauseContext = new SortbyClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 50, OpenSearchPPLParser.RULE_sortbyClause); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 433; - this.sortField(); - this.state = 438; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 434; - this.match(OpenSearchPPLParser.COMMA); - this.state = 435; - this.sortField(); - } - } - this.state = 440; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalClause(): EvalClauseContext { - let _localctx: EvalClauseContext = new EvalClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 52, OpenSearchPPLParser.RULE_evalClause); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 441; - this.fieldExpression(); - this.state = 442; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 443; - this.expression(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsAggTerm(): StatsAggTermContext { - let _localctx: StatsAggTermContext = new StatsAggTermContext(this._ctx, this.state); - this.enterRule(_localctx, 54, OpenSearchPPLParser.RULE_statsAggTerm); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 445; - this.statsFunction(); - this.state = 448; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.AS) { - { - this.state = 446; - this.match(OpenSearchPPLParser.AS); - this.state = 447; - _localctx._alias = this.wcFieldExpression(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsFunction(): StatsFunctionContext { - let _localctx: StatsFunctionContext = new StatsFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 56, OpenSearchPPLParser.RULE_statsFunction); - let _la: number; - try { - this.state = 464; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 36, this._ctx) ) { - case 1: - _localctx = new StatsFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 450; - this.statsFunctionName(); - this.state = 451; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 452; - this.valueExpression(0); - this.state = 453; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - - case 2: - _localctx = new CountAllFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 2); - { - this.state = 455; - this.match(OpenSearchPPLParser.COUNT); - this.state = 456; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 457; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - - case 3: - _localctx = new DistinctCountFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 3); - { - this.state = 458; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.DISTINCT_COUNT || _la === OpenSearchPPLParser.DC)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 459; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 460; - this.valueExpression(0); - this.state = 461; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - - case 4: - _localctx = new PercentileAggFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 4); - { - this.state = 463; - this.percentileAggFunction(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsFunctionName(): StatsFunctionNameContext { - let _localctx: StatsFunctionNameContext = new StatsFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 58, OpenSearchPPLParser.RULE_statsFunctionName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 466; - _la = this._input.LA(1); - if (!(((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & ((1 << (OpenSearchPPLParser.AVG - 114)) | (1 << (OpenSearchPPLParser.COUNT - 114)) | (1 << (OpenSearchPPLParser.MAX - 114)) | (1 << (OpenSearchPPLParser.MIN - 114)) | (1 << (OpenSearchPPLParser.SUM - 114)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 114)) | (1 << (OpenSearchPPLParser.VAR_POP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 114)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public percentileAggFunction(): PercentileAggFunctionContext { - let _localctx: PercentileAggFunctionContext = new PercentileAggFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 60, OpenSearchPPLParser.RULE_percentileAggFunction); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 468; - this.match(OpenSearchPPLParser.PERCENTILE); - this.state = 469; - this.match(OpenSearchPPLParser.LESS); - this.state = 470; - _localctx._value = this.integerLiteral(); - this.state = 471; - this.match(OpenSearchPPLParser.GREATER); - this.state = 472; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 473; - _localctx._aggField = this.fieldExpression(); - this.state = 474; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public expression(): ExpressionContext { - let _localctx: ExpressionContext = new ExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 62, OpenSearchPPLParser.RULE_expression); - try { - this.state = 479; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 37, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 476; - this.logicalExpression(0); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 477; - this.comparisonExpression(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 478; - this.valueExpression(0); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - - public logicalExpression(): LogicalExpressionContext; - public logicalExpression(_p: number): LogicalExpressionContext; - // @RuleVersion(0) - public logicalExpression(_p?: number): LogicalExpressionContext { - if (_p === undefined) { - _p = 0; - } - - let _parentctx: ParserRuleContext = this._ctx; - let _parentState: number = this.state; - let _localctx: LogicalExpressionContext = new LogicalExpressionContext(this._ctx, _parentState); - let _prevctx: LogicalExpressionContext = _localctx; - let _startState: number = 64; - this.enterRecursionRule(_localctx, 64, OpenSearchPPLParser.RULE_logicalExpression, _p); - let _la: number; - try { - let _alt: number; - this.enterOuterAlt(_localctx, 1); - { - this.state = 487; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 38, this._ctx) ) { - case 1: - { - _localctx = new ComparsionContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - - this.state = 482; - this.comparisonExpression(); - } - break; - - case 2: - { - _localctx = new LogicalNotContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 483; - this.match(OpenSearchPPLParser.NOT); - this.state = 484; - this.logicalExpression(6); - } - break; - - case 3: - { - _localctx = new BooleanExprContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 485; - this.booleanExpression(); - } - break; - - case 4: - { - _localctx = new RelevanceExprContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 486; - this.relevanceExpression(); - } - break; - } - this._ctx._stop = this._input.tryLT(-1); - this.state = 502; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = _localctx; - { - this.state = 500; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 40, this._ctx) ) { - case 1: - { - _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); - (_localctx as LogicalOrContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 489; - if (!(this.precpred(this._ctx, 5))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); - } - this.state = 490; - this.match(OpenSearchPPLParser.OR); - this.state = 491; - (_localctx as LogicalOrContext)._right = this.logicalExpression(6); - } - break; - - case 2: - { - _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); - (_localctx as LogicalAndContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 492; - if (!(this.precpred(this._ctx, 4))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); - } - this.state = 494; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.AND) { - { - this.state = 493; - this.match(OpenSearchPPLParser.AND); - } - } - - this.state = 496; - (_localctx as LogicalAndContext)._right = this.logicalExpression(5); - } - break; - - case 3: - { - _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); - (_localctx as LogicalXorContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 497; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 498; - this.match(OpenSearchPPLParser.XOR); - this.state = 499; - (_localctx as LogicalXorContext)._right = this.logicalExpression(4); - } - break; - } - } - } - this.state = 504; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.unrollRecursionContexts(_parentctx); - } - return _localctx; - } - // @RuleVersion(0) - public comparisonExpression(): ComparisonExpressionContext { - let _localctx: ComparisonExpressionContext = new ComparisonExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 66, OpenSearchPPLParser.RULE_comparisonExpression); - try { - this.state = 513; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 42, this._ctx) ) { - case 1: - _localctx = new CompareExprContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 505; - (_localctx as CompareExprContext)._left = this.valueExpression(0); - this.state = 506; - this.comparisonOperator(); - this.state = 507; - (_localctx as CompareExprContext)._right = this.valueExpression(0); - } - break; - - case 2: - _localctx = new InExprContext(_localctx); - this.enterOuterAlt(_localctx, 2); - { - this.state = 509; - this.valueExpression(0); - this.state = 510; - this.match(OpenSearchPPLParser.IN); - this.state = 511; - this.valueList(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - - public valueExpression(): ValueExpressionContext; - public valueExpression(_p: number): ValueExpressionContext; - // @RuleVersion(0) - public valueExpression(_p?: number): ValueExpressionContext { - if (_p === undefined) { - _p = 0; - } - - let _parentctx: ParserRuleContext = this._ctx; - let _parentState: number = this.state; - let _localctx: ValueExpressionContext = new ValueExpressionContext(this._ctx, _parentState); - let _prevctx: ValueExpressionContext = _localctx; - let _startState: number = 68; - this.enterRecursionRule(_localctx, 68, OpenSearchPPLParser.RULE_valueExpression, _p); - try { - let _alt: number; - this.enterOuterAlt(_localctx, 1); - { - this.state = 523; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.LT_PRTHS: - { - _localctx = new ParentheticBinaryArithmeticContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - - this.state = 516; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 517; - (_localctx as ParentheticBinaryArithmeticContext)._left = this.valueExpression(0); - this.state = 518; - this.binaryOperator(); - this.state = 519; - (_localctx as ParentheticBinaryArithmeticContext)._right = this.valueExpression(0); - this.state = 520; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.TRUE: - case OpenSearchPPLParser.FALSE: - case OpenSearchPPLParser.INTERVAL: - case OpenSearchPPLParser.MICROSECOND: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.PLUS: - case OpenSearchPPLParser.MINUS: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.ABS: - case OpenSearchPPLParser.CEIL: - case OpenSearchPPLParser.CEILING: - case OpenSearchPPLParser.CONV: - case OpenSearchPPLParser.CRC32: - case OpenSearchPPLParser.E: - case OpenSearchPPLParser.EXP: - case OpenSearchPPLParser.FLOOR: - case OpenSearchPPLParser.LN: - case OpenSearchPPLParser.LOG: - case OpenSearchPPLParser.LOG10: - case OpenSearchPPLParser.LOG2: - case OpenSearchPPLParser.MOD: - case OpenSearchPPLParser.PI: - case OpenSearchPPLParser.POW: - case OpenSearchPPLParser.POWER: - case OpenSearchPPLParser.RAND: - case OpenSearchPPLParser.ROUND: - case OpenSearchPPLParser.SIGN: - case OpenSearchPPLParser.SQRT: - case OpenSearchPPLParser.TRUNCATE: - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - case OpenSearchPPLParser.ADDDATE: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.DATE_ADD: - case OpenSearchPPLParser.DATE_SUB: - case OpenSearchPPLParser.DAYOFMONTH: - case OpenSearchPPLParser.DAYOFWEEK: - case OpenSearchPPLParser.DAYOFYEAR: - case OpenSearchPPLParser.DAYNAME: - case OpenSearchPPLParser.FROM_DAYS: - case OpenSearchPPLParser.MONTHNAME: - case OpenSearchPPLParser.SUBDATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIME_TO_SEC: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.DATE_FORMAT: - case OpenSearchPPLParser.TO_DAYS: - case OpenSearchPPLParser.SUBSTR: - case OpenSearchPPLParser.SUBSTRING: - case OpenSearchPPLParser.LTRIM: - case OpenSearchPPLParser.RTRIM: - case OpenSearchPPLParser.TRIM: - case OpenSearchPPLParser.LOWER: - case OpenSearchPPLParser.UPPER: - case OpenSearchPPLParser.CONCAT: - case OpenSearchPPLParser.CONCAT_WS: - case OpenSearchPPLParser.LENGTH: - case OpenSearchPPLParser.STRCMP: - case OpenSearchPPLParser.RIGHT: - case OpenSearchPPLParser.LEFT: - case OpenSearchPPLParser.ASCII: - case OpenSearchPPLParser.LOCATE: - case OpenSearchPPLParser.REPLACE: - case OpenSearchPPLParser.CAST: - case OpenSearchPPLParser.LIKE: - case OpenSearchPPLParser.ISNULL: - case OpenSearchPPLParser.ISNOTNULL: - case OpenSearchPPLParser.IFNULL: - case OpenSearchPPLParser.NULLIF: - case OpenSearchPPLParser.IF: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.INTEGER_LITERAL: - case OpenSearchPPLParser.DECIMAL_LITERAL: - case OpenSearchPPLParser.DQUOTA_STRING: - case OpenSearchPPLParser.SQUOTA_STRING: - case OpenSearchPPLParser.BQUOTA_STRING: - { - _localctx = new ValueExpressionDefaultContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 522; - this.primaryExpression(); - } - break; - default: - throw new NoViableAltException(this); - } - this._ctx._stop = this._input.tryLT(-1); - this.state = 531; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = _localctx; - { - { - _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); - (_localctx as BinaryArithmeticContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 525; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 526; - this.binaryOperator(); - this.state = 527; - (_localctx as BinaryArithmeticContext)._right = this.valueExpression(4); - } - } - } - this.state = 533; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.unrollRecursionContexts(_parentctx); - } - return _localctx; - } - // @RuleVersion(0) - public primaryExpression(): PrimaryExpressionContext { - let _localctx: PrimaryExpressionContext = new PrimaryExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 70, OpenSearchPPLParser.RULE_primaryExpression); - try { - this.state = 538; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 45, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 534; - this.evalFunctionCall(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 535; - this.dataTypeFunctionCall(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 536; - this.fieldExpression(); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 537; - this.literalValue(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public booleanExpression(): BooleanExpressionContext { - let _localctx: BooleanExpressionContext = new BooleanExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 72, OpenSearchPPLParser.RULE_booleanExpression); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 540; - this.booleanFunctionCall(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceExpression(): RelevanceExpressionContext { - let _localctx: RelevanceExpressionContext = new RelevanceExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 74, OpenSearchPPLParser.RULE_relevanceExpression); - try { - this.state = 544; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.MATCH: - case OpenSearchPPLParser.MATCH_PHRASE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 542; - this.singleFieldRelevanceFunction(); - } - break; - case OpenSearchPPLParser.SIMPLE_QUERY_STRING: - this.enterOuterAlt(_localctx, 2); - { - this.state = 543; - this.multiFieldRelevanceFunction(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext { - let _localctx: SingleFieldRelevanceFunctionContext = new SingleFieldRelevanceFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 76, OpenSearchPPLParser.RULE_singleFieldRelevanceFunction); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 546; - this.singleFieldRelevanceFunctionName(); - this.state = 547; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 548; - _localctx._field = this.relevanceField(); - this.state = 549; - this.match(OpenSearchPPLParser.COMMA); - this.state = 550; - _localctx._query = this.relevanceQuery(); - this.state = 555; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 551; - this.match(OpenSearchPPLParser.COMMA); - this.state = 552; - this.relevanceArg(); - } - } - this.state = 557; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 558; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext { - let _localctx: MultiFieldRelevanceFunctionContext = new MultiFieldRelevanceFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 78, OpenSearchPPLParser.RULE_multiFieldRelevanceFunction); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 560; - this.multiFieldRelevanceFunctionName(); - this.state = 561; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 562; - this.match(OpenSearchPPLParser.LT_SQR_PRTHS); - this.state = 563; - _localctx._field = this.relevanceFieldAndWeight(); - this.state = 568; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 564; - this.match(OpenSearchPPLParser.COMMA); - this.state = 565; - _localctx._field = this.relevanceFieldAndWeight(); - } - } - this.state = 570; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 571; - this.match(OpenSearchPPLParser.RT_SQR_PRTHS); - this.state = 572; - this.match(OpenSearchPPLParser.COMMA); - this.state = 573; - _localctx._query = this.relevanceQuery(); - this.state = 578; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 574; - this.match(OpenSearchPPLParser.COMMA); - this.state = 575; - this.relevanceArg(); - } - } - this.state = 580; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 581; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public tableSource(): TableSourceContext { - let _localctx: TableSourceContext = new TableSourceContext(this._ctx, this.state); - this.enterRule(_localctx, 80, OpenSearchPPLParser.RULE_tableSource); - try { - this.state = 585; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 583; - this.qualifiedName(); - } - break; - case OpenSearchPPLParser.ID_DATE_SUFFIX: - this.enterOuterAlt(_localctx, 2); - { - this.state = 584; - this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fieldList(): FieldListContext { - let _localctx: FieldListContext = new FieldListContext(this._ctx, this.state); - this.enterRule(_localctx, 82, OpenSearchPPLParser.RULE_fieldList); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 587; - this.fieldExpression(); - this.state = 592; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 588; - this.match(OpenSearchPPLParser.COMMA); - this.state = 589; - this.fieldExpression(); - } - } - this.state = 594; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wcFieldList(): WcFieldListContext { - let _localctx: WcFieldListContext = new WcFieldListContext(this._ctx, this.state); - this.enterRule(_localctx, 84, OpenSearchPPLParser.RULE_wcFieldList); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 595; - this.wcFieldExpression(); - this.state = 600; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 596; - this.match(OpenSearchPPLParser.COMMA); - this.state = 597; - this.wcFieldExpression(); - } - } - this.state = 602; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortField(): SortFieldContext { - let _localctx: SortFieldContext = new SortFieldContext(this._ctx, this.state); - this.enterRule(_localctx, 86, OpenSearchPPLParser.RULE_sortField); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 604; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 603; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 606; - this.sortFieldExpression(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortFieldExpression(): SortFieldExpressionContext { - let _localctx: SortFieldExpressionContext = new SortFieldExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 88, OpenSearchPPLParser.RULE_sortFieldExpression); - try { - this.state = 629; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 608; - this.fieldExpression(); - } - break; - case OpenSearchPPLParser.AUTO: - this.enterOuterAlt(_localctx, 2); - { - this.state = 609; - this.match(OpenSearchPPLParser.AUTO); - this.state = 610; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 611; - this.fieldExpression(); - this.state = 612; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.STR: - this.enterOuterAlt(_localctx, 3); - { - this.state = 614; - this.match(OpenSearchPPLParser.STR); - this.state = 615; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 616; - this.fieldExpression(); - this.state = 617; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.IP: - this.enterOuterAlt(_localctx, 4); - { - this.state = 619; - this.match(OpenSearchPPLParser.IP); - this.state = 620; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 621; - this.fieldExpression(); - this.state = 622; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.NUM: - this.enterOuterAlt(_localctx, 5); - { - this.state = 624; - this.match(OpenSearchPPLParser.NUM); - this.state = 625; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 626; - this.fieldExpression(); - this.state = 627; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fieldExpression(): FieldExpressionContext { - let _localctx: FieldExpressionContext = new FieldExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 90, OpenSearchPPLParser.RULE_fieldExpression); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 631; - this.qualifiedName(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wcFieldExpression(): WcFieldExpressionContext { - let _localctx: WcFieldExpressionContext = new WcFieldExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 92, OpenSearchPPLParser.RULE_wcFieldExpression); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 633; - this.wcQualifiedName(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalFunctionCall(): EvalFunctionCallContext { - let _localctx: EvalFunctionCallContext = new EvalFunctionCallContext(this._ctx, this.state); - this.enterRule(_localctx, 94, OpenSearchPPLParser.RULE_evalFunctionCall); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 635; - this.evalFunctionName(); - this.state = 636; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 637; - this.functionArgs(); - this.state = 638; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public dataTypeFunctionCall(): DataTypeFunctionCallContext { - let _localctx: DataTypeFunctionCallContext = new DataTypeFunctionCallContext(this._ctx, this.state); - this.enterRule(_localctx, 96, OpenSearchPPLParser.RULE_dataTypeFunctionCall); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 640; - this.match(OpenSearchPPLParser.CAST); - this.state = 641; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 642; - this.expression(); - this.state = 643; - this.match(OpenSearchPPLParser.AS); - this.state = 644; - this.convertedDataType(); - this.state = 645; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public booleanFunctionCall(): BooleanFunctionCallContext { - let _localctx: BooleanFunctionCallContext = new BooleanFunctionCallContext(this._ctx, this.state); - this.enterRule(_localctx, 98, OpenSearchPPLParser.RULE_booleanFunctionCall); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 647; - this.conditionFunctionBase(); - this.state = 648; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 649; - this.functionArgs(); - this.state = 650; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public convertedDataType(): ConvertedDataTypeContext { - let _localctx: ConvertedDataTypeContext = new ConvertedDataTypeContext(this._ctx, this.state); - this.enterRule(_localctx, 100, OpenSearchPPLParser.RULE_convertedDataType); - try { - this.state = 662; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.DATE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 652; - _localctx._typeName = this.match(OpenSearchPPLParser.DATE); - } - break; - case OpenSearchPPLParser.TIME: - this.enterOuterAlt(_localctx, 2); - { - this.state = 653; - _localctx._typeName = this.match(OpenSearchPPLParser.TIME); - } - break; - case OpenSearchPPLParser.TIMESTAMP: - this.enterOuterAlt(_localctx, 3); - { - this.state = 654; - _localctx._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); - } - break; - case OpenSearchPPLParser.INT: - this.enterOuterAlt(_localctx, 4); - { - this.state = 655; - _localctx._typeName = this.match(OpenSearchPPLParser.INT); - } - break; - case OpenSearchPPLParser.INTEGER: - this.enterOuterAlt(_localctx, 5); - { - this.state = 656; - _localctx._typeName = this.match(OpenSearchPPLParser.INTEGER); - } - break; - case OpenSearchPPLParser.DOUBLE: - this.enterOuterAlt(_localctx, 6); - { - this.state = 657; - _localctx._typeName = this.match(OpenSearchPPLParser.DOUBLE); - } - break; - case OpenSearchPPLParser.LONG: - this.enterOuterAlt(_localctx, 7); - { - this.state = 658; - _localctx._typeName = this.match(OpenSearchPPLParser.LONG); - } - break; - case OpenSearchPPLParser.FLOAT: - this.enterOuterAlt(_localctx, 8); - { - this.state = 659; - _localctx._typeName = this.match(OpenSearchPPLParser.FLOAT); - } - break; - case OpenSearchPPLParser.STRING: - this.enterOuterAlt(_localctx, 9); - { - this.state = 660; - _localctx._typeName = this.match(OpenSearchPPLParser.STRING); - } - break; - case OpenSearchPPLParser.BOOLEAN: - this.enterOuterAlt(_localctx, 10); - { - this.state = 661; - _localctx._typeName = this.match(OpenSearchPPLParser.BOOLEAN); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalFunctionName(): EvalFunctionNameContext { - let _localctx: EvalFunctionNameContext = new EvalFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 102, OpenSearchPPLParser.RULE_evalFunctionName); - try { - this.state = 668; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.ABS: - case OpenSearchPPLParser.CEIL: - case OpenSearchPPLParser.CEILING: - case OpenSearchPPLParser.CONV: - case OpenSearchPPLParser.CRC32: - case OpenSearchPPLParser.E: - case OpenSearchPPLParser.EXP: - case OpenSearchPPLParser.FLOOR: - case OpenSearchPPLParser.LN: - case OpenSearchPPLParser.LOG: - case OpenSearchPPLParser.LOG10: - case OpenSearchPPLParser.LOG2: - case OpenSearchPPLParser.MOD: - case OpenSearchPPLParser.PI: - case OpenSearchPPLParser.POW: - case OpenSearchPPLParser.POWER: - case OpenSearchPPLParser.RAND: - case OpenSearchPPLParser.ROUND: - case OpenSearchPPLParser.SIGN: - case OpenSearchPPLParser.SQRT: - case OpenSearchPPLParser.TRUNCATE: - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - this.enterOuterAlt(_localctx, 1); - { - this.state = 664; - this.mathematicalFunctionBase(); - } - break; - case OpenSearchPPLParser.MICROSECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.ADDDATE: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.DATE_ADD: - case OpenSearchPPLParser.DATE_SUB: - case OpenSearchPPLParser.DAYOFMONTH: - case OpenSearchPPLParser.DAYOFWEEK: - case OpenSearchPPLParser.DAYOFYEAR: - case OpenSearchPPLParser.DAYNAME: - case OpenSearchPPLParser.FROM_DAYS: - case OpenSearchPPLParser.MONTHNAME: - case OpenSearchPPLParser.SUBDATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIME_TO_SEC: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.DATE_FORMAT: - case OpenSearchPPLParser.TO_DAYS: - this.enterOuterAlt(_localctx, 2); - { - this.state = 665; - this.dateAndTimeFunctionBase(); - } - break; - case OpenSearchPPLParser.SUBSTR: - case OpenSearchPPLParser.SUBSTRING: - case OpenSearchPPLParser.LTRIM: - case OpenSearchPPLParser.RTRIM: - case OpenSearchPPLParser.TRIM: - case OpenSearchPPLParser.LOWER: - case OpenSearchPPLParser.UPPER: - case OpenSearchPPLParser.CONCAT: - case OpenSearchPPLParser.CONCAT_WS: - case OpenSearchPPLParser.LENGTH: - case OpenSearchPPLParser.STRCMP: - case OpenSearchPPLParser.RIGHT: - case OpenSearchPPLParser.LEFT: - case OpenSearchPPLParser.ASCII: - case OpenSearchPPLParser.LOCATE: - case OpenSearchPPLParser.REPLACE: - this.enterOuterAlt(_localctx, 3); - { - this.state = 666; - this.textFunctionBase(); - } - break; - case OpenSearchPPLParser.LIKE: - case OpenSearchPPLParser.ISNULL: - case OpenSearchPPLParser.ISNOTNULL: - case OpenSearchPPLParser.IFNULL: - case OpenSearchPPLParser.NULLIF: - case OpenSearchPPLParser.IF: - this.enterOuterAlt(_localctx, 4); - { - this.state = 667; - this.conditionFunctionBase(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public functionArgs(): FunctionArgsContext { - let _localctx: FunctionArgsContext = new FunctionArgsContext(this._ctx, this.state); - this.enterRule(_localctx, 104, OpenSearchPPLParser.RULE_functionArgs); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 678; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.D || ((((_la - 52)) & ~0x1F) === 0 && ((1 << (_la - 52)) & ((1 << (OpenSearchPPLParser.TRUE - 52)) | (1 << (OpenSearchPPLParser.FALSE - 52)) | (1 << (OpenSearchPPLParser.INTERVAL - 52)) | (1 << (OpenSearchPPLParser.MICROSECOND - 52)) | (1 << (OpenSearchPPLParser.MILLISECOND - 52)) | (1 << (OpenSearchPPLParser.SECOND - 52)) | (1 << (OpenSearchPPLParser.MINUTE - 52)) | (1 << (OpenSearchPPLParser.HOUR - 52)) | (1 << (OpenSearchPPLParser.DAY - 52)) | (1 << (OpenSearchPPLParser.WEEK - 52)) | (1 << (OpenSearchPPLParser.MONTH - 52)) | (1 << (OpenSearchPPLParser.QUARTER - 52)) | (1 << (OpenSearchPPLParser.YEAR - 52)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { - { - this.state = 670; - this.functionArg(); - this.state = 675; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 671; - this.match(OpenSearchPPLParser.COMMA); - this.state = 672; - this.functionArg(); - } - } - this.state = 677; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public functionArg(): FunctionArgContext { - let _localctx: FunctionArgContext = new FunctionArgContext(this._ctx, this.state); - this.enterRule(_localctx, 106, OpenSearchPPLParser.RULE_functionArg); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 680; - this.valueExpression(0); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceArg(): RelevanceArgContext { - let _localctx: RelevanceArgContext = new RelevanceArgContext(this._ctx, this.state); - this.enterRule(_localctx, 108, OpenSearchPPLParser.RULE_relevanceArg); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 682; - this.relevanceArgName(); - this.state = 683; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 684; - this.relevanceArgValue(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceArgName(): RelevanceArgNameContext { - let _localctx: RelevanceArgNameContext = new RelevanceArgNameContext(this._ctx, this.state); - this.enterRule(_localctx, 110, OpenSearchPPLParser.RULE_relevanceArgName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 686; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.FIELDS || _la === OpenSearchPPLParser.TIME_ZONE || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & ((1 << (OpenSearchPPLParser.ALLOW_LEADING_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZE_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZER - 224)) | (1 << (OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1 << (OpenSearchPPLParser.BOOST - 224)) | (1 << (OpenSearchPPLParser.CUTOFF_FREQUENCY - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_FIELD - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS - 224)) | (1 << (OpenSearchPPLParser.FLAGS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.FUZZY_TRANSPOSITIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_REWRITE - 224)) | (1 << (OpenSearchPPLParser.FUZZINESS - 224)) | (1 << (OpenSearchPPLParser.LENIENT - 224)) | (1 << (OpenSearchPPLParser.LOW_FREQ_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.MAX_DETERMINIZED_STATES - 224)) | (1 << (OpenSearchPPLParser.MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.MINIMUM_SHOULD_MATCH - 224)) | (1 << (OpenSearchPPLParser.OPERATOR - 224)) | (1 << (OpenSearchPPLParser.PHRASE_SLOP - 224)) | (1 << (OpenSearchPPLParser.PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.QUOTE_ANALYZER - 224)) | (1 << (OpenSearchPPLParser.QUOTE_FIELD_SUFFIX - 224)) | (1 << (OpenSearchPPLParser.REWRITE - 224)) | (1 << (OpenSearchPPLParser.SLOP - 224)) | (1 << (OpenSearchPPLParser.TIE_BREAKER - 224)) | (1 << (OpenSearchPPLParser.TYPE - 224)) | (1 << (OpenSearchPPLParser.ZERO_TERMS_QUERY - 224)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext { - let _localctx: RelevanceFieldAndWeightContext = new RelevanceFieldAndWeightContext(this._ctx, this.state); - this.enterRule(_localctx, 112, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); - try { - this.state = 696; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 59, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 688; - _localctx._field = this.relevanceField(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 689; - _localctx._field = this.relevanceField(); - this.state = 690; - _localctx._weight = this.relevanceFieldWeight(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 692; - _localctx._field = this.relevanceField(); - this.state = 693; - this.match(OpenSearchPPLParser.BIT_XOR_OP); - this.state = 694; - _localctx._weight = this.relevanceFieldWeight(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceFieldWeight(): RelevanceFieldWeightContext { - let _localctx: RelevanceFieldWeightContext = new RelevanceFieldWeightContext(this._ctx, this.state); - this.enterRule(_localctx, 114, OpenSearchPPLParser.RULE_relevanceFieldWeight); - try { - this.state = 700; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 60, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 698; - this.integerLiteral(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 699; - this.decimalLiteral(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceField(): RelevanceFieldContext { - let _localctx: RelevanceFieldContext = new RelevanceFieldContext(this._ctx, this.state); - this.enterRule(_localctx, 116, OpenSearchPPLParser.RULE_relevanceField); - try { - this.state = 704; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 702; - this.qualifiedName(); - } - break; - case OpenSearchPPLParser.DQUOTA_STRING: - case OpenSearchPPLParser.SQUOTA_STRING: - this.enterOuterAlt(_localctx, 2); - { - this.state = 703; - this.stringLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceQuery(): RelevanceQueryContext { - let _localctx: RelevanceQueryContext = new RelevanceQueryContext(this._ctx, this.state); - this.enterRule(_localctx, 118, OpenSearchPPLParser.RULE_relevanceQuery); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 706; - this.relevanceArgValue(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceArgValue(): RelevanceArgValueContext { - let _localctx: RelevanceArgValueContext = new RelevanceArgValueContext(this._ctx, this.state); - this.enterRule(_localctx, 120, OpenSearchPPLParser.RULE_relevanceArgValue); - try { - this.state = 710; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 708; - this.qualifiedName(); - } - break; - case OpenSearchPPLParser.TRUE: - case OpenSearchPPLParser.FALSE: - case OpenSearchPPLParser.INTERVAL: - case OpenSearchPPLParser.PLUS: - case OpenSearchPPLParser.MINUS: - case OpenSearchPPLParser.INTEGER_LITERAL: - case OpenSearchPPLParser.DECIMAL_LITERAL: - case OpenSearchPPLParser.DQUOTA_STRING: - case OpenSearchPPLParser.SQUOTA_STRING: - this.enterOuterAlt(_localctx, 2); - { - this.state = 709; - this.literalValue(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public mathematicalFunctionBase(): MathematicalFunctionBaseContext { - let _localctx: MathematicalFunctionBaseContext = new MathematicalFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 122, OpenSearchPPLParser.RULE_mathematicalFunctionBase); - try { - this.state = 734; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.ABS: - this.enterOuterAlt(_localctx, 1); - { - this.state = 712; - this.match(OpenSearchPPLParser.ABS); - } - break; - case OpenSearchPPLParser.CEIL: - this.enterOuterAlt(_localctx, 2); - { - this.state = 713; - this.match(OpenSearchPPLParser.CEIL); - } - break; - case OpenSearchPPLParser.CEILING: - this.enterOuterAlt(_localctx, 3); - { - this.state = 714; - this.match(OpenSearchPPLParser.CEILING); - } - break; - case OpenSearchPPLParser.CONV: - this.enterOuterAlt(_localctx, 4); - { - this.state = 715; - this.match(OpenSearchPPLParser.CONV); - } - break; - case OpenSearchPPLParser.CRC32: - this.enterOuterAlt(_localctx, 5); - { - this.state = 716; - this.match(OpenSearchPPLParser.CRC32); - } - break; - case OpenSearchPPLParser.E: - this.enterOuterAlt(_localctx, 6); - { - this.state = 717; - this.match(OpenSearchPPLParser.E); - } - break; - case OpenSearchPPLParser.EXP: - this.enterOuterAlt(_localctx, 7); - { - this.state = 718; - this.match(OpenSearchPPLParser.EXP); - } - break; - case OpenSearchPPLParser.FLOOR: - this.enterOuterAlt(_localctx, 8); - { - this.state = 719; - this.match(OpenSearchPPLParser.FLOOR); - } - break; - case OpenSearchPPLParser.LN: - this.enterOuterAlt(_localctx, 9); - { - this.state = 720; - this.match(OpenSearchPPLParser.LN); - } - break; - case OpenSearchPPLParser.LOG: - this.enterOuterAlt(_localctx, 10); - { - this.state = 721; - this.match(OpenSearchPPLParser.LOG); - } - break; - case OpenSearchPPLParser.LOG10: - this.enterOuterAlt(_localctx, 11); - { - this.state = 722; - this.match(OpenSearchPPLParser.LOG10); - } - break; - case OpenSearchPPLParser.LOG2: - this.enterOuterAlt(_localctx, 12); - { - this.state = 723; - this.match(OpenSearchPPLParser.LOG2); - } - break; - case OpenSearchPPLParser.MOD: - this.enterOuterAlt(_localctx, 13); - { - this.state = 724; - this.match(OpenSearchPPLParser.MOD); - } - break; - case OpenSearchPPLParser.PI: - this.enterOuterAlt(_localctx, 14); - { - this.state = 725; - this.match(OpenSearchPPLParser.PI); - } - break; - case OpenSearchPPLParser.POW: - this.enterOuterAlt(_localctx, 15); - { - this.state = 726; - this.match(OpenSearchPPLParser.POW); - } - break; - case OpenSearchPPLParser.POWER: - this.enterOuterAlt(_localctx, 16); - { - this.state = 727; - this.match(OpenSearchPPLParser.POWER); - } - break; - case OpenSearchPPLParser.RAND: - this.enterOuterAlt(_localctx, 17); - { - this.state = 728; - this.match(OpenSearchPPLParser.RAND); - } - break; - case OpenSearchPPLParser.ROUND: - this.enterOuterAlt(_localctx, 18); - { - this.state = 729; - this.match(OpenSearchPPLParser.ROUND); - } - break; - case OpenSearchPPLParser.SIGN: - this.enterOuterAlt(_localctx, 19); - { - this.state = 730; - this.match(OpenSearchPPLParser.SIGN); - } - break; - case OpenSearchPPLParser.SQRT: - this.enterOuterAlt(_localctx, 20); - { - this.state = 731; - this.match(OpenSearchPPLParser.SQRT); - } - break; - case OpenSearchPPLParser.TRUNCATE: - this.enterOuterAlt(_localctx, 21); - { - this.state = 732; - this.match(OpenSearchPPLParser.TRUNCATE); - } - break; - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - this.enterOuterAlt(_localctx, 22); - { - this.state = 733; - this.trigonometricFunctionName(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public trigonometricFunctionName(): TrigonometricFunctionNameContext { - let _localctx: TrigonometricFunctionNameContext = new TrigonometricFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 124, OpenSearchPPLParser.RULE_trigonometricFunctionName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 736; - _la = this._input.LA(1); - if (!(((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & ((1 << (OpenSearchPPLParser.ACOS - 171)) | (1 << (OpenSearchPPLParser.ASIN - 171)) | (1 << (OpenSearchPPLParser.ATAN - 171)) | (1 << (OpenSearchPPLParser.ATAN2 - 171)) | (1 << (OpenSearchPPLParser.COS - 171)) | (1 << (OpenSearchPPLParser.COT - 171)) | (1 << (OpenSearchPPLParser.DEGREES - 171)) | (1 << (OpenSearchPPLParser.RADIANS - 171)) | (1 << (OpenSearchPPLParser.SIN - 171)) | (1 << (OpenSearchPPLParser.TAN - 171)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext { - let _localctx: DateAndTimeFunctionBaseContext = new DateAndTimeFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 126, OpenSearchPPLParser.RULE_dateAndTimeFunctionBase); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 738; - _la = this._input.LA(1); - if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)))) !== 0) || ((((_la - 181)) & ~0x1F) === 0 && ((1 << (_la - 181)) & ((1 << (OpenSearchPPLParser.ADDDATE - 181)) | (1 << (OpenSearchPPLParser.DATE - 181)) | (1 << (OpenSearchPPLParser.DATE_ADD - 181)) | (1 << (OpenSearchPPLParser.DATE_SUB - 181)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 181)) | (1 << (OpenSearchPPLParser.DAYOFWEEK - 181)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 181)) | (1 << (OpenSearchPPLParser.DAYNAME - 181)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 181)) | (1 << (OpenSearchPPLParser.MONTHNAME - 181)) | (1 << (OpenSearchPPLParser.SUBDATE - 181)) | (1 << (OpenSearchPPLParser.TIME - 181)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 181)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 181)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 181)) | (1 << (OpenSearchPPLParser.TO_DAYS - 181)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public conditionFunctionBase(): ConditionFunctionBaseContext { - let _localctx: ConditionFunctionBaseContext = new ConditionFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 128, OpenSearchPPLParser.RULE_conditionFunctionBase); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 740; - _la = this._input.LA(1); - if (!(((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & ((1 << (OpenSearchPPLParser.LIKE - 215)) | (1 << (OpenSearchPPLParser.ISNULL - 215)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 215)) | (1 << (OpenSearchPPLParser.IFNULL - 215)) | (1 << (OpenSearchPPLParser.NULLIF - 215)) | (1 << (OpenSearchPPLParser.IF - 215)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public textFunctionBase(): TextFunctionBaseContext { - let _localctx: TextFunctionBaseContext = new TextFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 130, OpenSearchPPLParser.RULE_textFunctionBase); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 742; - _la = this._input.LA(1); - if (!(((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & ((1 << (OpenSearchPPLParser.SUBSTR - 197)) | (1 << (OpenSearchPPLParser.SUBSTRING - 197)) | (1 << (OpenSearchPPLParser.LTRIM - 197)) | (1 << (OpenSearchPPLParser.RTRIM - 197)) | (1 << (OpenSearchPPLParser.TRIM - 197)) | (1 << (OpenSearchPPLParser.LOWER - 197)) | (1 << (OpenSearchPPLParser.UPPER - 197)) | (1 << (OpenSearchPPLParser.CONCAT - 197)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 197)) | (1 << (OpenSearchPPLParser.LENGTH - 197)) | (1 << (OpenSearchPPLParser.STRCMP - 197)) | (1 << (OpenSearchPPLParser.RIGHT - 197)) | (1 << (OpenSearchPPLParser.LEFT - 197)) | (1 << (OpenSearchPPLParser.ASCII - 197)) | (1 << (OpenSearchPPLParser.LOCATE - 197)) | (1 << (OpenSearchPPLParser.REPLACE - 197)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public comparisonOperator(): ComparisonOperatorContext { - let _localctx: ComparisonOperatorContext = new ComparisonOperatorContext(this._ctx, this.state); - this.enterRule(_localctx, 132, OpenSearchPPLParser.RULE_comparisonOperator); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 744; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.REGEXP || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & ((1 << (OpenSearchPPLParser.EQUAL - 91)) | (1 << (OpenSearchPPLParser.GREATER - 91)) | (1 << (OpenSearchPPLParser.LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_GREATER - 91)) | (1 << (OpenSearchPPLParser.NOT_LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_EQUAL - 91)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public binaryOperator(): BinaryOperatorContext { - let _localctx: BinaryOperatorContext = new BinaryOperatorContext(this._ctx, this.state); - this.enterRule(_localctx, 134, OpenSearchPPLParser.RULE_binaryOperator); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 746; - _la = this._input.LA(1); - if (!(((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & ((1 << (OpenSearchPPLParser.PLUS - 97)) | (1 << (OpenSearchPPLParser.MINUS - 97)) | (1 << (OpenSearchPPLParser.STAR - 97)) | (1 << (OpenSearchPPLParser.DIVIDE - 97)) | (1 << (OpenSearchPPLParser.MODULE - 97)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { - let _localctx: SingleFieldRelevanceFunctionNameContext = new SingleFieldRelevanceFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 136, OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 748; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.MATCH || _la === OpenSearchPPLParser.MATCH_PHRASE)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { - let _localctx: MultiFieldRelevanceFunctionNameContext = new MultiFieldRelevanceFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 138, OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 750; - this.match(OpenSearchPPLParser.SIMPLE_QUERY_STRING); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public literalValue(): LiteralValueContext { - let _localctx: LiteralValueContext = new LiteralValueContext(this._ctx, this.state); - this.enterRule(_localctx, 140, OpenSearchPPLParser.RULE_literalValue); - try { - this.state = 757; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 64, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 752; - this.intervalLiteral(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 753; - this.stringLiteral(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 754; - this.integerLiteral(); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 755; - this.decimalLiteral(); - } - break; - - case 5: - this.enterOuterAlt(_localctx, 5); - { - this.state = 756; - this.booleanLiteral(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public intervalLiteral(): IntervalLiteralContext { - let _localctx: IntervalLiteralContext = new IntervalLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 142, OpenSearchPPLParser.RULE_intervalLiteral); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 759; - this.match(OpenSearchPPLParser.INTERVAL); - this.state = 760; - this.valueExpression(0); - this.state = 761; - this.intervalUnit(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public stringLiteral(): StringLiteralContext { - let _localctx: StringLiteralContext = new StringLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 144, OpenSearchPPLParser.RULE_stringLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 763; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.DQUOTA_STRING || _la === OpenSearchPPLParser.SQUOTA_STRING)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public integerLiteral(): IntegerLiteralContext { - let _localctx: IntegerLiteralContext = new IntegerLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 146, OpenSearchPPLParser.RULE_integerLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 766; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 765; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 768; - this.match(OpenSearchPPLParser.INTEGER_LITERAL); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public decimalLiteral(): DecimalLiteralContext { - let _localctx: DecimalLiteralContext = new DecimalLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 148, OpenSearchPPLParser.RULE_decimalLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 771; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 770; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 773; - this.match(OpenSearchPPLParser.DECIMAL_LITERAL); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public booleanLiteral(): BooleanLiteralContext { - let _localctx: BooleanLiteralContext = new BooleanLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 150, OpenSearchPPLParser.RULE_booleanLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 775; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.TRUE || _la === OpenSearchPPLParser.FALSE)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public pattern(): PatternContext { - let _localctx: PatternContext = new PatternContext(this._ctx, this.state); - this.enterRule(_localctx, 152, OpenSearchPPLParser.RULE_pattern); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 777; - this.stringLiteral(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public intervalUnit(): IntervalUnitContext { - let _localctx: IntervalUnitContext = new IntervalUnitContext(this._ctx, this.state); - this.enterRule(_localctx, 154, OpenSearchPPLParser.RULE_intervalUnit); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 779; - _la = this._input.LA(1); - if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)) | (1 << (OpenSearchPPLParser.SECOND_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_SECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_HOUR - 57)) | (1 << (OpenSearchPPLParser.YEAR_MONTH - 57)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public timespanUnit(): TimespanUnitContext { - let _localctx: TimespanUnitContext = new TimespanUnitContext(this._ctx, this.state); - this.enterRule(_localctx, 156, OpenSearchPPLParser.RULE_timespanUnit); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 781; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public valueList(): ValueListContext { - let _localctx: ValueListContext = new ValueListContext(this._ctx, this.state); - this.enterRule(_localctx, 158, OpenSearchPPLParser.RULE_valueList); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 783; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 784; - this.literalValue(); - this.state = 789; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 785; - this.match(OpenSearchPPLParser.COMMA); - this.state = 786; - this.literalValue(); - } - } - this.state = 791; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 792; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public qualifiedName(): QualifiedNameContext { - let _localctx: QualifiedNameContext = new QualifiedNameContext(this._ctx, this.state); - this.enterRule(_localctx, 160, OpenSearchPPLParser.RULE_qualifiedName); - try { - let _alt: number; - _localctx = new IdentsAsQualifiedNameContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 794; - this.ident(); - this.state = 799; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - { - { - this.state = 795; - this.match(OpenSearchPPLParser.DOT); - this.state = 796; - this.ident(); - } - } - } - this.state = 801; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wcQualifiedName(): WcQualifiedNameContext { - let _localctx: WcQualifiedNameContext = new WcQualifiedNameContext(this._ctx, this.state); - this.enterRule(_localctx, 162, OpenSearchPPLParser.RULE_wcQualifiedName); - let _la: number; - try { - _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 802; - this.wildcard(); - this.state = 807; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.DOT) { - { - { - this.state = 803; - this.match(OpenSearchPPLParser.DOT); - this.state = 804; - this.wildcard(); - } - } - this.state = 809; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public ident(): IdentContext { - let _localctx: IdentContext = new IdentContext(this._ctx, this.state); - this.enterRule(_localctx, 164, OpenSearchPPLParser.RULE_ident); - let _la: number; - try { - this.state = 820; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.ID: - this.enterOuterAlt(_localctx, 1); - { - this.state = 811; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.DOT) { - { - this.state = 810; - this.match(OpenSearchPPLParser.DOT); - } - } - - this.state = 813; - this.match(OpenSearchPPLParser.ID); - } - break; - case OpenSearchPPLParser.BACKTICK: - this.enterOuterAlt(_localctx, 2); - { - this.state = 814; - this.match(OpenSearchPPLParser.BACKTICK); - this.state = 815; - this.ident(); - this.state = 816; - this.match(OpenSearchPPLParser.BACKTICK); - } - break; - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 3); - { - this.state = 818; - this.match(OpenSearchPPLParser.BQUOTA_STRING); - } - break; - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - this.enterOuterAlt(_localctx, 4); - { - this.state = 819; - this.keywordsCanBeId(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wildcard(): WildcardContext { - let _localctx: WildcardContext = new WildcardContext(this._ctx, this.state); - this.enterRule(_localctx, 166, OpenSearchPPLParser.RULE_wildcard); - let _la: number; - try { - let _alt: number; - this.state = 845; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 74, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 822; - this.ident(); - this.state = 827; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - { - { - this.state = 823; - this.match(OpenSearchPPLParser.MODULE); - this.state = 824; - this.ident(); - } - } - } - this.state = 829; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); - } - this.state = 831; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.MODULE) { - { - this.state = 830; - this.match(OpenSearchPPLParser.MODULE); - } - } - - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 833; - this.match(OpenSearchPPLParser.SINGLE_QUOTE); - this.state = 834; - this.wildcard(); - this.state = 835; - this.match(OpenSearchPPLParser.SINGLE_QUOTE); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 837; - this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - this.state = 838; - this.wildcard(); - this.state = 839; - this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 841; - this.match(OpenSearchPPLParser.BACKTICK); - this.state = 842; - this.wildcard(); - this.state = 843; - this.match(OpenSearchPPLParser.BACKTICK); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public keywordsCanBeId(): KeywordsCanBeIdContext { - let _localctx: KeywordsCanBeIdContext = new KeywordsCanBeIdContext(this._ctx, this.state); - this.enterRule(_localctx, 168, OpenSearchPPLParser.RULE_keywordsCanBeId); - try { - this.state = 856; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 75, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 847; - this.match(OpenSearchPPLParser.D); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 848; - this.statsFunctionName(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 849; - this.match(OpenSearchPPLParser.TIMESTAMP); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 850; - this.match(OpenSearchPPLParser.DATE); - } - break; - - case 5: - this.enterOuterAlt(_localctx, 5); - { - this.state = 851; - this.match(OpenSearchPPLParser.TIME); - } - break; - - case 6: - this.enterOuterAlt(_localctx, 6); - { - this.state = 852; - this.match(OpenSearchPPLParser.FIRST); - } - break; - - case 7: - this.enterOuterAlt(_localctx, 7); - { - this.state = 853; - this.match(OpenSearchPPLParser.LAST); - } - break; - - case 8: - this.enterOuterAlt(_localctx, 8); - { - this.state = 854; - this.timespanUnit(); - } - break; - - case 9: - this.enterOuterAlt(_localctx, 9); - { - this.state = 855; - this.match(OpenSearchPPLParser.SPAN); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - - public sempred(_localctx: RuleContext, ruleIndex: number, predIndex: number): boolean { - switch (ruleIndex) { - case 32: - return this.logicalExpression_sempred(_localctx as LogicalExpressionContext, predIndex); - - case 34: - return this.valueExpression_sempred(_localctx as ValueExpressionContext, predIndex); - } - return true; - } - private logicalExpression_sempred(_localctx: LogicalExpressionContext, predIndex: number): boolean { - switch (predIndex) { - case 0: - return this.precpred(this._ctx, 5); - - case 1: - return this.precpred(this._ctx, 4); - - case 2: - return this.precpred(this._ctx, 3); - } - return true; - } - private valueExpression_sempred(_localctx: ValueExpressionContext, predIndex: number): boolean { - switch (predIndex) { - case 3: - return this.precpred(this._ctx, 3); - } - return true; - } - - private static readonly _serializedATNSegments: number = 2; - private static readonly _serializedATNSegment0: string = - "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\u010F\u035D\x04" + - "\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04" + - "\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r" + - "\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12" + - "\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t\x17" + - "\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t\x1C" + - "\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"\t\"\x04" + - "#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t*\x04+\t" + - "+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x043\t3\x04" + - "4\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04<\t<\x04" + - "=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04E\tE\x04" + - "F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04N\tN\x04" + - "O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x03\x02\x05" + - "\x02\xAE\n\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x07\x03\xB5\n\x03" + - "\f\x03\x0E\x03\xB8\v\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" + - "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x05\x04\xC7\n" + - "\x04\x03\x05\x05\x05\xCA\n\x05\x03\x05\x03\x05\x05\x05\xCE\n\x05\x03\x05" + - "\x03\x05\x03\x05\x03\x05\x05\x05\xD4\n\x05\x03\x05\x03\x05\x03\x05\x05" + - "\x05\xD9\n\x05\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x05\x07\xE0\n\x07" + - "\x03\x07\x03\x07\x03\b\x03\b\x03\b\x03\b\x07\b\xE8\n\b\f\b\x0E\b\xEB\v" + - "\b\x03\t\x03\t\x03\t\x03\t\x05\t\xF1\n\t\x03\t\x03\t\x03\t\x05\t\xF6\n" + - "\t\x03\t\x03\t\x03\t\x05\t\xFB\n\t\x03\t\x03\t\x03\t\x07\t\u0100\n\t\f" + - "\t\x0E\t\u0103\v\t\x03\t\x05\t\u0106\n\t\x03\t\x03\t\x03\t\x05\t\u010B" + - "\n\t\x03\n\x03\n\x05\n\u010F\n\n\x03\n\x03\n\x03\n\x03\n\x05\n\u0115\n" + - "\n\x03\n\x03\n\x03\n\x05\n\u011A\n\n\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + - "\f\x03\f\x07\f\u0123\n\f\f\f\x0E\f\u0126\v\f\x03\r\x03\r\x05\r\u012A\n" + - "\r\x03\r\x03\r\x05\r\u012E\n\r\x03\x0E\x03\x0E\x05\x0E\u0132\n\x0E\x03" + - "\x0E\x03\x0E\x05\x0E\u0136\n\x0E\x03\x0F\x03\x0F\x03\x0F\x05\x0F\u013B" + - "\n\x0F\x03\x10\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x07\x11\u0143\n" + - "\x11\f\x11\x0E\x11\u0146\v\x11\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12" + - "\x03\x12\x03\x12\x03\x12\x03\x12\x05\x12\u0151\n\x12\x03\x13\x03\x13\x07" + - "\x13\u0155\n\x13\f\x13\x0E\x13\u0158\v\x13\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x05\x14\u017B\n\x14\x03\x15\x03\x15\x03\x15\x03\x15" + - "\x03\x15\x07\x15\u0182\n\x15\f\x15\x0E\x15\u0185\v\x15\x03\x15\x03\x15" + - "\x03\x15\x03\x15\x03\x15\x07\x15\u018C\n\x15\f\x15\x0E\x15\u018F\v\x15" + - "\x05\x15\u0191\n\x15\x03\x16\x03\x16\x03\x16\x03\x16\x03\x17\x03\x17\x03" + - "\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" + - "\x18\x05\x18\u01A3\n\x18\x03\x19\x03\x19\x03\x19\x05\x19\u01A8\n\x19\x03" + - "\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x05\x1A\u01B0\n\x1A\x03\x1A" + - "\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x07\x1B\u01B7\n\x1B\f\x1B\x0E\x1B\u01BA" + - "\v\x1B\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D\x03\x1D\x03\x1D\x05\x1D" + - "\u01C3\n\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03" + - "\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x05\x1E\u01D3\n\x1E" + - "\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03!\x03!\x03" + - "!\x05!\u01E2\n!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01EA\n\"\x03" + - "\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01F1\n\"\x03\"\x03\"\x03\"\x03\"\x07" + - "\"\u01F7\n\"\f\"\x0E\"\u01FA\v\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03" + - "#\x05#\u0204\n#\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x05$\u020E\n$" + - "\x03$\x03$\x03$\x03$\x07$\u0214\n$\f$\x0E$\u0217\v$\x03%\x03%\x03%\x03" + - "%\x05%\u021D\n%\x03&\x03&\x03\'\x03\'\x05\'\u0223\n\'\x03(\x03(\x03(\x03" + - "(\x03(\x03(\x03(\x07(\u022C\n(\f(\x0E(\u022F\v(\x03(\x03(\x03)\x03)\x03" + - ")\x03)\x03)\x03)\x07)\u0239\n)\f)\x0E)\u023C\v)\x03)\x03)\x03)\x03)\x03" + - ")\x07)\u0243\n)\f)\x0E)\u0246\v)\x03)\x03)\x03*\x03*\x05*\u024C\n*\x03" + - "+\x03+\x03+\x07+\u0251\n+\f+\x0E+\u0254\v+\x03,\x03,\x03,\x07,\u0259\n" + - ",\f,\x0E,\u025C\v,\x03-\x05-\u025F\n-\x03-\x03-\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x05.\u0278\n.\x03/\x03/\x030\x030\x031\x031\x031\x031\x03" + - "1\x032\x032\x032\x032\x032\x032\x032\x033\x033\x033\x033\x033\x034\x03" + - "4\x034\x034\x034\x034\x034\x034\x034\x034\x054\u0299\n4\x035\x035\x03" + - "5\x035\x055\u029F\n5\x036\x036\x036\x076\u02A4\n6\f6\x0E6\u02A7\v6\x05" + - "6\u02A9\n6\x037\x037\x038\x038\x038\x038\x039\x039\x03:\x03:\x03:\x03" + - ":\x03:\x03:\x03:\x03:\x05:\u02BB\n:\x03;\x03;\x05;\u02BF\n;\x03<\x03<" + - "\x05<\u02C3\n<\x03=\x03=\x03>\x03>\x05>\u02C9\n>\x03?\x03?\x03?\x03?\x03" + - "?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03" + - "?\x03?\x03?\x03?\x05?\u02E1\n?\x03@\x03@\x03A\x03A\x03B\x03B\x03C\x03" + - "C\x03D\x03D\x03E\x03E\x03F\x03F\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x05" + - "H\u02F8\nH\x03I\x03I\x03I\x03I\x03J\x03J\x03K\x05K\u0301\nK\x03K\x03K" + - "\x03L\x05L\u0306\nL\x03L\x03L\x03M\x03M\x03N\x03N\x03O\x03O\x03P\x03P" + - "\x03Q\x03Q\x03Q\x03Q\x07Q\u0316\nQ\fQ\x0EQ\u0319\vQ\x03Q\x03Q\x03R\x03" + - "R\x03R\x07R\u0320\nR\fR\x0ER\u0323\vR\x03S\x03S\x03S\x07S\u0328\nS\fS" + - "\x0ES\u032B\vS\x03T\x05T\u032E\nT\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x05" + - "T\u0337\nT\x03U\x03U\x03U\x07U\u033C\nU\fU\x0EU\u033F\vU\x03U\x05U\u0342" + - "\nU\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x05U\u0350" + - "\nU\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x05V\u035B\nV\x03V\x02" + - "\x02\x04BFW\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E\x02\x10\x02" + - "\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02 \x02\"\x02$\x02" + - "&\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02<\x02>\x02@\x02" + - "B\x02D\x02F\x02H\x02J\x02L\x02N\x02P\x02R\x02T\x02V\x02X\x02Z\x02\\\x02" + - "^\x02`\x02b\x02d\x02f\x02h\x02j\x02l\x02n\x02p\x02r\x02t\x02v\x02x\x02" + - "z\x02|\x02~\x02\x80\x02\x82\x02\x84\x02\x86\x02\x88\x02\x8A\x02\x8C\x02" + - "\x8E\x02\x90\x02\x92\x02\x94\x02\x96\x02\x98\x02\x9A\x02\x9C\x02\x9E\x02" + - "\xA0\x02\xA2\x02\xA4\x02\xA6\x02\xA8\x02\xAA\x02\x02\x11\x03\x02cd\x04" + - "\x02vv\x97\x97\x07\x02tuyy||\x81\x81\x83\x86\x05\x02\x06\x06--\xE2\xFF" + - "\x03\x02\xAD\xB6\x05\x02;;=D\xB7\xC6\x03\x02\xD9\xDE\x04\x02\xC7\xCB\xCD" + - "\xD7\x04\x0288]b\x03\x02cg\x03\x02\xDF\xE0\x03\x02\u010C\u010D\x03\x02" + - "67\x04\x02;;=O\x05\x02\x16\x16\u01D6\x03\x02\x02\x02@\u01E1\x03\x02\x02\x02B\u01E9\x03\x02\x02\x02" + - "D\u0203\x03\x02\x02\x02F\u020D\x03\x02\x02\x02H\u021C\x03\x02\x02\x02" + - "J\u021E\x03\x02\x02\x02L\u0222\x03\x02\x02\x02N\u0224\x03\x02\x02\x02" + - "P\u0232\x03\x02\x02\x02R\u024B\x03\x02\x02\x02T\u024D\x03\x02\x02\x02" + - "V\u0255\x03\x02\x02\x02X\u025E\x03\x02\x02\x02Z\u0277\x03\x02\x02\x02" + - "\\\u0279\x03\x02\x02\x02^\u027B\x03\x02\x02\x02`\u027D\x03\x02\x02\x02" + - "b\u0282\x03\x02\x02\x02d\u0289\x03\x02\x02\x02f\u0298\x03\x02\x02\x02" + - "h\u029E\x03\x02\x02\x02j\u02A8\x03\x02\x02\x02l\u02AA\x03\x02\x02\x02" + - "n\u02AC\x03\x02\x02\x02p\u02B0\x03\x02\x02\x02r\u02BA\x03\x02\x02\x02" + - "t\u02BE\x03\x02\x02\x02v\u02C2\x03\x02\x02\x02x\u02C4\x03\x02\x02\x02" + - "z\u02C8\x03\x02\x02\x02|\u02E0\x03\x02\x02\x02~\u02E2\x03\x02\x02\x02" + - "\x80\u02E4\x03\x02\x02\x02\x82\u02E6\x03\x02\x02\x02\x84\u02E8\x03\x02" + - "\x02\x02\x86\u02EA\x03\x02\x02\x02\x88\u02EC\x03\x02\x02\x02\x8A\u02EE" + - "\x03\x02\x02\x02\x8C\u02F0\x03\x02\x02\x02\x8E\u02F7\x03\x02\x02\x02\x90" + - "\u02F9\x03\x02\x02\x02\x92\u02FD\x03\x02\x02\x02\x94\u0300\x03\x02\x02" + - "\x02\x96\u0305\x03\x02\x02\x02\x98\u0309\x03\x02\x02\x02\x9A\u030B\x03" + - "\x02\x02\x02\x9C\u030D\x03\x02\x02\x02\x9E\u030F\x03\x02\x02\x02\xA0\u0311" + - "\x03\x02\x02\x02\xA2\u031C\x03\x02\x02\x02\xA4\u0324\x03\x02\x02\x02\xA6" + - "\u0336\x03\x02\x02\x02\xA8\u034F\x03\x02\x02\x02\xAA\u035A\x03\x02\x02" + - "\x02\xAC\xAE\x05\x04\x03\x02\xAD\xAC\x03\x02\x02\x02\xAD\xAE\x03\x02\x02" + - "\x02\xAE\xAF\x03\x02\x02\x02\xAF\xB0\x07\x02\x02\x03\xB0\x03\x03\x02\x02" + - "\x02\xB1\xB6\x05\b\x05\x02\xB2\xB3\x07Z\x02\x02\xB3\xB5\x05\x06\x04\x02" + - "\xB4\xB2\x03\x02\x02\x02\xB5\xB8\x03\x02\x02\x02\xB6\xB4\x03\x02\x02\x02" + - "\xB6\xB7\x03\x02\x02\x02\xB7\x05\x03\x02\x02\x02\xB8\xB6\x03\x02\x02\x02" + - "\xB9\xC7\x05\n\x06\x02\xBA\xC7\x05\f\x07\x02\xBB\xC7\x05\x0E\b\x02\xBC" + - "\xC7\x05\x10\t\x02\xBD\xC7\x05\x12\n\x02\xBE\xC7\x05\x14\v\x02\xBF\xC7" + - "\x05\x16\f\x02\xC0\xC7\x05\x18\r\x02\xC1\xC7\x05\x1A\x0E\x02\xC2\xC7\x05" + - "\x1C\x0F\x02\xC3\xC7\x05\x1E\x10\x02\xC4\xC7\x05 \x11\x02\xC5\xC7\x05" + - "$\x13\x02\xC6\xB9\x03\x02\x02\x02\xC6\xBA\x03\x02\x02\x02\xC6\xBB\x03" + - "\x02\x02\x02\xC6\xBC\x03\x02\x02\x02\xC6\xBD\x03\x02\x02\x02\xC6\xBE\x03" + - "\x02\x02\x02\xC6\xBF\x03\x02\x02\x02\xC6\xC0\x03\x02\x02\x02\xC6\xC1\x03" + - "\x02\x02\x02\xC6\xC2\x03\x02\x02\x02\xC6\xC3\x03\x02\x02\x02\xC6\xC4\x03" + - "\x02\x02\x02\xC6\xC5\x03\x02\x02\x02\xC7\x07\x03\x02\x02\x02\xC8\xCA\x07" + - "\x03\x02\x02\xC9\xC8\x03\x02\x02\x02\xC9\xCA\x03\x02\x02\x02\xCA\xCB\x03" + - "\x02\x02\x02\xCB\xD9\x05(\x15\x02\xCC\xCE\x07\x03\x02\x02\xCD\xCC\x03" + - "\x02\x02\x02\xCD\xCE\x03\x02\x02\x02\xCE\xCF\x03\x02\x02\x02\xCF\xD0\x05" + - "(\x15\x02\xD0\xD1\x05B\"\x02\xD1\xD9\x03\x02\x02\x02\xD2\xD4\x07\x03\x02" + - "\x02\xD3\xD2\x03\x02\x02\x02\xD3\xD4\x03\x02\x02\x02\xD4\xD5\x03\x02\x02" + - "\x02\xD5\xD6\x05B\"\x02\xD6\xD7\x05(\x15\x02\xD7\xD9\x03\x02\x02\x02\xD8" + - "\xC9\x03\x02\x02\x02\xD8\xCD\x03\x02\x02\x02\xD8\xD3\x03\x02\x02\x02\xD9" + - "\t\x03\x02\x02\x02\xDA\xDB\x07\x05\x02\x02\xDB\xDC\x05B\"\x02\xDC\v\x03" + - "\x02\x02\x02\xDD\xDF\x07\x06\x02\x02\xDE\xE0\t\x02\x02\x02\xDF\xDE\x03" + - "\x02\x02\x02\xDF\xE0\x03\x02\x02\x02\xE0\xE1\x03\x02\x02\x02\xE1\xE2\x05" + - "T+\x02\xE2\r\x03\x02\x02\x02\xE3\xE4\x07\x07\x02\x02\xE4\xE9\x05*\x16" + - "\x02\xE5\xE6\x07[\x02\x02\xE6\xE8\x05*\x16\x02\xE7\xE5\x03\x02\x02\x02" + - "\xE8\xEB\x03\x02\x02\x02\xE9\xE7\x03\x02\x02\x02\xE9\xEA\x03\x02\x02\x02" + - "\xEA\x0F\x03\x02\x02\x02\xEB\xE9\x03\x02\x02\x02\xEC\xF0\x07\b\x02\x02" + - "\xED\xEE\x07 \x02\x02\xEE\xEF\x07]\x02\x02\xEF\xF1\x05\x94K\x02\xF0\xED" + - "\x03\x02\x02\x02\xF0\xF1\x03\x02\x02\x02\xF1\xF5\x03\x02\x02\x02\xF2\xF3" + - "\x07!\x02\x02\xF3\xF4\x07]\x02\x02\xF4\xF6\x05\x98M\x02\xF5\xF2\x03\x02" + - "\x02\x02\xF5\xF6\x03\x02\x02\x02\xF6\xFA\x03\x02\x02\x02\xF7\xF8\x07\"" + - "\x02\x02\xF8\xF9\x07]\x02\x02\xF9\xFB\x05\x92J\x02\xFA\xF7\x03\x02\x02" + - "\x02\xFA\xFB\x03\x02\x02\x02\xFB\xFC\x03\x02\x02\x02\xFC\u0101\x058\x1D" + - "\x02\xFD\xFE\x07[\x02\x02\xFE\u0100\x058\x1D\x02\xFF\xFD\x03\x02\x02\x02" + - "\u0100\u0103\x03\x02\x02\x02\u0101\xFF\x03\x02\x02\x02\u0101\u0102\x03" + - "\x02\x02\x02\u0102\u0105\x03\x02\x02\x02\u0103\u0101\x03\x02\x02\x02\u0104" + - "\u0106\x05.\x18\x02\u0105\u0104\x03\x02\x02\x02\u0105\u0106\x03\x02\x02" + - "\x02\u0106\u010A\x03\x02\x02\x02\u0107\u0108\x07\x1F\x02\x02\u0108\u0109" + - "\x07]\x02\x02\u0109\u010B\x05\x98M\x02\u010A\u0107\x03\x02\x02\x02\u010A" + - "\u010B\x03\x02\x02\x02\u010B\x11\x03\x02\x02\x02\u010C\u010E\x07\t\x02" + - "\x02\u010D\u010F\x05\x94K\x02\u010E\u010D\x03\x02\x02\x02\u010E\u010F" + - "\x03\x02\x02\x02\u010F\u0110\x03\x02\x02\x02\u0110\u0114\x05T+\x02\u0111" + - "\u0112\x07\x1D\x02\x02\u0112\u0113\x07]\x02\x02\u0113\u0115\x05\x98M\x02" + - "\u0114\u0111\x03\x02\x02\x02\u0114\u0115\x03\x02\x02\x02\u0115\u0119\x03" + - "\x02\x02\x02\u0116\u0117\x07\x1E\x02\x02\u0117\u0118\x07]\x02\x02\u0118" + - "\u011A\x05\x98M\x02\u0119\u0116\x03\x02\x02\x02\u0119\u011A\x03\x02\x02" + - "\x02\u011A\x13\x03\x02\x02\x02\u011B\u011C\x07\n\x02\x02\u011C\u011D\x05" + - "4\x1B\x02\u011D\x15\x03\x02\x02\x02\u011E\u011F\x07\v\x02\x02\u011F\u0124" + - "\x056\x1C\x02\u0120\u0121\x07[\x02\x02\u0121\u0123\x056\x1C\x02\u0122" + - "\u0120\x03\x02\x02\x02\u0123\u0126\x03\x02\x02\x02\u0124\u0122\x03\x02" + - "\x02\x02\u0124\u0125\x03\x02\x02\x02\u0125\x17\x03\x02\x02\x02\u0126\u0124" + - "\x03\x02\x02\x02\u0127\u0129\x07\f\x02\x02\u0128\u012A\x05\x94K\x02\u0129" + - "\u0128\x03\x02\x02\x02\u0129\u012A\x03\x02\x02\x02\u012A\u012D\x03\x02" + - "\x02\x02\u012B\u012C\x07\x04\x02\x02\u012C\u012E\x05\x94K\x02\u012D\u012B" + - "\x03\x02\x02\x02\u012D\u012E\x03\x02\x02\x02\u012E\x19\x03\x02\x02\x02" + - "\u012F\u0131\x07\r\x02\x02\u0130\u0132\x05\x94K\x02\u0131\u0130\x03\x02" + - "\x02\x02\u0131\u0132\x03\x02\x02\x02\u0132\u0133\x03\x02\x02\x02\u0133" + - "\u0135\x05T+\x02\u0134\u0136\x05,\x17\x02\u0135\u0134\x03\x02\x02\x02" + - "\u0135\u0136\x03\x02\x02\x02\u0136\x1B\x03\x02\x02\x02\u0137\u0138\x07" + - "\x0E\x02\x02\u0138\u013A\x05T+\x02\u0139\u013B\x05,\x17\x02\u013A\u0139" + - "\x03\x02\x02\x02\u013A\u013B\x03\x02\x02\x02\u013B\x1D\x03\x02\x02\x02" + - "\u013C\u013D\x07\x0F\x02\x02\u013D\u013E\x05@!\x02\u013E\u013F\x05\x9A" + - "N\x02\u013F\x1F\x03\x02\x02\x02\u0140\u0144\x07\x10\x02\x02\u0141\u0143" + - "\x05\"\x12\x02\u0142\u0141\x03\x02\x02\x02\u0143\u0146\x03\x02\x02\x02" + - "\u0144\u0142\x03\x02\x02\x02\u0144\u0145\x03\x02\x02\x02\u0145!\x03\x02" + - "\x02\x02\u0146\u0144\x03\x02\x02\x02\u0147\u0148\x07#\x02\x02\u0148\u0149" + - "\x07]\x02\x02\u0149\u0151\x05\x94K\x02\u014A\u014B\x07$\x02\x02\u014B" + - "\u014C\x07]\x02\x02\u014C\u0151\x05\x94K\x02\u014D\u014E\x07%\x02\x02" + - "\u014E\u014F\x07]\x02\x02\u014F\u0151\x05\x92J\x02\u0150\u0147\x03\x02" + - "\x02\x02\u0150\u014A\x03\x02\x02\x02\u0150\u014D\x03\x02\x02\x02\u0151" + - "#\x03\x02\x02\x02\u0152\u0156\x07\x11\x02\x02\u0153\u0155\x05&\x14\x02" + - "\u0154\u0153\x03\x02\x02\x02\u0155\u0158\x03\x02\x02\x02\u0156\u0154\x03" + - "\x02\x02\x02\u0156\u0157\x03\x02\x02\x02\u0157%\x03\x02\x02\x02\u0158" + - "\u0156\x03\x02\x02\x02\u0159\u015A\x07&\x02\x02\u015A\u015B\x07]\x02\x02" + - "\u015B\u017B\x05\x94K\x02\u015C\u015D\x07\'\x02\x02\u015D\u015E\x07]\x02" + - "\x02\u015E\u017B\x05\x94K\x02\u015F\u0160\x07(\x02\x02\u0160\u0161\x07" + - "]\x02\x02\u0161\u017B\x05\x94K\x02\u0162\u0163\x07)\x02\x02\u0163\u0164" + - "\x07]\x02\x02\u0164\u017B\x05\x94K\x02\u0165\u0166\x07*\x02\x02\u0166" + - "\u0167\x07]\x02\x02\u0167\u017B\x05\x96L\x02\u0168\u0169\x07+\x02\x02" + - "\u0169\u016A\x07]\x02\x02\u016A\u017B\x05\x96L\x02\u016B\u016C\x07,\x02" + - "\x02\u016C\u016D\x07]\x02\x02\u016D\u017B\x05\x92J\x02\u016E\u016F\x07" + - "\xC5\x02\x02\u016F\u0170\x07]\x02\x02\u0170\u017B\x05\x92J\x02\u0171\u0172" + - "\x07-\x02\x02\u0172\u0173\x07]\x02\x02\u0173\u017B\x05\x92J\x02\u0174" + - "\u0175\x07.\x02\x02\u0175\u0176\x07]\x02\x02\u0176\u017B\x05\x94K\x02" + - "\u0177\u0178\x07/\x02\x02\u0178\u0179\x07]\x02\x02\u0179\u017B\x05\x96" + - "L\x02\u017A\u0159\x03\x02\x02\x02\u017A\u015C\x03\x02\x02\x02\u017A\u015F" + - "\x03\x02\x02\x02\u017A\u0162\x03\x02\x02\x02\u017A\u0165\x03\x02\x02\x02" + - "\u017A\u0168\x03\x02\x02\x02\u017A\u016B\x03\x02\x02\x02\u017A\u016E\x03" + - "\x02\x02\x02\u017A\u0171\x03\x02\x02\x02\u017A\u0174\x03\x02\x02\x02\u017A" + - "\u0177\x03\x02\x02\x02\u017B\'\x03\x02\x02\x02\u017C\u017D\x07\x14\x02" + - "\x02\u017D\u017E\x07]\x02\x02\u017E\u0183\x05R*\x02\u017F\u0180\x07[\x02" + - "\x02\u0180\u0182\x05R*\x02\u0181\u017F\x03\x02\x02\x02\u0182\u0185\x03" + - "\x02\x02\x02\u0183\u0181\x03\x02\x02\x02\u0183\u0184\x03\x02\x02\x02\u0184" + - "\u0191\x03\x02\x02\x02\u0185\u0183\x03\x02\x02\x02\u0186\u0187\x07\x15" + - "\x02\x02\u0187\u0188\x07]\x02\x02\u0188\u018D\x05R*\x02\u0189\u018A\x07" + - "[\x02\x02\u018A\u018C\x05R*\x02\u018B\u0189\x03\x02\x02\x02\u018C\u018F" + - "\x03\x02\x02\x02\u018D\u018B\x03\x02\x02\x02\u018D\u018E\x03\x02\x02\x02" + - "\u018E\u0191\x03\x02\x02\x02\u018F\u018D\x03\x02\x02\x02\u0190\u017C\x03" + - "\x02\x02\x02\u0190\u0186\x03\x02\x02\x02\u0191)\x03\x02\x02\x02\u0192" + - "\u0193\x05^0\x02\u0193\u0194\x07\x12\x02\x02\u0194\u0195\x05^0\x02\u0195" + - "+\x03\x02\x02\x02\u0196\u0197\x07\x13\x02\x02\u0197\u0198\x05T+\x02\u0198" + - "-\x03\x02\x02\x02\u0199\u019A\x07\x13\x02\x02\u019A\u01A3\x05T+\x02\u019B" + - "\u019C\x07\x13\x02\x02\u019C\u01A3\x050\x19\x02\u019D\u019E\x07\x13\x02" + - "\x02\u019E\u019F\x050\x19\x02\u019F\u01A0\x07[\x02\x02\u01A0\u01A1\x05" + - "T+\x02\u01A1\u01A3\x03\x02\x02\x02\u01A2\u0199\x03\x02\x02\x02\u01A2\u019B" + - "\x03\x02\x02\x02\u01A2\u019D\x03\x02\x02\x02\u01A3/\x03\x02\x02\x02\u01A4" + - "\u01A7\x052\x1A\x02\u01A5\u01A6\x07\x12\x02\x02\u01A6\u01A8\x05\xA2R\x02" + - "\u01A7\u01A5\x03\x02\x02\x02\u01A7\u01A8\x03\x02\x02\x02\u01A81\x03\x02" + - "\x02\x02\u01A9\u01AA\x07\u0100\x02\x02\u01AA\u01AB\x07j\x02\x02\u01AB" + - "\u01AC\x05\\/\x02\u01AC\u01AD\x07[\x02\x02\u01AD\u01AF\x05\x8EH\x02\u01AE" + - "\u01B0\x05\x9EP\x02\u01AF\u01AE\x03\x02\x02\x02\u01AF\u01B0\x03\x02\x02" + - "\x02\u01B0\u01B1\x03\x02\x02\x02\u01B1\u01B2\x07k\x02\x02\u01B23\x03\x02" + - "\x02\x02\u01B3\u01B8\x05X-\x02\u01B4\u01B5\x07[\x02\x02\u01B5\u01B7\x05" + - "X-\x02\u01B6\u01B4\x03\x02\x02\x02\u01B7\u01BA\x03\x02\x02\x02\u01B8\u01B6" + - "\x03\x02\x02\x02\u01B8\u01B9\x03\x02\x02\x02\u01B95\x03\x02\x02\x02\u01BA" + - "\u01B8\x03\x02\x02\x02\u01BB\u01BC\x05\\/\x02\u01BC\u01BD\x07]\x02\x02" + - "\u01BD\u01BE\x05@!\x02\u01BE7\x03\x02\x02\x02\u01BF\u01C2\x05:\x1E\x02" + - "\u01C0\u01C1\x07\x12\x02\x02\u01C1\u01C3\x05^0\x02\u01C2\u01C0\x03\x02" + - "\x02\x02\u01C2\u01C3\x03\x02\x02\x02\u01C39\x03\x02\x02\x02\u01C4\u01C5" + - "\x05<\x1F\x02\u01C5\u01C6\x07j\x02\x02\u01C6\u01C7\x05F$\x02\u01C7\u01C8" + - "\x07k\x02\x02\u01C8\u01D3\x03\x02\x02\x02\u01C9\u01CA\x07u\x02\x02\u01CA" + - "\u01CB\x07j\x02\x02\u01CB\u01D3\x07k\x02\x02\u01CC\u01CD\t\x03\x02\x02" + - "\u01CD\u01CE\x07j\x02\x02\u01CE\u01CF\x05F$\x02\u01CF\u01D0\x07k\x02\x02" + - "\u01D0\u01D3\x03\x02\x02\x02\u01D1\u01D3\x05> \x02\u01D2\u01C4\x03\x02" + - "\x02\x02\u01D2\u01C9\x03\x02\x02\x02\u01D2\u01CC\x03\x02\x02\x02\u01D2" + - "\u01D1\x03\x02\x02\x02\u01D3;\x03\x02\x02\x02\u01D4\u01D5\t\x04\x02\x02" + - "\u01D5=\x03\x02\x02\x02\u01D6\u01D7\x07\x87\x02\x02\u01D7\u01D8\x07_\x02" + - "\x02\u01D8\u01D9\x05\x94K\x02\u01D9\u01DA\x07^\x02\x02\u01DA\u01DB\x07" + - "j\x02\x02\u01DB\u01DC\x05\\/\x02\u01DC\u01DD\x07k\x02\x02\u01DD?\x03\x02" + - "\x02\x02\u01DE\u01E2\x05B\"\x02\u01DF\u01E2\x05D#\x02\u01E0\u01E2\x05" + - "F$\x02\u01E1\u01DE\x03\x02\x02\x02\u01E1\u01DF\x03\x02\x02\x02\u01E1\u01E0" + - "\x03\x02\x02\x02\u01E2A\x03\x02\x02\x02\u01E3\u01E4\b\"\x01\x02\u01E4" + - "\u01EA\x05D#\x02\u01E5\u01E6\x072\x02\x02\u01E6\u01EA\x05B\"\b\u01E7\u01EA" + - "\x05J&\x02\u01E8\u01EA\x05L\'\x02\u01E9\u01E3\x03\x02\x02\x02\u01E9\u01E5" + - "\x03\x02\x02\x02\u01E9\u01E7\x03\x02\x02\x02\u01E9\u01E8\x03\x02\x02\x02" + - "\u01EA\u01F8\x03\x02\x02\x02\u01EB\u01EC\f\x07\x02\x02\u01EC\u01ED\x07" + - "3\x02\x02\u01ED\u01F7\x05B\"\b\u01EE\u01F0\f\x06\x02\x02\u01EF\u01F1\x07" + - "4\x02\x02\u01F0\u01EF\x03\x02\x02\x02\u01F0\u01F1\x03\x02\x02\x02\u01F1" + - "\u01F2\x03\x02\x02\x02\u01F2\u01F7\x05B\"\x07\u01F3\u01F4\f\x05\x02\x02" + - "\u01F4\u01F5\x075\x02\x02\u01F5\u01F7\x05B\"\x06\u01F6\u01EB\x03\x02\x02" + - "\x02\u01F6\u01EE"; - private static readonly _serializedATNSegment1: string = - "\x03\x02\x02\x02\u01F6\u01F3\x03\x02\x02\x02\u01F7\u01FA\x03\x02\x02\x02" + - "\u01F8\u01F6\x03\x02\x02\x02\u01F8\u01F9\x03\x02\x02\x02\u01F9C\x03\x02" + - "\x02\x02\u01FA\u01F8\x03\x02\x02\x02\u01FB\u01FC\x05F$\x02\u01FC\u01FD" + - "\x05\x86D\x02\u01FD\u01FE\x05F$\x02\u01FE\u0204\x03\x02\x02\x02\u01FF" + - "\u0200\x05F$\x02\u0200\u0201\x071\x02\x02\u0201\u0202\x05\xA0Q\x02\u0202" + - "\u0204\x03\x02\x02\x02\u0203\u01FB\x03\x02\x02\x02\u0203\u01FF\x03\x02" + - "\x02\x02\u0204E\x03\x02\x02\x02\u0205\u0206\b$\x01\x02\u0206\u0207\x07" + - "j\x02\x02\u0207\u0208\x05F$\x02\u0208\u0209\x05\x88E\x02\u0209\u020A\x05" + - "F$\x02\u020A\u020B\x07k\x02\x02\u020B\u020E\x03\x02\x02\x02\u020C\u020E" + - "\x05H%\x02\u020D\u0205\x03\x02\x02\x02\u020D\u020C\x03\x02\x02\x02\u020E" + - "\u0215\x03\x02\x02\x02\u020F\u0210\f\x05\x02\x02\u0210\u0211\x05\x88E" + - "\x02\u0211\u0212\x05F$\x06\u0212\u0214\x03\x02\x02\x02\u0213\u020F\x03" + - "\x02\x02\x02\u0214\u0217\x03\x02\x02\x02\u0215\u0213\x03\x02\x02\x02\u0215" + - "\u0216\x03\x02\x02\x02\u0216G\x03\x02\x02\x02\u0217\u0215\x03\x02\x02" + - "\x02\u0218\u021D\x05`1\x02\u0219\u021D\x05b2\x02\u021A\u021D\x05\\/\x02" + - "\u021B\u021D\x05\x8EH\x02\u021C\u0218\x03\x02\x02\x02\u021C\u0219\x03" + - "\x02\x02\x02\u021C\u021A\x03\x02\x02\x02\u021C\u021B\x03\x02\x02\x02\u021D" + - "I\x03\x02\x02\x02\u021E\u021F\x05d3\x02\u021FK\x03\x02\x02\x02\u0220\u0223" + - "\x05N(\x02\u0221\u0223\x05P)\x02\u0222\u0220\x03\x02\x02\x02\u0222\u0221" + - "\x03\x02\x02\x02\u0223M\x03\x02\x02\x02\u0224\u0225\x05\x8AF\x02\u0225" + - "\u0226\x07j\x02\x02\u0226\u0227\x05v<\x02\u0227\u0228\x07[\x02\x02\u0228" + - "\u022D\x05x=\x02\u0229\u022A\x07[\x02\x02\u022A\u022C\x05n8\x02\u022B" + - "\u0229\x03\x02\x02\x02\u022C\u022F\x03\x02\x02\x02\u022D\u022B\x03\x02" + - "\x02\x02\u022D\u022E\x03\x02\x02\x02\u022E\u0230\x03\x02\x02\x02\u022F" + - "\u022D\x03\x02\x02\x02\u0230\u0231\x07k\x02\x02\u0231O\x03\x02\x02\x02" + - "\u0232\u0233\x05\x8CG\x02\u0233\u0234\x07j\x02\x02\u0234\u0235\x07l\x02" + - "\x02\u0235\u023A\x05r:\x02\u0236\u0237\x07[\x02\x02\u0237\u0239\x05r:" + - "\x02\u0238\u0236\x03\x02\x02\x02\u0239\u023C\x03\x02\x02\x02\u023A\u0238" + - "\x03\x02\x02\x02\u023A\u023B\x03\x02\x02\x02\u023B\u023D\x03\x02\x02\x02" + - "\u023C\u023A\x03\x02\x02\x02\u023D\u023E\x07m\x02\x02\u023E\u023F\x07" + - "[\x02\x02\u023F\u0244\x05x=\x02\u0240\u0241\x07[\x02\x02\u0241\u0243\x05" + - "n8\x02\u0242\u0240\x03\x02\x02\x02\u0243\u0246\x03\x02\x02\x02\u0244\u0242" + - "\x03\x02\x02\x02\u0244\u0245\x03\x02\x02\x02\u0245\u0247\x03\x02\x02\x02" + - "\u0246\u0244\x03\x02\x02\x02\u0247\u0248\x07k\x02\x02\u0248Q\x03\x02\x02" + - "\x02\u0249\u024C\x05\xA2R\x02\u024A\u024C\x07\u010B\x02\x02\u024B\u0249" + - "\x03\x02\x02\x02\u024B\u024A\x03\x02\x02\x02\u024CS\x03\x02\x02\x02\u024D" + - "\u0252\x05\\/\x02\u024E\u024F\x07[\x02\x02\u024F\u0251\x05\\/\x02\u0250" + - "\u024E\x03\x02\x02\x02\u0251\u0254\x03\x02\x02\x02\u0252\u0250\x03\x02" + - "\x02\x02\u0252\u0253\x03\x02\x02\x02\u0253U\x03\x02\x02\x02\u0254\u0252" + - "\x03\x02\x02\x02\u0255\u025A\x05^0\x02\u0256\u0257\x07[\x02\x02\u0257" + - "\u0259\x05^0\x02\u0258\u0256\x03\x02\x02\x02\u0259\u025C\x03\x02\x02\x02" + - "\u025A\u0258\x03\x02\x02\x02\u025A\u025B\x03\x02\x02\x02\u025BW\x03\x02" + - "\x02\x02\u025C\u025A\x03\x02\x02\x02\u025D\u025F\t\x02\x02\x02\u025E\u025D" + - "\x03\x02\x02\x02\u025E\u025F\x03\x02\x02\x02\u025F\u0260\x03\x02\x02\x02" + - "\u0260\u0261\x05Z.\x02\u0261Y\x03\x02\x02\x02\u0262\u0278\x05\\/\x02\u0263" + - "\u0264\x07\x19\x02\x02\u0264\u0265\x07j\x02\x02\u0265\u0266\x05\\/\x02" + - "\u0266\u0267\x07k\x02\x02\u0267\u0278\x03\x02\x02\x02\u0268\u0269\x07" + - "\x1A\x02\x02\u0269\u026A\x07j\x02\x02\u026A\u026B\x05\\/\x02\u026B\u026C" + - "\x07k\x02\x02\u026C\u0278\x03\x02\x02\x02\u026D\u026E\x07\x1B\x02\x02" + - "\u026E\u026F\x07j\x02\x02\u026F\u0270\x05\\/\x02\u0270\u0271\x07k\x02" + - "\x02\u0271\u0278\x03\x02\x02\x02\u0272\u0273\x07\x1C\x02\x02\u0273\u0274" + - "\x07j\x02\x02\u0274\u0275\x05\\/\x02\u0275\u0276\x07k\x02\x02\u0276\u0278" + - "\x03\x02\x02\x02\u0277\u0262\x03\x02\x02\x02\u0277\u0263\x03\x02\x02\x02" + - "\u0277\u0268\x03\x02\x02\x02\u0277\u026D\x03\x02\x02\x02\u0277\u0272\x03" + - "\x02\x02\x02\u0278[\x03\x02\x02\x02\u0279\u027A\x05\xA2R\x02\u027A]\x03" + - "\x02\x02\x02\u027B\u027C\x05\xA4S\x02\u027C_\x03\x02\x02\x02\u027D\u027E" + - "\x05h5\x02\u027E\u027F\x07j\x02\x02\u027F\u0280\x05j6\x02\u0280\u0281" + - "\x07k\x02\x02\u0281a\x03\x02\x02\x02\u0282\u0283\x07\xD8\x02\x02\u0283" + - "\u0284\x07j\x02\x02\u0284\u0285\x05@!\x02\u0285\u0286\x07\x12\x02\x02" + - "\u0286\u0287\x05f4\x02\u0287\u0288\x07k\x02\x02\u0288c\x03\x02\x02\x02" + - "\u0289\u028A\x05\x82B\x02\u028A\u028B\x07j\x02\x02\u028B\u028C\x05j6\x02" + - "\u028C\u028D\x07k\x02\x02\u028De\x03\x02\x02\x02\u028E\u0299\x07\xB8\x02" + - "\x02\u028F\u0299\x07\xC2\x02\x02\u0290\u0299\x07\xC4\x02\x02\u0291\u0299" + - "\x07S\x02\x02\u0292\u0299\x07T\x02\x02\u0293\u0299\x07U\x02\x02\u0294" + - "\u0299\x07V\x02\x02\u0295\u0299\x07W\x02\x02\u0296\u0299\x07X\x02\x02" + - "\u0297\u0299\x07Y\x02\x02\u0298\u028E\x03\x02\x02\x02\u0298\u028F\x03" + - "\x02\x02\x02\u0298\u0290\x03\x02\x02\x02\u0298\u0291\x03\x02\x02\x02\u0298" + - "\u0292\x03\x02\x02\x02\u0298\u0293\x03\x02\x02\x02\u0298\u0294\x03\x02" + - "\x02\x02\u0298\u0295\x03\x02\x02\x02\u0298\u0296\x03\x02\x02\x02\u0298" + - "\u0297\x03\x02\x02\x02\u0299g\x03\x02\x02\x02\u029A\u029F\x05|?\x02\u029B" + - "\u029F\x05\x80A\x02\u029C\u029F\x05\x84C\x02\u029D\u029F\x05\x82B\x02" + - "\u029E\u029A\x03\x02\x02\x02\u029E\u029B\x03\x02\x02\x02\u029E\u029C\x03" + - "\x02\x02\x02\u029E\u029D\x03\x02\x02\x02\u029Fi\x03\x02\x02\x02\u02A0" + - "\u02A5\x05l7\x02\u02A1\u02A2\x07[\x02\x02\u02A2\u02A4\x05l7\x02\u02A3" + - "\u02A1\x03\x02\x02\x02\u02A4\u02A7\x03\x02\x02\x02\u02A5\u02A3\x03\x02" + - "\x02\x02\u02A5\u02A6\x03\x02\x02\x02\u02A6\u02A9\x03\x02\x02\x02\u02A7" + - "\u02A5\x03\x02\x02\x02\u02A8\u02A0\x03\x02\x02\x02\u02A8\u02A9\x03\x02" + - "\x02\x02\u02A9k\x03\x02\x02\x02\u02AA\u02AB\x05F$\x02\u02ABm\x03\x02\x02" + - "\x02\u02AC\u02AD\x05p9\x02\u02AD\u02AE\x07]\x02\x02\u02AE\u02AF\x05z>" + - "\x02\u02AFo\x03\x02\x02\x02\u02B0\u02B1\t\x05\x02\x02\u02B1q\x03\x02\x02" + - "\x02\u02B2\u02BB\x05v<\x02\u02B3\u02B4\x05v<\x02\u02B4\u02B5\x05t;\x02" + - "\u02B5\u02BB\x03\x02\x02\x02\u02B6\u02B7\x05v<\x02\u02B7\u02B8\x07s\x02" + - "\x02\u02B8\u02B9\x05t;\x02\u02B9\u02BB\x03\x02\x02\x02\u02BA\u02B2\x03" + - "\x02\x02\x02\u02BA\u02B3\x03\x02\x02\x02\u02BA\u02B6\x03\x02\x02\x02\u02BB" + - "s\x03\x02\x02\x02\u02BC\u02BF\x05\x94K\x02\u02BD\u02BF\x05\x96L\x02\u02BE" + - "\u02BC\x03\x02\x02\x02\u02BE\u02BD\x03\x02\x02\x02\u02BFu\x03\x02\x02" + - "\x02\u02C0\u02C3\x05\xA2R\x02\u02C1\u02C3\x05\x92J\x02\u02C2\u02C0\x03" + - "\x02\x02\x02\u02C2\u02C1\x03\x02\x02\x02\u02C3w\x03\x02\x02\x02\u02C4" + - "\u02C5\x05z>\x02\u02C5y\x03\x02\x02\x02\u02C6\u02C9\x05\xA2R\x02\u02C7" + - "\u02C9\x05\x8EH\x02\u02C8\u02C6\x03\x02\x02\x02\u02C8\u02C7\x03\x02\x02" + - "\x02\u02C9{\x03\x02\x02\x02\u02CA\u02E1\x07\x98\x02\x02\u02CB\u02E1\x07" + - "\x99\x02\x02\u02CC\u02E1\x07\x9A\x02\x02\u02CD\u02E1\x07\x9B\x02\x02\u02CE" + - "\u02E1\x07\x9C\x02\x02\u02CF\u02E1\x07\x9D\x02\x02\u02D0\u02E1\x07\x9E" + - "\x02\x02\u02D1\u02E1\x07\x9F\x02\x02\u02D2\u02E1\x07\xA0\x02\x02\u02D3" + - "\u02E1\x07\xA1\x02\x02\u02D4\u02E1\x07\xA2\x02\x02\u02D5\u02E1\x07\xA3" + - "\x02\x02\u02D6\u02E1\x07\xA4\x02\x02\u02D7\u02E1\x07\xA5\x02\x02\u02D8" + - "\u02E1\x07\xA6\x02\x02\u02D9\u02E1\x07\xA7\x02\x02\u02DA\u02E1\x07\xA8" + - "\x02\x02\u02DB\u02E1\x07\xA9\x02\x02\u02DC\u02E1\x07\xAA\x02\x02\u02DD" + - "\u02E1\x07\xAB\x02\x02\u02DE\u02E1\x07\xAC\x02\x02\u02DF\u02E1\x05~@\x02" + - "\u02E0\u02CA\x03\x02\x02\x02\u02E0\u02CB\x03\x02\x02\x02\u02E0\u02CC\x03" + - "\x02\x02\x02\u02E0\u02CD\x03\x02\x02\x02\u02E0\u02CE\x03\x02\x02\x02\u02E0" + - "\u02CF\x03\x02\x02\x02\u02E0\u02D0\x03\x02\x02\x02\u02E0\u02D1\x03\x02" + - "\x02\x02\u02E0\u02D2\x03\x02\x02\x02\u02E0\u02D3\x03\x02\x02\x02\u02E0" + - "\u02D4\x03\x02\x02\x02\u02E0\u02D5\x03\x02\x02\x02\u02E0\u02D6\x03\x02" + - "\x02\x02\u02E0\u02D7\x03\x02\x02\x02\u02E0\u02D8\x03\x02\x02\x02\u02E0" + - "\u02D9\x03\x02\x02\x02\u02E0\u02DA\x03\x02\x02\x02\u02E0\u02DB\x03\x02" + - "\x02\x02\u02E0\u02DC\x03\x02\x02\x02\u02E0\u02DD\x03\x02\x02\x02\u02E0" + - "\u02DE\x03\x02\x02\x02\u02E0\u02DF\x03\x02\x02\x02\u02E1}\x03\x02\x02" + - "\x02\u02E2\u02E3\t\x06\x02\x02\u02E3\x7F\x03\x02\x02\x02\u02E4\u02E5\t" + - "\x07\x02\x02\u02E5\x81\x03\x02\x02\x02\u02E6\u02E7\t\b\x02\x02\u02E7\x83" + - "\x03\x02\x02\x02\u02E8\u02E9\t\t\x02\x02\u02E9\x85\x03\x02\x02\x02\u02EA" + - "\u02EB\t\n\x02\x02\u02EB\x87\x03\x02\x02\x02\u02EC\u02ED\t\v\x02\x02\u02ED" + - "\x89\x03\x02\x02\x02\u02EE\u02EF\t\f\x02\x02\u02EF\x8B\x03\x02\x02\x02" + - "\u02F0\u02F1\x07\xE1\x02\x02\u02F1\x8D\x03\x02\x02\x02\u02F2\u02F8\x05" + - "\x90I\x02\u02F3\u02F8\x05\x92J\x02\u02F4\u02F8\x05\x94K\x02\u02F5\u02F8" + - "\x05\x96L\x02\u02F6\u02F8\x05\x98M\x02\u02F7\u02F2\x03\x02\x02\x02\u02F7" + - "\u02F3\x03\x02\x02\x02\u02F7\u02F4\x03\x02\x02\x02\u02F7\u02F5\x03\x02" + - "\x02\x02\u02F7\u02F6\x03\x02\x02\x02\u02F8\x8F\x03\x02\x02\x02\u02F9\u02FA" + - "\x07:\x02\x02\u02FA\u02FB\x05F$\x02\u02FB\u02FC\x05\x9CO\x02\u02FC\x91" + - "\x03\x02\x02\x02\u02FD\u02FE\t\r\x02\x02\u02FE\x93\x03\x02\x02\x02\u02FF" + - "\u0301\t\x02\x02\x02\u0300\u02FF\x03\x02\x02\x02\u0300\u0301\x03\x02\x02" + - "\x02\u0301\u0302\x03\x02\x02\x02\u0302\u0303\x07\u0109\x02\x02\u0303\x95" + - "\x03\x02\x02\x02\u0304\u0306\t\x02\x02\x02\u0305\u0304\x03\x02\x02\x02" + - "\u0305\u0306\x03\x02\x02\x02\u0306\u0307\x03\x02\x02\x02\u0307\u0308\x07" + - "\u010A\x02\x02\u0308\x97\x03\x02\x02\x02\u0309\u030A\t\x0E\x02\x02\u030A" + - "\x99\x03\x02\x02\x02\u030B\u030C\x05\x92J\x02\u030C\x9B\x03\x02\x02\x02" + - "\u030D\u030E\t\x0F\x02\x02\u030E\x9D\x03\x02\x02\x02\u030F\u0310\t\x10" + - "\x02\x02\u0310\x9F\x03\x02\x02\x02\u0311\u0312\x07j\x02\x02\u0312\u0317" + - "\x05\x8EH\x02\u0313\u0314\x07[\x02\x02\u0314\u0316\x05\x8EH\x02\u0315" + - "\u0313\x03\x02\x02\x02\u0316\u0319\x03\x02\x02\x02\u0317\u0315\x03\x02" + - "\x02\x02\u0317\u0318\x03\x02\x02\x02\u0318\u031A\x03\x02\x02\x02\u0319" + - "\u0317\x03\x02\x02\x02\u031A\u031B\x07k\x02\x02\u031B\xA1\x03\x02\x02" + - "\x02\u031C\u0321\x05\xA6T\x02\u031D\u031E\x07\\\x02\x02\u031E\u0320\x05" + - "\xA6T\x02\u031F\u031D\x03\x02\x02\x02\u0320\u0323\x03\x02\x02\x02\u0321" + - "\u031F\x03\x02\x02\x02\u0321\u0322\x03\x02\x02\x02\u0322\xA3\x03\x02\x02" + - "\x02\u0323\u0321\x03\x02\x02\x02\u0324\u0329\x05\xA8U\x02\u0325\u0326" + - "\x07\\\x02\x02\u0326\u0328\x05\xA8U\x02\u0327\u0325\x03\x02\x02\x02\u0328" + - "\u032B\x03\x02\x02\x02\u0329\u0327\x03\x02\x02\x02\u0329\u032A\x03\x02" + - "\x02\x02\u032A\xA5\x03\x02\x02\x02\u032B\u0329\x03\x02\x02\x02\u032C\u032E" + - "\x07\\\x02\x02\u032D\u032C\x03\x02\x02\x02\u032D\u032E\x03\x02\x02\x02" + - "\u032E\u032F\x03\x02\x02\x02\u032F\u0337\x07\u0108\x02\x02\u0330\u0331" + - "\x07p\x02\x02\u0331\u0332\x05\xA6T\x02\u0332\u0333\x07p\x02\x02\u0333" + - "\u0337\x03\x02\x02\x02\u0334\u0337\x07\u010E\x02\x02\u0335\u0337\x05\xAA" + - "V\x02\u0336\u032D\x03\x02\x02\x02\u0336\u0330\x03\x02\x02\x02\u0336\u0334" + - "\x03\x02\x02\x02\u0336\u0335\x03\x02\x02\x02\u0337\xA7\x03\x02\x02\x02" + - "\u0338\u033D\x05\xA6T\x02\u0339\u033A\x07g\x02\x02\u033A\u033C\x05\xA6" + - "T\x02\u033B\u0339\x03\x02\x02\x02\u033C\u033F\x03\x02\x02\x02\u033D\u033B" + - "\x03\x02\x02\x02\u033D\u033E\x03\x02\x02\x02\u033E\u0341\x03\x02\x02\x02" + - "\u033F\u033D\x03\x02\x02\x02\u0340\u0342\x07g\x02\x02\u0341\u0340\x03" + - "\x02\x02\x02\u0341\u0342\x03\x02\x02\x02\u0342\u0350\x03\x02\x02\x02\u0343" + - "\u0344\x07n\x02\x02\u0344\u0345\x05\xA8U\x02\u0345\u0346\x07n\x02\x02" + - "\u0346\u0350\x03\x02\x02\x02\u0347\u0348\x07o\x02\x02\u0348\u0349\x05" + - "\xA8U\x02\u0349\u034A\x07o\x02\x02\u034A\u0350\x03\x02\x02\x02\u034B\u034C" + - "\x07p\x02\x02\u034C\u034D\x05\xA8U\x02\u034D\u034E\x07p\x02\x02\u034E" + - "\u0350\x03\x02\x02\x02\u034F\u0338\x03\x02\x02\x02\u034F\u0343\x03\x02" + - "\x02\x02\u034F\u0347\x03\x02\x02\x02\u034F\u034B\x03\x02\x02\x02\u0350" + - "\xA9\x03\x02\x02\x02\u0351\u035B\x07\x16\x02\x02\u0352\u035B\x05<\x1F" + - "\x02\u0353\u035B\x07\xC4\x02\x02\u0354\u035B\x07\xB8\x02\x02\u0355\u035B" + - "\x07\xC2\x02\x02\u0356\u035B\x07\x88\x02\x02\u0357\u035B\x07\x89\x02\x02" + - "\u0358\u035B\x05\x9EP\x02\u0359\u035B\x07\u0100\x02\x02\u035A\u0351\x03" + - "\x02\x02\x02\u035A\u0352\x03\x02\x02\x02\u035A\u0353\x03\x02\x02\x02\u035A" + - "\u0354\x03\x02\x02\x02\u035A\u0355\x03\x02\x02\x02\u035A\u0356\x03\x02" + - "\x02\x02\u035A\u0357\x03\x02\x02\x02\u035A\u0358\x03\x02\x02\x02\u035A" + - "\u0359\x03\x02\x02\x02\u035B\xAB\x03\x02\x02\x02N\xAD\xB6\xC6\xC9\xCD" + - "\xD3\xD8\xDF\xE9\xF0\xF5\xFA\u0101\u0105\u010A\u010E\u0114\u0119\u0124" + - "\u0129\u012D\u0131\u0135\u013A\u0144\u0150\u0156\u017A\u0183\u018D\u0190" + - "\u01A2\u01A7\u01AF\u01B8\u01C2\u01D2\u01E1\u01E9\u01F0\u01F6\u01F8\u0203" + - "\u020D\u0215\u021C\u0222\u022D\u023A\u0244\u024B\u0252\u025A\u025E\u0277" + - "\u0298\u029E\u02A5\u02A8\u02BA\u02BE\u02C2\u02C8\u02E0\u02F7\u0300\u0305" + - "\u0317\u0321\u0329\u032D\u0336\u033D\u0341\u034F\u035A"; - public static readonly _serializedATN: string = Utils.join( - [ - OpenSearchPPLParser._serializedATNSegment0, - OpenSearchPPLParser._serializedATNSegment1, - ], - "", - ); - public static __ATN: ATN; - public static get _ATN(): ATN { - if (!OpenSearchPPLParser.__ATN) { - OpenSearchPPLParser.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLParser._serializedATN)); - } - - return OpenSearchPPLParser.__ATN; - } - -} - -export class RootContext extends ParserRuleContext { - public EOF(): TerminalNode { return this.getToken(OpenSearchPPLParser.EOF, 0); } - public pplStatement(): PplStatementContext | undefined { - return this.tryGetRuleContext(0, PplStatementContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_root; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRoot) { - listener.enterRoot(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRoot) { - listener.exitRoot(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRoot) { - return visitor.visitRoot(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PplStatementContext extends ParserRuleContext { - public searchCommand(): SearchCommandContext { - return this.getRuleContext(0, SearchCommandContext); - } - public PIPE(): TerminalNode[]; - public PIPE(i: number): TerminalNode; - public PIPE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.PIPE); - } else { - return this.getToken(OpenSearchPPLParser.PIPE, i); - } - } - public commands(): CommandsContext[]; - public commands(i: number): CommandsContext; - public commands(i?: number): CommandsContext | CommandsContext[] { - if (i === undefined) { - return this.getRuleContexts(CommandsContext); - } else { - return this.getRuleContext(i, CommandsContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pplStatement; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPplStatement) { - listener.enterPplStatement(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPplStatement) { - listener.exitPplStatement(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPplStatement) { - return visitor.visitPplStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CommandsContext extends ParserRuleContext { - public whereCommand(): WhereCommandContext | undefined { - return this.tryGetRuleContext(0, WhereCommandContext); - } - public fieldsCommand(): FieldsCommandContext | undefined { - return this.tryGetRuleContext(0, FieldsCommandContext); - } - public renameCommand(): RenameCommandContext | undefined { - return this.tryGetRuleContext(0, RenameCommandContext); - } - public statsCommand(): StatsCommandContext | undefined { - return this.tryGetRuleContext(0, StatsCommandContext); - } - public dedupCommand(): DedupCommandContext | undefined { - return this.tryGetRuleContext(0, DedupCommandContext); - } - public sortCommand(): SortCommandContext | undefined { - return this.tryGetRuleContext(0, SortCommandContext); - } - public evalCommand(): EvalCommandContext | undefined { - return this.tryGetRuleContext(0, EvalCommandContext); - } - public headCommand(): HeadCommandContext | undefined { - return this.tryGetRuleContext(0, HeadCommandContext); - } - public topCommand(): TopCommandContext | undefined { - return this.tryGetRuleContext(0, TopCommandContext); - } - public rareCommand(): RareCommandContext | undefined { - return this.tryGetRuleContext(0, RareCommandContext); - } - public parseCommand(): ParseCommandContext | undefined { - return this.tryGetRuleContext(0, ParseCommandContext); - } - public kmeansCommand(): KmeansCommandContext | undefined { - return this.tryGetRuleContext(0, KmeansCommandContext); - } - public adCommand(): AdCommandContext | undefined { - return this.tryGetRuleContext(0, AdCommandContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_commands; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterCommands) { - listener.enterCommands(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitCommands) { - listener.exitCommands(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitCommands) { - return visitor.visitCommands(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SearchCommandContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_searchCommand; } - public copyFrom(ctx: SearchCommandContext): void { - super.copyFrom(ctx); - } -} -export class SearchFromContext extends SearchCommandContext { - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext); - } - public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } - constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSearchFrom) { - listener.enterSearchFrom(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSearchFrom) { - listener.exitSearchFrom(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSearchFrom) { - return visitor.visitSearchFrom(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class SearchFromFilterContext extends SearchCommandContext { - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext); - } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } - constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSearchFromFilter) { - listener.enterSearchFromFilter(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSearchFromFilter) { - listener.exitSearchFromFilter(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSearchFromFilter) { - return visitor.visitSearchFromFilter(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class SearchFilterFromContext extends SearchCommandContext { - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext); - } - public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } - constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSearchFilterFrom) { - listener.enterSearchFilterFrom(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSearchFilterFrom) { - listener.exitSearchFilterFrom(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSearchFilterFrom) { - return visitor.visitSearchFilterFrom(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WhereCommandContext extends ParserRuleContext { - public WHERE(): TerminalNode { return this.getToken(OpenSearchPPLParser.WHERE, 0); } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_whereCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWhereCommand) { - listener.enterWhereCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWhereCommand) { - listener.exitWhereCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWhereCommand) { - return visitor.visitWhereCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FieldsCommandContext extends ParserRuleContext { - public FIELDS(): TerminalNode { return this.getToken(OpenSearchPPLParser.FIELDS, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldsCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFieldsCommand) { - listener.enterFieldsCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFieldsCommand) { - listener.exitFieldsCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFieldsCommand) { - return visitor.visitFieldsCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RenameCommandContext extends ParserRuleContext { - public RENAME(): TerminalNode { return this.getToken(OpenSearchPPLParser.RENAME, 0); } - public renameClasue(): RenameClasueContext[]; - public renameClasue(i: number): RenameClasueContext; - public renameClasue(i?: number): RenameClasueContext | RenameClasueContext[] { - if (i === undefined) { - return this.getRuleContexts(RenameClasueContext); - } else { - return this.getRuleContext(i, RenameClasueContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRenameCommand) { - listener.enterRenameCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRenameCommand) { - listener.exitRenameCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRenameCommand) { - return visitor.visitRenameCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsCommandContext extends ParserRuleContext { - public _partitions!: IntegerLiteralContext; - public _allnum!: BooleanLiteralContext; - public _delim!: StringLiteralContext; - public _dedupsplit!: BooleanLiteralContext; - public STATS(): TerminalNode { return this.getToken(OpenSearchPPLParser.STATS, 0); } - public statsAggTerm(): StatsAggTermContext[]; - public statsAggTerm(i: number): StatsAggTermContext; - public statsAggTerm(i?: number): StatsAggTermContext | StatsAggTermContext[] { - if (i === undefined) { - return this.getRuleContexts(StatsAggTermContext); - } else { - return this.getRuleContext(i, StatsAggTermContext); - } - } - public PARTITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PARTITIONS, 0); } - public EQUAL(): TerminalNode[]; - public EQUAL(i: number): TerminalNode; - public EQUAL(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.EQUAL); - } else { - return this.getToken(OpenSearchPPLParser.EQUAL, i); - } - } - public ALLNUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLNUM, 0); } - public DELIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DELIM, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public statsByClause(): StatsByClauseContext | undefined { - return this.tryGetRuleContext(0, StatsByClauseContext); - } - public DEDUP_SPLITVALUES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public booleanLiteral(): BooleanLiteralContext[]; - public booleanLiteral(i: number): BooleanLiteralContext; - public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { - if (i === undefined) { - return this.getRuleContexts(BooleanLiteralContext); - } else { - return this.getRuleContext(i, BooleanLiteralContext); - } - } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsCommand) { - listener.enterStatsCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsCommand) { - listener.exitStatsCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsCommand) { - return visitor.visitStatsCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DedupCommandContext extends ParserRuleContext { - public _number!: IntegerLiteralContext; - public _keepempty!: BooleanLiteralContext; - public _consecutive!: BooleanLiteralContext; - public DEDUP(): TerminalNode { return this.getToken(OpenSearchPPLParser.DEDUP, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public KEEPEMPTY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.KEEPEMPTY, 0); } - public EQUAL(): TerminalNode[]; - public EQUAL(i: number): TerminalNode; - public EQUAL(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.EQUAL); - } else { - return this.getToken(OpenSearchPPLParser.EQUAL, i); - } - } - public CONSECUTIVE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONSECUTIVE, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public booleanLiteral(): BooleanLiteralContext[]; - public booleanLiteral(i: number): BooleanLiteralContext; - public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { - if (i === undefined) { - return this.getRuleContexts(BooleanLiteralContext); - } else { - return this.getRuleContext(i, BooleanLiteralContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dedupCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDedupCommand) { - listener.enterDedupCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDedupCommand) { - listener.exitDedupCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDedupCommand) { - return visitor.visitDedupCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortCommandContext extends ParserRuleContext { - public SORT(): TerminalNode { return this.getToken(OpenSearchPPLParser.SORT, 0); } - public sortbyClause(): SortbyClauseContext { - return this.getRuleContext(0, SortbyClauseContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortCommand) { - listener.enterSortCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortCommand) { - listener.exitSortCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortCommand) { - return visitor.visitSortCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalCommandContext extends ParserRuleContext { - public EVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EVAL, 0); } - public evalClause(): EvalClauseContext[]; - public evalClause(i: number): EvalClauseContext; - public evalClause(i?: number): EvalClauseContext | EvalClauseContext[] { - if (i === undefined) { - return this.getRuleContexts(EvalClauseContext); - } else { - return this.getRuleContext(i, EvalClauseContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalCommand) { - listener.enterEvalCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalCommand) { - listener.exitEvalCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalCommand) { - return visitor.visitEvalCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class HeadCommandContext extends ParserRuleContext { - public _number!: IntegerLiteralContext; - public _from!: IntegerLiteralContext; - public HEAD(): TerminalNode { return this.getToken(OpenSearchPPLParser.HEAD, 0); } - public FROM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM, 0); } - public integerLiteral(): IntegerLiteralContext[]; - public integerLiteral(i: number): IntegerLiteralContext; - public integerLiteral(i?: number): IntegerLiteralContext | IntegerLiteralContext[] { - if (i === undefined) { - return this.getRuleContexts(IntegerLiteralContext); - } else { - return this.getRuleContext(i, IntegerLiteralContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_headCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterHeadCommand) { - listener.enterHeadCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitHeadCommand) { - listener.exitHeadCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitHeadCommand) { - return visitor.visitHeadCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TopCommandContext extends ParserRuleContext { - public _number!: IntegerLiteralContext; - public TOP(): TerminalNode { return this.getToken(OpenSearchPPLParser.TOP, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public byClause(): ByClauseContext | undefined { - return this.tryGetRuleContext(0, ByClauseContext); - } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_topCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTopCommand) { - listener.enterTopCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTopCommand) { - listener.exitTopCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTopCommand) { - return visitor.visitTopCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RareCommandContext extends ParserRuleContext { - public RARE(): TerminalNode { return this.getToken(OpenSearchPPLParser.RARE, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public byClause(): ByClauseContext | undefined { - return this.tryGetRuleContext(0, ByClauseContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_rareCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRareCommand) { - listener.enterRareCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRareCommand) { - listener.exitRareCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRareCommand) { - return visitor.visitRareCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ParseCommandContext extends ParserRuleContext { - public PARSE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PARSE, 0); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext); - } - public pattern(): PatternContext { - return this.getRuleContext(0, PatternContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_parseCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterParseCommand) { - listener.enterParseCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitParseCommand) { - listener.exitParseCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitParseCommand) { - return visitor.visitParseCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class KmeansCommandContext extends ParserRuleContext { - public KMEANS(): TerminalNode { return this.getToken(OpenSearchPPLParser.KMEANS, 0); } - public kmeansParameter(): KmeansParameterContext[]; - public kmeansParameter(i: number): KmeansParameterContext; - public kmeansParameter(i?: number): KmeansParameterContext | KmeansParameterContext[] { - if (i === undefined) { - return this.getRuleContexts(KmeansParameterContext); - } else { - return this.getRuleContext(i, KmeansParameterContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterKmeansCommand) { - listener.enterKmeansCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitKmeansCommand) { - listener.exitKmeansCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitKmeansCommand) { - return visitor.visitKmeansCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class KmeansParameterContext extends ParserRuleContext { - public _centroids!: IntegerLiteralContext; - public _iterations!: IntegerLiteralContext; - public _distance_type!: StringLiteralContext; - public CENTROIDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CENTROIDS, 0); } - public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public ITERATIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ITERATIONS, 0); } - public DISTANCE_TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansParameter; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterKmeansParameter) { - listener.enterKmeansParameter(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitKmeansParameter) { - listener.exitKmeansParameter(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitKmeansParameter) { - return visitor.visitKmeansParameter(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AdCommandContext extends ParserRuleContext { - public AD(): TerminalNode { return this.getToken(OpenSearchPPLParser.AD, 0); } - public adParameter(): AdParameterContext[]; - public adParameter(i: number): AdParameterContext; - public adParameter(i?: number): AdParameterContext | AdParameterContext[] { - if (i === undefined) { - return this.getRuleContexts(AdParameterContext); - } else { - return this.getRuleContext(i, AdParameterContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterAdCommand) { - listener.enterAdCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitAdCommand) { - listener.exitAdCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitAdCommand) { - return visitor.visitAdCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AdParameterContext extends ParserRuleContext { - public _number_of_trees!: IntegerLiteralContext; - public _shingle_size!: IntegerLiteralContext; - public _sample_size!: IntegerLiteralContext; - public _output_after!: IntegerLiteralContext; - public _time_decay!: DecimalLiteralContext; - public _anomaly_rate!: DecimalLiteralContext; - public _time_field!: StringLiteralContext; - public _date_format!: StringLiteralContext; - public _time_zone!: StringLiteralContext; - public _training_data_size!: IntegerLiteralContext; - public _anomaly_score_threshold!: DecimalLiteralContext; - public NUMBER_OF_TREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } - public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public SHINGLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } - public SAMPLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } - public OUTPUT_AFTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } - public TIME_DECAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_DECAY, 0); } - public decimalLiteral(): DecimalLiteralContext | undefined { - return this.tryGetRuleContext(0, DecimalLiteralContext); - } - public ANOMALY_RATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } - public TIME_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_FIELD, 0); } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TRAINING_DATA_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } - public ANOMALY_SCORE_THRESHOLD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adParameter; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterAdParameter) { - listener.enterAdParameter(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitAdParameter) { - listener.exitAdParameter(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitAdParameter) { - return visitor.visitAdParameter(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FromClauseContext extends ParserRuleContext { - public SOURCE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SOURCE, 0); } - public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } - public tableSource(): TableSourceContext[]; - public tableSource(i: number): TableSourceContext; - public tableSource(i?: number): TableSourceContext | TableSourceContext[] { - if (i === undefined) { - return this.getRuleContexts(TableSourceContext); - } else { - return this.getRuleContext(i, TableSourceContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public INDEX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INDEX, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fromClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFromClause) { - listener.enterFromClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFromClause) { - listener.exitFromClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFromClause) { - return visitor.visitFromClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RenameClasueContext extends ParserRuleContext { - public _orignalField!: WcFieldExpressionContext; - public _renamedField!: WcFieldExpressionContext; - public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } - public wcFieldExpression(): WcFieldExpressionContext[]; - public wcFieldExpression(i: number): WcFieldExpressionContext; - public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(WcFieldExpressionContext); - } else { - return this.getRuleContext(i, WcFieldExpressionContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameClasue; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRenameClasue) { - listener.enterRenameClasue(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRenameClasue) { - listener.exitRenameClasue(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRenameClasue) { - return visitor.visitRenameClasue(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ByClauseContext extends ParserRuleContext { - public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_byClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterByClause) { - listener.enterByClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitByClause) { - listener.exitByClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitByClause) { - return visitor.visitByClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsByClauseContext extends ParserRuleContext { - public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } - public fieldList(): FieldListContext | undefined { - return this.tryGetRuleContext(0, FieldListContext); - } - public bySpanClause(): BySpanClauseContext | undefined { - return this.tryGetRuleContext(0, BySpanClauseContext); - } - public COMMA(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COMMA, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsByClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsByClause) { - listener.enterStatsByClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsByClause) { - listener.exitStatsByClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsByClause) { - return visitor.visitStatsByClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BySpanClauseContext extends ParserRuleContext { - public _alias!: QualifiedNameContext; - public spanClause(): SpanClauseContext { - return this.getRuleContext(0, SpanClauseContext); - } - public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_bySpanClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBySpanClause) { - listener.enterBySpanClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBySpanClause) { - listener.exitBySpanClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBySpanClause) { - return visitor.visitBySpanClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SpanClauseContext extends ParserRuleContext { - public _value!: LiteralValueContext; - public _unit!: TimespanUnitContext; - public SPAN(): TerminalNode { return this.getToken(OpenSearchPPLParser.SPAN, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - public COMMA(): TerminalNode { return this.getToken(OpenSearchPPLParser.COMMA, 0); } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public literalValue(): LiteralValueContext { - return this.getRuleContext(0, LiteralValueContext); - } - public timespanUnit(): TimespanUnitContext | undefined { - return this.tryGetRuleContext(0, TimespanUnitContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_spanClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSpanClause) { - listener.enterSpanClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSpanClause) { - listener.exitSpanClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSpanClause) { - return visitor.visitSpanClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortbyClauseContext extends ParserRuleContext { - public sortField(): SortFieldContext[]; - public sortField(i: number): SortFieldContext; - public sortField(i?: number): SortFieldContext | SortFieldContext[] { - if (i === undefined) { - return this.getRuleContexts(SortFieldContext); - } else { - return this.getRuleContext(i, SortFieldContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortbyClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortbyClause) { - listener.enterSortbyClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortbyClause) { - listener.exitSortbyClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortbyClause) { - return visitor.visitSortbyClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalClauseContext extends ParserRuleContext { - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalClause) { - listener.enterEvalClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalClause) { - listener.exitEvalClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalClause) { - return visitor.visitEvalClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsAggTermContext extends ParserRuleContext { - public _alias!: WcFieldExpressionContext; - public statsFunction(): StatsFunctionContext { - return this.getRuleContext(0, StatsFunctionContext); - } - public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } - public wcFieldExpression(): WcFieldExpressionContext | undefined { - return this.tryGetRuleContext(0, WcFieldExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsAggTerm; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsAggTerm) { - listener.enterStatsAggTerm(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsAggTerm) { - listener.exitStatsAggTerm(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsAggTerm) { - return visitor.visitStatsAggTerm(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsFunctionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunction; } - public copyFrom(ctx: StatsFunctionContext): void { - super.copyFrom(ctx); - } -} -export class StatsFunctionCallContext extends StatsFunctionContext { - public statsFunctionName(): StatsFunctionNameContext { - return this.getRuleContext(0, StatsFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsFunctionCall) { - listener.enterStatsFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsFunctionCall) { - listener.exitStatsFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsFunctionCall) { - return visitor.visitStatsFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class CountAllFunctionCallContext extends StatsFunctionContext { - public COUNT(): TerminalNode { return this.getToken(OpenSearchPPLParser.COUNT, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterCountAllFunctionCall) { - listener.enterCountAllFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitCountAllFunctionCall) { - listener.exitCountAllFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitCountAllFunctionCall) { - return visitor.visitCountAllFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class DistinctCountFunctionCallContext extends StatsFunctionContext { - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public DISTINCT_COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } - public DC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DC, 0); } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDistinctCountFunctionCall) { - listener.enterDistinctCountFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDistinctCountFunctionCall) { - listener.exitDistinctCountFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDistinctCountFunctionCall) { - return visitor.visitDistinctCountFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class PercentileAggFunctionCallContext extends StatsFunctionContext { - public percentileAggFunction(): PercentileAggFunctionContext { - return this.getRuleContext(0, PercentileAggFunctionContext); - } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPercentileAggFunctionCall) { - listener.enterPercentileAggFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPercentileAggFunctionCall) { - listener.exitPercentileAggFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPercentileAggFunctionCall) { - return visitor.visitPercentileAggFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsFunctionNameContext extends ParserRuleContext { - public AVG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AVG, 0); } - public COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COUNT, 0); } - public SUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUM, 0); } - public MIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MIN, 0); } - public MAX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX, 0); } - public VAR_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_SAMP, 0); } - public VAR_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_POP, 0); } - public STDDEV_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } - public STDDEV_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_POP, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsFunctionName) { - listener.enterStatsFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsFunctionName) { - listener.exitStatsFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsFunctionName) { - return visitor.visitStatsFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PercentileAggFunctionContext extends ParserRuleContext { - public _value!: IntegerLiteralContext; - public _aggField!: FieldExpressionContext; - public PERCENTILE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PERCENTILE, 0); } - public LESS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LESS, 0); } - public GREATER(): TerminalNode { return this.getToken(OpenSearchPPLParser.GREATER, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public integerLiteral(): IntegerLiteralContext { - return this.getRuleContext(0, IntegerLiteralContext); - } - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_percentileAggFunction; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPercentileAggFunction) { - listener.enterPercentileAggFunction(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPercentileAggFunction) { - listener.exitPercentileAggFunction(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPercentileAggFunction) { - return visitor.visitPercentileAggFunction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ExpressionContext extends ParserRuleContext { - public logicalExpression(): LogicalExpressionContext | undefined { - return this.tryGetRuleContext(0, LogicalExpressionContext); - } - public comparisonExpression(): ComparisonExpressionContext | undefined { - return this.tryGetRuleContext(0, ComparisonExpressionContext); - } - public valueExpression(): ValueExpressionContext | undefined { - return this.tryGetRuleContext(0, ValueExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_expression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterExpression) { - listener.enterExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitExpression) { - listener.exitExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitExpression) { - return visitor.visitExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class LogicalExpressionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_logicalExpression; } - public copyFrom(ctx: LogicalExpressionContext): void { - super.copyFrom(ctx); - } -} -export class ComparsionContext extends LogicalExpressionContext { - public comparisonExpression(): ComparisonExpressionContext { - return this.getRuleContext(0, ComparisonExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterComparsion) { - listener.enterComparsion(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitComparsion) { - listener.exitComparsion(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitComparsion) { - return visitor.visitComparsion(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalNotContext extends LogicalExpressionContext { - public NOT(): TerminalNode { return this.getToken(OpenSearchPPLParser.NOT, 0); } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalNot) { - listener.enterLogicalNot(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalNot) { - listener.exitLogicalNot(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalNot) { - return visitor.visitLogicalNot(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalOrContext extends LogicalExpressionContext { - public _left!: LogicalExpressionContext; - public _right!: LogicalExpressionContext; - public OR(): TerminalNode { return this.getToken(OpenSearchPPLParser.OR, 0); } - public logicalExpression(): LogicalExpressionContext[]; - public logicalExpression(i: number): LogicalExpressionContext; - public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(LogicalExpressionContext); - } else { - return this.getRuleContext(i, LogicalExpressionContext); - } - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalOr) { - listener.enterLogicalOr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalOr) { - listener.exitLogicalOr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalOr) { - return visitor.visitLogicalOr(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalAndContext extends LogicalExpressionContext { - public _left!: LogicalExpressionContext; - public _right!: LogicalExpressionContext; - public logicalExpression(): LogicalExpressionContext[]; - public logicalExpression(i: number): LogicalExpressionContext; - public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(LogicalExpressionContext); - } else { - return this.getRuleContext(i, LogicalExpressionContext); - } - } - public AND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AND, 0); } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalAnd) { - listener.enterLogicalAnd(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalAnd) { - listener.exitLogicalAnd(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalAnd) { - return visitor.visitLogicalAnd(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalXorContext extends LogicalExpressionContext { - public _left!: LogicalExpressionContext; - public _right!: LogicalExpressionContext; - public XOR(): TerminalNode { return this.getToken(OpenSearchPPLParser.XOR, 0); } - public logicalExpression(): LogicalExpressionContext[]; - public logicalExpression(i: number): LogicalExpressionContext; - public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(LogicalExpressionContext); - } else { - return this.getRuleContext(i, LogicalExpressionContext); - } - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalXor) { - listener.enterLogicalXor(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalXor) { - listener.exitLogicalXor(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalXor) { - return visitor.visitLogicalXor(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class BooleanExprContext extends LogicalExpressionContext { - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanExpr) { - listener.enterBooleanExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanExpr) { - listener.exitBooleanExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanExpr) { - return visitor.visitBooleanExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class RelevanceExprContext extends LogicalExpressionContext { - public relevanceExpression(): RelevanceExpressionContext { - return this.getRuleContext(0, RelevanceExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceExpr) { - listener.enterRelevanceExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceExpr) { - listener.exitRelevanceExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceExpr) { - return visitor.visitRelevanceExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ComparisonExpressionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonExpression; } - public copyFrom(ctx: ComparisonExpressionContext): void { - super.copyFrom(ctx); - } -} -export class CompareExprContext extends ComparisonExpressionContext { - public _left!: ValueExpressionContext; - public _right!: ValueExpressionContext; - public comparisonOperator(): ComparisonOperatorContext { - return this.getRuleContext(0, ComparisonOperatorContext); - } - public valueExpression(): ValueExpressionContext[]; - public valueExpression(i: number): ValueExpressionContext; - public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(ValueExpressionContext); - } else { - return this.getRuleContext(i, ValueExpressionContext); - } - } - constructor(ctx: ComparisonExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterCompareExpr) { - listener.enterCompareExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitCompareExpr) { - listener.exitCompareExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitCompareExpr) { - return visitor.visitCompareExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class InExprContext extends ComparisonExpressionContext { - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public IN(): TerminalNode { return this.getToken(OpenSearchPPLParser.IN, 0); } - public valueList(): ValueListContext { - return this.getRuleContext(0, ValueListContext); - } - constructor(ctx: ComparisonExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterInExpr) { - listener.enterInExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitInExpr) { - listener.exitInExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitInExpr) { - return visitor.visitInExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ValueExpressionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueExpression; } - public copyFrom(ctx: ValueExpressionContext): void { - super.copyFrom(ctx); - } -} -export class BinaryArithmeticContext extends ValueExpressionContext { - public _left!: ValueExpressionContext; - public _right!: ValueExpressionContext; - public binaryOperator(): BinaryOperatorContext { - return this.getRuleContext(0, BinaryOperatorContext); - } - public valueExpression(): ValueExpressionContext[]; - public valueExpression(i: number): ValueExpressionContext; - public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(ValueExpressionContext); - } else { - return this.getRuleContext(i, ValueExpressionContext); - } - } - constructor(ctx: ValueExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBinaryArithmetic) { - listener.enterBinaryArithmetic(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBinaryArithmetic) { - listener.exitBinaryArithmetic(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBinaryArithmetic) { - return visitor.visitBinaryArithmetic(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class ParentheticBinaryArithmeticContext extends ValueExpressionContext { - public _left!: ValueExpressionContext; - public _right!: ValueExpressionContext; - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public binaryOperator(): BinaryOperatorContext { - return this.getRuleContext(0, BinaryOperatorContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public valueExpression(): ValueExpressionContext[]; - public valueExpression(i: number): ValueExpressionContext; - public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(ValueExpressionContext); - } else { - return this.getRuleContext(i, ValueExpressionContext); - } - } - constructor(ctx: ValueExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterParentheticBinaryArithmetic) { - listener.enterParentheticBinaryArithmetic(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitParentheticBinaryArithmetic) { - listener.exitParentheticBinaryArithmetic(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitParentheticBinaryArithmetic) { - return visitor.visitParentheticBinaryArithmetic(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class ValueExpressionDefaultContext extends ValueExpressionContext { - public primaryExpression(): PrimaryExpressionContext { - return this.getRuleContext(0, PrimaryExpressionContext); - } - constructor(ctx: ValueExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterValueExpressionDefault) { - listener.enterValueExpressionDefault(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitValueExpressionDefault) { - listener.exitValueExpressionDefault(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitValueExpressionDefault) { - return visitor.visitValueExpressionDefault(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PrimaryExpressionContext extends ParserRuleContext { - public evalFunctionCall(): EvalFunctionCallContext | undefined { - return this.tryGetRuleContext(0, EvalFunctionCallContext); - } - public dataTypeFunctionCall(): DataTypeFunctionCallContext | undefined { - return this.tryGetRuleContext(0, DataTypeFunctionCallContext); - } - public fieldExpression(): FieldExpressionContext | undefined { - return this.tryGetRuleContext(0, FieldExpressionContext); - } - public literalValue(): LiteralValueContext | undefined { - return this.tryGetRuleContext(0, LiteralValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_primaryExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPrimaryExpression) { - listener.enterPrimaryExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPrimaryExpression) { - listener.exitPrimaryExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPrimaryExpression) { - return visitor.visitPrimaryExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BooleanExpressionContext extends ParserRuleContext { - public booleanFunctionCall(): BooleanFunctionCallContext { - return this.getRuleContext(0, BooleanFunctionCallContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanExpression) { - listener.enterBooleanExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanExpression) { - listener.exitBooleanExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanExpression) { - return visitor.visitBooleanExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceExpressionContext extends ParserRuleContext { - public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext | undefined { - return this.tryGetRuleContext(0, SingleFieldRelevanceFunctionContext); - } - public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext | undefined { - return this.tryGetRuleContext(0, MultiFieldRelevanceFunctionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceExpression) { - listener.enterRelevanceExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceExpression) { - listener.exitRelevanceExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceExpression) { - return visitor.visitRelevanceExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SingleFieldRelevanceFunctionContext extends ParserRuleContext { - public _field!: RelevanceFieldContext; - public _query!: RelevanceQueryContext; - public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { - return this.getRuleContext(0, SingleFieldRelevanceFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public relevanceField(): RelevanceFieldContext { - return this.getRuleContext(0, RelevanceFieldContext); - } - public relevanceQuery(): RelevanceQueryContext { - return this.getRuleContext(0, RelevanceQueryContext); - } - public relevanceArg(): RelevanceArgContext[]; - public relevanceArg(i: number): RelevanceArgContext; - public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { - if (i === undefined) { - return this.getRuleContexts(RelevanceArgContext); - } else { - return this.getRuleContext(i, RelevanceArgContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunction; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSingleFieldRelevanceFunction) { - listener.enterSingleFieldRelevanceFunction(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSingleFieldRelevanceFunction) { - listener.exitSingleFieldRelevanceFunction(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSingleFieldRelevanceFunction) { - return visitor.visitSingleFieldRelevanceFunction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MultiFieldRelevanceFunctionContext extends ParserRuleContext { - public _field!: RelevanceFieldAndWeightContext; - public _query!: RelevanceQueryContext; - public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { - return this.getRuleContext(0, MultiFieldRelevanceFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public LT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } - public RT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext[]; - public relevanceFieldAndWeight(i: number): RelevanceFieldAndWeightContext; - public relevanceFieldAndWeight(i?: number): RelevanceFieldAndWeightContext | RelevanceFieldAndWeightContext[] { - if (i === undefined) { - return this.getRuleContexts(RelevanceFieldAndWeightContext); - } else { - return this.getRuleContext(i, RelevanceFieldAndWeightContext); - } - } - public relevanceQuery(): RelevanceQueryContext { - return this.getRuleContext(0, RelevanceQueryContext); - } - public relevanceArg(): RelevanceArgContext[]; - public relevanceArg(i: number): RelevanceArgContext; - public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { - if (i === undefined) { - return this.getRuleContexts(RelevanceArgContext); - } else { - return this.getRuleContext(i, RelevanceArgContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunction; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterMultiFieldRelevanceFunction) { - listener.enterMultiFieldRelevanceFunction(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitMultiFieldRelevanceFunction) { - listener.exitMultiFieldRelevanceFunction(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitMultiFieldRelevanceFunction) { - return visitor.visitMultiFieldRelevanceFunction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TableSourceContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - public ID_DATE_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_tableSource; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTableSource) { - listener.enterTableSource(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTableSource) { - listener.exitTableSource(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTableSource) { - return visitor.visitTableSource(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FieldListContext extends ParserRuleContext { - public fieldExpression(): FieldExpressionContext[]; - public fieldExpression(i: number): FieldExpressionContext; - public fieldExpression(i?: number): FieldExpressionContext | FieldExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(FieldExpressionContext); - } else { - return this.getRuleContext(i, FieldExpressionContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldList; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFieldList) { - listener.enterFieldList(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFieldList) { - listener.exitFieldList(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFieldList) { - return visitor.visitFieldList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WcFieldListContext extends ParserRuleContext { - public wcFieldExpression(): WcFieldExpressionContext[]; - public wcFieldExpression(i: number): WcFieldExpressionContext; - public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(WcFieldExpressionContext); - } else { - return this.getRuleContext(i, WcFieldExpressionContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldList; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWcFieldList) { - listener.enterWcFieldList(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWcFieldList) { - listener.exitWcFieldList(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWcFieldList) { - return visitor.visitWcFieldList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortFieldContext extends ParserRuleContext { - public sortFieldExpression(): SortFieldExpressionContext { - return this.getRuleContext(0, SortFieldExpressionContext); - } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortField; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortField) { - listener.enterSortField(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortField) { - listener.exitSortField(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortField) { - return visitor.visitSortField(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortFieldExpressionContext extends ParserRuleContext { - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - public AUTO(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO, 0); } - public LT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public RT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public STR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STR, 0); } - public IP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IP, 0); } - public NUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUM, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortFieldExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortFieldExpression) { - listener.enterSortFieldExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortFieldExpression) { - listener.exitSortFieldExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortFieldExpression) { - return visitor.visitSortFieldExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FieldExpressionContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext { - return this.getRuleContext(0, QualifiedNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFieldExpression) { - listener.enterFieldExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFieldExpression) { - listener.exitFieldExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFieldExpression) { - return visitor.visitFieldExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WcFieldExpressionContext extends ParserRuleContext { - public wcQualifiedName(): WcQualifiedNameContext { - return this.getRuleContext(0, WcQualifiedNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWcFieldExpression) { - listener.enterWcFieldExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWcFieldExpression) { - listener.exitWcFieldExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWcFieldExpression) { - return visitor.visitWcFieldExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalFunctionCallContext extends ParserRuleContext { - public evalFunctionName(): EvalFunctionNameContext { - return this.getRuleContext(0, EvalFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public functionArgs(): FunctionArgsContext { - return this.getRuleContext(0, FunctionArgsContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionCall; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalFunctionCall) { - listener.enterEvalFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalFunctionCall) { - listener.exitEvalFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalFunctionCall) { - return visitor.visitEvalFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DataTypeFunctionCallContext extends ParserRuleContext { - public CAST(): TerminalNode { return this.getToken(OpenSearchPPLParser.CAST, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext); - } - public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } - public convertedDataType(): ConvertedDataTypeContext { - return this.getRuleContext(0, ConvertedDataTypeContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dataTypeFunctionCall; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDataTypeFunctionCall) { - listener.enterDataTypeFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDataTypeFunctionCall) { - listener.exitDataTypeFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDataTypeFunctionCall) { - return visitor.visitDataTypeFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BooleanFunctionCallContext extends ParserRuleContext { - public conditionFunctionBase(): ConditionFunctionBaseContext { - return this.getRuleContext(0, ConditionFunctionBaseContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public functionArgs(): FunctionArgsContext { - return this.getRuleContext(0, FunctionArgsContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanFunctionCall; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanFunctionCall) { - listener.enterBooleanFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanFunctionCall) { - listener.exitBooleanFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanFunctionCall) { - return visitor.visitBooleanFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConvertedDataTypeContext extends ParserRuleContext { - public _typeName!: Token; - public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } - public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } - public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public INT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INT, 0); } - public INTEGER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INTEGER, 0); } - public DOUBLE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOUBLE, 0); } - public LONG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LONG, 0); } - public FLOAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOAT, 0); } - public STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRING, 0); } - public BOOLEAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOLEAN, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_convertedDataType; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterConvertedDataType) { - listener.enterConvertedDataType(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitConvertedDataType) { - listener.exitConvertedDataType(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitConvertedDataType) { - return visitor.visitConvertedDataType(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalFunctionNameContext extends ParserRuleContext { - public mathematicalFunctionBase(): MathematicalFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, MathematicalFunctionBaseContext); - } - public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, DateAndTimeFunctionBaseContext); - } - public textFunctionBase(): TextFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, TextFunctionBaseContext); - } - public conditionFunctionBase(): ConditionFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, ConditionFunctionBaseContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalFunctionName) { - listener.enterEvalFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalFunctionName) { - listener.exitEvalFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalFunctionName) { - return visitor.visitEvalFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FunctionArgsContext extends ParserRuleContext { - public functionArg(): FunctionArgContext[]; - public functionArg(i: number): FunctionArgContext; - public functionArg(i?: number): FunctionArgContext | FunctionArgContext[] { - if (i === undefined) { - return this.getRuleContexts(FunctionArgContext); - } else { - return this.getRuleContext(i, FunctionArgContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArgs; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFunctionArgs) { - listener.enterFunctionArgs(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFunctionArgs) { - listener.exitFunctionArgs(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFunctionArgs) { - return visitor.visitFunctionArgs(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FunctionArgContext extends ParserRuleContext { - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArg; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFunctionArg) { - listener.enterFunctionArg(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFunctionArg) { - listener.exitFunctionArg(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFunctionArg) { - return visitor.visitFunctionArg(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceArgContext extends ParserRuleContext { - public relevanceArgName(): RelevanceArgNameContext { - return this.getRuleContext(0, RelevanceArgNameContext); - } - public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } - public relevanceArgValue(): RelevanceArgValueContext { - return this.getRuleContext(0, RelevanceArgValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArg; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceArg) { - listener.enterRelevanceArg(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceArg) { - listener.exitRelevanceArg(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceArg) { - return visitor.visitRelevanceArg(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceArgNameContext extends ParserRuleContext { - public ALLOW_LEADING_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } - public ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZER, 0); } - public ANALYZE_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } - public AUTO_GENERATE_SYNONYMS_PHRASE_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } - public BOOST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOST, 0); } - public CUTOFF_FREQUENCY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } - public DEFAULT_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } - public DEFAULT_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } - public ENABLE_POSITION_INCREMENTS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } - public FIELDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIELDS, 0); } - public FLAGS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLAGS, 0); } - public FUZZINESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZINESS, 0); } - public FUZZY_MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } - public FUZZY_PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } - public FUZZY_REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } - public FUZZY_TRANSPOSITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } - public LENIENT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENIENT, 0); } - public LOW_FREQ_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } - public MAX_DETERMINIZED_STATES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } - public MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } - public MINIMUM_SHOULD_MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } - public OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OPERATOR, 0); } - public PHRASE_SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } - public PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } - public QUOTE_ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } - public QUOTE_FIELD_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } - public REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REWRITE, 0); } - public SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SLOP, 0); } - public TIE_BREAKER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIE_BREAKER, 0); } - public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TYPE, 0); } - public ZERO_TERMS_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceArgName) { - listener.enterRelevanceArgName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceArgName) { - listener.exitRelevanceArgName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceArgName) { - return visitor.visitRelevanceArgName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceFieldAndWeightContext extends ParserRuleContext { - public _field!: RelevanceFieldContext; - public _weight!: RelevanceFieldWeightContext; - public relevanceField(): RelevanceFieldContext { - return this.getRuleContext(0, RelevanceFieldContext); - } - public relevanceFieldWeight(): RelevanceFieldWeightContext | undefined { - return this.tryGetRuleContext(0, RelevanceFieldWeightContext); - } - public BIT_XOR_OP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldAndWeight; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceFieldAndWeight) { - listener.enterRelevanceFieldAndWeight(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceFieldAndWeight) { - listener.exitRelevanceFieldAndWeight(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceFieldAndWeight) { - return visitor.visitRelevanceFieldAndWeight(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceFieldWeightContext extends ParserRuleContext { - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public decimalLiteral(): DecimalLiteralContext | undefined { - return this.tryGetRuleContext(0, DecimalLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldWeight; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceFieldWeight) { - listener.enterRelevanceFieldWeight(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceFieldWeight) { - listener.exitRelevanceFieldWeight(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceFieldWeight) { - return visitor.visitRelevanceFieldWeight(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceFieldContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceField; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceField) { - listener.enterRelevanceField(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceField) { - listener.exitRelevanceField(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceField) { - return visitor.visitRelevanceField(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceQueryContext extends ParserRuleContext { - public relevanceArgValue(): RelevanceArgValueContext { - return this.getRuleContext(0, RelevanceArgValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceQuery; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceQuery) { - listener.enterRelevanceQuery(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceQuery) { - listener.exitRelevanceQuery(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceQuery) { - return visitor.visitRelevanceQuery(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceArgValueContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - public literalValue(): LiteralValueContext | undefined { - return this.tryGetRuleContext(0, LiteralValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgValue; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceArgValue) { - listener.enterRelevanceArgValue(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceArgValue) { - listener.exitRelevanceArgValue(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceArgValue) { - return visitor.visitRelevanceArgValue(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MathematicalFunctionBaseContext extends ParserRuleContext { - public ABS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ABS, 0); } - public CEIL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEIL, 0); } - public CEILING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEILING, 0); } - public CONV(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONV, 0); } - public CRC32(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CRC32, 0); } - public E(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.E, 0); } - public EXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EXP, 0); } - public FLOOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOOR, 0); } - public LN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LN, 0); } - public LOG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG, 0); } - public LOG10(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG10, 0); } - public LOG2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG2, 0); } - public MOD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MOD, 0); } - public PI(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PI, 0); } - public POW(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POW, 0); } - public POWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POWER, 0); } - public RAND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RAND, 0); } - public ROUND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ROUND, 0); } - public SIGN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIGN, 0); } - public SQRT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQRT, 0); } - public TRUNCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUNCATE, 0); } - public trigonometricFunctionName(): TrigonometricFunctionNameContext | undefined { - return this.tryGetRuleContext(0, TrigonometricFunctionNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_mathematicalFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterMathematicalFunctionBase) { - listener.enterMathematicalFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitMathematicalFunctionBase) { - listener.exitMathematicalFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitMathematicalFunctionBase) { - return visitor.visitMathematicalFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TrigonometricFunctionNameContext extends ParserRuleContext { - public ACOS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ACOS, 0); } - public ASIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASIN, 0); } - public ATAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN, 0); } - public ATAN2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN2, 0); } - public COS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COS, 0); } - public COT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COT, 0); } - public DEGREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEGREES, 0); } - public RADIANS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RADIANS, 0); } - public SIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIN, 0); } - public TAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TAN, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_trigonometricFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTrigonometricFunctionName) { - listener.enterTrigonometricFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTrigonometricFunctionName) { - listener.exitTrigonometricFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTrigonometricFunctionName) { - return visitor.visitTrigonometricFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DateAndTimeFunctionBaseContext extends ParserRuleContext { - public ADDDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ADDDATE, 0); } - public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } - public DATE_ADD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_ADD, 0); } - public DATE_SUB(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_SUB, 0); } - public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } - public DAYNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYNAME, 0); } - public DAYOFMONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFMONTH, 0); } - public DAYOFWEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFWEEK, 0); } - public DAYOFYEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFYEAR, 0); } - public FROM_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM_DAYS, 0); } - public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } - public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } - public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } - public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } - public MONTHNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTHNAME, 0); } - public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } - public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } - public SUBDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBDATE, 0); } - public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } - public TIME_TO_SEC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } - public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TO_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TO_DAYS, 0); } - public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } - public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } - public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dateAndTimeFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDateAndTimeFunctionBase) { - listener.enterDateAndTimeFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDateAndTimeFunctionBase) { - listener.exitDateAndTimeFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDateAndTimeFunctionBase) { - return visitor.visitDateAndTimeFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConditionFunctionBaseContext extends ParserRuleContext { - public LIKE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LIKE, 0); } - public IF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IF, 0); } - public ISNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNULL, 0); } - public ISNOTNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNOTNULL, 0); } - public IFNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IFNULL, 0); } - public NULLIF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NULLIF, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_conditionFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterConditionFunctionBase) { - listener.enterConditionFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitConditionFunctionBase) { - listener.exitConditionFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitConditionFunctionBase) { - return visitor.visitConditionFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TextFunctionBaseContext extends ParserRuleContext { - public SUBSTR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTR, 0); } - public SUBSTRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTRING, 0); } - public TRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRIM, 0); } - public LTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LTRIM, 0); } - public RTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RTRIM, 0); } - public LOWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOWER, 0); } - public UPPER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.UPPER, 0); } - public CONCAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT, 0); } - public CONCAT_WS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT_WS, 0); } - public LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENGTH, 0); } - public STRCMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRCMP, 0); } - public RIGHT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RIGHT, 0); } - public LEFT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LEFT, 0); } - public ASCII(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASCII, 0); } - public LOCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOCATE, 0); } - public REPLACE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REPLACE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_textFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTextFunctionBase) { - listener.enterTextFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTextFunctionBase) { - listener.exitTextFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTextFunctionBase) { - return visitor.visitTextFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ComparisonOperatorContext extends ParserRuleContext { - public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } - public NOT_EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_EQUAL, 0); } - public LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LESS, 0); } - public NOT_LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_LESS, 0); } - public GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.GREATER, 0); } - public NOT_GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_GREATER, 0); } - public REGEXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REGEXP, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonOperator; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterComparisonOperator) { - listener.enterComparisonOperator(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitComparisonOperator) { - listener.exitComparisonOperator(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitComparisonOperator) { - return visitor.visitComparisonOperator(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BinaryOperatorContext extends ParserRuleContext { - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - public STAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STAR, 0); } - public DIVIDE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DIVIDE, 0); } - public MODULE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MODULE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_binaryOperator; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBinaryOperator) { - listener.enterBinaryOperator(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBinaryOperator) { - listener.exitBinaryOperator(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBinaryOperator) { - return visitor.visitBinaryOperator(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { - public MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH, 0); } - public MATCH_PHRASE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSingleFieldRelevanceFunctionName) { - listener.enterSingleFieldRelevanceFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSingleFieldRelevanceFunctionName) { - listener.exitSingleFieldRelevanceFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSingleFieldRelevanceFunctionName) { - return visitor.visitSingleFieldRelevanceFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { - public SIMPLE_QUERY_STRING(): TerminalNode { return this.getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterMultiFieldRelevanceFunctionName) { - listener.enterMultiFieldRelevanceFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitMultiFieldRelevanceFunctionName) { - listener.exitMultiFieldRelevanceFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitMultiFieldRelevanceFunctionName) { - return visitor.visitMultiFieldRelevanceFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class LiteralValueContext extends ParserRuleContext { - public intervalLiteral(): IntervalLiteralContext | undefined { - return this.tryGetRuleContext(0, IntervalLiteralContext); - } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public decimalLiteral(): DecimalLiteralContext | undefined { - return this.tryGetRuleContext(0, DecimalLiteralContext); - } - public booleanLiteral(): BooleanLiteralContext | undefined { - return this.tryGetRuleContext(0, BooleanLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_literalValue; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLiteralValue) { - listener.enterLiteralValue(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLiteralValue) { - listener.exitLiteralValue(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLiteralValue) { - return visitor.visitLiteralValue(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IntervalLiteralContext extends ParserRuleContext { - public INTERVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTERVAL, 0); } - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public intervalUnit(): IntervalUnitContext { - return this.getRuleContext(0, IntervalUnitContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIntervalLiteral) { - listener.enterIntervalLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIntervalLiteral) { - listener.exitIntervalLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIntervalLiteral) { - return visitor.visitIntervalLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StringLiteralContext extends ParserRuleContext { - public DQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } - public SQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_stringLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStringLiteral) { - listener.enterStringLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStringLiteral) { - listener.exitStringLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStringLiteral) { - return visitor.visitStringLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IntegerLiteralContext extends ParserRuleContext { - public INTEGER_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_integerLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIntegerLiteral) { - listener.enterIntegerLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIntegerLiteral) { - listener.exitIntegerLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIntegerLiteral) { - return visitor.visitIntegerLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DecimalLiteralContext extends ParserRuleContext { - public DECIMAL_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_decimalLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDecimalLiteral) { - listener.enterDecimalLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDecimalLiteral) { - listener.exitDecimalLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDecimalLiteral) { - return visitor.visitDecimalLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BooleanLiteralContext extends ParserRuleContext { - public TRUE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUE, 0); } - public FALSE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FALSE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanLiteral) { - listener.enterBooleanLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanLiteral) { - listener.exitBooleanLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanLiteral) { - return visitor.visitBooleanLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PatternContext extends ParserRuleContext { - public stringLiteral(): StringLiteralContext { - return this.getRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pattern; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPattern) { - listener.enterPattern(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPattern) { - listener.exitPattern(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPattern) { - return visitor.visitPattern(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IntervalUnitContext extends ParserRuleContext { - public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } - public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } - public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } - public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } - public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } - public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } - public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } - public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } - public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } - public SECOND_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } - public MINUTE_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } - public MINUTE_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } - public HOUR_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } - public HOUR_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_SECOND, 0); } - public HOUR_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } - public DAY_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } - public DAY_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_SECOND, 0); } - public DAY_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MINUTE, 0); } - public DAY_HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_HOUR, 0); } - public YEAR_MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR_MONTH, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalUnit; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIntervalUnit) { - listener.enterIntervalUnit(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIntervalUnit) { - listener.exitIntervalUnit(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIntervalUnit) { - return visitor.visitIntervalUnit(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TimespanUnitContext extends ParserRuleContext { - public MS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MS, 0); } - public S(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.S, 0); } - public M(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.M, 0); } - public H(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.H, 0); } - public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } - public W(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.W, 0); } - public Q(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Q, 0); } - public Y(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Y, 0); } - public MILLISECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MILLISECOND, 0); } - public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } - public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } - public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } - public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } - public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } - public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } - public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } - public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_timespanUnit; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTimespanUnit) { - listener.enterTimespanUnit(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTimespanUnit) { - listener.exitTimespanUnit(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTimespanUnit) { - return visitor.visitTimespanUnit(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ValueListContext extends ParserRuleContext { - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public literalValue(): LiteralValueContext[]; - public literalValue(i: number): LiteralValueContext; - public literalValue(i?: number): LiteralValueContext | LiteralValueContext[] { - if (i === undefined) { - return this.getRuleContexts(LiteralValueContext); - } else { - return this.getRuleContext(i, LiteralValueContext); - } - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueList; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterValueList) { - listener.enterValueList(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitValueList) { - listener.exitValueList(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitValueList) { - return visitor.visitValueList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class QualifiedNameContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_qualifiedName; } - public copyFrom(ctx: QualifiedNameContext): void { - super.copyFrom(ctx); - } -} -export class IdentsAsQualifiedNameContext extends QualifiedNameContext { - public ident(): IdentContext[]; - public ident(i: number): IdentContext; - public ident(i?: number): IdentContext | IdentContext[] { - if (i === undefined) { - return this.getRuleContexts(IdentContext); - } else { - return this.getRuleContext(i, IdentContext); - } - } - public DOT(): TerminalNode[]; - public DOT(i: number): TerminalNode; - public DOT(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOT); - } else { - return this.getToken(OpenSearchPPLParser.DOT, i); - } - } - constructor(ctx: QualifiedNameContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIdentsAsQualifiedName) { - listener.enterIdentsAsQualifiedName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIdentsAsQualifiedName) { - listener.exitIdentsAsQualifiedName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIdentsAsQualifiedName) { - return visitor.visitIdentsAsQualifiedName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WcQualifiedNameContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcQualifiedName; } - public copyFrom(ctx: WcQualifiedNameContext): void { - super.copyFrom(ctx); - } -} -export class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { - public wildcard(): WildcardContext[]; - public wildcard(i: number): WildcardContext; - public wildcard(i?: number): WildcardContext | WildcardContext[] { - if (i === undefined) { - return this.getRuleContexts(WildcardContext); - } else { - return this.getRuleContext(i, WildcardContext); - } - } - public DOT(): TerminalNode[]; - public DOT(i: number): TerminalNode; - public DOT(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOT); - } else { - return this.getToken(OpenSearchPPLParser.DOT, i); - } - } - constructor(ctx: WcQualifiedNameContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIdentsAsWildcardQualifiedName) { - listener.enterIdentsAsWildcardQualifiedName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIdentsAsWildcardQualifiedName) { - listener.exitIdentsAsWildcardQualifiedName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIdentsAsWildcardQualifiedName) { - return visitor.visitIdentsAsWildcardQualifiedName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IdentContext extends ParserRuleContext { - public ID(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID, 0); } - public DOT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOT, 0); } - public BACKTICK(): TerminalNode[]; - public BACKTICK(i: number): TerminalNode; - public BACKTICK(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.BACKTICK); - } else { - return this.getToken(OpenSearchPPLParser.BACKTICK, i); - } - } - public ident(): IdentContext | undefined { - return this.tryGetRuleContext(0, IdentContext); - } - public BQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } - public keywordsCanBeId(): KeywordsCanBeIdContext | undefined { - return this.tryGetRuleContext(0, KeywordsCanBeIdContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_ident; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIdent) { - listener.enterIdent(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIdent) { - listener.exitIdent(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIdent) { - return visitor.visitIdent(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WildcardContext extends ParserRuleContext { - public ident(): IdentContext[]; - public ident(i: number): IdentContext; - public ident(i?: number): IdentContext | IdentContext[] { - if (i === undefined) { - return this.getRuleContexts(IdentContext); - } else { - return this.getRuleContext(i, IdentContext); - } - } - public MODULE(): TerminalNode[]; - public MODULE(i: number): TerminalNode; - public MODULE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.MODULE); - } else { - return this.getToken(OpenSearchPPLParser.MODULE, i); - } - } - public SINGLE_QUOTE(): TerminalNode[]; - public SINGLE_QUOTE(i: number): TerminalNode; - public SINGLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.SINGLE_QUOTE); - } else { - return this.getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); - } - } - public wildcard(): WildcardContext | undefined { - return this.tryGetRuleContext(0, WildcardContext); - } - public DOUBLE_QUOTE(): TerminalNode[]; - public DOUBLE_QUOTE(i: number): TerminalNode; - public DOUBLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); - } else { - return this.getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); - } - } - public BACKTICK(): TerminalNode[]; - public BACKTICK(i: number): TerminalNode; - public BACKTICK(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.BACKTICK); - } else { - return this.getToken(OpenSearchPPLParser.BACKTICK, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wildcard; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWildcard) { - listener.enterWildcard(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWildcard) { - listener.exitWildcard(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWildcard) { - return visitor.visitWildcard(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class KeywordsCanBeIdContext extends ParserRuleContext { - public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } - public statsFunctionName(): StatsFunctionNameContext | undefined { - return this.tryGetRuleContext(0, StatsFunctionNameContext); - } - public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } - public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } - public FIRST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIRST, 0); } - public LAST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LAST, 0); } - public timespanUnit(): TimespanUnitContext | undefined { - return this.tryGetRuleContext(0, TimespanUnitContext); - } - public SPAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SPAN, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_keywordsCanBeId; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterKeywordsCanBeId) { - listener.enterKeywordsCanBeId(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitKeywordsCanBeId) { - listener.exitKeywordsCanBeId(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitKeywordsCanBeId) { - return visitor.visitKeywordsCanBeId(this); - } else { - return visitor.visitChildren(this); - } - } -} - - diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts deleted file mode 100644 index b7ccd4986..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserListener.ts +++ /dev/null @@ -1,1327 +0,0 @@ -// Generated from ./antlr/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; - -import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; -import { SearchFromContext } from "./OpenSearchPPLParser"; -import { SearchFromFilterContext } from "./OpenSearchPPLParser"; -import { SearchFilterFromContext } from "./OpenSearchPPLParser"; -import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; -import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; -import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; -import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; -import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; -import { CompareExprContext } from "./OpenSearchPPLParser"; -import { InExprContext } from "./OpenSearchPPLParser"; -import { ComparsionContext } from "./OpenSearchPPLParser"; -import { LogicalNotContext } from "./OpenSearchPPLParser"; -import { LogicalOrContext } from "./OpenSearchPPLParser"; -import { LogicalAndContext } from "./OpenSearchPPLParser"; -import { LogicalXorContext } from "./OpenSearchPPLParser"; -import { BooleanExprContext } from "./OpenSearchPPLParser"; -import { RelevanceExprContext } from "./OpenSearchPPLParser"; -import { RootContext } from "./OpenSearchPPLParser"; -import { PplStatementContext } from "./OpenSearchPPLParser"; -import { CommandsContext } from "./OpenSearchPPLParser"; -import { SearchCommandContext } from "./OpenSearchPPLParser"; -import { WhereCommandContext } from "./OpenSearchPPLParser"; -import { FieldsCommandContext } from "./OpenSearchPPLParser"; -import { RenameCommandContext } from "./OpenSearchPPLParser"; -import { StatsCommandContext } from "./OpenSearchPPLParser"; -import { DedupCommandContext } from "./OpenSearchPPLParser"; -import { SortCommandContext } from "./OpenSearchPPLParser"; -import { EvalCommandContext } from "./OpenSearchPPLParser"; -import { HeadCommandContext } from "./OpenSearchPPLParser"; -import { TopCommandContext } from "./OpenSearchPPLParser"; -import { RareCommandContext } from "./OpenSearchPPLParser"; -import { ParseCommandContext } from "./OpenSearchPPLParser"; -import { KmeansCommandContext } from "./OpenSearchPPLParser"; -import { KmeansParameterContext } from "./OpenSearchPPLParser"; -import { AdCommandContext } from "./OpenSearchPPLParser"; -import { AdParameterContext } from "./OpenSearchPPLParser"; -import { FromClauseContext } from "./OpenSearchPPLParser"; -import { RenameClasueContext } from "./OpenSearchPPLParser"; -import { ByClauseContext } from "./OpenSearchPPLParser"; -import { StatsByClauseContext } from "./OpenSearchPPLParser"; -import { BySpanClauseContext } from "./OpenSearchPPLParser"; -import { SpanClauseContext } from "./OpenSearchPPLParser"; -import { SortbyClauseContext } from "./OpenSearchPPLParser"; -import { EvalClauseContext } from "./OpenSearchPPLParser"; -import { StatsAggTermContext } from "./OpenSearchPPLParser"; -import { StatsFunctionContext } from "./OpenSearchPPLParser"; -import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; -import { ExpressionContext } from "./OpenSearchPPLParser"; -import { LogicalExpressionContext } from "./OpenSearchPPLParser"; -import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; -import { ValueExpressionContext } from "./OpenSearchPPLParser"; -import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; -import { BooleanExpressionContext } from "./OpenSearchPPLParser"; -import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { TableSourceContext } from "./OpenSearchPPLParser"; -import { FieldListContext } from "./OpenSearchPPLParser"; -import { WcFieldListContext } from "./OpenSearchPPLParser"; -import { SortFieldContext } from "./OpenSearchPPLParser"; -import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; -import { FieldExpressionContext } from "./OpenSearchPPLParser"; -import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; -import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; -import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; -import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; -import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; -import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; -import { FunctionArgsContext } from "./OpenSearchPPLParser"; -import { FunctionArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldContext } from "./OpenSearchPPLParser"; -import { RelevanceQueryContext } from "./OpenSearchPPLParser"; -import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; -import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; -import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; -import { BinaryOperatorContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { LiteralValueContext } from "./OpenSearchPPLParser"; -import { IntervalLiteralContext } from "./OpenSearchPPLParser"; -import { StringLiteralContext } from "./OpenSearchPPLParser"; -import { IntegerLiteralContext } from "./OpenSearchPPLParser"; -import { DecimalLiteralContext } from "./OpenSearchPPLParser"; -import { BooleanLiteralContext } from "./OpenSearchPPLParser"; -import { PatternContext } from "./OpenSearchPPLParser"; -import { IntervalUnitContext } from "./OpenSearchPPLParser"; -import { TimespanUnitContext } from "./OpenSearchPPLParser"; -import { ValueListContext } from "./OpenSearchPPLParser"; -import { QualifiedNameContext } from "./OpenSearchPPLParser"; -import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; -import { IdentContext } from "./OpenSearchPPLParser"; -import { WildcardContext } from "./OpenSearchPPLParser"; -import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; - - -/** - * This interface defines a complete listener for a parse tree produced by - * `OpenSearchPPLParser`. - */ -export interface OpenSearchPPLParserListener extends ParseTreeListener { - /** - * Enter a parse tree produced by the `identsAsWildcardQualifiedName` - * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - enterIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; - /** - * Exit a parse tree produced by the `identsAsWildcardQualifiedName` - * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - exitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; - - /** - * Enter a parse tree produced by the `searchFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchFrom?: (ctx: SearchFromContext) => void; - /** - * Exit a parse tree produced by the `searchFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchFrom?: (ctx: SearchFromContext) => void; - - /** - * Enter a parse tree produced by the `searchFromFilter` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchFromFilter?: (ctx: SearchFromFilterContext) => void; - /** - * Exit a parse tree produced by the `searchFromFilter` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchFromFilter?: (ctx: SearchFromFilterContext) => void; - - /** - * Enter a parse tree produced by the `searchFilterFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; - /** - * Exit a parse tree produced by the `searchFilterFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; - - /** - * Enter a parse tree produced by the `statsFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `statsFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `countAllFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `countAllFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `distinctCountFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `distinctCountFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `percentileAggFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `percentileAggFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `identsAsQualifiedName` - * labeled alternative in `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - enterIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; - /** - * Exit a parse tree produced by the `identsAsQualifiedName` - * labeled alternative in `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - exitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; - - /** - * Enter a parse tree produced by the `binaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; - /** - * Exit a parse tree produced by the `binaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; - - /** - * Enter a parse tree produced by the `parentheticBinaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; - /** - * Exit a parse tree produced by the `parentheticBinaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; - - /** - * Enter a parse tree produced by the `valueExpressionDefault` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; - /** - * Exit a parse tree produced by the `valueExpressionDefault` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; - - /** - * Enter a parse tree produced by the `compareExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - enterCompareExpr?: (ctx: CompareExprContext) => void; - /** - * Exit a parse tree produced by the `compareExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - exitCompareExpr?: (ctx: CompareExprContext) => void; - - /** - * Enter a parse tree produced by the `inExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - enterInExpr?: (ctx: InExprContext) => void; - /** - * Exit a parse tree produced by the `inExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - exitInExpr?: (ctx: InExprContext) => void; - - /** - * Enter a parse tree produced by the `comparsion` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterComparsion?: (ctx: ComparsionContext) => void; - /** - * Exit a parse tree produced by the `comparsion` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitComparsion?: (ctx: ComparsionContext) => void; - - /** - * Enter a parse tree produced by the `logicalNot` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalNot?: (ctx: LogicalNotContext) => void; - /** - * Exit a parse tree produced by the `logicalNot` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalNot?: (ctx: LogicalNotContext) => void; - - /** - * Enter a parse tree produced by the `logicalOr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalOr?: (ctx: LogicalOrContext) => void; - /** - * Exit a parse tree produced by the `logicalOr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalOr?: (ctx: LogicalOrContext) => void; - - /** - * Enter a parse tree produced by the `logicalAnd` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalAnd?: (ctx: LogicalAndContext) => void; - /** - * Exit a parse tree produced by the `logicalAnd` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalAnd?: (ctx: LogicalAndContext) => void; - - /** - * Enter a parse tree produced by the `logicalXor` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalXor?: (ctx: LogicalXorContext) => void; - /** - * Exit a parse tree produced by the `logicalXor` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalXor?: (ctx: LogicalXorContext) => void; - - /** - * Enter a parse tree produced by the `booleanExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterBooleanExpr?: (ctx: BooleanExprContext) => void; - /** - * Exit a parse tree produced by the `booleanExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitBooleanExpr?: (ctx: BooleanExprContext) => void; - - /** - * Enter a parse tree produced by the `relevanceExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterRelevanceExpr?: (ctx: RelevanceExprContext) => void; - /** - * Exit a parse tree produced by the `relevanceExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitRelevanceExpr?: (ctx: RelevanceExprContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.root`. - * @param ctx the parse tree - */ - enterRoot?: (ctx: RootContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.root`. - * @param ctx the parse tree - */ - exitRoot?: (ctx: RootContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.pplStatement`. - * @param ctx the parse tree - */ - enterPplStatement?: (ctx: PplStatementContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.pplStatement`. - * @param ctx the parse tree - */ - exitPplStatement?: (ctx: PplStatementContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.commands`. - * @param ctx the parse tree - */ - enterCommands?: (ctx: CommandsContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.commands`. - * @param ctx the parse tree - */ - exitCommands?: (ctx: CommandsContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchCommand?: (ctx: SearchCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchCommand?: (ctx: SearchCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.whereCommand`. - * @param ctx the parse tree - */ - enterWhereCommand?: (ctx: WhereCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.whereCommand`. - * @param ctx the parse tree - */ - exitWhereCommand?: (ctx: WhereCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. - * @param ctx the parse tree - */ - enterFieldsCommand?: (ctx: FieldsCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. - * @param ctx the parse tree - */ - exitFieldsCommand?: (ctx: FieldsCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.renameCommand`. - * @param ctx the parse tree - */ - enterRenameCommand?: (ctx: RenameCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.renameCommand`. - * @param ctx the parse tree - */ - exitRenameCommand?: (ctx: RenameCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsCommand`. - * @param ctx the parse tree - */ - enterStatsCommand?: (ctx: StatsCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsCommand`. - * @param ctx the parse tree - */ - exitStatsCommand?: (ctx: StatsCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.dedupCommand`. - * @param ctx the parse tree - */ - enterDedupCommand?: (ctx: DedupCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. - * @param ctx the parse tree - */ - exitDedupCommand?: (ctx: DedupCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortCommand`. - * @param ctx the parse tree - */ - enterSortCommand?: (ctx: SortCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortCommand`. - * @param ctx the parse tree - */ - exitSortCommand?: (ctx: SortCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalCommand`. - * @param ctx the parse tree - */ - enterEvalCommand?: (ctx: EvalCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalCommand`. - * @param ctx the parse tree - */ - exitEvalCommand?: (ctx: EvalCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.headCommand`. - * @param ctx the parse tree - */ - enterHeadCommand?: (ctx: HeadCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.headCommand`. - * @param ctx the parse tree - */ - exitHeadCommand?: (ctx: HeadCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.topCommand`. - * @param ctx the parse tree - */ - enterTopCommand?: (ctx: TopCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.topCommand`. - * @param ctx the parse tree - */ - exitTopCommand?: (ctx: TopCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.rareCommand`. - * @param ctx the parse tree - */ - enterRareCommand?: (ctx: RareCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.rareCommand`. - * @param ctx the parse tree - */ - exitRareCommand?: (ctx: RareCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.parseCommand`. - * @param ctx the parse tree - */ - enterParseCommand?: (ctx: ParseCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.parseCommand`. - * @param ctx the parse tree - */ - exitParseCommand?: (ctx: ParseCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. - * @param ctx the parse tree - */ - enterKmeansCommand?: (ctx: KmeansCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. - * @param ctx the parse tree - */ - exitKmeansCommand?: (ctx: KmeansCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. - * @param ctx the parse tree - */ - enterKmeansParameter?: (ctx: KmeansParameterContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. - * @param ctx the parse tree - */ - exitKmeansParameter?: (ctx: KmeansParameterContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.adCommand`. - * @param ctx the parse tree - */ - enterAdCommand?: (ctx: AdCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.adCommand`. - * @param ctx the parse tree - */ - exitAdCommand?: (ctx: AdCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.adParameter`. - * @param ctx the parse tree - */ - enterAdParameter?: (ctx: AdParameterContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.adParameter`. - * @param ctx the parse tree - */ - exitAdParameter?: (ctx: AdParameterContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fromClause`. - * @param ctx the parse tree - */ - enterFromClause?: (ctx: FromClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fromClause`. - * @param ctx the parse tree - */ - exitFromClause?: (ctx: FromClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.renameClasue`. - * @param ctx the parse tree - */ - enterRenameClasue?: (ctx: RenameClasueContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.renameClasue`. - * @param ctx the parse tree - */ - exitRenameClasue?: (ctx: RenameClasueContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.byClause`. - * @param ctx the parse tree - */ - enterByClause?: (ctx: ByClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.byClause`. - * @param ctx the parse tree - */ - exitByClause?: (ctx: ByClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsByClause`. - * @param ctx the parse tree - */ - enterStatsByClause?: (ctx: StatsByClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsByClause`. - * @param ctx the parse tree - */ - exitStatsByClause?: (ctx: StatsByClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.bySpanClause`. - * @param ctx the parse tree - */ - enterBySpanClause?: (ctx: BySpanClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. - * @param ctx the parse tree - */ - exitBySpanClause?: (ctx: BySpanClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.spanClause`. - * @param ctx the parse tree - */ - enterSpanClause?: (ctx: SpanClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.spanClause`. - * @param ctx the parse tree - */ - exitSpanClause?: (ctx: SpanClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortbyClause`. - * @param ctx the parse tree - */ - enterSortbyClause?: (ctx: SortbyClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. - * @param ctx the parse tree - */ - exitSortbyClause?: (ctx: SortbyClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalClause`. - * @param ctx the parse tree - */ - enterEvalClause?: (ctx: EvalClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalClause`. - * @param ctx the parse tree - */ - exitEvalClause?: (ctx: EvalClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. - * @param ctx the parse tree - */ - enterStatsAggTerm?: (ctx: StatsAggTermContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. - * @param ctx the parse tree - */ - exitStatsAggTerm?: (ctx: StatsAggTermContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterStatsFunction?: (ctx: StatsFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitStatsFunction?: (ctx: StatsFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. - * @param ctx the parse tree - */ - enterStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. - * @param ctx the parse tree - */ - exitStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. - * @param ctx the parse tree - */ - enterPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. - * @param ctx the parse tree - */ - exitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.expression`. - * @param ctx the parse tree - */ - enterExpression?: (ctx: ExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.expression`. - * @param ctx the parse tree - */ - exitExpression?: (ctx: ExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalExpression?: (ctx: LogicalExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalExpression?: (ctx: LogicalExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - enterComparisonExpression?: (ctx: ComparisonExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - exitComparisonExpression?: (ctx: ComparisonExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterValueExpression?: (ctx: ValueExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitValueExpression?: (ctx: ValueExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.primaryExpression`. - * @param ctx the parse tree - */ - enterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. - * @param ctx the parse tree - */ - exitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.booleanExpression`. - * @param ctx the parse tree - */ - enterBooleanExpression?: (ctx: BooleanExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. - * @param ctx the parse tree - */ - exitBooleanExpression?: (ctx: BooleanExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. - * @param ctx the parse tree - */ - enterRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. - * @param ctx the parse tree - */ - exitRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. - * @param ctx the parse tree - */ - enterSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. - * @param ctx the parse tree - */ - exitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. - * @param ctx the parse tree - */ - enterMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. - * @param ctx the parse tree - */ - exitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.tableSource`. - * @param ctx the parse tree - */ - enterTableSource?: (ctx: TableSourceContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.tableSource`. - * @param ctx the parse tree - */ - exitTableSource?: (ctx: TableSourceContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fieldList`. - * @param ctx the parse tree - */ - enterFieldList?: (ctx: FieldListContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fieldList`. - * @param ctx the parse tree - */ - exitFieldList?: (ctx: FieldListContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldList`. - * @param ctx the parse tree - */ - enterWcFieldList?: (ctx: WcFieldListContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. - * @param ctx the parse tree - */ - exitWcFieldList?: (ctx: WcFieldListContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortField`. - * @param ctx the parse tree - */ - enterSortField?: (ctx: SortFieldContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortField`. - * @param ctx the parse tree - */ - exitSortField?: (ctx: SortFieldContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. - * @param ctx the parse tree - */ - enterSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. - * @param ctx the parse tree - */ - exitSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fieldExpression`. - * @param ctx the parse tree - */ - enterFieldExpression?: (ctx: FieldExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. - * @param ctx the parse tree - */ - exitFieldExpression?: (ctx: FieldExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. - * @param ctx the parse tree - */ - enterWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. - * @param ctx the parse tree - */ - exitWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. - * @param ctx the parse tree - */ - enterEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. - * @param ctx the parse tree - */ - exitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. - * @param ctx the parse tree - */ - enterDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. - * @param ctx the parse tree - */ - exitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. - * @param ctx the parse tree - */ - enterBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. - * @param ctx the parse tree - */ - exitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.convertedDataType`. - * @param ctx the parse tree - */ - enterConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. - * @param ctx the parse tree - */ - exitConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. - * @param ctx the parse tree - */ - enterEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. - * @param ctx the parse tree - */ - exitEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.functionArgs`. - * @param ctx the parse tree - */ - enterFunctionArgs?: (ctx: FunctionArgsContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.functionArgs`. - * @param ctx the parse tree - */ - exitFunctionArgs?: (ctx: FunctionArgsContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.functionArg`. - * @param ctx the parse tree - */ - enterFunctionArg?: (ctx: FunctionArgContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.functionArg`. - * @param ctx the parse tree - */ - exitFunctionArg?: (ctx: FunctionArgContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArg`. - * @param ctx the parse tree - */ - enterRelevanceArg?: (ctx: RelevanceArgContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. - * @param ctx the parse tree - */ - exitRelevanceArg?: (ctx: RelevanceArgContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. - * @param ctx the parse tree - */ - enterRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. - * @param ctx the parse tree - */ - exitRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. - * @param ctx the parse tree - */ - enterRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. - * @param ctx the parse tree - */ - exitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. - * @param ctx the parse tree - */ - enterRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. - * @param ctx the parse tree - */ - exitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceField`. - * @param ctx the parse tree - */ - enterRelevanceField?: (ctx: RelevanceFieldContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceField`. - * @param ctx the parse tree - */ - exitRelevanceField?: (ctx: RelevanceFieldContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. - * @param ctx the parse tree - */ - enterRelevanceQuery?: (ctx: RelevanceQueryContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. - * @param ctx the parse tree - */ - exitRelevanceQuery?: (ctx: RelevanceQueryContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. - * @param ctx the parse tree - */ - enterRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. - * @param ctx the parse tree - */ - exitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. - * @param ctx the parse tree - */ - enterMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. - * @param ctx the parse tree - */ - exitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. - * @param ctx the parse tree - */ - enterTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. - * @param ctx the parse tree - */ - exitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. - * @param ctx the parse tree - */ - enterDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. - * @param ctx the parse tree - */ - exitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. - * @param ctx the parse tree - */ - enterConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. - * @param ctx the parse tree - */ - exitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. - * @param ctx the parse tree - */ - enterTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. - * @param ctx the parse tree - */ - exitTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. - * @param ctx the parse tree - */ - enterComparisonOperator?: (ctx: ComparisonOperatorContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. - * @param ctx the parse tree - */ - exitComparisonOperator?: (ctx: ComparisonOperatorContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.binaryOperator`. - * @param ctx the parse tree - */ - enterBinaryOperator?: (ctx: BinaryOperatorContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. - * @param ctx the parse tree - */ - exitBinaryOperator?: (ctx: BinaryOperatorContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - enterSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - exitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - enterMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - exitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.literalValue`. - * @param ctx the parse tree - */ - enterLiteralValue?: (ctx: LiteralValueContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.literalValue`. - * @param ctx the parse tree - */ - exitLiteralValue?: (ctx: LiteralValueContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. - * @param ctx the parse tree - */ - enterIntervalLiteral?: (ctx: IntervalLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. - * @param ctx the parse tree - */ - exitIntervalLiteral?: (ctx: IntervalLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.stringLiteral`. - * @param ctx the parse tree - */ - enterStringLiteral?: (ctx: StringLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. - * @param ctx the parse tree - */ - exitStringLiteral?: (ctx: StringLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.integerLiteral`. - * @param ctx the parse tree - */ - enterIntegerLiteral?: (ctx: IntegerLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. - * @param ctx the parse tree - */ - exitIntegerLiteral?: (ctx: IntegerLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. - * @param ctx the parse tree - */ - enterDecimalLiteral?: (ctx: DecimalLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. - * @param ctx the parse tree - */ - exitDecimalLiteral?: (ctx: DecimalLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. - * @param ctx the parse tree - */ - enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. - * @param ctx the parse tree - */ - exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.pattern`. - * @param ctx the parse tree - */ - enterPattern?: (ctx: PatternContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.pattern`. - * @param ctx the parse tree - */ - exitPattern?: (ctx: PatternContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.intervalUnit`. - * @param ctx the parse tree - */ - enterIntervalUnit?: (ctx: IntervalUnitContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. - * @param ctx the parse tree - */ - exitIntervalUnit?: (ctx: IntervalUnitContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.timespanUnit`. - * @param ctx the parse tree - */ - enterTimespanUnit?: (ctx: TimespanUnitContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. - * @param ctx the parse tree - */ - exitTimespanUnit?: (ctx: TimespanUnitContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.valueList`. - * @param ctx the parse tree - */ - enterValueList?: (ctx: ValueListContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.valueList`. - * @param ctx the parse tree - */ - exitValueList?: (ctx: ValueListContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - enterQualifiedName?: (ctx: QualifiedNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - exitQualifiedName?: (ctx: QualifiedNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - enterWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - exitWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.ident`. - * @param ctx the parse tree - */ - enterIdent?: (ctx: IdentContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.ident`. - * @param ctx the parse tree - */ - exitIdent?: (ctx: IdentContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wildcard`. - * @param ctx the parse tree - */ - enterWildcard?: (ctx: WildcardContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wildcard`. - * @param ctx the parse tree - */ - exitWildcard?: (ctx: WildcardContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. - * @param ctx the parse tree - */ - enterKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. - * @param ctx the parse tree - */ - exitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; -} - diff --git a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts b/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts deleted file mode 100644 index 1646972b1..000000000 --- a/dashboards-observability/query_manager/antlr/bin/OpenSearchPPLParserVisitor.ts +++ /dev/null @@ -1,885 +0,0 @@ -// Generated from ./antlr/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; - -import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; -import { SearchFromContext } from "./OpenSearchPPLParser"; -import { SearchFromFilterContext } from "./OpenSearchPPLParser"; -import { SearchFilterFromContext } from "./OpenSearchPPLParser"; -import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; -import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; -import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; -import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; -import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; -import { CompareExprContext } from "./OpenSearchPPLParser"; -import { InExprContext } from "./OpenSearchPPLParser"; -import { ComparsionContext } from "./OpenSearchPPLParser"; -import { LogicalNotContext } from "./OpenSearchPPLParser"; -import { LogicalOrContext } from "./OpenSearchPPLParser"; -import { LogicalAndContext } from "./OpenSearchPPLParser"; -import { LogicalXorContext } from "./OpenSearchPPLParser"; -import { BooleanExprContext } from "./OpenSearchPPLParser"; -import { RelevanceExprContext } from "./OpenSearchPPLParser"; -import { RootContext } from "./OpenSearchPPLParser"; -import { PplStatementContext } from "./OpenSearchPPLParser"; -import { CommandsContext } from "./OpenSearchPPLParser"; -import { SearchCommandContext } from "./OpenSearchPPLParser"; -import { WhereCommandContext } from "./OpenSearchPPLParser"; -import { FieldsCommandContext } from "./OpenSearchPPLParser"; -import { RenameCommandContext } from "./OpenSearchPPLParser"; -import { StatsCommandContext } from "./OpenSearchPPLParser"; -import { DedupCommandContext } from "./OpenSearchPPLParser"; -import { SortCommandContext } from "./OpenSearchPPLParser"; -import { EvalCommandContext } from "./OpenSearchPPLParser"; -import { HeadCommandContext } from "./OpenSearchPPLParser"; -import { TopCommandContext } from "./OpenSearchPPLParser"; -import { RareCommandContext } from "./OpenSearchPPLParser"; -import { ParseCommandContext } from "./OpenSearchPPLParser"; -import { KmeansCommandContext } from "./OpenSearchPPLParser"; -import { KmeansParameterContext } from "./OpenSearchPPLParser"; -import { AdCommandContext } from "./OpenSearchPPLParser"; -import { AdParameterContext } from "./OpenSearchPPLParser"; -import { FromClauseContext } from "./OpenSearchPPLParser"; -import { RenameClasueContext } from "./OpenSearchPPLParser"; -import { ByClauseContext } from "./OpenSearchPPLParser"; -import { StatsByClauseContext } from "./OpenSearchPPLParser"; -import { BySpanClauseContext } from "./OpenSearchPPLParser"; -import { SpanClauseContext } from "./OpenSearchPPLParser"; -import { SortbyClauseContext } from "./OpenSearchPPLParser"; -import { EvalClauseContext } from "./OpenSearchPPLParser"; -import { StatsAggTermContext } from "./OpenSearchPPLParser"; -import { StatsFunctionContext } from "./OpenSearchPPLParser"; -import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; -import { ExpressionContext } from "./OpenSearchPPLParser"; -import { LogicalExpressionContext } from "./OpenSearchPPLParser"; -import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; -import { ValueExpressionContext } from "./OpenSearchPPLParser"; -import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; -import { BooleanExpressionContext } from "./OpenSearchPPLParser"; -import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { TableSourceContext } from "./OpenSearchPPLParser"; -import { FieldListContext } from "./OpenSearchPPLParser"; -import { WcFieldListContext } from "./OpenSearchPPLParser"; -import { SortFieldContext } from "./OpenSearchPPLParser"; -import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; -import { FieldExpressionContext } from "./OpenSearchPPLParser"; -import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; -import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; -import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; -import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; -import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; -import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; -import { FunctionArgsContext } from "./OpenSearchPPLParser"; -import { FunctionArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldContext } from "./OpenSearchPPLParser"; -import { RelevanceQueryContext } from "./OpenSearchPPLParser"; -import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; -import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; -import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; -import { BinaryOperatorContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { LiteralValueContext } from "./OpenSearchPPLParser"; -import { IntervalLiteralContext } from "./OpenSearchPPLParser"; -import { StringLiteralContext } from "./OpenSearchPPLParser"; -import { IntegerLiteralContext } from "./OpenSearchPPLParser"; -import { DecimalLiteralContext } from "./OpenSearchPPLParser"; -import { BooleanLiteralContext } from "./OpenSearchPPLParser"; -import { PatternContext } from "./OpenSearchPPLParser"; -import { IntervalUnitContext } from "./OpenSearchPPLParser"; -import { TimespanUnitContext } from "./OpenSearchPPLParser"; -import { ValueListContext } from "./OpenSearchPPLParser"; -import { QualifiedNameContext } from "./OpenSearchPPLParser"; -import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; -import { IdentContext } from "./OpenSearchPPLParser"; -import { WildcardContext } from "./OpenSearchPPLParser"; -import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; - - -/** - * This interface defines a complete generic visitor for a parse tree produced - * by `OpenSearchPPLParser`. - * - * @param The return type of the visit operation. Use `void` for - * operations with no return type. - */ -export interface OpenSearchPPLParserVisitor extends ParseTreeVisitor { - /** - * Visit a parse tree produced by the `identsAsWildcardQualifiedName` - * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by the `searchFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFrom?: (ctx: SearchFromContext) => Result; - - /** - * Visit a parse tree produced by the `searchFromFilter` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFromFilter?: (ctx: SearchFromFilterContext) => Result; - - /** - * Visit a parse tree produced by the `searchFilterFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFilterFrom?: (ctx: SearchFilterFromContext) => Result; - - /** - * Visit a parse tree produced by the `statsFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `countAllFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `distinctCountFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `percentileAggFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `identsAsQualifiedName` - * labeled alternative in `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by the `binaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => Result; - - /** - * Visit a parse tree produced by the `parentheticBinaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => Result; - - /** - * Visit a parse tree produced by the `valueExpressionDefault` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => Result; - - /** - * Visit a parse tree produced by the `compareExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompareExpr?: (ctx: CompareExprContext) => Result; - - /** - * Visit a parse tree produced by the `inExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitInExpr?: (ctx: InExprContext) => Result; - - /** - * Visit a parse tree produced by the `comparsion` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComparsion?: (ctx: ComparsionContext) => Result; - - /** - * Visit a parse tree produced by the `logicalNot` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalNot?: (ctx: LogicalNotContext) => Result; - - /** - * Visit a parse tree produced by the `logicalOr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalOr?: (ctx: LogicalOrContext) => Result; - - /** - * Visit a parse tree produced by the `logicalAnd` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalAnd?: (ctx: LogicalAndContext) => Result; - - /** - * Visit a parse tree produced by the `logicalXor` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalXor?: (ctx: LogicalXorContext) => Result; - - /** - * Visit a parse tree produced by the `booleanExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanExpr?: (ctx: BooleanExprContext) => Result; - - /** - * Visit a parse tree produced by the `relevanceExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceExpr?: (ctx: RelevanceExprContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.root`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRoot?: (ctx: RootContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.pplStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPplStatement?: (ctx: PplStatementContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.commands`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCommands?: (ctx: CommandsContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchCommand?: (ctx: SearchCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.whereCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWhereCommand?: (ctx: WhereCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFieldsCommand?: (ctx: FieldsCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.renameCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRenameCommand?: (ctx: RenameCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsCommand?: (ctx: StatsCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDedupCommand?: (ctx: DedupCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortCommand?: (ctx: SortCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalCommand?: (ctx: EvalCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.headCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitHeadCommand?: (ctx: HeadCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.topCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTopCommand?: (ctx: TopCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.rareCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRareCommand?: (ctx: RareCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.parseCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitParseCommand?: (ctx: ParseCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitKmeansCommand?: (ctx: KmeansCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitKmeansParameter?: (ctx: KmeansParameterContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.adCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAdCommand?: (ctx: AdCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.adParameter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAdParameter?: (ctx: AdParameterContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fromClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFromClause?: (ctx: FromClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.renameClasue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRenameClasue?: (ctx: RenameClasueContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.byClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitByClause?: (ctx: ByClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsByClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsByClause?: (ctx: StatsByClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBySpanClause?: (ctx: BySpanClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.spanClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSpanClause?: (ctx: SpanClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortbyClause?: (ctx: SortbyClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalClause?: (ctx: EvalClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsAggTerm?: (ctx: StatsAggTermContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsFunction?: (ctx: StatsFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsFunctionName?: (ctx: StatsFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.expression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitExpression?: (ctx: ExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalExpression?: (ctx: LogicalExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComparisonExpression?: (ctx: ComparisonExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValueExpression?: (ctx: ValueExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPrimaryExpression?: (ctx: PrimaryExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanExpression?: (ctx: BooleanExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceExpression?: (ctx: RelevanceExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.tableSource`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTableSource?: (ctx: TableSourceContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fieldList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFieldList?: (ctx: FieldListContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWcFieldList?: (ctx: WcFieldListContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortField`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortField?: (ctx: SortFieldContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortFieldExpression?: (ctx: SortFieldExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFieldExpression?: (ctx: FieldExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWcFieldExpression?: (ctx: WcFieldExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConvertedDataType?: (ctx: ConvertedDataTypeContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalFunctionName?: (ctx: EvalFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.functionArgs`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionArgs?: (ctx: FunctionArgsContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.functionArg`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionArg?: (ctx: FunctionArgContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceArg?: (ctx: RelevanceArgContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceArgName?: (ctx: RelevanceArgNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceField`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceField?: (ctx: RelevanceFieldContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceQuery?: (ctx: RelevanceQueryContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTextFunctionBase?: (ctx: TextFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComparisonOperator?: (ctx: ComparisonOperatorContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBinaryOperator?: (ctx: BinaryOperatorContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.literalValue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLiteralValue?: (ctx: LiteralValueContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIntervalLiteral?: (ctx: IntervalLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStringLiteral?: (ctx: StringLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIntegerLiteral?: (ctx: IntegerLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDecimalLiteral?: (ctx: DecimalLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanLiteral?: (ctx: BooleanLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.pattern`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPattern?: (ctx: PatternContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIntervalUnit?: (ctx: IntervalUnitContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTimespanUnit?: (ctx: TimespanUnitContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.valueList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValueList?: (ctx: ValueListContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitQualifiedName?: (ctx: QualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWcQualifiedName?: (ctx: WcQualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.ident`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIdent?: (ctx: IdentContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wildcard`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWildcard?: (ctx: WildcardContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. - * @param ctx the parse tree - * @return the visitor result - */ - visitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => Result; -} - diff --git a/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 b/dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 similarity index 100% rename from dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 rename to dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 diff --git a/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 b/dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLParser.g4 similarity index 100% rename from dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 rename to dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLParser.g4 diff --git a/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts b/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts index 607944835..959fe4d27 100644 --- a/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts +++ b/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts @@ -5,8 +5,8 @@ import { CharStreams, CommonTokenStream } from 'antlr4ts'; import { CaseInsensitiveCharStream } from '../antlr/adaptors/case_insensitive_char_stream'; -import { OpenSearchPPLLexer } from '../antlr/bin/OpenSearchPPLLexer'; -import { OpenSearchPPLParser } from '../antlr/bin/OpenSearchPPLParser'; +import { OpenSearchPPLLexer } from '../antlr/output/OpenSearchPPLLexer'; +import { OpenSearchPPLParser } from '../antlr/output/OpenSearchPPLParser'; /** * PPL Syntax Parser. diff --git a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts index c2b158ca2..13dea0f37 100644 --- a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts +++ b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts @@ -25,8 +25,8 @@ import { TimespanUnitContext, ValueExpressionContext, WcFieldExpressionContext, -} from '../../antlr/bin/OpenSearchPPLParser'; -import { OpenSearchPPLParserVisitor } from '../../antlr/bin/OpenSearchPPLParserVisitor'; +} from '../../antlr/output/OpenSearchPPLParser'; +import { OpenSearchPPLParserVisitor } from '../../antlr/output/OpenSearchPPLParserVisitor'; import { PPLNode } from '../node'; import { Aggregations } from '../tree/aggragations'; import { diff --git a/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts b/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts index 03e1f809d..a19b488d5 100644 --- a/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts +++ b/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts @@ -24,7 +24,7 @@ export class AggregateTerm extends PPLNode { toString(): string { if (this.alias) { - return `${this.statsFunction.toString()} as ${this.alias}`; + return `${this.statsFunction.toString()}${this.alias ? ` as ${this.alias}` : ''}`; } return `${this.statsFunction.toString()}`; } diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp deleted file mode 100644 index 68b2f0fd1..000000000 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.interp +++ /dev/null @@ -1,831 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -DATE_SUFFIX -ID_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -DEC_DIGIT -ERROR_RECOGNITION - -channel names: -DEFAULT_TOKEN_CHANNEL -HIDDEN -null -null -WHITESPACE -ERRORCHANNEL - -mode names: -DEFAULT_MODE - -atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 274, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 2, 533, 2, 535, 267, 537, 268, 539, 269, 541, 270, 543, 2, 545, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java deleted file mode 100644 index a4b0a792f..000000000 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.java +++ /dev/null @@ -1,1277 +0,0 @@ -// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.2 -import org.antlr.v4.runtime.Lexer; -import org.antlr.v4.runtime.CharStream; -import org.antlr.v4.runtime.Token; -import org.antlr.v4.runtime.TokenStream; -import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.atn.*; -import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.misc.*; - -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) -public class OpenSearchPPLLexer extends Lexer { - static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } - - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - new PredictionContextCache(); - public static final int - SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, - EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, - SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, - NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, - ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, - SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, - TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, - CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, - DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, - HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, - MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, - HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, - YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, - DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, - DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, - PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, - COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, - SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, - BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, - MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, - STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, - STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, - EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, - PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, - C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, - EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, - POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, - ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, - RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, - DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, - MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, - DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, - TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, - STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, - LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, - MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, - ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, - BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, - ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, - FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, - LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, - MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, - QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, - TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, - W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, - ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, - ERROR_RECOGNITION=269; - public static final int - WHITESPACE=2, ERRORCHANNEL=3; - public static String[] channelNames = { - "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL" - }; - - public static String[] modeNames = { - "DEFAULT_MODE" - }; - - private static String[] makeRuleNames() { - return new String[] { - "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", - "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", - "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", - "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", - "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", - "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", - "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", - "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", - "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", - "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", - "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", - "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", - "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", - "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", - "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", - "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "DATE_SUFFIX", - "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", - "DEC_DIGIT", "ERROR_RECOGNITION" - }; - } - public static final String[] ruleNames = makeRuleNames(); - - private static String[] makeLiteralNames() { - return new String[] { - null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", - "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", - "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", - "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", - "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", - "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", - "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", - "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", - "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", - "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", - "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", - "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", - "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", - "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", - "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", - "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", - "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", - "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", - "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", - "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", - "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", - "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", - "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", - "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", - "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", - "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", - "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", - "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" - }; - } - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static String[] makeSymbolicNames() { - return new String[] { - null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", - "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", - "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", - "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", - "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", - "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", - "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", - "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", - "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", - "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", - "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", - "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } - - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } - - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } - - @Override - - public Vocabulary getVocabulary() { - return VOCABULARY; - } - - - public OpenSearchPPLLexer(CharStream input) { - super(input); - _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); - } - - @Override - public String getGrammarFileName() { return "OpenSearchPPLLexer.g4"; } - - @Override - public String[] getRuleNames() { return ruleNames; } - - @Override - public String getSerializedATN() { return _serializedATN; } - - @Override - public String[] getChannelNames() { return channelNames; } - - @Override - public String[] getModeNames() { return modeNames; } - - @Override - public ATN getATN() { return _ATN; } - - private static final int _serializedATNSegments = 2; - private static final String _serializedATNSegment0 = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u010f\u0a6f\b\1\4"+ - "\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n"+ - "\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+ - "\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+ - "\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+ - " \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+ - "+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+ - "\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t"+ - "=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4"+ - "I\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\t"+ - "T\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_"+ - "\4`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k"+ - "\tk\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv"+ - "\4w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t"+ - "\u0080\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084"+ - "\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089"+ - "\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+ - "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ - "\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095\t\u0095\4\u0096\t\u0096"+ - "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a\4\u009b"+ - "\t\u009b\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f\t\u009f"+ - "\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3\4\u00a4"+ - "\t\u00a4\4\u00a5\t\u00a5\4\u00a6\t\u00a6\4\u00a7\t\u00a7\4\u00a8\t\u00a8"+ - "\4\u00a9\t\u00a9\4\u00aa\t\u00aa\4\u00ab\t\u00ab\4\u00ac\t\u00ac\4\u00ad"+ - "\t\u00ad\4\u00ae\t\u00ae\4\u00af\t\u00af\4\u00b0\t\u00b0\4\u00b1\t\u00b1"+ - "\4\u00b2\t\u00b2\4\u00b3\t\u00b3\4\u00b4\t\u00b4\4\u00b5\t\u00b5\4\u00b6"+ - "\t\u00b6\4\u00b7\t\u00b7\4\u00b8\t\u00b8\4\u00b9\t\u00b9\4\u00ba\t\u00ba"+ - "\4\u00bb\t\u00bb\4\u00bc\t\u00bc\4\u00bd\t\u00bd\4\u00be\t\u00be\4\u00bf"+ - "\t\u00bf\4\u00c0\t\u00c0\4\u00c1\t\u00c1\4\u00c2\t\u00c2\4\u00c3\t\u00c3"+ - "\4\u00c4\t\u00c4\4\u00c5\t\u00c5\4\u00c6\t\u00c6\4\u00c7\t\u00c7\4\u00c8"+ - "\t\u00c8\4\u00c9\t\u00c9\4\u00ca\t\u00ca\4\u00cb\t\u00cb\4\u00cc\t\u00cc"+ - "\4\u00cd\t\u00cd\4\u00ce\t\u00ce\4\u00cf\t\u00cf\4\u00d0\t\u00d0\4\u00d1"+ - "\t\u00d1\4\u00d2\t\u00d2\4\u00d3\t\u00d3\4\u00d4\t\u00d4\4\u00d5\t\u00d5"+ - "\4\u00d6\t\u00d6\4\u00d7\t\u00d7\4\u00d8\t\u00d8\4\u00d9\t\u00d9\4\u00da"+ - "\t\u00da\4\u00db\t\u00db\4\u00dc\t\u00dc\4\u00dd\t\u00dd\4\u00de\t\u00de"+ - "\4\u00df\t\u00df\4\u00e0\t\u00e0\4\u00e1\t\u00e1\4\u00e2\t\u00e2\4\u00e3"+ - "\t\u00e3\4\u00e4\t\u00e4\4\u00e5\t\u00e5\4\u00e6\t\u00e6\4\u00e7\t\u00e7"+ - "\4\u00e8\t\u00e8\4\u00e9\t\u00e9\4\u00ea\t\u00ea\4\u00eb\t\u00eb\4\u00ec"+ - "\t\u00ec\4\u00ed\t\u00ed\4\u00ee\t\u00ee\4\u00ef\t\u00ef\4\u00f0\t\u00f0"+ - "\4\u00f1\t\u00f1\4\u00f2\t\u00f2\4\u00f3\t\u00f3\4\u00f4\t\u00f4\4\u00f5"+ - "\t\u00f5\4\u00f6\t\u00f6\4\u00f7\t\u00f7\4\u00f8\t\u00f8\4\u00f9\t\u00f9"+ - "\4\u00fa\t\u00fa\4\u00fb\t\u00fb\4\u00fc\t\u00fc\4\u00fd\t\u00fd\4\u00fe"+ - "\t\u00fe\4\u00ff\t\u00ff\4\u0100\t\u0100\4\u0101\t\u0101\4\u0102\t\u0102"+ - "\4\u0103\t\u0103\4\u0104\t\u0104\4\u0105\t\u0105\4\u0106\t\u0106\4\u0107"+ - "\t\u0107\4\u0108\t\u0108\4\u0109\t\u0109\4\u010a\t\u010a\4\u010b\t\u010b"+ - "\4\u010c\t\u010c\4\u010d\t\u010d\4\u010e\t\u010e\4\u010f\t\u010f\4\u0110"+ - "\t\u0110\4\u0111\t\u0111\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\3\3"+ - "\3\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6"+ - "\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3"+ - "\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3"+ - "\f\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3"+ - "\17\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\21\3\22\3\22\3\22\3\23\3"+ - "\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3"+ - "\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3"+ - "\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3"+ - "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3"+ - "\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3"+ - "\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\3"+ - "\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3!\3"+ - "!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3"+ - "#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3"+ - "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+ - "&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3"+ - "(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3"+ - "*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3,\3,\3"+ - ",\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3"+ - "-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ - ".\3.\3.\3.\3.\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\62\3"+ - "\62\3\62\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3"+ - "\65\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3"+ - "8\38\38\38\38\38\38\38\38\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3"+ - ":\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3"+ - "<\3<\3<\3=\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3?\3?\3?\3?\3@\3@\3@\3@\3"+ - "@\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3"+ - "D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3"+ - "E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3"+ - "F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3"+ - "H\3H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3J\3J\3"+ - "J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3K\3"+ - "K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3M\3N\3"+ - "N\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3"+ - "P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3S\3S\3S\3"+ - "S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3"+ - "W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Z\3Z\3[\3[\3\\\3\\"+ - "\3]\3]\3^\3^\3_\3_\3_\3`\3`\3`\3a\3a\3a\3b\3b\3c\3c\3d\3d\3e\3e\3f\3f"+ - "\3g\3g\3h\3h\3i\3i\3j\3j\3k\3k\3l\3l\3m\3m\3n\3n\3o\3o\3p\3p\3q\3q\3r"+ - "\3r\3s\3s\3s\3s\3t\3t\3t\3t\3t\3t\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u"+ - "\3u\3u\3u\3v\3v\3v\3v\3v\3v\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3x\3x"+ - "\3x\3x\3y\3y\3y\3y\3y\3z\3z\3z\3z\3z\3z\3z\3{\3{\3{\3{\3|\3|\3|\3|\3|"+ - "\3}\3}\3}\3}\3}\3}\3~\3~\3~\3~\3~\3~\3\177\3\177\3\177\3\177\3\177\3\177"+ - "\3\177\3\u0080\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0081"+ - "\3\u0081\3\u0081\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082"+ - "\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083"+ - "\3\u0083\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085"+ - "\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086"+ - "\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0087"+ - "\3\u0087\3\u0087\3\u0087\3\u0087\3\u0087\3\u0088\3\u0088\3\u0088\3\u0088"+ - "\3\u0088\3\u0089\3\u0089\3\u0089\3\u0089\3\u0089\3\u008a\3\u008a\3\u008a"+ - "\3\u008a\3\u008a\3\u008a\3\u008a\3\u008b\3\u008b\3\u008b\3\u008b\3\u008b"+ - "\3\u008b\3\u008b\3\u008b\3\u008b\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ - "\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ - "\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008e\3\u008e"+ - "\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e"+ - "\3\u008e\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f"+ - "\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090"+ - "\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091"+ - "\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092"+ - "\3\u0092\3\u0092\3\u0092\3\u0092\3\u0093\3\u0093\3\u0093\3\u0093\3\u0093"+ - "\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094"+ - "\3\u0094\3\u0095\3\u0095\3\u0096\3\u0096\3\u0096\3\u0097\3\u0097\3\u0097"+ - "\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\3\u0098\3\u0099\3\u0099\3\u0099"+ - "\3\u0099\3\u0099\3\u0099\3\u0099\3\u0099\3\u009a\3\u009a\3\u009a\3\u009a"+ - "\3\u009a\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009c\3\u009c"+ - "\3\u009d\3\u009d\3\u009d\3\u009d\3\u009e\3\u009e\3\u009e\3\u009e\3\u009e"+ - "\3\u009e\3\u009f\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a1"+ - "\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a2\3\u00a2"+ - "\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4\3\u00a5"+ - "\3\u00a5\3\u00a5\3\u00a5\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6"+ - "\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a8\3\u00a8"+ - "\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00aa\3\u00aa"+ - "\3\u00aa\3\u00aa\3\u00aa\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab"+ - "\3\u00ab\3\u00ab\3\u00ab\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ad"+ - "\3\u00ad\3\u00ad\3\u00ad\3\u00ad\3\u00ae\3\u00ae\3\u00ae\3\u00ae\3\u00ae"+ - "\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00b0\3\u00b0\3\u00b0"+ - "\3\u00b0\3\u00b1\3\u00b1\3\u00b1\3\u00b1\3\u00b2\3\u00b2\3\u00b2\3\u00b2"+ - "\3\u00b2\3\u00b2\3\u00b2\3\u00b2\3\u00b3\3\u00b3\3\u00b3\3\u00b3\3\u00b3"+ - "\3\u00b3\3\u00b3\3\u00b3\3\u00b4\3\u00b4\3\u00b4\3\u00b4\3\u00b5\3\u00b5"+ - "\3\u00b5\3\u00b5\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6"+ - "\3\u00b6\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b8\3\u00b8\3\u00b8"+ - "\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b9\3\u00b9\3\u00b9"+ - "\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00ba\3\u00ba\3\u00ba"+ - "\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00bb"+ - "\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb"+ - "\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc"+ - "\3\u00bc\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd"+ - "\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be"+ - "\3\u00be\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf"+ - "\3\u00bf\3\u00bf\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0"+ - "\3\u00c0\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c2\3\u00c2\3\u00c2"+ - "\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2"+ - "\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3"+ - "\3\u00c3\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4"+ - "\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c5\3\u00c5\3\u00c5\3\u00c5\3\u00c5"+ - "\3\u00c5\3\u00c5\3\u00c5\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6"+ - "\3\u00c6\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7"+ - "\3\u00c7\3\u00c7\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c9"+ - "\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00ca\3\u00ca\3\u00ca\3\u00ca"+ - "\3\u00ca\3\u00cb\3\u00cb\3\u00cb\3\u00cc\3\u00cc\3\u00cc\3\u00cc\3\u00cc"+ - "\3\u00cc\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00ce\3\u00ce"+ - "\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00cf\3\u00cf\3\u00cf\3\u00cf"+ - "\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00d0\3\u00d0\3\u00d0"+ - "\3\u00d0\3\u00d0\3\u00d0\3\u00d0\3\u00d1\3\u00d1\3\u00d1\3\u00d1\3\u00d1"+ - "\3\u00d1\3\u00d1\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d3"+ - "\3\u00d3\3\u00d3\3\u00d3\3\u00d3\3\u00d4\3\u00d4\3\u00d4\3\u00d4\3\u00d4"+ - "\3\u00d4\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d6"+ - "\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d7\3\u00d7"+ - "\3\u00d7\3\u00d7\3\u00d7\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d9"+ - "\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00da\3\u00da\3\u00da"+ - "\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00db\3\u00db"+ - "\3\u00db\3\u00db\3\u00db\3\u00db\3\u00db\3\u00dc\3\u00dc\3\u00dc\3\u00dc"+ - "\3\u00dc\3\u00dc\3\u00dc\3\u00dd\3\u00dd\3\u00dd\3\u00de\3\u00de\3\u00de"+ - "\3\u00de\3\u00de\3\u00de\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df"+ - "\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00e0\3\u00e0"+ - "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ - "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ - "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ - "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ - "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ - "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ - "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e3"+ - "\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ - "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e5\3\u00e5\3\u00e5\3\u00e5\3\u00e5"+ - "\3\u00e5\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ - "\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ - "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7"+ - "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ - "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ - "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ - "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ - "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ - "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00ea\3\u00ea\3\u00ea\3\u00ea\3\u00ea"+ - "\3\u00ea\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ - "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ - "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ - "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ - "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ed\3\u00ed\3\u00ed"+ - "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ - "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ - "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee"+ - "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ef\3\u00ef\3\u00ef\3\u00ef"+ - "\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00f0\3\u00f0\3\u00f0"+ - "\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ - "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ - "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ - "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ - "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ - "\3\u00f2\3\u00f2\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3"+ - "\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f4"+ - "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ - "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ - "\3\u00f4\3\u00f4\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5"+ - "\3\u00f5\3\u00f5\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6"+ - "\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ - "\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ - "\3\u00f7\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8"+ - "\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f9\3\u00f9"+ - "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9"+ - "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00fa"+ - "\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fb\3\u00fb"+ - "\3\u00fb\3\u00fb\3\u00fb\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc"+ - "\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fd\3\u00fd\3\u00fd"+ - "\3\u00fd\3\u00fd\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ - "\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ - "\3\u00fe\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u0100\3\u0100\3\u0100"+ - "\3\u0101\3\u0101\3\u0102\3\u0102\3\u0103\3\u0103\3\u0104\3\u0104\3\u0105"+ - "\3\u0105\3\u0106\3\u0106\3\u0107\3\u0107\3\u0108\6\u0108\u0a19\n\u0108"+ - "\r\u0108\16\u0108\u0a1a\3\u0109\6\u0109\u0a1e\n\u0109\r\u0109\16\u0109"+ - "\u0a1f\5\u0109\u0a22\n\u0109\3\u0109\3\u0109\6\u0109\u0a26\n\u0109\r\u0109"+ - "\16\u0109\u0a27\3\u010a\3\u010a\6\u010a\u0a2c\n\u010a\r\u010a\16\u010a"+ - "\u0a2d\7\u010a\u0a30\n\u010a\f\u010a\16\u010a\u0a33\13\u010a\3\u010b\6"+ - "\u010b\u0a36\n\u010b\r\u010b\16\u010b\u0a37\3\u010b\7\u010b\u0a3b\n\u010b"+ - "\f\u010b\16\u010b\u0a3e\13\u010b\3\u010c\3\u010c\3\u010c\3\u010d\3\u010d"+ - "\3\u010d\3\u010d\3\u010d\3\u010d\7\u010d\u0a49\n\u010d\f\u010d\16\u010d"+ - "\u0a4c\13\u010d\3\u010d\3\u010d\3\u010e\3\u010e\3\u010e\3\u010e\3\u010e"+ - "\3\u010e\7\u010e\u0a56\n\u010e\f\u010e\16\u010e\u0a59\13\u010e\3\u010e"+ - "\3\u010e\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\7\u010f\u0a63"+ - "\n\u010f\f\u010f\16\u010f\u0a66\13\u010f\3\u010f\3\u010f\3\u0110\3\u0110"+ - "\3\u0111\3\u0111\3\u0111\3\u0111\3\u0a37\2\u0112\3\3\5\4\7\5\t\6\13\7"+ - "\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25"+ - ")\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O"+ - ")Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081"+ - "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095"+ - "L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9"+ - "V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd"+ - "`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1"+ - "j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5"+ - "t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9"+ - "~\u00fb\177\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105\u0084"+ - "\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111\u008a"+ - "\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d\u0090"+ - "\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129\u0096"+ - "\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135\u009c"+ - "\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141\u00a2"+ - "\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d\u00a8"+ - "\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159\u00ae"+ - "\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165\u00b4"+ - "\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171\u00ba"+ - "\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d\u00c0"+ - "\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189\u00c6"+ - "\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195\u00cc"+ - "\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1\u00d2"+ - "\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8"+ - "\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9\u00de"+ - "\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4"+ - "\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea"+ - "\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd\u00f0"+ - "\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6"+ - "\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc"+ - "\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201\u0102"+ - "\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d\u0108"+ - "\u020f\u0109\u0211\u010a\u0213\2\u0215\2\u0217\u010b\u0219\u010c\u021b"+ - "\u010d\u021d\u010e\u021f\2\u0221\u010f\3\2\n\3\2/\60\4\2,,\62;\4\2,,B"+ - "\\\7\2,,//\62;C\\aa\4\2$$^^\4\2))^^\4\2^^bb\3\2\62;\2\u0a7c\2\3\3\2\2"+ - "\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3"+ - "\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2"+ - "\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2"+ - "\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2"+ - "\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3"+ - "\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2"+ - "\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2"+ - "W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3"+ - "\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2"+ - "\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2"+ - "}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2"+ - "\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f"+ - "\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2"+ - "\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1"+ - "\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2"+ - "\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3"+ - "\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2"+ - "\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5"+ - "\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2"+ - "\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7"+ - "\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2"+ - "\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9"+ - "\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2"+ - "\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb"+ - "\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103\3\2\2"+ - "\2\2\u0105\3\2\2\2\2\u0107\3\2\2\2\2\u0109\3\2\2\2\2\u010b\3\2\2\2\2\u010d"+ - "\3\2\2\2\2\u010f\3\2\2\2\2\u0111\3\2\2\2\2\u0113\3\2\2\2\2\u0115\3\2\2"+ - "\2\2\u0117\3\2\2\2\2\u0119\3\2\2\2\2\u011b\3\2\2\2\2\u011d\3\2\2\2\2\u011f"+ - "\3\2\2\2\2\u0121\3\2\2\2\2\u0123\3\2\2\2\2\u0125\3\2\2\2\2\u0127\3\2\2"+ - "\2\2\u0129\3\2\2\2\2\u012b\3\2\2\2\2\u012d\3\2\2\2\2\u012f\3\2\2\2\2\u0131"+ - "\3\2\2\2\2\u0133\3\2\2\2\2\u0135\3\2\2\2\2\u0137\3\2\2\2\2\u0139\3\2\2"+ - "\2\2\u013b\3\2\2\2\2\u013d\3\2\2\2\2\u013f\3\2\2\2\2\u0141\3\2\2\2\2\u0143"+ - "\3\2\2\2\2\u0145\3\2\2\2\2\u0147\3\2\2\2\2\u0149\3\2\2\2\2\u014b\3\2\2"+ - "\2\2\u014d\3\2\2\2\2\u014f\3\2\2\2\2\u0151\3\2\2\2\2\u0153\3\2\2\2\2\u0155"+ - "\3\2\2\2\2\u0157\3\2\2\2\2\u0159\3\2\2\2\2\u015b\3\2\2\2\2\u015d\3\2\2"+ - "\2\2\u015f\3\2\2\2\2\u0161\3\2\2\2\2\u0163\3\2\2\2\2\u0165\3\2\2\2\2\u0167"+ - "\3\2\2\2\2\u0169\3\2\2\2\2\u016b\3\2\2\2\2\u016d\3\2\2\2\2\u016f\3\2\2"+ - "\2\2\u0171\3\2\2\2\2\u0173\3\2\2\2\2\u0175\3\2\2\2\2\u0177\3\2\2\2\2\u0179"+ - "\3\2\2\2\2\u017b\3\2\2\2\2\u017d\3\2\2\2\2\u017f\3\2\2\2\2\u0181\3\2\2"+ - "\2\2\u0183\3\2\2\2\2\u0185\3\2\2\2\2\u0187\3\2\2\2\2\u0189\3\2\2\2\2\u018b"+ - "\3\2\2\2\2\u018d\3\2\2\2\2\u018f\3\2\2\2\2\u0191\3\2\2\2\2\u0193\3\2\2"+ - "\2\2\u0195\3\2\2\2\2\u0197\3\2\2\2\2\u0199\3\2\2\2\2\u019b\3\2\2\2\2\u019d"+ - "\3\2\2\2\2\u019f\3\2\2\2\2\u01a1\3\2\2\2\2\u01a3\3\2\2\2\2\u01a5\3\2\2"+ - "\2\2\u01a7\3\2\2\2\2\u01a9\3\2\2\2\2\u01ab\3\2\2\2\2\u01ad\3\2\2\2\2\u01af"+ - "\3\2\2\2\2\u01b1\3\2\2\2\2\u01b3\3\2\2\2\2\u01b5\3\2\2\2\2\u01b7\3\2\2"+ - "\2\2\u01b9\3\2\2\2\2\u01bb\3\2\2\2\2\u01bd\3\2\2\2\2\u01bf\3\2\2\2\2\u01c1"+ - "\3\2\2\2\2\u01c3\3\2\2\2\2\u01c5\3\2\2\2\2\u01c7\3\2\2\2\2\u01c9\3\2\2"+ - "\2\2\u01cb\3\2\2\2\2\u01cd\3\2\2\2\2\u01cf\3\2\2\2\2\u01d1\3\2\2\2\2\u01d3"+ - "\3\2\2\2\2\u01d5\3\2\2\2\2\u01d7\3\2\2\2\2\u01d9\3\2\2\2\2\u01db\3\2\2"+ - "\2\2\u01dd\3\2\2\2\2\u01df\3\2\2\2\2\u01e1\3\2\2\2\2\u01e3\3\2\2\2\2\u01e5"+ - "\3\2\2\2\2\u01e7\3\2\2\2\2\u01e9\3\2\2\2\2\u01eb\3\2\2\2\2\u01ed\3\2\2"+ - "\2\2\u01ef\3\2\2\2\2\u01f1\3\2\2\2\2\u01f3\3\2\2\2\2\u01f5\3\2\2\2\2\u01f7"+ - "\3\2\2\2\2\u01f9\3\2\2\2\2\u01fb\3\2\2\2\2\u01fd\3\2\2\2\2\u01ff\3\2\2"+ - "\2\2\u0201\3\2\2\2\2\u0203\3\2\2\2\2\u0205\3\2\2\2\2\u0207\3\2\2\2\2\u0209"+ - "\3\2\2\2\2\u020b\3\2\2\2\2\u020d\3\2\2\2\2\u020f\3\2\2\2\2\u0211\3\2\2"+ - "\2\2\u0217\3\2\2\2\2\u0219\3\2\2\2\2\u021b\3\2\2\2\2\u021d\3\2\2\2\2\u0221"+ - "\3\2\2\2\3\u0223\3\2\2\2\5\u022a\3\2\2\2\7\u022f\3\2\2\2\t\u0235\3\2\2"+ - "\2\13\u023c\3\2\2\2\r\u0243\3\2\2\2\17\u0249\3\2\2\2\21\u024f\3\2\2\2"+ - "\23\u0254\3\2\2\2\25\u0259\3\2\2\2\27\u025e\3\2\2\2\31\u0262\3\2\2\2\33"+ - "\u0267\3\2\2\2\35\u026d\3\2\2\2\37\u0274\3\2\2\2!\u0277\3\2\2\2#\u027a"+ - "\3\2\2\2%\u027d\3\2\2\2\'\u0284\3\2\2\2)\u028a\3\2\2\2+\u028c\3\2\2\2"+ - "-\u0291\3\2\2\2/\u0298\3\2\2\2\61\u029d\3\2\2\2\63\u02a1\3\2\2\2\65\u02a4"+ - "\3\2\2\2\67\u02a8\3\2\2\29\u02b2\3\2\2\2;\u02be\3\2\2\2=\u02d0\3\2\2\2"+ - "?\u02db\3\2\2\2A\u02e2\3\2\2\2C\u02e8\3\2\2\2E\u02f2\3\2\2\2G\u02fd\3"+ - "\2\2\2I\u030b\3\2\2\2K\u031b\3\2\2\2M\u0328\3\2\2\2O\u0334\3\2\2\2Q\u0341"+ - "\3\2\2\2S\u034c\3\2\2\2U\u0359\3\2\2\2W\u0364\3\2\2\2Y\u036e\3\2\2\2["+ - "\u0381\3\2\2\2]\u0399\3\2\2\2_\u039e\3\2\2\2a\u03a1\3\2\2\2c\u03a5\3\2"+ - "\2\2e\u03a8\3\2\2\2g\u03ac\3\2\2\2i\u03b0\3\2\2\2k\u03b5\3\2\2\2m\u03bb"+ - "\3\2\2\2o\u03c2\3\2\2\2q\u03cb\3\2\2\2s\u03d4\3\2\2\2u\u03e0\3\2\2\2w"+ - "\u03ec\3\2\2\2y\u03f3\3\2\2\2{\u03fa\3\2\2\2}\u03ff\3\2\2\2\177\u0403"+ - "\3\2\2\2\u0081\u0408\3\2\2\2\u0083\u040e\3\2\2\2\u0085\u0416\3\2\2\2\u0087"+ - "\u041b\3\2\2\2\u0089\u042e\3\2\2\2\u008b\u0441\3\2\2\2\u008d\u044f\3\2"+ - "\2\2\u008f\u0460\3\2\2\2\u0091\u046c\3\2\2\2\u0093\u0478\3\2\2\2\u0095"+ - "\u0488\3\2\2\2\u0097\u0493\3\2\2\2\u0099\u049e\3\2\2\2\u009b\u04a7\3\2"+ - "\2\2\u009d\u04b2\3\2\2\2\u009f\u04bc\3\2\2\2\u00a1\u04c3\3\2\2\2\u00a3"+ - "\u04cf\3\2\2\2\u00a5\u04d3\3\2\2\2\u00a7\u04db\3\2\2\2\u00a9\u04e2\3\2"+ - "\2\2\u00ab\u04e7\3\2\2\2\u00ad\u04ed\3\2\2\2\u00af\u04f4\3\2\2\2\u00b1"+ - "\u04fc\3\2\2\2\u00b3\u04fe\3\2\2\2\u00b5\u0500\3\2\2\2\u00b7\u0502\3\2"+ - "\2\2\u00b9\u0504\3\2\2\2\u00bb\u0506\3\2\2\2\u00bd\u0508\3\2\2\2\u00bf"+ - "\u050b\3\2\2\2\u00c1\u050e\3\2\2\2\u00c3\u0511\3\2\2\2\u00c5\u0513\3\2"+ - "\2\2\u00c7\u0515\3\2\2\2\u00c9\u0517\3\2\2\2\u00cb\u0519\3\2\2\2\u00cd"+ - "\u051b\3\2\2\2\u00cf\u051d\3\2\2\2\u00d1\u051f\3\2\2\2\u00d3\u0521\3\2"+ - "\2\2\u00d5\u0523\3\2\2\2\u00d7\u0525\3\2\2\2\u00d9\u0527\3\2\2\2\u00db"+ - "\u0529\3\2\2\2\u00dd\u052b\3\2\2\2\u00df\u052d\3\2\2\2\u00e1\u052f\3\2"+ - "\2\2\u00e3\u0531\3\2\2\2\u00e5\u0533\3\2\2\2\u00e7\u0537\3\2\2\2\u00e9"+ - "\u053d\3\2\2\2\u00eb\u054c\3\2\2\2\u00ed\u0552\3\2\2\2\u00ef\u055e\3\2"+ - "\2\2\u00f1\u0562\3\2\2\2\u00f3\u0567\3\2\2\2\u00f5\u056e\3\2\2\2\u00f7"+ - "\u0572\3\2\2\2\u00f9\u0577\3\2\2\2\u00fb\u057d\3\2\2\2\u00fd\u0583\3\2"+ - "\2\2\u00ff\u058a\3\2\2\2\u0101\u058e\3\2\2\2\u0103\u0594\3\2\2\2\u0105"+ - "\u059d\3\2\2\2\u0107\u05a5\3\2\2\2\u0109\u05b1\3\2\2\2\u010b\u05bc\3\2"+ - "\2\2\u010d\u05c7\3\2\2\2\u010f\u05cd\3\2\2\2\u0111\u05d2\3\2\2\2\u0113"+ - "\u05d7\3\2\2\2\u0115\u05de\3\2\2\2\u0117\u05e7\3\2\2\2\u0119\u05f5\3\2"+ - "\2\2\u011b\u05fc\3\2\2\2\u011d\u0608\3\2\2\2\u011f\u0610\3\2\2\2\u0121"+ - "\u0619\3\2\2\2\u0123\u0624\3\2\2\2\u0125\u062f\3\2\2\2\u0127\u0634\3\2"+ - "\2\2\u0129\u063e\3\2\2\2\u012b\u0640\3\2\2\2\u012d\u0643\3\2\2\2\u012f"+ - "\u0647\3\2\2\2\u0131\u064c\3\2\2\2\u0133\u0654\3\2\2\2\u0135\u0659\3\2"+ - "\2\2\u0137\u065f\3\2\2\2\u0139\u0661\3\2\2\2\u013b\u0665\3\2\2\2\u013d"+ - "\u066b\3\2\2\2\u013f\u066e\3\2\2\2\u0141\u0672\3\2\2\2\u0143\u0678\3\2"+ - "\2\2\u0145\u067d\3\2\2\2\u0147\u0681\3\2\2\2\u0149\u0684\3\2\2\2\u014b"+ - "\u0688\3\2\2\2\u014d\u068e\3\2\2\2\u014f\u0693\3\2\2\2\u0151\u0699\3\2"+ - "\2\2\u0153\u069e\3\2\2\2\u0155\u06a3\3\2\2\2\u0157\u06ac\3\2\2\2\u0159"+ - "\u06b1\3\2\2\2\u015b\u06b6\3\2\2\2\u015d\u06bb\3\2\2\2\u015f\u06c1\3\2"+ - "\2\2\u0161\u06c5\3\2\2\2\u0163\u06c9\3\2\2\2\u0165\u06d1\3\2\2\2\u0167"+ - "\u06d9\3\2\2\2\u0169\u06dd\3\2\2\2\u016b\u06e1\3\2\2\2\u016d\u06e9\3\2"+ - "\2\2\u016f\u06ee\3\2\2\2\u0171\u06f7\3\2\2\2\u0173\u0700\3\2\2\2\u0175"+ - "\u070b\3\2\2\2\u0177\u0715\3\2\2\2\u0179\u071f\3\2\2\2\u017b\u0727\3\2"+ - "\2\2\u017d\u0731\3\2\2\2\u017f\u073b\3\2\2\2\u0181\u0743\3\2\2\2\u0183"+ - "\u0748\3\2\2\2\u0185\u0754\3\2\2\2\u0187\u075e\3\2\2\2\u0189\u076a\3\2"+ - "\2\2\u018b\u0772\3\2\2\2\u018d\u0779\3\2\2\2\u018f\u0783\3\2\2\2\u0191"+ - "\u0789\3\2\2\2\u0193\u078f\3\2\2\2\u0195\u0794\3\2\2\2\u0197\u0797\3\2"+ - "\2\2\u0199\u079d\3\2\2\2\u019b\u07a3\3\2\2\2\u019d\u07aa\3\2\2\2\u019f"+ - "\u07b4\3\2\2\2\u01a1\u07bb\3\2\2\2\u01a3\u07c2\3\2\2\2\u01a5\u07c8\3\2"+ - "\2\2\u01a7\u07cd\3\2\2\2\u01a9\u07d3\3\2\2\2\u01ab\u07da\3\2\2\2\u01ad"+ - "\u07e2\3\2\2\2\u01af\u07e7\3\2\2\2\u01b1\u07ec\3\2\2\2\u01b3\u07f3\3\2"+ - "\2\2\u01b5\u07fd\3\2\2\2\u01b7\u0804\3\2\2\2\u01b9\u080b\3\2\2\2\u01bb"+ - "\u080e\3\2\2\2\u01bd\u0814\3\2\2\2\u01bf\u0821\3\2\2\2\u01c1\u0835\3\2"+ - "\2\2\u01c3\u084c\3\2\2\2\u01c5\u085d\3\2\2\2\u01c7\u0866\3\2\2\2\u01c9"+ - "\u088a\3\2\2\2\u01cb\u0890\3\2\2\2\u01cd\u08a1\3\2\2\2\u01cf\u08af\3\2"+ - "\2\2\u01d1\u08c0\3\2\2\2\u01d3\u08db\3\2\2\2\u01d5\u08e1\3\2\2\2\u01d7"+ - "\u08f6\3\2\2\2\u01d9\u090a\3\2\2\2\u01db\u091f\3\2\2\2\u01dd\u092d\3\2"+ - "\2\2\u01df\u0937\3\2\2\2\u01e1\u093f\3\2\2\2\u01e3\u0951\3\2\2\2\u01e5"+ - "\u0969\3\2\2\2\u01e7\u0978\3\2\2\2\u01e9\u098d\3\2\2\2\u01eb\u0996\3\2"+ - "\2\2\u01ed\u09a2\3\2\2\2\u01ef\u09b0\3\2\2\2\u01f1\u09bf\3\2\2\2\u01f3"+ - "\u09d2\3\2\2\2\u01f5\u09da\3\2\2\2\u01f7\u09df\3\2\2\2\u01f9\u09eb\3\2"+ - "\2\2\u01fb\u09f0\3\2\2\2\u01fd\u0a01\3\2\2\2\u01ff\u0a06\3\2\2\2\u0201"+ - "\u0a09\3\2\2\2\u0203\u0a0b\3\2\2\2\u0205\u0a0d\3\2\2\2\u0207\u0a0f\3\2"+ - "\2\2\u0209\u0a11\3\2\2\2\u020b\u0a13\3\2\2\2\u020d\u0a15\3\2\2\2\u020f"+ - "\u0a18\3\2\2\2\u0211\u0a21\3\2\2\2\u0213\u0a31\3\2\2\2\u0215\u0a35\3\2"+ - "\2\2\u0217\u0a3f\3\2\2\2\u0219\u0a42\3\2\2\2\u021b\u0a4f\3\2\2\2\u021d"+ - "\u0a5c\3\2\2\2\u021f\u0a69\3\2\2\2\u0221\u0a6b\3\2\2\2\u0223\u0224\7U"+ - "\2\2\u0224\u0225\7G\2\2\u0225\u0226\7C\2\2\u0226\u0227\7T\2\2\u0227\u0228"+ - "\7E\2\2\u0228\u0229\7J\2\2\u0229\4\3\2\2\2\u022a\u022b\7H\2\2\u022b\u022c"+ - "\7T\2\2\u022c\u022d\7Q\2\2\u022d\u022e\7O\2\2\u022e\6\3\2\2\2\u022f\u0230"+ - "\7Y\2\2\u0230\u0231\7J\2\2\u0231\u0232\7G\2\2\u0232\u0233\7T\2\2\u0233"+ - "\u0234\7G\2\2\u0234\b\3\2\2\2\u0235\u0236\7H\2\2\u0236\u0237\7K\2\2\u0237"+ - "\u0238\7G\2\2\u0238\u0239\7N\2\2\u0239\u023a\7F\2\2\u023a\u023b\7U\2\2"+ - "\u023b\n\3\2\2\2\u023c\u023d\7T\2\2\u023d\u023e\7G\2\2\u023e\u023f\7P"+ - "\2\2\u023f\u0240\7C\2\2\u0240\u0241\7O\2\2\u0241\u0242\7G\2\2\u0242\f"+ - "\3\2\2\2\u0243\u0244\7U\2\2\u0244\u0245\7V\2\2\u0245\u0246\7C\2\2\u0246"+ - "\u0247\7V\2\2\u0247\u0248\7U\2\2\u0248\16\3\2\2\2\u0249\u024a\7F\2\2\u024a"+ - "\u024b\7G\2\2\u024b\u024c\7F\2\2\u024c\u024d\7W\2\2\u024d\u024e\7R\2\2"+ - "\u024e\20\3\2\2\2\u024f\u0250\7U\2\2\u0250\u0251\7Q\2\2\u0251\u0252\7"+ - "T\2\2\u0252\u0253\7V\2\2\u0253\22\3\2\2\2\u0254\u0255\7G\2\2\u0255\u0256"+ - "\7X\2\2\u0256\u0257\7C\2\2\u0257\u0258\7N\2\2\u0258\24\3\2\2\2\u0259\u025a"+ - "\7J\2\2\u025a\u025b\7G\2\2\u025b\u025c\7C\2\2\u025c\u025d\7F\2\2\u025d"+ - "\26\3\2\2\2\u025e\u025f\7V\2\2\u025f\u0260\7Q\2\2\u0260\u0261\7R\2\2\u0261"+ - "\30\3\2\2\2\u0262\u0263\7T\2\2\u0263\u0264\7C\2\2\u0264\u0265\7T\2\2\u0265"+ - "\u0266\7G\2\2\u0266\32\3\2\2\2\u0267\u0268\7R\2\2\u0268\u0269\7C\2\2\u0269"+ - "\u026a\7T\2\2\u026a\u026b\7U\2\2\u026b\u026c\7G\2\2\u026c\34\3\2\2\2\u026d"+ - "\u026e\7M\2\2\u026e\u026f\7O\2\2\u026f\u0270\7G\2\2\u0270\u0271\7C\2\2"+ - "\u0271\u0272\7P\2\2\u0272\u0273\7U\2\2\u0273\36\3\2\2\2\u0274\u0275\7"+ - "C\2\2\u0275\u0276\7F\2\2\u0276 \3\2\2\2\u0277\u0278\7C\2\2\u0278\u0279"+ - "\7U\2\2\u0279\"\3\2\2\2\u027a\u027b\7D\2\2\u027b\u027c\7[\2\2\u027c$\3"+ - "\2\2\2\u027d\u027e\7U\2\2\u027e\u027f\7Q\2\2\u027f\u0280\7W\2\2\u0280"+ - "\u0281\7T\2\2\u0281\u0282\7E\2\2\u0282\u0283\7G\2\2\u0283&\3\2\2\2\u0284"+ - "\u0285\7K\2\2\u0285\u0286\7P\2\2\u0286\u0287\7F\2\2\u0287\u0288\7G\2\2"+ - "\u0288\u0289\7Z\2\2\u0289(\3\2\2\2\u028a\u028b\7F\2\2\u028b*\3\2\2\2\u028c"+ - "\u028d\7F\2\2\u028d\u028e\7G\2\2\u028e\u028f\7U\2\2\u028f\u0290\7E\2\2"+ - "\u0290,\3\2\2\2\u0291\u0292\7U\2\2\u0292\u0293\7Q\2\2\u0293\u0294\7T\2"+ - "\2\u0294\u0295\7V\2\2\u0295\u0296\7D\2\2\u0296\u0297\7[\2\2\u0297.\3\2"+ - "\2\2\u0298\u0299\7C\2\2\u0299\u029a\7W\2\2\u029a\u029b\7V\2\2\u029b\u029c"+ - "\7Q\2\2\u029c\60\3\2\2\2\u029d\u029e\7U\2\2\u029e\u029f\7V\2\2\u029f\u02a0"+ - "\7T\2\2\u02a0\62\3\2\2\2\u02a1\u02a2\7K\2\2\u02a2\u02a3\7R\2\2\u02a3\64"+ - "\3\2\2\2\u02a4\u02a5\7P\2\2\u02a5\u02a6\7W\2\2\u02a6\u02a7\7O\2\2\u02a7"+ - "\66\3\2\2\2\u02a8\u02a9\7M\2\2\u02a9\u02aa\7G\2\2\u02aa\u02ab\7G\2\2\u02ab"+ - "\u02ac\7R\2\2\u02ac\u02ad\7G\2\2\u02ad\u02ae\7O\2\2\u02ae\u02af\7R\2\2"+ - "\u02af\u02b0\7V\2\2\u02b0\u02b1\7[\2\2\u02b18\3\2\2\2\u02b2\u02b3\7E\2"+ - "\2\u02b3\u02b4\7Q\2\2\u02b4\u02b5\7P\2\2\u02b5\u02b6\7U\2\2\u02b6\u02b7"+ - "\7G\2\2\u02b7\u02b8\7E\2\2\u02b8\u02b9\7W\2\2\u02b9\u02ba\7V\2\2\u02ba"+ - "\u02bb\7K\2\2\u02bb\u02bc\7X\2\2\u02bc\u02bd\7G\2\2\u02bd:\3\2\2\2\u02be"+ - "\u02bf\7F\2\2\u02bf\u02c0\7G\2\2\u02c0\u02c1\7F\2\2\u02c1\u02c2\7W\2\2"+ - "\u02c2\u02c3\7R\2\2\u02c3\u02c4\7a\2\2\u02c4\u02c5\7U\2\2\u02c5\u02c6"+ - "\7R\2\2\u02c6\u02c7\7N\2\2\u02c7\u02c8\7K\2\2\u02c8\u02c9\7V\2\2\u02c9"+ - "\u02ca\7X\2\2\u02ca\u02cb\7C\2\2\u02cb\u02cc\7N\2\2\u02cc\u02cd\7W\2\2"+ - "\u02cd\u02ce\7G\2\2\u02ce\u02cf\7U\2\2\u02cf<\3\2\2\2\u02d0\u02d1\7R\2"+ - "\2\u02d1\u02d2\7C\2\2\u02d2\u02d3\7T\2\2\u02d3\u02d4\7V\2\2\u02d4\u02d5"+ - "\7K\2\2\u02d5\u02d6\7V\2\2\u02d6\u02d7\7K\2\2\u02d7\u02d8\7Q\2\2\u02d8"+ - "\u02d9\7P\2\2\u02d9\u02da\7U\2\2\u02da>\3\2\2\2\u02db\u02dc\7C\2\2\u02dc"+ - "\u02dd\7N\2\2\u02dd\u02de\7N\2\2\u02de\u02df\7P\2\2\u02df\u02e0\7W\2\2"+ - "\u02e0\u02e1\7O\2\2\u02e1@\3\2\2\2\u02e2\u02e3\7F\2\2\u02e3\u02e4\7G\2"+ - "\2\u02e4\u02e5\7N\2\2\u02e5\u02e6\7K\2\2\u02e6\u02e7\7O\2\2\u02e7B\3\2"+ - "\2\2\u02e8\u02e9\7E\2\2\u02e9\u02ea\7G\2\2\u02ea\u02eb\7P\2\2\u02eb\u02ec"+ - "\7V\2\2\u02ec\u02ed\7T\2\2\u02ed\u02ee\7Q\2\2\u02ee\u02ef\7K\2\2\u02ef"+ - "\u02f0\7F\2\2\u02f0\u02f1\7U\2\2\u02f1D\3\2\2\2\u02f2\u02f3\7K\2\2\u02f3"+ - "\u02f4\7V\2\2\u02f4\u02f5\7G\2\2\u02f5\u02f6\7T\2\2\u02f6\u02f7\7C\2\2"+ - "\u02f7\u02f8\7V\2\2\u02f8\u02f9\7K\2\2\u02f9\u02fa\7Q\2\2\u02fa\u02fb"+ - "\7P\2\2\u02fb\u02fc\7U\2\2\u02fcF\3\2\2\2\u02fd\u02fe\7F\2\2\u02fe\u02ff"+ - "\7K\2\2\u02ff\u0300\7U\2\2\u0300\u0301\7V\2\2\u0301\u0302\7C\2\2\u0302"+ - "\u0303\7P\2\2\u0303\u0304\7E\2\2\u0304\u0305\7G\2\2\u0305\u0306\7a\2\2"+ - "\u0306\u0307\7V\2\2\u0307\u0308\7[\2\2\u0308\u0309\7R\2\2\u0309\u030a"+ - "\7G\2\2\u030aH\3\2\2\2\u030b\u030c\7P\2\2\u030c\u030d\7W\2\2\u030d\u030e"+ - "\7O\2\2\u030e\u030f\7D\2\2\u030f\u0310\7G\2\2\u0310\u0311\7T\2\2\u0311"+ - "\u0312\7a\2\2\u0312\u0313\7Q\2\2\u0313\u0314\7H\2\2\u0314\u0315\7a\2\2"+ - "\u0315\u0316\7V\2\2\u0316\u0317\7T\2\2\u0317\u0318\7G\2\2\u0318\u0319"+ - "\7G\2\2\u0319\u031a\7U\2\2\u031aJ\3\2\2\2\u031b\u031c\7U\2\2\u031c\u031d"+ - "\7J\2\2\u031d\u031e\7K\2\2\u031e\u031f\7P\2\2\u031f\u0320\7I\2\2\u0320"+ - "\u0321\7N\2\2\u0321\u0322\7G\2\2\u0322\u0323\7a\2\2\u0323\u0324\7U\2\2"+ - "\u0324\u0325\7K\2\2\u0325\u0326\7\\\2\2\u0326\u0327\7G\2\2\u0327L\3\2"+ - "\2\2\u0328\u0329\7U\2\2\u0329\u032a\7C\2\2\u032a\u032b\7O\2\2\u032b\u032c"+ - "\7R\2\2\u032c\u032d\7N\2\2\u032d\u032e\7G\2\2\u032e\u032f\7a\2\2\u032f"+ - "\u0330\7U\2\2\u0330\u0331\7K\2\2\u0331\u0332\7\\\2\2\u0332\u0333\7G\2"+ - "\2\u0333N\3\2\2\2\u0334\u0335\7Q\2\2\u0335\u0336\7W\2\2\u0336\u0337\7"+ - "V\2\2\u0337\u0338\7R\2\2\u0338\u0339\7W\2\2\u0339\u033a\7V\2\2\u033a\u033b"+ - "\7a\2\2\u033b\u033c\7C\2\2\u033c\u033d\7H\2\2\u033d\u033e\7V\2\2\u033e"+ - "\u033f\7G\2\2\u033f\u0340\7T\2\2\u0340P\3\2\2\2\u0341\u0342\7V\2\2\u0342"+ - "\u0343\7K\2\2\u0343\u0344\7O\2\2\u0344\u0345\7G\2\2\u0345\u0346\7a\2\2"+ - "\u0346\u0347\7F\2\2\u0347\u0348\7G\2\2\u0348\u0349\7E\2\2\u0349\u034a"+ - "\7C\2\2\u034a\u034b\7[\2\2\u034bR\3\2\2\2\u034c\u034d\7C\2\2\u034d\u034e"+ - "\7P\2\2\u034e\u034f\7Q\2\2\u034f\u0350\7O\2\2\u0350\u0351\7C\2\2\u0351"+ - "\u0352\7N\2\2\u0352\u0353\7[\2\2\u0353\u0354\7a\2\2\u0354\u0355\7T\2\2"+ - "\u0355\u0356\7C\2\2\u0356\u0357\7V\2\2\u0357\u0358\7G\2\2\u0358T\3\2\2"+ - "\2\u0359\u035a\7V\2\2\u035a\u035b\7K\2\2\u035b\u035c\7O\2\2\u035c\u035d"+ - "\7G\2\2\u035d\u035e\7a\2\2\u035e\u035f\7H\2\2\u035f\u0360\7K\2\2\u0360"+ - "\u0361\7G\2\2\u0361\u0362\7N\2\2\u0362\u0363\7F\2\2\u0363V\3\2\2\2\u0364"+ - "\u0365\7V\2\2\u0365\u0366\7K\2\2\u0366\u0367\7O\2\2\u0367\u0368\7G\2\2"+ - "\u0368\u0369\7a\2\2\u0369\u036a\7\\\2\2\u036a\u036b\7Q\2\2\u036b\u036c"+ - "\7P\2\2\u036c\u036d\7G\2\2\u036dX\3\2\2\2\u036e\u036f\7V\2\2\u036f\u0370"+ - "\7T\2\2\u0370\u0371\7C\2\2\u0371\u0372\7K\2\2\u0372\u0373\7P\2\2\u0373"+ - "\u0374\7K\2\2\u0374\u0375\7P\2\2\u0375\u0376\7I\2\2\u0376\u0377\7a\2\2"+ - "\u0377\u0378\7F\2\2\u0378\u0379\7C\2\2\u0379\u037a\7V\2\2\u037a\u037b"+ - "\7C\2\2\u037b\u037c\7a\2\2\u037c\u037d\7U\2\2\u037d\u037e\7K\2\2\u037e"+ - "\u037f\7\\\2\2\u037f\u0380\7G\2\2\u0380Z\3\2\2\2\u0381\u0382\7C\2\2\u0382"+ - "\u0383\7P\2\2\u0383\u0384\7Q\2\2\u0384\u0385\7O\2\2\u0385\u0386\7C\2\2"+ - "\u0386\u0387\7N\2\2\u0387\u0388\7[\2\2\u0388\u0389\7a\2\2\u0389\u038a"+ - "\7U\2\2\u038a\u038b\7E\2\2\u038b\u038c\7Q\2\2\u038c\u038d\7T\2\2\u038d"+ - "\u038e\7G\2\2\u038e\u038f\7a\2\2\u038f\u0390\7V\2\2\u0390\u0391\7J\2\2"+ - "\u0391\u0392\7T\2\2\u0392\u0393\7G\2\2\u0393\u0394\7U\2\2\u0394\u0395"+ - "\7J\2\2\u0395\u0396\7Q\2\2\u0396\u0397\7N\2\2\u0397\u0398\7F\2\2\u0398"+ - "\\\3\2\2\2\u0399\u039a\7E\2\2\u039a\u039b\7C\2\2\u039b\u039c\7U\2\2\u039c"+ - "\u039d\7G\2\2\u039d^\3\2\2\2\u039e\u039f\7K\2\2\u039f\u03a0\7P\2\2\u03a0"+ - "`\3\2\2\2\u03a1\u03a2\7P\2\2\u03a2\u03a3\7Q\2\2\u03a3\u03a4\7V\2\2\u03a4"+ - "b\3\2\2\2\u03a5\u03a6\7Q\2\2\u03a6\u03a7\7T\2\2\u03a7d\3\2\2\2\u03a8\u03a9"+ - "\7C\2\2\u03a9\u03aa\7P\2\2\u03aa\u03ab\7F\2\2\u03abf\3\2\2\2\u03ac\u03ad"+ - "\7Z\2\2\u03ad\u03ae\7Q\2\2\u03ae\u03af\7T\2\2\u03afh\3\2\2\2\u03b0\u03b1"+ - "\7V\2\2\u03b1\u03b2\7T\2\2\u03b2\u03b3\7W\2\2\u03b3\u03b4\7G\2\2\u03b4"+ - "j\3\2\2\2\u03b5\u03b6\7H\2\2\u03b6\u03b7\7C\2\2\u03b7\u03b8\7N\2\2\u03b8"+ - "\u03b9\7U\2\2\u03b9\u03ba\7G\2\2\u03bal\3\2\2\2\u03bb\u03bc\7T\2\2\u03bc"+ - "\u03bd\7G\2\2\u03bd\u03be\7I\2\2\u03be\u03bf\7G\2\2\u03bf\u03c0\7Z\2\2"+ - "\u03c0\u03c1\7R\2\2\u03c1n\3\2\2\2\u03c2\u03c3\7F\2\2\u03c3\u03c4\7C\2"+ - "\2\u03c4\u03c5\7V\2\2\u03c5\u03c6\7G\2\2\u03c6\u03c7\7V\2\2\u03c7\u03c8"+ - "\7K\2\2\u03c8\u03c9\7O\2\2\u03c9\u03ca\7G\2\2\u03cap\3\2\2\2\u03cb\u03cc"+ - "\7K\2\2\u03cc\u03cd\7P\2\2\u03cd\u03ce\7V\2\2\u03ce\u03cf\7G\2\2\u03cf"+ - "\u03d0\7T\2\2\u03d0\u03d1\7X\2\2\u03d1\u03d2\7C\2\2\u03d2\u03d3\7N\2\2"+ - "\u03d3r\3\2\2\2\u03d4\u03d5\7O\2\2\u03d5\u03d6\7K\2\2\u03d6\u03d7\7E\2"+ - "\2\u03d7\u03d8\7T\2\2\u03d8\u03d9\7Q\2\2\u03d9\u03da\7U\2\2\u03da\u03db"+ - "\7G\2\2\u03db\u03dc\7E\2\2\u03dc\u03dd\7Q\2\2\u03dd\u03de\7P\2\2\u03de"+ - "\u03df\7F\2\2\u03dft\3\2\2\2\u03e0\u03e1\7O\2\2\u03e1\u03e2\7K\2\2\u03e2"+ - "\u03e3\7N\2\2\u03e3\u03e4\7N\2\2\u03e4\u03e5\7K\2\2\u03e5\u03e6\7U\2\2"+ - "\u03e6\u03e7\7G\2\2\u03e7\u03e8\7E\2\2\u03e8\u03e9\7Q\2\2\u03e9\u03ea"+ - "\7P\2\2\u03ea\u03eb\7F\2\2\u03ebv\3\2\2\2\u03ec\u03ed\7U\2\2\u03ed\u03ee"+ - "\7G\2\2\u03ee\u03ef\7E\2\2\u03ef\u03f0\7Q\2\2\u03f0\u03f1\7P\2\2\u03f1"+ - "\u03f2\7F\2\2\u03f2x\3\2\2\2\u03f3\u03f4\7O\2\2\u03f4\u03f5\7K\2\2\u03f5"+ - "\u03f6\7P\2\2\u03f6\u03f7\7W\2\2\u03f7\u03f8\7V\2\2\u03f8\u03f9\7G\2\2"+ - "\u03f9z\3\2\2\2\u03fa\u03fb\7J\2\2\u03fb\u03fc\7Q\2\2\u03fc\u03fd\7W\2"+ - "\2\u03fd\u03fe\7T\2\2\u03fe|\3\2\2\2\u03ff\u0400\7F\2\2\u0400\u0401\7"+ - "C\2\2\u0401\u0402\7[\2\2\u0402~\3\2\2\2\u0403\u0404\7Y\2\2\u0404\u0405"+ - "\7G\2\2\u0405\u0406\7G\2\2\u0406\u0407\7M\2\2\u0407\u0080\3\2\2\2\u0408"+ - "\u0409\7O\2\2\u0409\u040a\7Q\2\2\u040a\u040b\7P\2\2\u040b\u040c\7V\2\2"+ - "\u040c\u040d\7J\2\2\u040d\u0082\3\2\2\2\u040e\u040f\7S\2\2\u040f\u0410"+ - "\7W\2\2\u0410\u0411\7C\2\2\u0411\u0412\7T\2\2\u0412\u0413\7V\2\2\u0413"+ - "\u0414\7G\2\2\u0414\u0415\7T\2\2\u0415\u0084\3\2\2\2\u0416\u0417\7[\2"+ - "\2\u0417\u0418\7G\2\2\u0418\u0419\7C\2\2\u0419\u041a\7T\2\2\u041a\u0086"+ - "\3\2\2\2\u041b\u041c\7U\2\2\u041c\u041d\7G\2\2\u041d\u041e\7E\2\2\u041e"+ - "\u041f\7Q\2\2\u041f\u0420\7P\2\2\u0420\u0421\7F\2\2\u0421\u0422\7a\2\2"+ - "\u0422\u0423\7O\2\2\u0423\u0424\7K\2\2\u0424\u0425\7E\2\2\u0425\u0426"+ - "\7T\2\2\u0426\u0427\7Q\2\2\u0427\u0428\7U\2\2\u0428\u0429\7G\2\2\u0429"+ - "\u042a\7E\2\2\u042a\u042b\7Q\2\2\u042b\u042c\7P\2\2\u042c\u042d\7F\2\2"+ - "\u042d\u0088\3\2\2\2\u042e\u042f\7O\2\2\u042f\u0430\7K\2\2\u0430\u0431"+ - "\7P\2\2\u0431\u0432\7W\2\2\u0432\u0433\7V\2\2\u0433\u0434\7G\2\2\u0434"+ - "\u0435\7a\2\2\u0435\u0436\7O\2\2\u0436\u0437\7K\2\2\u0437\u0438\7E\2\2"+ - "\u0438\u0439\7T\2\2\u0439\u043a\7Q\2\2\u043a\u043b\7U\2\2\u043b\u043c"+ - "\7G\2\2\u043c\u043d\7E\2\2\u043d\u043e\7Q\2\2\u043e\u043f\7P\2\2\u043f"+ - "\u0440\7F\2\2\u0440\u008a\3\2\2\2\u0441\u0442\7O\2\2\u0442\u0443\7K\2"+ - "\2\u0443\u0444\7P\2\2\u0444\u0445\7W\2\2\u0445\u0446\7V\2\2\u0446\u0447"+ - "\7G\2\2\u0447\u0448\7a\2\2\u0448\u0449\7U\2\2\u0449\u044a\7G\2\2\u044a"+ - "\u044b\7E\2\2\u044b\u044c\7Q\2\2\u044c\u044d\7P\2\2\u044d\u044e\7F\2\2"+ - "\u044e\u008c\3\2\2\2\u044f\u0450\7J\2\2\u0450\u0451\7Q\2\2\u0451\u0452"+ - "\7W\2\2\u0452\u0453\7T\2\2\u0453\u0454\7a\2\2\u0454\u0455\7O\2\2\u0455"+ - "\u0456\7K\2\2\u0456\u0457\7E\2\2\u0457\u0458\7T\2\2\u0458\u0459\7Q\2\2"+ - "\u0459\u045a\7U\2\2\u045a\u045b\7G\2\2\u045b\u045c\7E\2\2\u045c\u045d"+ - "\7Q\2\2\u045d\u045e\7P\2\2\u045e\u045f\7F\2\2\u045f\u008e\3\2\2\2\u0460"+ - "\u0461\7J\2\2\u0461\u0462\7Q\2\2\u0462\u0463\7W\2\2\u0463\u0464\7T\2\2"+ - "\u0464\u0465\7a\2\2\u0465\u0466\7U\2\2\u0466\u0467\7G\2\2\u0467\u0468"+ - "\7E\2\2\u0468\u0469\7Q\2\2\u0469\u046a\7P\2\2\u046a\u046b\7F\2\2\u046b"+ - "\u0090\3\2\2\2\u046c\u046d\7J\2\2\u046d\u046e\7Q\2\2\u046e\u046f\7W\2"+ - "\2\u046f\u0470\7T\2\2\u0470\u0471\7a\2\2\u0471\u0472\7O\2\2\u0472\u0473"+ - "\7K\2\2\u0473\u0474\7P\2\2\u0474\u0475\7W\2\2\u0475\u0476\7V\2\2\u0476"+ - "\u0477\7G\2\2\u0477\u0092\3\2\2\2\u0478\u0479\7F\2\2\u0479\u047a\7C\2"+ - "\2\u047a\u047b\7[\2\2\u047b\u047c\7a\2\2\u047c\u047d\7O\2\2\u047d\u047e"+ - "\7K\2\2\u047e\u047f\7E\2\2\u047f\u0480\7T\2\2\u0480\u0481\7Q\2\2\u0481"+ - "\u0482\7U\2\2\u0482\u0483\7G\2\2\u0483\u0484\7E\2\2\u0484\u0485\7Q\2\2"+ - "\u0485\u0486\7P\2\2\u0486\u0487\7F\2\2\u0487\u0094\3\2\2\2\u0488\u0489"+ - "\7F\2\2\u0489\u048a\7C\2\2\u048a\u048b\7[\2\2\u048b\u048c\7a\2\2\u048c"+ - "\u048d\7U\2\2\u048d\u048e\7G\2\2\u048e\u048f\7E\2\2\u048f\u0490\7Q\2\2"+ - "\u0490\u0491\7P\2\2\u0491\u0492\7F\2\2\u0492\u0096\3\2\2\2\u0493\u0494"+ - "\7F\2\2\u0494\u0495\7C\2\2\u0495\u0496\7[\2\2\u0496\u0497\7a\2\2\u0497"+ - "\u0498\7O\2\2\u0498\u0499\7K\2\2\u0499\u049a\7P\2\2\u049a\u049b\7W\2\2"+ - "\u049b\u049c\7V\2\2\u049c\u049d\7G\2\2\u049d\u0098\3\2\2\2\u049e\u049f"+ - "\7F\2\2\u049f\u04a0\7C\2\2\u04a0\u04a1\7[\2\2\u04a1\u04a2\7a\2\2\u04a2"+ - "\u04a3\7J\2\2\u04a3\u04a4\7Q\2\2\u04a4\u04a5\7W\2\2\u04a5\u04a6\7T\2\2"+ - "\u04a6\u009a\3\2\2\2\u04a7\u04a8\7[\2\2\u04a8\u04a9\7G\2\2\u04a9\u04aa"+ - "\7C\2\2\u04aa\u04ab\7T\2\2\u04ab\u04ac\7a\2\2\u04ac\u04ad\7O\2\2\u04ad"+ - "\u04ae\7Q\2\2\u04ae\u04af\7P\2\2\u04af\u04b0\7V\2\2\u04b0\u04b1\7J\2\2"+ - "\u04b1\u009c\3\2\2\2\u04b2\u04b3\7F\2\2\u04b3\u04b4\7C\2\2\u04b4\u04b5"+ - "\7V\2\2\u04b5\u04b6\7C\2\2\u04b6\u04b7\7O\2\2\u04b7\u04b8\7Q\2\2\u04b8"+ - "\u04b9\7F\2\2\u04b9\u04ba\7G\2\2\u04ba\u04bb\7N\2\2\u04bb\u009e\3\2\2"+ - "\2\u04bc\u04bd\7N\2\2\u04bd\u04be\7Q\2\2\u04be\u04bf\7Q\2\2\u04bf\u04c0"+ - "\7M\2\2\u04c0\u04c1\7W\2\2\u04c1\u04c2\7R\2\2\u04c2\u00a0\3\2\2\2\u04c3"+ - "\u04c4\7U\2\2\u04c4\u04c5\7C\2\2\u04c5\u04c6\7X\2\2\u04c6\u04c7\7G\2\2"+ - "\u04c7\u04c8\7F\2\2\u04c8\u04c9\7U\2\2\u04c9\u04ca\7G\2\2\u04ca\u04cb"+ - "\7C\2\2\u04cb\u04cc\7T\2\2\u04cc\u04cd\7E\2\2\u04cd\u04ce\7J\2\2\u04ce"+ - "\u00a2\3\2\2\2\u04cf\u04d0\7K\2\2\u04d0\u04d1\7P\2\2\u04d1\u04d2\7V\2"+ - "\2\u04d2\u00a4\3\2\2\2\u04d3\u04d4\7K\2\2\u04d4\u04d5\7P\2\2\u04d5\u04d6"+ - "\7V\2\2\u04d6\u04d7\7G\2\2\u04d7\u04d8\7I\2\2\u04d8\u04d9\7G\2\2\u04d9"+ - "\u04da\7T\2\2\u04da\u00a6\3\2\2\2\u04db\u04dc\7F\2\2\u04dc\u04dd\7Q\2"+ - "\2\u04dd\u04de\7W\2\2\u04de\u04df\7D\2\2\u04df\u04e0\7N\2\2\u04e0\u04e1"+ - "\7G\2\2\u04e1\u00a8\3\2\2\2\u04e2\u04e3\7N\2\2\u04e3\u04e4\7Q\2\2\u04e4"+ - "\u04e5\7P\2\2\u04e5\u04e6\7I\2\2\u04e6\u00aa\3\2\2\2\u04e7\u04e8\7H\2"+ - "\2\u04e8\u04e9\7N\2\2\u04e9\u04ea\7Q\2\2\u04ea\u04eb\7C\2\2\u04eb\u04ec"+ - "\7V\2\2\u04ec\u00ac\3\2\2\2\u04ed\u04ee\7U\2\2\u04ee\u04ef\7V\2\2\u04ef"+ - "\u04f0\7T\2\2\u04f0\u04f1\7K\2\2\u04f1\u04f2\7P\2\2\u04f2\u04f3\7I\2\2"+ - "\u04f3\u00ae\3\2\2\2\u04f4\u04f5\7D\2\2\u04f5\u04f6\7Q\2\2\u04f6\u04f7"+ - "\7Q\2\2\u04f7\u04f8\7N\2\2\u04f8\u04f9\7G\2\2\u04f9\u04fa\7C\2\2\u04fa"+ - "\u04fb\7P\2\2\u04fb\u00b0\3\2\2\2\u04fc\u04fd\7~\2\2\u04fd\u00b2\3\2\2"+ - "\2\u04fe\u04ff\7.\2\2\u04ff\u00b4\3\2\2\2\u0500\u0501\7\60\2\2\u0501\u00b6"+ - "\3\2\2\2\u0502\u0503\7?\2\2\u0503\u00b8\3\2\2\2\u0504\u0505\7@\2\2\u0505"+ - "\u00ba\3\2\2\2\u0506\u0507\7>\2\2\u0507\u00bc\3\2\2\2\u0508\u0509\7>\2"+ - "\2\u0509\u050a\7?\2\2\u050a\u00be\3\2\2\2\u050b\u050c\7@\2\2\u050c\u050d"+ - "\7?\2\2\u050d\u00c0\3\2\2\2\u050e\u050f\7#\2\2\u050f\u0510\7?\2\2\u0510"+ - "\u00c2\3\2\2\2\u0511\u0512\7-\2\2\u0512\u00c4\3\2\2\2\u0513\u0514\7/\2"+ - "\2\u0514\u00c6\3\2\2\2\u0515\u0516\7,\2\2\u0516\u00c8\3\2\2\2\u0517\u0518"+ - "\7\61\2\2\u0518\u00ca\3\2\2\2\u0519\u051a\7\'\2\2\u051a\u00cc\3\2\2\2"+ - "\u051b\u051c\7#\2\2\u051c\u00ce\3\2\2\2\u051d\u051e\7<\2\2\u051e\u00d0"+ - "\3\2\2\2\u051f\u0520\7*\2\2\u0520\u00d2\3\2\2\2\u0521\u0522\7+\2\2\u0522"+ - "\u00d4\3\2\2\2\u0523\u0524\7]\2\2\u0524\u00d6\3\2\2\2\u0525\u0526\7_\2"+ - "\2\u0526\u00d8\3\2\2\2\u0527\u0528\7)\2\2\u0528\u00da\3\2\2\2\u0529\u052a"+ - "\7$\2\2\u052a\u00dc\3\2\2\2\u052b\u052c\7b\2\2\u052c\u00de\3\2\2\2\u052d"+ - "\u052e\7\u0080\2\2\u052e\u00e0\3\2\2\2\u052f\u0530\7(\2\2\u0530\u00e2"+ - "\3\2\2\2\u0531\u0532\7`\2\2\u0532\u00e4\3\2\2\2\u0533\u0534\7C\2\2\u0534"+ - "\u0535\7X\2\2\u0535\u0536\7I\2\2\u0536\u00e6\3\2\2\2\u0537\u0538\7E\2"+ - "\2\u0538\u0539\7Q\2\2\u0539\u053a\7W\2\2\u053a\u053b\7P\2\2\u053b\u053c"+ - "\7V\2\2\u053c\u00e8\3\2\2\2\u053d\u053e\7F\2\2\u053e\u053f\7K\2\2\u053f"+ - "\u0540\7U\2\2\u0540\u0541\7V\2\2\u0541\u0542\7K\2\2\u0542\u0543\7P\2\2"+ - "\u0543\u0544\7E\2\2\u0544\u0545\7V\2\2\u0545\u0546\7a\2\2\u0546\u0547"+ - "\7E\2\2\u0547\u0548\7Q\2\2\u0548\u0549\7W\2\2\u0549\u054a\7P\2\2\u054a"+ - "\u054b\7V\2\2\u054b\u00ea\3\2\2\2\u054c\u054d\7G\2\2\u054d\u054e\7U\2"+ - "\2\u054e\u054f\7V\2\2\u054f\u0550\7F\2\2\u0550\u0551\7E\2\2\u0551\u00ec"+ - "\3\2\2\2\u0552\u0553\7G\2\2\u0553\u0554\7U\2\2\u0554\u0555\7V\2\2\u0555"+ - "\u0556\7F\2\2\u0556\u0557\7E\2\2\u0557\u0558\7a\2\2\u0558\u0559\7G\2\2"+ - "\u0559\u055a\7T\2\2\u055a\u055b\7T\2\2\u055b\u055c\7Q\2\2\u055c\u055d"+ - "\7T\2\2\u055d\u00ee\3\2\2\2\u055e\u055f\7O\2\2\u055f\u0560\7C\2\2\u0560"+ - "\u0561\7Z\2\2\u0561\u00f0\3\2\2\2\u0562\u0563\7O\2\2\u0563\u0564\7G\2"+ - "\2\u0564\u0565\7C\2\2\u0565\u0566\7P\2\2\u0566\u00f2\3\2\2\2\u0567\u0568"+ - "\7O\2\2\u0568\u0569\7G\2\2\u0569\u056a\7F\2\2\u056a\u056b\7K\2\2\u056b"+ - "\u056c\7C\2\2\u056c\u056d\7P\2\2\u056d\u00f4\3\2\2\2\u056e\u056f\7O\2"+ - "\2\u056f\u0570\7K\2\2\u0570\u0571\7P\2\2\u0571\u00f6\3\2\2\2\u0572\u0573"+ - "\7O\2\2\u0573\u0574\7Q\2\2\u0574\u0575\7F\2\2\u0575\u0576\7G\2\2\u0576"+ - "\u00f8\3\2\2\2\u0577\u0578\7T\2\2\u0578\u0579\7C\2\2\u0579\u057a\7P\2"+ - "\2\u057a\u057b\7I\2\2\u057b\u057c\7G\2\2\u057c\u00fa\3\2\2\2\u057d\u057e"+ - "\7U\2\2\u057e\u057f\7V\2\2\u057f\u0580\7F\2\2\u0580\u0581\7G\2\2\u0581"+ - "\u0582\7X\2\2\u0582\u00fc\3\2\2\2\u0583\u0584\7U\2\2\u0584\u0585\7V\2"+ - "\2\u0585\u0586\7F\2\2\u0586\u0587\7G\2\2\u0587\u0588\7X\2\2\u0588\u0589"+ - "\7R\2\2\u0589\u00fe\3\2\2\2\u058a\u058b\7U\2\2\u058b\u058c\7W\2\2\u058c"+ - "\u058d\7O\2\2\u058d\u0100\3\2\2\2\u058e\u058f\7U\2\2\u058f\u0590\7W\2"+ - "\2\u0590\u0591\7O\2\2\u0591\u0592\7U\2\2\u0592\u0593\7S\2\2\u0593\u0102"+ - "\3\2\2\2\u0594\u0595\7X\2\2\u0595\u0596\7C\2\2\u0596\u0597\7T\2\2\u0597"+ - "\u0598\7a\2\2\u0598\u0599\7U\2\2\u0599\u059a\7C\2\2\u059a\u059b\7O\2\2"+ - "\u059b\u059c\7R\2\2\u059c\u0104\3\2\2\2\u059d\u059e\7X\2\2\u059e\u059f"+ - "\7C\2\2\u059f\u05a0\7T\2\2\u05a0\u05a1\7a\2\2\u05a1\u05a2\7R\2\2\u05a2"+ - "\u05a3\7Q\2\2\u05a3\u05a4\7R\2\2\u05a4\u0106\3\2\2\2\u05a5\u05a6\7U\2"+ - "\2\u05a6\u05a7\7V\2\2\u05a7\u05a8\7F\2\2\u05a8\u05a9\7F\2\2\u05a9\u05aa"+ - "\7G\2\2\u05aa\u05ab\7X\2\2\u05ab\u05ac\7a\2\2\u05ac\u05ad\7U\2\2\u05ad"+ - "\u05ae\7C\2\2\u05ae\u05af\7O\2\2\u05af\u05b0\7R\2\2\u05b0\u0108\3\2\2"+ - "\2\u05b1\u05b2\7U\2\2\u05b2\u05b3\7V\2\2\u05b3\u05b4\7F\2\2\u05b4\u05b5"+ - "\7F\2\2\u05b5\u05b6\7G\2\2\u05b6\u05b7\7X\2\2\u05b7\u05b8\7a\2\2\u05b8"+ - "\u05b9\7R\2\2\u05b9\u05ba\7Q\2\2\u05ba\u05bb\7R\2\2\u05bb\u010a\3\2\2"+ - "\2\u05bc\u05bd\7R\2\2\u05bd\u05be\7G\2\2\u05be\u05bf\7T\2\2\u05bf\u05c0"+ - "\7E\2\2\u05c0\u05c1\7G\2\2\u05c1\u05c2\7P\2\2\u05c2\u05c3\7V\2\2\u05c3"+ - "\u05c4\7K\2\2\u05c4\u05c5\7N\2\2\u05c5\u05c6\7G\2\2\u05c6\u010c\3\2\2"+ - "\2\u05c7\u05c8\7H\2\2\u05c8\u05c9\7K\2\2\u05c9\u05ca\7T\2\2\u05ca\u05cb"+ - "\7U\2\2\u05cb\u05cc\7V\2\2\u05cc\u010e\3\2\2\2\u05cd\u05ce\7N\2\2\u05ce"+ - "\u05cf\7C\2\2\u05cf\u05d0\7U\2\2\u05d0\u05d1\7V\2\2\u05d1\u0110\3\2\2"+ - "\2\u05d2\u05d3\7N\2\2\u05d3\u05d4\7K\2\2\u05d4\u05d5\7U\2\2\u05d5\u05d6"+ - "\7V\2\2\u05d6\u0112\3\2\2\2\u05d7\u05d8\7X\2\2\u05d8\u05d9\7C\2\2\u05d9"+ - "\u05da\7N\2\2\u05da\u05db\7W\2\2\u05db\u05dc\7G\2\2\u05dc\u05dd\7U\2\2"+ - "\u05dd\u0114\3\2\2\2\u05de\u05df\7G\2\2\u05df\u05e0\7C\2\2\u05e0\u05e1"+ - "\7T\2\2\u05e1\u05e2\7N\2\2\u05e2\u05e3\7K\2\2\u05e3\u05e4\7G\2\2\u05e4"+ - "\u05e5\7U\2\2\u05e5\u05e6\7V\2\2\u05e6\u0116\3\2\2\2\u05e7\u05e8\7G\2"+ - "\2\u05e8\u05e9\7C\2\2\u05e9\u05ea\7T\2\2\u05ea\u05eb\7N\2\2\u05eb\u05ec"+ - "\7K\2\2\u05ec\u05ed\7G\2\2\u05ed\u05ee\7U\2\2\u05ee\u05ef\7V\2\2\u05ef"+ - "\u05f0\7a\2\2\u05f0\u05f1\7V\2\2\u05f1\u05f2\7K\2\2\u05f2\u05f3\7O\2\2"+ - "\u05f3\u05f4\7G\2\2\u05f4\u0118\3\2\2\2\u05f5\u05f6\7N\2\2\u05f6\u05f7"+ - "\7C\2\2\u05f7\u05f8\7V\2\2\u05f8\u05f9\7G\2\2\u05f9\u05fa\7U\2\2\u05fa"+ - "\u05fb\7V\2\2\u05fb\u011a\3\2\2\2\u05fc\u05fd\7N\2\2\u05fd\u05fe\7C\2"+ - "\2\u05fe\u05ff\7V\2\2\u05ff\u0600\7G\2\2\u0600\u0601\7U\2\2\u0601\u0602"+ - "\7V\2\2\u0602\u0603\7a\2\2\u0603\u0604\7V\2\2\u0604\u0605\7K\2\2\u0605"+ - "\u0606\7O\2\2\u0606\u0607\7G\2\2\u0607\u011c\3\2\2\2\u0608\u0609\7R\2"+ - "\2\u0609\u060a\7G\2\2\u060a\u060b\7T\2\2\u060b\u060c\7a\2\2\u060c\u060d"+ - "\7F\2\2\u060d\u060e\7C\2\2\u060e\u060f\7[\2\2\u060f\u011e\3\2\2\2\u0610"+ - "\u0611\7R\2\2\u0611\u0612\7G\2\2\u0612\u0613\7T\2\2\u0613\u0614\7a\2\2"+ - "\u0614\u0615\7J\2\2\u0615\u0616\7Q\2\2\u0616\u0617\7W\2\2\u0617\u0618"+ - "\7T\2\2\u0618\u0120\3\2\2\2\u0619\u061a\7R\2\2\u061a\u061b\7G\2\2\u061b"+ - "\u061c\7T\2\2\u061c\u061d\7a\2\2\u061d\u061e\7O\2\2\u061e\u061f\7K\2\2"+ - "\u061f\u0620\7P\2\2\u0620\u0621\7W\2\2\u0621\u0622\7V\2\2\u0622\u0623"+ - "\7G\2\2\u0623\u0122\3\2\2\2\u0624\u0625\7R\2\2\u0625\u0626\7G\2\2\u0626"+ - "\u0627\7T\2\2\u0627\u0628\7a\2\2\u0628\u0629\7U\2\2\u0629\u062a\7G\2\2"+ - "\u062a\u062b\7E\2\2\u062b\u062c\7Q\2\2\u062c\u062d\7P\2\2\u062d\u062e"+ - "\7F\2\2\u062e\u0124\3\2\2\2\u062f\u0630\7T\2\2\u0630\u0631\7C\2\2\u0631"+ - "\u0632\7V\2\2\u0632\u0633\7G\2\2\u0633\u0126\3\2\2\2\u0634\u0635\7U\2"+ - "\2\u0635\u0636\7R\2\2\u0636\u0637\7C\2\2\u0637\u0638\7T\2\2\u0638\u0639"+ - "\7M\2\2\u0639\u063a\7N\2\2\u063a\u063b\7K\2\2\u063b\u063c\7P\2\2\u063c"+ - "\u063d\7G\2\2\u063d\u0128\3\2\2\2\u063e\u063f\7E\2\2\u063f\u012a\3\2\2"+ - "\2\u0640\u0641\7F\2\2\u0641\u0642\7E\2\2\u0642\u012c\3\2\2\2\u0643\u0644"+ - "\7C\2\2\u0644\u0645\7D\2\2\u0645\u0646\7U\2\2\u0646\u012e\3\2\2\2\u0647"+ - "\u0648\7E\2\2\u0648\u0649\7G\2\2\u0649\u064a\7K\2\2\u064a\u064b\7N\2\2"+ - "\u064b\u0130\3\2\2\2\u064c\u064d\7E\2\2\u064d\u064e\7G\2\2\u064e\u064f"+ - "\7K\2\2\u064f\u0650\7N\2\2\u0650\u0651\7K\2\2\u0651\u0652\7P\2\2\u0652"+ - "\u0653\7I\2\2\u0653\u0132\3\2\2\2\u0654\u0655\7E\2\2\u0655\u0656\7Q\2"+ - "\2\u0656\u0657\7P\2\2\u0657\u0658\7X\2\2\u0658\u0134\3\2\2\2\u0659\u065a"+ - "\7E\2\2\u065a\u065b\7T\2\2\u065b\u065c\7E\2\2\u065c\u065d\7\65\2\2\u065d"+ - "\u065e\7\64\2\2\u065e\u0136\3\2\2\2\u065f\u0660\7G\2\2\u0660\u0138\3\2"+ - "\2\2\u0661\u0662\7G\2\2\u0662\u0663\7Z\2\2\u0663\u0664\7R\2\2\u0664\u013a"+ - "\3\2\2\2\u0665\u0666\7H\2\2\u0666\u0667\7N\2\2\u0667\u0668\7Q\2\2\u0668"+ - "\u0669\7Q\2\2\u0669\u066a\7T\2\2\u066a\u013c\3\2\2\2\u066b\u066c\7N\2"+ - "\2\u066c\u066d\7P\2\2\u066d\u013e\3\2\2\2\u066e\u066f\7N\2\2\u066f\u0670"+ - "\7Q\2\2\u0670\u0671\7I\2\2\u0671\u0140\3\2\2\2\u0672\u0673\7N\2\2\u0673"+ - "\u0674\7Q\2\2\u0674\u0675\7I\2\2\u0675\u0676\7\63\2\2\u0676\u0677\7\62"+ - "\2\2\u0677\u0142\3\2\2\2\u0678\u0679\7N\2\2\u0679\u067a\7Q\2\2\u067a\u067b"+ - "\7I\2\2\u067b\u067c\7\64\2\2\u067c\u0144\3\2\2\2\u067d\u067e\7O\2\2\u067e"+ - "\u067f\7Q\2\2\u067f\u0680\7F\2\2\u0680\u0146\3\2\2\2\u0681\u0682\7R\2"+ - "\2\u0682\u0683\7K\2\2\u0683\u0148\3\2\2\2\u0684\u0685\7R\2\2\u0685\u0686"+ - "\7Q\2\2\u0686\u0687\7Y\2\2\u0687\u014a\3\2\2\2\u0688\u0689\7R\2\2\u0689"+ - "\u068a\7Q\2\2\u068a\u068b\7Y\2\2\u068b\u068c\7G\2\2\u068c\u068d\7T\2\2"+ - "\u068d\u014c\3\2\2\2\u068e\u068f\7T\2\2\u068f\u0690\7C\2\2\u0690\u0691"+ - "\7P\2\2\u0691\u0692\7F\2\2\u0692\u014e\3\2\2\2\u0693\u0694\7T\2\2\u0694"+ - "\u0695\7Q\2\2\u0695\u0696\7W\2\2\u0696\u0697\7P\2\2\u0697\u0698\7F\2\2"+ - "\u0698\u0150\3\2\2\2\u0699\u069a\7U\2\2\u069a\u069b\7K\2\2\u069b\u069c"+ - "\7I\2\2\u069c\u069d\7P\2\2\u069d\u0152\3\2\2\2\u069e\u069f\7U\2\2\u069f"+ - "\u06a0\7S\2\2\u06a0\u06a1\7T\2\2\u06a1\u06a2\7V\2\2\u06a2\u0154\3\2\2"+ - "\2\u06a3\u06a4\7V\2\2\u06a4\u06a5\7T\2\2\u06a5\u06a6\7W\2\2\u06a6\u06a7"+ - "\7P\2\2\u06a7\u06a8\7E\2\2\u06a8\u06a9\7C\2\2\u06a9\u06aa\7V\2\2\u06aa"+ - "\u06ab\7G\2\2\u06ab\u0156\3\2\2\2\u06ac\u06ad\7C\2\2\u06ad\u06ae\7E\2"+ - "\2\u06ae\u06af\7Q\2\2\u06af\u06b0\7U\2\2\u06b0\u0158\3\2\2\2\u06b1\u06b2"+ - "\7C\2\2\u06b2\u06b3\7U\2\2\u06b3\u06b4\7K\2\2\u06b4\u06b5\7P\2\2\u06b5"+ - "\u015a\3\2\2\2\u06b6\u06b7\7C\2\2\u06b7\u06b8\7V\2\2\u06b8\u06b9\7C\2"+ - "\2\u06b9\u06ba\7P\2\2\u06ba\u015c\3\2\2\2\u06bb\u06bc\7C\2\2\u06bc\u06bd"+ - "\7V\2\2\u06bd\u06be\7C\2\2\u06be\u06bf\7P\2\2\u06bf\u06c0\7\64\2\2\u06c0"+ - "\u015e\3\2\2\2\u06c1\u06c2\7E\2\2\u06c2\u06c3\7Q\2\2\u06c3\u06c4\7U\2"+ - "\2\u06c4\u0160\3\2\2\2\u06c5\u06c6\7E\2\2\u06c6\u06c7\7Q\2\2\u06c7\u06c8"+ - "\7V\2\2\u06c8\u0162\3\2\2\2\u06c9\u06ca\7F\2\2\u06ca\u06cb\7G\2\2\u06cb"+ - "\u06cc\7I\2\2\u06cc\u06cd\7T\2\2\u06cd\u06ce\7G\2\2\u06ce\u06cf\7G\2\2"+ - "\u06cf\u06d0\7U\2\2\u06d0\u0164\3\2\2\2\u06d1\u06d2\7T\2\2\u06d2\u06d3"+ - "\7C\2\2\u06d3\u06d4\7F\2\2\u06d4\u06d5\7K\2\2\u06d5\u06d6\7C\2\2\u06d6"+ - "\u06d7\7P\2\2\u06d7\u06d8\7U\2\2\u06d8\u0166\3\2\2\2\u06d9\u06da\7U\2"+ - "\2\u06da\u06db\7K\2\2\u06db\u06dc\7P\2\2\u06dc\u0168\3\2\2\2\u06dd\u06de"+ - "\7V\2\2\u06de\u06df\7C\2\2\u06df\u06e0\7P\2\2\u06e0\u016a\3\2\2\2\u06e1"+ - "\u06e2\7C\2\2\u06e2\u06e3\7F\2\2\u06e3\u06e4\7F\2\2\u06e4\u06e5\7F\2\2"+ - "\u06e5\u06e6\7C\2\2\u06e6\u06e7\7V\2\2\u06e7\u06e8\7G\2\2\u06e8\u016c"+ - "\3\2\2\2\u06e9\u06ea\7F\2\2\u06ea\u06eb\7C\2\2\u06eb\u06ec\7V\2\2\u06ec"+ - "\u06ed\7G\2\2\u06ed\u016e\3\2\2\2\u06ee\u06ef\7F\2\2\u06ef\u06f0\7C\2"+ - "\2\u06f0\u06f1\7V\2\2\u06f1\u06f2\7G\2\2\u06f2\u06f3\7a\2\2\u06f3\u06f4"+ - "\7C\2\2\u06f4\u06f5\7F\2\2\u06f5\u06f6\7F\2\2\u06f6\u0170\3\2\2\2\u06f7"+ - "\u06f8\7F\2\2\u06f8\u06f9\7C\2\2\u06f9\u06fa\7V\2\2\u06fa\u06fb\7G\2\2"+ - "\u06fb\u06fc\7a\2\2\u06fc\u06fd\7U\2\2\u06fd\u06fe\7W\2\2\u06fe\u06ff"+ - "\7D\2\2\u06ff\u0172\3\2\2\2\u0700\u0701\7F\2\2\u0701\u0702\7C\2\2\u0702"+ - "\u0703\7[\2\2\u0703\u0704\7Q\2\2\u0704\u0705\7H\2\2\u0705\u0706\7O\2\2"+ - "\u0706\u0707\7Q\2\2\u0707\u0708\7P\2\2\u0708\u0709\7V\2\2\u0709\u070a"+ - "\7J\2\2\u070a\u0174\3\2\2\2\u070b\u070c\7F\2\2\u070c\u070d\7C\2\2\u070d"+ - "\u070e\7[\2\2\u070e\u070f\7Q\2\2\u070f\u0710\7H\2\2\u0710\u0711\7Y\2\2"+ - "\u0711\u0712\7G\2\2\u0712\u0713\7G\2\2\u0713\u0714\7M\2\2\u0714\u0176"+ - "\3\2\2\2\u0715\u0716\7F\2\2\u0716\u0717\7C\2\2\u0717\u0718\7[\2\2\u0718"+ - "\u0719\7Q\2\2\u0719\u071a\7H\2\2\u071a\u071b\7[\2\2\u071b\u071c\7G\2\2"+ - "\u071c\u071d\7C\2\2\u071d\u071e\7T\2\2\u071e\u0178\3\2\2\2\u071f\u0720"+ - "\7F\2\2\u0720\u0721\7C\2\2\u0721\u0722\7[\2\2\u0722\u0723\7P\2\2\u0723"+ - "\u0724\7C\2\2\u0724\u0725\7O\2\2\u0725\u0726\7G\2\2\u0726\u017a\3\2\2"+ - "\2\u0727\u0728\7H\2\2\u0728\u0729\7T\2\2\u0729\u072a\7Q\2\2\u072a\u072b"+ - "\7O\2\2\u072b\u072c\7a\2\2\u072c\u072d\7F\2\2\u072d\u072e\7C\2\2\u072e"+ - "\u072f\7[\2\2\u072f\u0730\7U\2\2\u0730\u017c\3\2\2\2\u0731\u0732\7O\2"+ - "\2\u0732\u0733\7Q\2\2\u0733\u0734\7P\2\2\u0734\u0735\7V\2\2\u0735\u0736"+ - "\7J\2\2\u0736\u0737\7P\2\2\u0737\u0738\7C\2\2\u0738\u0739\7O\2\2\u0739"+ - "\u073a\7G\2\2\u073a\u017e\3\2\2\2\u073b\u073c\7U\2\2\u073c\u073d\7W\2"+ - "\2\u073d\u073e\7D\2\2\u073e\u073f\7F\2\2\u073f\u0740\7C\2\2\u0740\u0741"+ - "\7V\2\2\u0741\u0742\7G\2\2\u0742\u0180\3\2\2\2\u0743\u0744\7V\2\2\u0744"+ - "\u0745\7K\2\2\u0745\u0746\7O\2\2\u0746\u0747\7G\2\2\u0747\u0182\3\2\2"+ - "\2\u0748\u0749\7V\2\2\u0749\u074a\7K\2\2\u074a\u074b\7O\2\2\u074b\u074c"+ - "\7G\2\2\u074c\u074d\7a\2\2\u074d\u074e\7V\2\2\u074e\u074f\7Q\2\2\u074f"+ - "\u0750\7a\2\2\u0750\u0751\7U\2\2\u0751\u0752\7G\2\2\u0752\u0753\7E\2\2"+ - "\u0753\u0184\3\2\2\2\u0754\u0755\7V\2\2\u0755\u0756\7K\2\2\u0756\u0757"+ - "\7O\2\2\u0757\u0758\7G\2\2\u0758\u0759\7U\2\2\u0759\u075a\7V\2\2\u075a"+ - "\u075b\7C\2\2\u075b\u075c\7O\2\2\u075c\u075d\7R\2\2\u075d\u0186\3\2\2"+ - "\2\u075e\u075f\7F\2\2\u075f\u0760\7C\2\2\u0760\u0761\7V\2\2\u0761\u0762"+ - "\7G\2\2\u0762\u0763\7a\2\2\u0763\u0764\7H\2\2\u0764\u0765\7Q\2\2\u0765"+ - "\u0766\7T\2\2\u0766\u0767\7O\2\2\u0767\u0768\7C\2\2\u0768\u0769\7V\2\2"+ - "\u0769\u0188\3\2\2\2\u076a\u076b\7V\2\2\u076b\u076c\7Q\2\2\u076c\u076d"+ - "\7a\2\2\u076d\u076e\7F\2\2\u076e\u076f\7C\2\2\u076f\u0770\7[\2\2\u0770"+ - "\u0771\7U\2\2\u0771\u018a\3\2\2\2\u0772\u0773\7U\2\2\u0773\u0774\7W\2"+ - "\2\u0774\u0775\7D\2\2\u0775\u0776\7U\2\2\u0776\u0777\7V\2\2\u0777\u0778"+ - "\7T\2\2\u0778\u018c\3\2\2\2\u0779\u077a\7U\2\2\u077a\u077b\7W\2\2\u077b"+ - "\u077c\7D\2\2\u077c\u077d\7U\2\2\u077d\u077e\7V\2\2\u077e\u077f\7T\2\2"+ - "\u077f\u0780\7K\2\2\u0780\u0781\7P\2\2\u0781\u0782\7I\2\2\u0782\u018e"+ - "\3\2\2\2\u0783\u0784\7N\2\2\u0784\u0785\7V\2\2\u0785\u0786\7T\2\2\u0786"+ - "\u0787\7K\2\2\u0787\u0788\7O\2\2\u0788\u0190\3\2\2\2\u0789\u078a\7T\2"+ - "\2\u078a\u078b\7V\2\2\u078b\u078c\7T\2\2\u078c\u078d\7K\2\2\u078d\u078e"+ - "\7O\2\2\u078e\u0192\3\2\2\2\u078f\u0790\7V\2\2\u0790\u0791\7T\2\2\u0791"+ - "\u0792\7K\2\2\u0792\u0793\7O\2\2\u0793\u0194\3\2\2\2\u0794\u0795\7V\2"+ - "\2\u0795\u0796\7Q\2\2\u0796\u0196\3\2\2\2\u0797\u0798\7N\2\2\u0798\u0799"+ - "\7Q\2\2\u0799\u079a\7Y\2\2\u079a\u079b\7G\2\2\u079b\u079c\7T\2\2\u079c"+ - "\u0198\3\2\2\2\u079d\u079e\7W\2\2\u079e\u079f\7R\2\2\u079f\u07a0\7R\2"+ - "\2\u07a0\u07a1\7G\2\2\u07a1\u07a2\7T\2\2\u07a2\u019a\3\2\2\2\u07a3\u07a4"+ - "\7E\2\2\u07a4\u07a5\7Q\2\2\u07a5\u07a6\7P\2\2\u07a6\u07a7\7E\2\2\u07a7"+ - "\u07a8\7C\2\2\u07a8\u07a9\7V\2\2\u07a9\u019c\3\2\2\2\u07aa\u07ab\7E\2"+ - "\2\u07ab\u07ac\7Q\2\2\u07ac\u07ad\7P\2\2\u07ad\u07ae\7E\2\2\u07ae\u07af"+ - "\7C\2\2\u07af\u07b0\7V\2\2\u07b0\u07b1\7a\2\2\u07b1\u07b2\7Y\2\2\u07b2"+ - "\u07b3\7U\2\2\u07b3\u019e\3\2\2\2\u07b4\u07b5\7N\2\2\u07b5\u07b6\7G\2"+ - "\2\u07b6\u07b7\7P\2\2\u07b7\u07b8\7I\2\2\u07b8\u07b9\7V\2\2\u07b9\u07ba"+ - "\7J\2\2\u07ba\u01a0\3\2\2\2\u07bb\u07bc\7U\2\2\u07bc\u07bd\7V\2\2\u07bd"+ - "\u07be\7T\2\2\u07be\u07bf\7E\2\2\u07bf\u07c0\7O\2\2\u07c0\u07c1\7R\2\2"+ - "\u07c1\u01a2\3\2\2\2\u07c2\u07c3\7T\2\2\u07c3\u07c4\7K\2\2\u07c4\u07c5"+ - "\7I\2\2\u07c5\u07c6\7J\2\2\u07c6\u07c7\7V\2\2\u07c7\u01a4\3\2\2\2\u07c8"+ - "\u07c9\7N\2\2\u07c9\u07ca\7G\2\2\u07ca\u07cb\7H\2\2\u07cb\u07cc\7V\2\2"+ - "\u07cc\u01a6\3\2\2\2\u07cd\u07ce\7C\2\2\u07ce\u07cf\7U\2\2\u07cf\u07d0"+ - "\7E\2\2\u07d0\u07d1\7K\2\2\u07d1\u07d2\7K\2\2\u07d2\u01a8\3\2\2\2\u07d3"+ - "\u07d4\7N\2\2\u07d4\u07d5\7Q\2\2\u07d5\u07d6\7E\2\2\u07d6\u07d7\7C\2\2"+ - "\u07d7\u07d8\7V\2\2\u07d8\u07d9\7G\2\2\u07d9\u01aa\3\2\2\2\u07da\u07db"+ - "\7T\2\2\u07db\u07dc\7G\2\2\u07dc\u07dd\7R\2\2\u07dd\u07de\7N\2\2\u07de"+ - "\u07df\7C\2\2\u07df\u07e0\7E\2\2\u07e0\u07e1\7G\2\2\u07e1\u01ac\3\2\2"+ - "\2\u07e2\u07e3\7E\2\2\u07e3\u07e4\7C\2\2\u07e4\u07e5\7U\2\2\u07e5\u07e6"+ - "\7V\2\2\u07e6\u01ae\3\2\2\2\u07e7\u07e8\7N\2\2\u07e8\u07e9\7K\2\2\u07e9"+ - "\u07ea\7M\2\2\u07ea\u07eb\7G\2\2\u07eb\u01b0\3\2\2\2\u07ec\u07ed\7K\2"+ - "\2\u07ed\u07ee\7U\2\2\u07ee\u07ef\7P\2\2\u07ef\u07f0\7W\2\2\u07f0\u07f1"+ - "\7N\2\2\u07f1\u07f2\7N\2\2\u07f2\u01b2\3\2\2\2\u07f3\u07f4\7K\2\2\u07f4"+ - "\u07f5\7U\2\2\u07f5\u07f6\7P\2\2\u07f6\u07f7\7Q\2\2\u07f7\u07f8\7V\2\2"+ - "\u07f8\u07f9\7P\2\2\u07f9\u07fa\7W\2\2\u07fa\u07fb\7N\2\2\u07fb\u07fc"+ - "\7N\2\2\u07fc\u01b4\3\2\2\2\u07fd\u07fe\7K\2\2\u07fe\u07ff\7H\2\2\u07ff"+ - "\u0800\7P\2\2\u0800\u0801\7W\2\2\u0801\u0802\7N\2\2\u0802\u0803\7N\2\2"+ - "\u0803\u01b6\3\2\2\2\u0804\u0805\7P\2\2\u0805\u0806\7W\2\2\u0806\u0807"+ - "\7N\2\2\u0807\u0808\7N\2\2\u0808\u0809\7K\2\2\u0809\u080a\7H\2\2\u080a"+ - "\u01b8\3\2\2\2\u080b\u080c\7K\2\2\u080c\u080d\7H\2\2\u080d\u01ba\3\2\2"+ - "\2\u080e\u080f\7O\2\2\u080f\u0810\7C\2\2\u0810\u0811\7V\2\2\u0811\u0812"+ - "\7E\2\2\u0812\u0813\7J\2\2\u0813\u01bc\3\2\2\2\u0814\u0815\7O\2\2\u0815"+ - "\u0816\7C\2\2\u0816\u0817\7V\2\2\u0817\u0818\7E\2\2\u0818\u0819\7J\2\2"+ - "\u0819\u081a\7a\2\2\u081a\u081b\7R\2\2\u081b\u081c\7J\2\2\u081c\u081d"+ - "\7T\2\2\u081d\u081e\7C\2\2\u081e\u081f\7U\2\2\u081f\u0820\7G\2\2\u0820"+ - "\u01be\3\2\2\2\u0821\u0822\7U\2\2\u0822\u0823\7K\2\2\u0823\u0824\7O\2"+ - "\2\u0824\u0825\7R\2\2\u0825\u0826\7N\2\2\u0826\u0827\7G\2\2\u0827\u0828"+ - "\7a\2\2\u0828\u0829\7S\2\2\u0829\u082a\7W\2\2\u082a\u082b\7G\2\2\u082b"+ - "\u082c\7T\2\2\u082c\u082d\7[\2\2\u082d\u082e\7a\2\2\u082e\u082f\7U\2\2"+ - "\u082f\u0830\7V\2\2\u0830\u0831\7T\2\2\u0831\u0832\7K\2\2\u0832\u0833"+ - "\7P\2\2\u0833\u0834\7I\2\2\u0834\u01c0\3\2\2\2\u0835\u0836\7C\2\2\u0836"+ - "\u0837\7N\2\2\u0837\u0838\7N\2\2\u0838\u0839\7Q\2\2\u0839\u083a\7Y\2\2"+ - "\u083a\u083b\7a\2\2\u083b\u083c\7N\2\2\u083c\u083d\7G\2\2\u083d\u083e"+ - "\7C\2\2\u083e\u083f\7F\2\2\u083f\u0840\7K\2\2\u0840\u0841\7P\2\2\u0841"+ - "\u0842\7I\2\2\u0842\u0843\7a\2\2\u0843\u0844\7Y\2\2\u0844\u0845\7K\2\2"+ - "\u0845\u0846\7N\2\2\u0846\u0847\7F\2\2\u0847\u0848\7E\2\2\u0848\u0849"+ - "\7C\2\2\u0849\u084a\7T\2\2\u084a\u084b\7F\2\2\u084b\u01c2\3\2\2\2\u084c"+ - "\u084d\7C\2\2\u084d\u084e\7P\2\2\u084e\u084f\7C\2\2\u084f\u0850\7N\2\2"+ - "\u0850\u0851\7[\2\2\u0851\u0852\7\\\2\2\u0852\u0853\7G\2\2\u0853\u0854"+ - "\7a\2\2\u0854\u0855\7Y\2\2\u0855\u0856\7K\2\2\u0856\u0857\7N\2\2\u0857"+ - "\u0858\7F\2\2\u0858\u0859\7E\2\2\u0859\u085a\7C\2\2\u085a\u085b\7T\2\2"+ - "\u085b\u085c\7F\2\2\u085c\u01c4\3\2\2\2\u085d\u085e\7C\2\2\u085e\u085f"+ - "\7P\2\2\u085f\u0860\7C\2\2\u0860\u0861\7N\2\2\u0861\u0862\7[\2\2\u0862"+ - "\u0863\7\\\2\2\u0863\u0864\7G\2\2\u0864\u0865\7T\2\2\u0865\u01c6\3\2\2"+ - "\2\u0866\u0867\7C\2\2\u0867\u0868\7W\2\2\u0868\u0869\7V\2\2\u0869\u086a"+ - "\7Q\2\2\u086a\u086b\7a\2\2\u086b\u086c\7I\2\2\u086c\u086d\7G\2\2\u086d"+ - "\u086e\7P\2\2\u086e\u086f\7G\2\2\u086f\u0870\7T\2\2\u0870\u0871\7C\2\2"+ - "\u0871\u0872\7V\2\2\u0872\u0873\7G\2\2\u0873\u0874\7a\2\2\u0874\u0875"+ - "\7U\2\2\u0875\u0876\7[\2\2\u0876\u0877\7P\2\2\u0877\u0878\7Q\2\2\u0878"+ - "\u0879\7P\2\2\u0879\u087a\7[\2\2\u087a\u087b\7O\2\2\u087b\u087c\7U\2\2"+ - "\u087c\u087d\7a\2\2\u087d\u087e\7R\2\2\u087e\u087f\7J\2\2\u087f\u0880"+ - "\7T\2\2\u0880\u0881\7C\2\2\u0881\u0882\7U\2\2\u0882\u0883\7G\2\2\u0883"+ - "\u0884\7a\2\2\u0884\u0885\7S\2\2\u0885\u0886\7W\2\2\u0886\u0887\7G\2\2"+ - "\u0887\u0888\7T\2\2\u0888\u0889\7[\2\2\u0889\u01c8\3\2\2\2\u088a\u088b"+ - "\7D\2\2\u088b\u088c\7Q\2\2\u088c\u088d\7Q\2\2\u088d\u088e\7U\2\2\u088e"+ - "\u088f\7V\2\2\u088f\u01ca\3\2\2\2\u0890\u0891\7E\2\2\u0891\u0892\7W\2"+ - "\2\u0892\u0893\7V\2\2\u0893\u0894\7Q\2\2\u0894\u0895\7H\2\2\u0895\u0896"+ - "\7H\2\2\u0896\u0897\7a\2\2\u0897\u0898\7H\2\2\u0898\u0899\7T\2\2\u0899"+ - "\u089a\7G\2\2\u089a\u089b\7S\2\2\u089b\u089c\7W\2\2\u089c\u089d\7G\2\2"+ - "\u089d\u089e\7P\2\2\u089e\u089f\7E\2\2\u089f\u08a0\7[\2\2\u08a0\u01cc"+ - "\3\2\2\2\u08a1\u08a2\7F\2\2\u08a2\u08a3\7G\2\2\u08a3\u08a4\7H\2\2\u08a4"+ - "\u08a5\7C\2\2\u08a5\u08a6\7W\2\2\u08a6\u08a7\7N\2\2\u08a7\u08a8\7V\2\2"+ - "\u08a8\u08a9\7a\2\2\u08a9\u08aa\7H\2\2\u08aa\u08ab\7K\2\2\u08ab\u08ac"+ - "\7G\2\2\u08ac\u08ad\7N\2\2\u08ad\u08ae\7F\2\2\u08ae\u01ce\3\2\2\2\u08af"+ - "\u08b0\7F\2\2\u08b0\u08b1\7G\2\2\u08b1\u08b2\7H\2\2\u08b2\u08b3\7C\2\2"+ - "\u08b3\u08b4\7W\2\2\u08b4\u08b5\7N\2\2\u08b5\u08b6\7V\2\2\u08b6\u08b7"+ - "\7a\2\2\u08b7\u08b8\7Q\2\2\u08b8\u08b9\7R\2\2\u08b9\u08ba\7G\2\2\u08ba"+ - "\u08bb\7T\2\2\u08bb\u08bc\7C\2\2\u08bc\u08bd\7V\2\2\u08bd\u08be\7Q\2\2"+ - "\u08be\u08bf\7T\2\2\u08bf\u01d0\3\2\2\2\u08c0\u08c1\7G\2\2\u08c1\u08c2"+ - "\7P\2\2\u08c2\u08c3\7C\2\2\u08c3\u08c4\7D\2\2\u08c4\u08c5\7N\2\2\u08c5"+ - "\u08c6\7G\2\2\u08c6\u08c7\7a\2\2\u08c7\u08c8\7R\2\2\u08c8\u08c9\7Q\2\2"+ - "\u08c9\u08ca\7U\2\2\u08ca\u08cb\7K\2\2\u08cb\u08cc\7V\2\2\u08cc\u08cd"+ - "\7K\2\2\u08cd\u08ce\7Q\2\2\u08ce\u08cf\7P\2\2\u08cf\u08d0\7a\2\2\u08d0"+ - "\u08d1\7K\2\2\u08d1\u08d2\7P\2\2\u08d2\u08d3\7E\2\2\u08d3\u08d4\7T\2\2"+ - "\u08d4\u08d5\7G\2\2\u08d5\u08d6\7O\2\2\u08d6\u08d7\7G\2\2\u08d7\u08d8"+ - "\7P\2\2\u08d8\u08d9\7V\2\2\u08d9\u08da\7U\2\2\u08da\u01d2\3\2\2\2\u08db"+ - "\u08dc\7H\2\2\u08dc\u08dd\7N\2\2\u08dd\u08de\7C\2\2\u08de\u08df\7I\2\2"+ - "\u08df\u08e0\7U\2\2\u08e0\u01d4\3\2\2\2\u08e1\u08e2\7H\2\2\u08e2\u08e3"+ - "\7W\2\2\u08e3\u08e4\7\\\2\2\u08e4\u08e5\7\\\2\2\u08e5\u08e6\7[\2\2\u08e6"+ - "\u08e7\7a\2\2\u08e7\u08e8\7O\2\2\u08e8\u08e9\7C\2\2\u08e9\u08ea\7Z\2\2"+ - "\u08ea\u08eb\7a\2\2\u08eb\u08ec\7G\2\2\u08ec\u08ed\7Z\2\2\u08ed\u08ee"+ - "\7R\2\2\u08ee\u08ef\7C\2\2\u08ef\u08f0\7P\2\2\u08f0\u08f1\7U\2\2\u08f1"+ - "\u08f2\7K\2\2\u08f2\u08f3\7Q\2\2\u08f3\u08f4\7P\2\2\u08f4\u08f5\7U\2\2"+ - "\u08f5\u01d6\3\2\2\2\u08f6\u08f7\7H\2\2\u08f7\u08f8\7W\2\2\u08f8\u08f9"+ - "\7\\\2\2\u08f9\u08fa\7\\\2\2\u08fa\u08fb\7[\2\2\u08fb\u08fc\7a\2\2\u08fc"+ - "\u08fd\7R\2\2\u08fd\u08fe\7T\2\2\u08fe\u08ff\7G\2\2\u08ff\u0900\7H\2\2"+ - "\u0900\u0901\7K\2\2\u0901\u0902\7Z\2\2\u0902\u0903\7a\2\2\u0903\u0904"+ - "\7N\2\2\u0904\u0905\7G\2\2\u0905\u0906\7P\2\2\u0906\u0907\7I\2\2\u0907"+ - "\u0908\7V\2\2\u0908\u0909\7J\2\2\u0909\u01d8\3\2\2\2\u090a\u090b\7H\2"+ - "\2\u090b\u090c\7W\2\2\u090c\u090d\7\\\2\2\u090d\u090e\7\\\2\2\u090e\u090f"+ - "\7[\2\2\u090f\u0910\7a\2\2\u0910\u0911\7V\2\2\u0911\u0912\7T\2\2\u0912"+ - "\u0913\7C\2\2\u0913\u0914\7P\2\2\u0914\u0915\7U\2\2\u0915\u0916\7R\2\2"+ - "\u0916\u0917\7Q\2\2\u0917\u0918\7U\2\2\u0918\u0919\7K\2\2\u0919\u091a"+ - "\7V\2\2\u091a\u091b\7K\2\2\u091b\u091c\7Q\2\2\u091c\u091d\7P\2\2\u091d"+ - "\u091e\7U\2\2\u091e\u01da\3\2\2\2\u091f\u0920\7H\2\2\u0920\u0921\7W\2"+ - "\2\u0921\u0922\7\\\2\2\u0922\u0923\7\\\2\2\u0923\u0924\7[\2\2\u0924\u0925"+ - "\7a\2\2\u0925\u0926\7T\2\2\u0926\u0927\7G\2\2\u0927\u0928\7Y\2\2\u0928"+ - "\u0929\7T\2\2\u0929\u092a\7K\2\2\u092a\u092b\7V\2\2\u092b\u092c\7G\2\2"+ - "\u092c\u01dc\3\2\2\2\u092d\u092e\7H\2\2\u092e\u092f\7W\2\2\u092f\u0930"+ - "\7\\\2\2\u0930\u0931\7\\\2\2\u0931\u0932\7K\2\2\u0932\u0933\7P\2\2\u0933"+ - "\u0934\7G\2\2\u0934\u0935\7U\2\2\u0935\u0936\7U\2\2\u0936\u01de\3\2\2"+ - "\2\u0937\u0938\7N\2\2\u0938\u0939\7G\2\2\u0939\u093a\7P\2\2\u093a\u093b"+ - "\7K\2\2\u093b\u093c\7G\2\2\u093c\u093d\7P\2\2\u093d\u093e\7V\2\2\u093e"+ - "\u01e0\3\2\2\2\u093f\u0940\7N\2\2\u0940\u0941\7Q\2\2\u0941\u0942\7Y\2"+ - "\2\u0942\u0943\7a\2\2\u0943\u0944\7H\2\2\u0944\u0945\7T\2\2\u0945\u0946"+ - "\7G\2\2\u0946\u0947\7S\2\2\u0947\u0948\7a\2\2\u0948\u0949\7Q\2\2\u0949"+ - "\u094a\7R\2\2\u094a\u094b\7G\2\2\u094b\u094c\7T\2\2\u094c\u094d\7C\2\2"+ - "\u094d\u094e\7V\2\2\u094e\u094f\7Q\2\2\u094f\u0950\7T\2\2\u0950\u01e2"+ - "\3\2\2\2\u0951\u0952\7O\2\2\u0952\u0953\7C\2\2\u0953\u0954\7Z\2\2\u0954"+ - "\u0955\7a\2\2\u0955\u0956\7F\2\2\u0956\u0957\7G\2\2\u0957\u0958\7V\2\2"+ - "\u0958\u0959\7G\2\2\u0959\u095a\7T\2\2\u095a\u095b\7O\2\2\u095b\u095c"+ - "\7K\2\2\u095c\u095d\7P\2\2\u095d\u095e\7K\2\2\u095e\u095f\7\\\2\2\u095f"+ - "\u0960\7G\2\2\u0960\u0961\7F\2\2\u0961\u0962\7a\2\2\u0962\u0963\7U\2\2"+ - "\u0963\u0964\7V\2\2\u0964\u0965\7C\2\2\u0965\u0966\7V\2\2\u0966\u0967"+ - "\7G\2\2\u0967\u0968\7U\2\2\u0968\u01e4\3\2\2\2\u0969\u096a\7O\2\2\u096a"+ - "\u096b\7C\2\2\u096b\u096c\7Z\2\2\u096c\u096d\7a\2\2\u096d\u096e\7G\2\2"+ - "\u096e\u096f\7Z\2\2\u096f\u0970\7R\2\2\u0970\u0971\7C\2\2\u0971\u0972"+ - "\7P\2\2\u0972\u0973\7U\2\2\u0973\u0974\7K\2\2\u0974\u0975\7Q\2\2\u0975"+ - "\u0976\7P\2\2\u0976\u0977\7U\2\2\u0977\u01e6\3\2\2\2\u0978\u0979\7O\2"+ - "\2\u0979\u097a\7K\2\2\u097a\u097b\7P\2\2\u097b\u097c\7K\2\2\u097c\u097d"+ - "\7O\2\2\u097d\u097e\7W\2\2\u097e\u097f\7O\2\2\u097f\u0980\7a\2\2\u0980"+ - "\u0981\7U\2\2\u0981\u0982\7J\2\2\u0982\u0983\7Q\2\2\u0983\u0984\7W\2\2"+ - "\u0984\u0985\7N\2\2\u0985\u0986\7F\2\2\u0986\u0987\7a\2\2\u0987\u0988"+ - "\7O\2\2\u0988\u0989\7C\2\2\u0989\u098a\7V\2\2\u098a\u098b\7E\2\2\u098b"+ - "\u098c\7J\2\2\u098c\u01e8\3\2\2\2\u098d\u098e\7Q\2\2\u098e\u098f\7R\2"+ - "\2\u098f\u0990\7G\2\2\u0990\u0991\7T\2\2\u0991\u0992\7C\2\2\u0992\u0993"+ - "\7V\2\2\u0993\u0994\7Q\2\2\u0994\u0995\7T\2\2\u0995\u01ea\3\2\2\2\u0996"+ - "\u0997\7R\2\2\u0997\u0998\7J\2\2\u0998\u0999\7T\2\2\u0999\u099a\7C\2\2"+ - "\u099a\u099b\7U\2\2\u099b\u099c\7G\2\2\u099c\u099d\7a\2\2\u099d\u099e"+ - "\7U\2\2\u099e\u099f\7N\2\2\u099f\u09a0\7Q\2\2\u09a0\u09a1\7R\2\2\u09a1"+ - "\u01ec\3\2\2\2\u09a2\u09a3\7R\2\2\u09a3\u09a4\7T\2\2\u09a4\u09a5\7G\2"+ - "\2\u09a5\u09a6\7H\2\2\u09a6\u09a7\7K\2\2\u09a7\u09a8\7Z\2\2\u09a8\u09a9"+ - "\7a\2\2\u09a9\u09aa\7N\2\2\u09aa\u09ab\7G\2\2\u09ab\u09ac\7P\2\2\u09ac"+ - "\u09ad\7I\2\2\u09ad\u09ae\7V\2\2\u09ae\u09af\7J\2\2\u09af\u01ee\3\2\2"+ - "\2\u09b0\u09b1\7S\2\2\u09b1\u09b2\7W\2\2\u09b2\u09b3\7Q\2\2\u09b3\u09b4"+ - "\7V\2\2\u09b4\u09b5\7G\2\2\u09b5\u09b6\7a\2\2\u09b6\u09b7\7C\2\2\u09b7"+ - "\u09b8\7P\2\2\u09b8\u09b9\7C\2\2\u09b9\u09ba\7N\2\2\u09ba\u09bb\7[\2\2"+ - "\u09bb\u09bc\7\\\2\2\u09bc\u09bd\7G\2\2\u09bd\u09be\7T\2\2\u09be\u01f0"+ - "\3\2\2\2\u09bf\u09c0\7S\2\2\u09c0\u09c1\7W\2\2\u09c1\u09c2\7Q\2\2\u09c2"+ - "\u09c3\7V\2\2\u09c3\u09c4\7G\2\2\u09c4\u09c5\7a\2\2\u09c5\u09c6\7H\2\2"+ - "\u09c6\u09c7\7K\2\2\u09c7\u09c8\7G\2\2\u09c8\u09c9\7N\2\2\u09c9\u09ca"+ - "\7F\2\2\u09ca\u09cb\7a\2\2\u09cb\u09cc\7U\2\2\u09cc\u09cd\7W\2\2\u09cd"+ - "\u09ce\7H\2\2\u09ce\u09cf\7H\2\2\u09cf\u09d0\7K\2\2\u09d0\u09d1\7Z\2\2"+ - "\u09d1\u01f2\3\2\2\2\u09d2\u09d3\7T\2\2\u09d3\u09d4\7G\2\2\u09d4\u09d5"+ - "\7Y\2\2\u09d5\u09d6\7T\2\2\u09d6\u09d7\7K\2\2\u09d7\u09d8\7V\2\2\u09d8"+ - "\u09d9\7G\2\2\u09d9\u01f4\3\2\2\2\u09da\u09db\7U\2\2\u09db\u09dc\7N\2"+ - "\2\u09dc\u09dd\7Q\2\2\u09dd\u09de\7R\2\2\u09de\u01f6\3\2\2\2\u09df\u09e0"+ - "\7V\2\2\u09e0\u09e1\7K\2\2\u09e1\u09e2\7G\2\2\u09e2\u09e3\7a\2\2\u09e3"+ - "\u09e4\7D\2\2\u09e4\u09e5\7T\2\2\u09e5\u09e6\7G\2\2\u09e6\u09e7\7C\2\2"+ - "\u09e7\u09e8\7M\2\2\u09e8\u09e9\7G\2\2\u09e9\u09ea\7T\2\2\u09ea\u01f8"+ - "\3\2\2\2\u09eb\u09ec\7V\2\2\u09ec\u09ed\7[\2\2\u09ed\u09ee\7R\2\2\u09ee"+ - "\u09ef\7G\2\2\u09ef\u01fa\3\2\2\2\u09f0\u09f1\7\\\2\2\u09f1\u09f2\7G\2"+ - "\2\u09f2\u09f3\7T\2\2\u09f3\u09f4\7Q\2\2\u09f4\u09f5\7a\2\2\u09f5\u09f6"+ - "\7V\2\2\u09f6\u09f7\7G\2\2\u09f7\u09f8\7T\2\2\u09f8\u09f9\7O\2\2\u09f9"+ - "\u09fa\7U\2\2\u09fa\u09fb\7a\2\2\u09fb\u09fc\7S\2\2\u09fc\u09fd\7W\2\2"+ - "\u09fd\u09fe\7G\2\2\u09fe\u09ff\7T\2\2\u09ff\u0a00\7[\2\2\u0a00\u01fc"+ - "\3\2\2\2\u0a01\u0a02\7U\2\2\u0a02\u0a03\7R\2\2\u0a03\u0a04\7C\2\2\u0a04"+ - "\u0a05\7P\2\2\u0a05\u01fe\3\2\2\2\u0a06\u0a07\7O\2\2\u0a07\u0a08\7U\2"+ - "\2\u0a08\u0200\3\2\2\2\u0a09\u0a0a\7U\2\2\u0a0a\u0202\3\2\2\2\u0a0b\u0a0c"+ - "\7O\2\2\u0a0c\u0204\3\2\2\2\u0a0d\u0a0e\7J\2\2\u0a0e\u0206\3\2\2\2\u0a0f"+ - "\u0a10\7Y\2\2\u0a10\u0208\3\2\2\2\u0a11\u0a12\7S\2\2\u0a12\u020a\3\2\2"+ - "\2\u0a13\u0a14\7[\2\2\u0a14\u020c\3\2\2\2\u0a15\u0a16\5\u0215\u010b\2"+ - "\u0a16\u020e\3\2\2\2\u0a17\u0a19\5\u021f\u0110\2\u0a18\u0a17\3\2\2\2\u0a19"+ - "\u0a1a\3\2\2\2\u0a1a\u0a18\3\2\2\2\u0a1a\u0a1b\3\2\2\2\u0a1b\u0210\3\2"+ - "\2\2\u0a1c\u0a1e\5\u021f\u0110\2\u0a1d\u0a1c\3\2\2\2\u0a1e\u0a1f\3\2\2"+ - "\2\u0a1f\u0a1d\3\2\2\2\u0a1f\u0a20\3\2\2\2\u0a20\u0a22\3\2\2\2\u0a21\u0a1d"+ - "\3\2\2\2\u0a21\u0a22\3\2\2\2\u0a22\u0a23\3\2\2\2\u0a23\u0a25\7\60\2\2"+ - "\u0a24\u0a26\5\u021f\u0110\2\u0a25\u0a24\3\2\2\2\u0a26\u0a27\3\2\2\2\u0a27"+ - "\u0a25\3\2\2\2\u0a27\u0a28\3\2\2\2\u0a28\u0212\3\2\2\2\u0a29\u0a2b\t\2"+ - "\2\2\u0a2a\u0a2c\t\3\2\2\u0a2b\u0a2a\3\2\2\2\u0a2c\u0a2d\3\2\2\2\u0a2d"+ - "\u0a2b\3\2\2\2\u0a2d\u0a2e\3\2\2\2\u0a2e\u0a30\3\2\2\2\u0a2f\u0a29\3\2"+ - "\2\2\u0a30\u0a33\3\2\2\2\u0a31\u0a2f\3\2\2\2\u0a31\u0a32\3\2\2\2\u0a32"+ - "\u0214\3\2\2\2\u0a33\u0a31\3\2\2\2\u0a34\u0a36\t\4\2\2\u0a35\u0a34\3\2"+ - "\2\2\u0a36\u0a37\3\2\2\2\u0a37\u0a38\3\2\2\2\u0a37\u0a35\3\2\2\2\u0a38"+ - "\u0a3c\3\2\2\2\u0a39\u0a3b\t\5\2\2\u0a3a\u0a39\3\2\2\2\u0a3b\u0a3e\3\2"+ - "\2\2\u0a3c\u0a3a\3\2\2\2\u0a3c\u0a3d\3\2\2\2\u0a3d\u0216\3\2\2\2\u0a3e"+ - "\u0a3c\3\2\2\2\u0a3f\u0a40\5\u0215\u010b\2\u0a40\u0a41\5\u0213\u010a\2"+ - "\u0a41\u0218\3\2\2\2\u0a42\u0a4a\7$\2\2\u0a43\u0a44\7^\2\2\u0a44\u0a49"+ - "\13\2\2\2\u0a45\u0a46\7$\2\2\u0a46\u0a49\7$\2\2\u0a47\u0a49\n\6\2\2\u0a48"+ - "\u0a43\3\2\2\2\u0a48\u0a45\3\2\2\2\u0a48\u0a47\3\2\2\2\u0a49\u0a4c\3\2"+ - "\2\2\u0a4a\u0a48\3\2\2\2\u0a4a\u0a4b\3\2\2\2\u0a4b\u0a4d\3\2\2\2\u0a4c"+ - "\u0a4a\3\2\2\2\u0a4d\u0a4e\7$\2\2\u0a4e\u021a\3\2\2\2\u0a4f\u0a57\7)\2"+ - "\2\u0a50"; - private static final String _serializedATNSegment1 = - "\u0a51\7^\2\2\u0a51\u0a56\13\2\2\2\u0a52\u0a53\7)\2\2\u0a53\u0a56\7)\2"+ - "\2\u0a54\u0a56\n\7\2\2\u0a55\u0a50\3\2\2\2\u0a55\u0a52\3\2\2\2\u0a55\u0a54"+ - "\3\2\2\2\u0a56\u0a59\3\2\2\2\u0a57\u0a55\3\2\2\2\u0a57\u0a58\3\2\2\2\u0a58"+ - "\u0a5a\3\2\2\2\u0a59\u0a57\3\2\2\2\u0a5a\u0a5b\7)\2\2\u0a5b\u021c\3\2"+ - "\2\2\u0a5c\u0a64\7b\2\2\u0a5d\u0a5e\7^\2\2\u0a5e\u0a63\13\2\2\2\u0a5f"+ - "\u0a60\7b\2\2\u0a60\u0a63\7b\2\2\u0a61\u0a63\n\b\2\2\u0a62\u0a5d\3\2\2"+ - "\2\u0a62\u0a5f\3\2\2\2\u0a62\u0a61\3\2\2\2\u0a63\u0a66\3\2\2\2\u0a64\u0a62"+ - "\3\2\2\2\u0a64\u0a65\3\2\2\2\u0a65\u0a67\3\2\2\2\u0a66\u0a64\3\2\2\2\u0a67"+ - "\u0a68\7b\2\2\u0a68\u021e\3\2\2\2\u0a69\u0a6a\t\t\2\2\u0a6a\u0220\3\2"+ - "\2\2\u0a6b\u0a6c\13\2\2\2\u0a6c\u0a6d\3\2\2\2\u0a6d\u0a6e\b\u0111\2\2"+ - "\u0a6e\u0222\3\2\2\2\21\2\u0a1a\u0a1f\u0a21\u0a27\u0a2d\u0a31\u0a37\u0a3c"+ - "\u0a48\u0a4a\u0a55\u0a57\u0a62\u0a64\3\2\5\2"; - public static final String _serializedATN = Utils.join( - new String[] { - _serializedATNSegment0, - _serializedATNSegment1 - }, - "" - ); - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } -} \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLLexer.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp deleted file mode 100644 index 8078132b4..000000000 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.interp +++ /dev/null @@ -1,634 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -root -pplStatement -commands -searchCommand -whereCommand -fieldsCommand -renameCommand -statsCommand -dedupCommand -sortCommand -evalCommand -headCommand -topCommand -rareCommand -parseCommand -kmeansCommand -kmeansParameter -adCommand -adParameter -fromClause -renameClasue -byClause -statsByClause -bySpanClause -spanClause -sortbyClause -evalClause -statsAggTerm -statsFunction -statsFunctionName -percentileAggFunction -expression -logicalExpression -comparisonExpression -valueExpression -primaryExpression -booleanExpression -relevanceExpression -singleFieldRelevanceFunction -multiFieldRelevanceFunction -tableSource -fieldList -wcFieldList -sortField -sortFieldExpression -fieldExpression -wcFieldExpression -evalFunctionCall -dataTypeFunctionCall -booleanFunctionCall -convertedDataType -evalFunctionName -functionArgs -functionArg -relevanceArg -relevanceArgName -relevanceFieldAndWeight -relevanceFieldWeight -relevanceField -relevanceQuery -relevanceArgValue -mathematicalFunctionBase -trigonometricFunctionName -dateAndTimeFunctionBase -conditionFunctionBase -textFunctionBase -comparisonOperator -binaryOperator -singleFieldRelevanceFunctionName -multiFieldRelevanceFunctionName -literalValue -intervalLiteral -stringLiteral -integerLiteral -decimalLiteral -booleanLiteral -pattern -intervalUnit -timespanUnit -valueList -qualifiedName -wcQualifiedName -ident -wildcard -keywordsCanBeId - - -atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 4, 66, 70, 87, 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, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java deleted file mode 100644 index eaf8c0ca9..000000000 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.java +++ /dev/null @@ -1,6612 +0,0 @@ -// Generated from /Users/menwe/code/OpenSearch-Dashboards/plugins/dashboards-observability/query_manager/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.2 -import org.antlr.v4.runtime.atn.*; -import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.misc.*; -import org.antlr.v4.runtime.tree.*; -import java.util.List; -import java.util.Iterator; -import java.util.ArrayList; - -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) -public class OpenSearchPPLParser extends Parser { - static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } - - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - new PredictionContextCache(); - public static final int - SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, - EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, - SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, - NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, - ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, - SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, - TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, - CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, - DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, - HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, - MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, - HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, - YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, - DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, - DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, - PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, - COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, - SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, - BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, - MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, - STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, - STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, - EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, - PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, - C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, - EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, - POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, - ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, - RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, - DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, - MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, - DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, - TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, - STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, - LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, - MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, - ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, - BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, - ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, - FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, - LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, - MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, - QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, - TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, - W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, - ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, - ERROR_RECOGNITION=269; - public static final int - RULE_root = 0, RULE_pplStatement = 1, RULE_commands = 2, RULE_searchCommand = 3, - RULE_whereCommand = 4, RULE_fieldsCommand = 5, RULE_renameCommand = 6, - RULE_statsCommand = 7, RULE_dedupCommand = 8, RULE_sortCommand = 9, RULE_evalCommand = 10, - RULE_headCommand = 11, RULE_topCommand = 12, RULE_rareCommand = 13, RULE_parseCommand = 14, - RULE_kmeansCommand = 15, RULE_kmeansParameter = 16, RULE_adCommand = 17, - RULE_adParameter = 18, RULE_fromClause = 19, RULE_renameClasue = 20, RULE_byClause = 21, - RULE_statsByClause = 22, RULE_bySpanClause = 23, RULE_spanClause = 24, - RULE_sortbyClause = 25, RULE_evalClause = 26, RULE_statsAggTerm = 27, - RULE_statsFunction = 28, RULE_statsFunctionName = 29, RULE_percentileAggFunction = 30, - RULE_expression = 31, RULE_logicalExpression = 32, RULE_comparisonExpression = 33, - RULE_valueExpression = 34, RULE_primaryExpression = 35, RULE_booleanExpression = 36, - RULE_relevanceExpression = 37, RULE_singleFieldRelevanceFunction = 38, - RULE_multiFieldRelevanceFunction = 39, RULE_tableSource = 40, RULE_fieldList = 41, - RULE_wcFieldList = 42, RULE_sortField = 43, RULE_sortFieldExpression = 44, - RULE_fieldExpression = 45, RULE_wcFieldExpression = 46, RULE_evalFunctionCall = 47, - RULE_dataTypeFunctionCall = 48, RULE_booleanFunctionCall = 49, RULE_convertedDataType = 50, - RULE_evalFunctionName = 51, RULE_functionArgs = 52, RULE_functionArg = 53, - RULE_relevanceArg = 54, RULE_relevanceArgName = 55, RULE_relevanceFieldAndWeight = 56, - RULE_relevanceFieldWeight = 57, RULE_relevanceField = 58, RULE_relevanceQuery = 59, - RULE_relevanceArgValue = 60, RULE_mathematicalFunctionBase = 61, RULE_trigonometricFunctionName = 62, - RULE_dateAndTimeFunctionBase = 63, RULE_conditionFunctionBase = 64, RULE_textFunctionBase = 65, - RULE_comparisonOperator = 66, RULE_binaryOperator = 67, RULE_singleFieldRelevanceFunctionName = 68, - RULE_multiFieldRelevanceFunctionName = 69, RULE_literalValue = 70, RULE_intervalLiteral = 71, - RULE_stringLiteral = 72, RULE_integerLiteral = 73, RULE_decimalLiteral = 74, - RULE_booleanLiteral = 75, RULE_pattern = 76, RULE_intervalUnit = 77, RULE_timespanUnit = 78, - RULE_valueList = 79, RULE_qualifiedName = 80, RULE_wcQualifiedName = 81, - RULE_ident = 82, RULE_wildcard = 83, RULE_keywordsCanBeId = 84; - private static String[] makeRuleNames() { - return new String[] { - "root", "pplStatement", "commands", "searchCommand", "whereCommand", - "fieldsCommand", "renameCommand", "statsCommand", "dedupCommand", "sortCommand", - "evalCommand", "headCommand", "topCommand", "rareCommand", "parseCommand", - "kmeansCommand", "kmeansParameter", "adCommand", "adParameter", "fromClause", - "renameClasue", "byClause", "statsByClause", "bySpanClause", "spanClause", - "sortbyClause", "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", - "percentileAggFunction", "expression", "logicalExpression", "comparisonExpression", - "valueExpression", "primaryExpression", "booleanExpression", "relevanceExpression", - "singleFieldRelevanceFunction", "multiFieldRelevanceFunction", "tableSource", - "fieldList", "wcFieldList", "sortField", "sortFieldExpression", "fieldExpression", - "wcFieldExpression", "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", - "convertedDataType", "evalFunctionName", "functionArgs", "functionArg", - "relevanceArg", "relevanceArgName", "relevanceFieldAndWeight", "relevanceFieldWeight", - "relevanceField", "relevanceQuery", "relevanceArgValue", "mathematicalFunctionBase", - "trigonometricFunctionName", "dateAndTimeFunctionBase", "conditionFunctionBase", - "textFunctionBase", "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", - "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", - "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", - "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", - "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId" - }; - } - public static final String[] ruleNames = makeRuleNames(); - - private static String[] makeLiteralNames() { - return new String[] { - null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", - "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", - "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", - "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", - "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", - "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", - "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", - "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", - "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", - "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", - "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", - "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", - "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", - "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", - "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", - "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", - "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", - "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", - "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", - "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", - "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", - "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", - "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", - "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", - "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", - "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", - "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", - "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" - }; - } - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static String[] makeSymbolicNames() { - return new String[] { - null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", - "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", - "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", - "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", - "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", - "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", - "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", - "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", - "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", - "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", - "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", - "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } - - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } - - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } - - @Override - - public Vocabulary getVocabulary() { - return VOCABULARY; - } - - @Override - public String getGrammarFileName() { return "OpenSearchPPLParser.g4"; } - - @Override - public String[] getRuleNames() { return ruleNames; } - - @Override - public String getSerializedATN() { return _serializedATN; } - - @Override - public ATN getATN() { return _ATN; } - - public OpenSearchPPLParser(TokenStream input) { - super(input); - _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); - } - - public static class RootContext extends ParserRuleContext { - public TerminalNode EOF() { return getToken(OpenSearchPPLParser.EOF, 0); } - public PplStatementContext pplStatement() { - return getRuleContext(PplStatementContext.class,0); - } - public RootContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_root; } - } - - public final RootContext root() throws RecognitionException { - RootContext _localctx = new RootContext(_ctx, getState()); - enterRule(_localctx, 0, RULE_root); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(171); - _errHandler.sync(this); - _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << SEARCH) | (1L << SOURCE) | (1L << INDEX) | (1L << D) | (1L << NOT) | (1L << TRUE) | (1L << FALSE) | (1L << INTERVAL) | (1L << MICROSECOND) | (1L << MILLISECOND) | (1L << SECOND) | (1L << MINUTE) | (1L << HOUR) | (1L << DAY) | (1L << WEEK))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (MONTH - 64)) | (1L << (QUARTER - 64)) | (1L << (YEAR - 64)) | (1L << (DOT - 64)) | (1L << (PLUS - 64)) | (1L << (MINUS - 64)) | (1L << (LT_PRTHS - 64)) | (1L << (BACKTICK - 64)) | (1L << (AVG - 64)) | (1L << (COUNT - 64)) | (1L << (MAX - 64)) | (1L << (MIN - 64)) | (1L << (SUM - 64)))) != 0) || ((((_la - 129)) & ~0x3f) == 0 && ((1L << (_la - 129)) & ((1L << (VAR_SAMP - 129)) | (1L << (VAR_POP - 129)) | (1L << (STDDEV_SAMP - 129)) | (1L << (STDDEV_POP - 129)) | (1L << (FIRST - 129)) | (1L << (LAST - 129)) | (1L << (ABS - 129)) | (1L << (CEIL - 129)) | (1L << (CEILING - 129)) | (1L << (CONV - 129)) | (1L << (CRC32 - 129)) | (1L << (E - 129)) | (1L << (EXP - 129)) | (1L << (FLOOR - 129)) | (1L << (LN - 129)) | (1L << (LOG - 129)) | (1L << (LOG10 - 129)) | (1L << (LOG2 - 129)) | (1L << (MOD - 129)) | (1L << (PI - 129)) | (1L << (POW - 129)) | (1L << (POWER - 129)) | (1L << (RAND - 129)) | (1L << (ROUND - 129)) | (1L << (SIGN - 129)) | (1L << (SQRT - 129)) | (1L << (TRUNCATE - 129)) | (1L << (ACOS - 129)) | (1L << (ASIN - 129)) | (1L << (ATAN - 129)) | (1L << (ATAN2 - 129)) | (1L << (COS - 129)) | (1L << (COT - 129)) | (1L << (DEGREES - 129)) | (1L << (RADIANS - 129)) | (1L << (SIN - 129)) | (1L << (TAN - 129)) | (1L << (ADDDATE - 129)) | (1L << (DATE - 129)) | (1L << (DATE_ADD - 129)) | (1L << (DATE_SUB - 129)) | (1L << (DAYOFMONTH - 129)) | (1L << (DAYOFWEEK - 129)) | (1L << (DAYOFYEAR - 129)) | (1L << (DAYNAME - 129)) | (1L << (FROM_DAYS - 129)) | (1L << (MONTHNAME - 129)) | (1L << (SUBDATE - 129)) | (1L << (TIME - 129)))) != 0) || ((((_la - 193)) & ~0x3f) == 0 && ((1L << (_la - 193)) & ((1L << (TIME_TO_SEC - 193)) | (1L << (TIMESTAMP - 193)) | (1L << (DATE_FORMAT - 193)) | (1L << (TO_DAYS - 193)) | (1L << (SUBSTR - 193)) | (1L << (SUBSTRING - 193)) | (1L << (LTRIM - 193)) | (1L << (RTRIM - 193)) | (1L << (TRIM - 193)) | (1L << (LOWER - 193)) | (1L << (UPPER - 193)) | (1L << (CONCAT - 193)) | (1L << (CONCAT_WS - 193)) | (1L << (LENGTH - 193)) | (1L << (STRCMP - 193)) | (1L << (RIGHT - 193)) | (1L << (LEFT - 193)) | (1L << (ASCII - 193)) | (1L << (LOCATE - 193)) | (1L << (REPLACE - 193)) | (1L << (CAST - 193)) | (1L << (LIKE - 193)) | (1L << (ISNULL - 193)) | (1L << (ISNOTNULL - 193)) | (1L << (IFNULL - 193)) | (1L << (NULLIF - 193)) | (1L << (IF - 193)) | (1L << (MATCH - 193)) | (1L << (MATCH_PHRASE - 193)) | (1L << (SIMPLE_QUERY_STRING - 193)) | (1L << (SPAN - 193)) | (1L << (MS - 193)) | (1L << (S - 193)))) != 0) || ((((_la - 257)) & ~0x3f) == 0 && ((1L << (_la - 257)) & ((1L << (M - 257)) | (1L << (H - 257)) | (1L << (W - 257)) | (1L << (Q - 257)) | (1L << (Y - 257)) | (1L << (ID - 257)) | (1L << (INTEGER_LITERAL - 257)) | (1L << (DECIMAL_LITERAL - 257)) | (1L << (DQUOTA_STRING - 257)) | (1L << (SQUOTA_STRING - 257)) | (1L << (BQUOTA_STRING - 257)))) != 0)) { - { - setState(170); - pplStatement(); - } - } - - setState(173); - match(EOF); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class PplStatementContext extends ParserRuleContext { - public SearchCommandContext searchCommand() { - return getRuleContext(SearchCommandContext.class,0); - } - public List PIPE() { return getTokens(OpenSearchPPLParser.PIPE); } - public TerminalNode PIPE(int i) { - return getToken(OpenSearchPPLParser.PIPE, i); - } - public List commands() { - return getRuleContexts(CommandsContext.class); - } - public CommandsContext commands(int i) { - return getRuleContext(CommandsContext.class,i); - } - public PplStatementContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_pplStatement; } - } - - public final PplStatementContext pplStatement() throws RecognitionException { - PplStatementContext _localctx = new PplStatementContext(_ctx, getState()); - enterRule(_localctx, 2, RULE_pplStatement); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(175); - searchCommand(); - setState(180); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==PIPE) { - { - { - setState(176); - match(PIPE); - setState(177); - commands(); - } - } - setState(182); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class CommandsContext extends ParserRuleContext { - public WhereCommandContext whereCommand() { - return getRuleContext(WhereCommandContext.class,0); - } - public FieldsCommandContext fieldsCommand() { - return getRuleContext(FieldsCommandContext.class,0); - } - public RenameCommandContext renameCommand() { - return getRuleContext(RenameCommandContext.class,0); - } - public StatsCommandContext statsCommand() { - return getRuleContext(StatsCommandContext.class,0); - } - public DedupCommandContext dedupCommand() { - return getRuleContext(DedupCommandContext.class,0); - } - public SortCommandContext sortCommand() { - return getRuleContext(SortCommandContext.class,0); - } - public EvalCommandContext evalCommand() { - return getRuleContext(EvalCommandContext.class,0); - } - public HeadCommandContext headCommand() { - return getRuleContext(HeadCommandContext.class,0); - } - public TopCommandContext topCommand() { - return getRuleContext(TopCommandContext.class,0); - } - public RareCommandContext rareCommand() { - return getRuleContext(RareCommandContext.class,0); - } - public ParseCommandContext parseCommand() { - return getRuleContext(ParseCommandContext.class,0); - } - public KmeansCommandContext kmeansCommand() { - return getRuleContext(KmeansCommandContext.class,0); - } - public AdCommandContext adCommand() { - return getRuleContext(AdCommandContext.class,0); - } - public CommandsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_commands; } - } - - public final CommandsContext commands() throws RecognitionException { - CommandsContext _localctx = new CommandsContext(_ctx, getState()); - enterRule(_localctx, 4, RULE_commands); - try { - setState(196); - _errHandler.sync(this); - switch (_input.LA(1)) { - case WHERE: - enterOuterAlt(_localctx, 1); - { - setState(183); - whereCommand(); - } - break; - case FIELDS: - enterOuterAlt(_localctx, 2); - { - setState(184); - fieldsCommand(); - } - break; - case RENAME: - enterOuterAlt(_localctx, 3); - { - setState(185); - renameCommand(); - } - break; - case STATS: - enterOuterAlt(_localctx, 4); - { - setState(186); - statsCommand(); - } - break; - case DEDUP: - enterOuterAlt(_localctx, 5); - { - setState(187); - dedupCommand(); - } - break; - case SORT: - enterOuterAlt(_localctx, 6); - { - setState(188); - sortCommand(); - } - break; - case EVAL: - enterOuterAlt(_localctx, 7); - { - setState(189); - evalCommand(); - } - break; - case HEAD: - enterOuterAlt(_localctx, 8); - { - setState(190); - headCommand(); - } - break; - case TOP: - enterOuterAlt(_localctx, 9); - { - setState(191); - topCommand(); - } - break; - case RARE: - enterOuterAlt(_localctx, 10); - { - setState(192); - rareCommand(); - } - break; - case PARSE: - enterOuterAlt(_localctx, 11); - { - setState(193); - parseCommand(); - } - break; - case KMEANS: - enterOuterAlt(_localctx, 12); - { - setState(194); - kmeansCommand(); - } - break; - case AD: - enterOuterAlt(_localctx, 13); - { - setState(195); - adCommand(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SearchCommandContext extends ParserRuleContext { - public SearchCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_searchCommand; } - - public SearchCommandContext() { } - public void copyFrom(SearchCommandContext ctx) { - super.copyFrom(ctx); - } - } - public static class SearchFromFilterContext extends SearchCommandContext { - public FromClauseContext fromClause() { - return getRuleContext(FromClauseContext.class,0); - } - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } - public SearchFromFilterContext(SearchCommandContext ctx) { copyFrom(ctx); } - } - public static class SearchFromContext extends SearchCommandContext { - public FromClauseContext fromClause() { - return getRuleContext(FromClauseContext.class,0); - } - public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } - public SearchFromContext(SearchCommandContext ctx) { copyFrom(ctx); } - } - public static class SearchFilterFromContext extends SearchCommandContext { - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public FromClauseContext fromClause() { - return getRuleContext(FromClauseContext.class,0); - } - public TerminalNode SEARCH() { return getToken(OpenSearchPPLParser.SEARCH, 0); } - public SearchFilterFromContext(SearchCommandContext ctx) { copyFrom(ctx); } - } - - public final SearchCommandContext searchCommand() throws RecognitionException { - SearchCommandContext _localctx = new SearchCommandContext(_ctx, getState()); - enterRule(_localctx, 6, RULE_searchCommand); - int _la; - try { - setState(214); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { - case 1: - _localctx = new SearchFromContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(199); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==SEARCH) { - { - setState(198); - match(SEARCH); - } - } - - setState(201); - fromClause(); - } - break; - case 2: - _localctx = new SearchFromFilterContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(203); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==SEARCH) { - { - setState(202); - match(SEARCH); - } - } - - setState(205); - fromClause(); - setState(206); - logicalExpression(0); - } - break; - case 3: - _localctx = new SearchFilterFromContext(_localctx); - enterOuterAlt(_localctx, 3); - { - setState(209); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==SEARCH) { - { - setState(208); - match(SEARCH); - } - } - - setState(211); - logicalExpression(0); - setState(212); - fromClause(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WhereCommandContext extends ParserRuleContext { - public TerminalNode WHERE() { return getToken(OpenSearchPPLParser.WHERE, 0); } - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public WhereCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_whereCommand; } - } - - public final WhereCommandContext whereCommand() throws RecognitionException { - WhereCommandContext _localctx = new WhereCommandContext(_ctx, getState()); - enterRule(_localctx, 8, RULE_whereCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(216); - match(WHERE); - setState(217); - logicalExpression(0); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FieldsCommandContext extends ParserRuleContext { - public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public FieldsCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fieldsCommand; } - } - - public final FieldsCommandContext fieldsCommand() throws RecognitionException { - FieldsCommandContext _localctx = new FieldsCommandContext(_ctx, getState()); - enterRule(_localctx, 10, RULE_fieldsCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(219); - match(FIELDS); - setState(221); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(220); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(223); - fieldList(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RenameCommandContext extends ParserRuleContext { - public TerminalNode RENAME() { return getToken(OpenSearchPPLParser.RENAME, 0); } - public List renameClasue() { - return getRuleContexts(RenameClasueContext.class); - } - public RenameClasueContext renameClasue(int i) { - return getRuleContext(RenameClasueContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public RenameCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_renameCommand; } - } - - public final RenameCommandContext renameCommand() throws RecognitionException { - RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); - enterRule(_localctx, 12, RULE_renameCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(225); - match(RENAME); - setState(226); - renameClasue(); - setState(231); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(227); - match(COMMA); - setState(228); - renameClasue(); - } - } - setState(233); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsCommandContext extends ParserRuleContext { - public IntegerLiteralContext partitions; - public BooleanLiteralContext allnum; - public StringLiteralContext delim; - public BooleanLiteralContext dedupsplit; - public TerminalNode STATS() { return getToken(OpenSearchPPLParser.STATS, 0); } - public List statsAggTerm() { - return getRuleContexts(StatsAggTermContext.class); - } - public StatsAggTermContext statsAggTerm(int i) { - return getRuleContext(StatsAggTermContext.class,i); - } - public TerminalNode PARTITIONS() { return getToken(OpenSearchPPLParser.PARTITIONS, 0); } - public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } - public TerminalNode EQUAL(int i) { - return getToken(OpenSearchPPLParser.EQUAL, i); - } - public TerminalNode ALLNUM() { return getToken(OpenSearchPPLParser.ALLNUM, 0); } - public TerminalNode DELIM() { return getToken(OpenSearchPPLParser.DELIM, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public StatsByClauseContext statsByClause() { - return getRuleContext(StatsByClauseContext.class,0); - } - public TerminalNode DEDUP_SPLITVALUES() { return getToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public List booleanLiteral() { - return getRuleContexts(BooleanLiteralContext.class); - } - public BooleanLiteralContext booleanLiteral(int i) { - return getRuleContext(BooleanLiteralContext.class,i); - } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public StatsCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsCommand; } - } - - public final StatsCommandContext statsCommand() throws RecognitionException { - StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState()); - enterRule(_localctx, 14, RULE_statsCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(234); - match(STATS); - setState(238); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PARTITIONS) { - { - setState(235); - match(PARTITIONS); - setState(236); - match(EQUAL); - setState(237); - ((StatsCommandContext)_localctx).partitions = integerLiteral(); - } - } - - setState(243); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==ALLNUM) { - { - setState(240); - match(ALLNUM); - setState(241); - match(EQUAL); - setState(242); - ((StatsCommandContext)_localctx).allnum = booleanLiteral(); - } - } - - setState(248); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==DELIM) { - { - setState(245); - match(DELIM); - setState(246); - match(EQUAL); - setState(247); - ((StatsCommandContext)_localctx).delim = stringLiteral(); - } - } - - setState(250); - statsAggTerm(); - setState(255); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(251); - match(COMMA); - setState(252); - statsAggTerm(); - } - } - setState(257); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(259); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==BY) { - { - setState(258); - statsByClause(); - } - } - - setState(264); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==DEDUP_SPLITVALUES) { - { - setState(261); - match(DEDUP_SPLITVALUES); - setState(262); - match(EQUAL); - setState(263); - ((StatsCommandContext)_localctx).dedupsplit = booleanLiteral(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DedupCommandContext extends ParserRuleContext { - public IntegerLiteralContext number; - public BooleanLiteralContext keepempty; - public BooleanLiteralContext consecutive; - public TerminalNode DEDUP() { return getToken(OpenSearchPPLParser.DEDUP, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public TerminalNode KEEPEMPTY() { return getToken(OpenSearchPPLParser.KEEPEMPTY, 0); } - public List EQUAL() { return getTokens(OpenSearchPPLParser.EQUAL); } - public TerminalNode EQUAL(int i) { - return getToken(OpenSearchPPLParser.EQUAL, i); - } - public TerminalNode CONSECUTIVE() { return getToken(OpenSearchPPLParser.CONSECUTIVE, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public List booleanLiteral() { - return getRuleContexts(BooleanLiteralContext.class); - } - public BooleanLiteralContext booleanLiteral(int i) { - return getRuleContext(BooleanLiteralContext.class,i); - } - public DedupCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_dedupCommand; } - } - - public final DedupCommandContext dedupCommand() throws RecognitionException { - DedupCommandContext _localctx = new DedupCommandContext(_ctx, getState()); - enterRule(_localctx, 16, RULE_dedupCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(266); - match(DEDUP); - setState(268); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { - { - setState(267); - ((DedupCommandContext)_localctx).number = integerLiteral(); - } - } - - setState(270); - fieldList(); - setState(274); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==KEEPEMPTY) { - { - setState(271); - match(KEEPEMPTY); - setState(272); - match(EQUAL); - setState(273); - ((DedupCommandContext)_localctx).keepempty = booleanLiteral(); - } - } - - setState(279); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==CONSECUTIVE) { - { - setState(276); - match(CONSECUTIVE); - setState(277); - match(EQUAL); - setState(278); - ((DedupCommandContext)_localctx).consecutive = booleanLiteral(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortCommandContext extends ParserRuleContext { - public TerminalNode SORT() { return getToken(OpenSearchPPLParser.SORT, 0); } - public SortbyClauseContext sortbyClause() { - return getRuleContext(SortbyClauseContext.class,0); - } - public SortCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortCommand; } - } - - public final SortCommandContext sortCommand() throws RecognitionException { - SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); - enterRule(_localctx, 18, RULE_sortCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(281); - match(SORT); - setState(282); - sortbyClause(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalCommandContext extends ParserRuleContext { - public TerminalNode EVAL() { return getToken(OpenSearchPPLParser.EVAL, 0); } - public List evalClause() { - return getRuleContexts(EvalClauseContext.class); - } - public EvalClauseContext evalClause(int i) { - return getRuleContext(EvalClauseContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public EvalCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalCommand; } - } - - public final EvalCommandContext evalCommand() throws RecognitionException { - EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState()); - enterRule(_localctx, 20, RULE_evalCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(284); - match(EVAL); - setState(285); - evalClause(); - setState(290); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(286); - match(COMMA); - setState(287); - evalClause(); - } - } - setState(292); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class HeadCommandContext extends ParserRuleContext { - public IntegerLiteralContext number; - public IntegerLiteralContext from; - public TerminalNode HEAD() { return getToken(OpenSearchPPLParser.HEAD, 0); } - public TerminalNode FROM() { return getToken(OpenSearchPPLParser.FROM, 0); } - public List integerLiteral() { - return getRuleContexts(IntegerLiteralContext.class); - } - public IntegerLiteralContext integerLiteral(int i) { - return getRuleContext(IntegerLiteralContext.class,i); - } - public HeadCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_headCommand; } - } - - public final HeadCommandContext headCommand() throws RecognitionException { - HeadCommandContext _localctx = new HeadCommandContext(_ctx, getState()); - enterRule(_localctx, 22, RULE_headCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(293); - match(HEAD); - setState(295); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { - { - setState(294); - ((HeadCommandContext)_localctx).number = integerLiteral(); - } - } - - setState(299); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==FROM) { - { - setState(297); - match(FROM); - setState(298); - ((HeadCommandContext)_localctx).from = integerLiteral(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TopCommandContext extends ParserRuleContext { - public IntegerLiteralContext number; - public TerminalNode TOP() { return getToken(OpenSearchPPLParser.TOP, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public ByClauseContext byClause() { - return getRuleContext(ByClauseContext.class,0); - } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public TopCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_topCommand; } - } - - public final TopCommandContext topCommand() throws RecognitionException { - TopCommandContext _localctx = new TopCommandContext(_ctx, getState()); - enterRule(_localctx, 24, RULE_topCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(301); - match(TOP); - setState(303); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS || _la==INTEGER_LITERAL) { - { - setState(302); - ((TopCommandContext)_localctx).number = integerLiteral(); - } - } - - setState(305); - fieldList(); - setState(307); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==BY) { - { - setState(306); - byClause(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RareCommandContext extends ParserRuleContext { - public TerminalNode RARE() { return getToken(OpenSearchPPLParser.RARE, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public ByClauseContext byClause() { - return getRuleContext(ByClauseContext.class,0); - } - public RareCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_rareCommand; } - } - - public final RareCommandContext rareCommand() throws RecognitionException { - RareCommandContext _localctx = new RareCommandContext(_ctx, getState()); - enterRule(_localctx, 26, RULE_rareCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(309); - match(RARE); - setState(310); - fieldList(); - setState(312); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==BY) { - { - setState(311); - byClause(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ParseCommandContext extends ParserRuleContext { - public TerminalNode PARSE() { return getToken(OpenSearchPPLParser.PARSE, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public PatternContext pattern() { - return getRuleContext(PatternContext.class,0); - } - public ParseCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_parseCommand; } - } - - public final ParseCommandContext parseCommand() throws RecognitionException { - ParseCommandContext _localctx = new ParseCommandContext(_ctx, getState()); - enterRule(_localctx, 28, RULE_parseCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(314); - match(PARSE); - setState(315); - expression(); - setState(316); - pattern(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class KmeansCommandContext extends ParserRuleContext { - public TerminalNode KMEANS() { return getToken(OpenSearchPPLParser.KMEANS, 0); } - public List kmeansParameter() { - return getRuleContexts(KmeansParameterContext.class); - } - public KmeansParameterContext kmeansParameter(int i) { - return getRuleContext(KmeansParameterContext.class,i); - } - public KmeansCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_kmeansCommand; } - } - - public final KmeansCommandContext kmeansCommand() throws RecognitionException { - KmeansCommandContext _localctx = new KmeansCommandContext(_ctx, getState()); - enterRule(_localctx, 30, RULE_kmeansCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(318); - match(KMEANS); - setState(322); - _errHandler.sync(this); - _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CENTROIDS) | (1L << ITERATIONS) | (1L << DISTANCE_TYPE))) != 0)) { - { - { - setState(319); - kmeansParameter(); - } - } - setState(324); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class KmeansParameterContext extends ParserRuleContext { - public IntegerLiteralContext centroids; - public IntegerLiteralContext iterations; - public StringLiteralContext distance_type; - public TerminalNode CENTROIDS() { return getToken(OpenSearchPPLParser.CENTROIDS, 0); } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public TerminalNode ITERATIONS() { return getToken(OpenSearchPPLParser.ITERATIONS, 0); } - public TerminalNode DISTANCE_TYPE() { return getToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public KmeansParameterContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_kmeansParameter; } - } - - public final KmeansParameterContext kmeansParameter() throws RecognitionException { - KmeansParameterContext _localctx = new KmeansParameterContext(_ctx, getState()); - enterRule(_localctx, 32, RULE_kmeansParameter); - try { - setState(334); - _errHandler.sync(this); - switch (_input.LA(1)) { - case CENTROIDS: - enterOuterAlt(_localctx, 1); - { - { - setState(325); - match(CENTROIDS); - setState(326); - match(EQUAL); - setState(327); - ((KmeansParameterContext)_localctx).centroids = integerLiteral(); - } - } - break; - case ITERATIONS: - enterOuterAlt(_localctx, 2); - { - { - setState(328); - match(ITERATIONS); - setState(329); - match(EQUAL); - setState(330); - ((KmeansParameterContext)_localctx).iterations = integerLiteral(); - } - } - break; - case DISTANCE_TYPE: - enterOuterAlt(_localctx, 3); - { - { - setState(331); - match(DISTANCE_TYPE); - setState(332); - match(EQUAL); - setState(333); - ((KmeansParameterContext)_localctx).distance_type = stringLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class AdCommandContext extends ParserRuleContext { - public TerminalNode AD() { return getToken(OpenSearchPPLParser.AD, 0); } - public List adParameter() { - return getRuleContexts(AdParameterContext.class); - } - public AdParameterContext adParameter(int i) { - return getRuleContext(AdParameterContext.class,i); - } - public AdCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_adCommand; } - } - - public final AdCommandContext adCommand() throws RecognitionException { - AdCommandContext _localctx = new AdCommandContext(_ctx, getState()); - enterRule(_localctx, 34, RULE_adCommand); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(336); - match(AD); - setState(340); - _errHandler.sync(this); - _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << NUMBER_OF_TREES) | (1L << SHINGLE_SIZE) | (1L << SAMPLE_SIZE) | (1L << OUTPUT_AFTER) | (1L << TIME_DECAY) | (1L << ANOMALY_RATE) | (1L << TIME_FIELD) | (1L << TIME_ZONE) | (1L << TRAINING_DATA_SIZE) | (1L << ANOMALY_SCORE_THRESHOLD))) != 0) || _la==DATE_FORMAT) { - { - { - setState(337); - adParameter(); - } - } - setState(342); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class AdParameterContext extends ParserRuleContext { - public IntegerLiteralContext number_of_trees; - public IntegerLiteralContext shingle_size; - public IntegerLiteralContext sample_size; - public IntegerLiteralContext output_after; - public DecimalLiteralContext time_decay; - public DecimalLiteralContext anomaly_rate; - public StringLiteralContext time_field; - public StringLiteralContext date_format; - public StringLiteralContext time_zone; - public IntegerLiteralContext training_data_size; - public DecimalLiteralContext anomaly_score_threshold; - public TerminalNode NUMBER_OF_TREES() { return getToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public TerminalNode SHINGLE_SIZE() { return getToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } - public TerminalNode SAMPLE_SIZE() { return getToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } - public TerminalNode OUTPUT_AFTER() { return getToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } - public TerminalNode TIME_DECAY() { return getToken(OpenSearchPPLParser.TIME_DECAY, 0); } - public DecimalLiteralContext decimalLiteral() { - return getRuleContext(DecimalLiteralContext.class,0); - } - public TerminalNode ANOMALY_RATE() { return getToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } - public TerminalNode TIME_FIELD() { return getToken(OpenSearchPPLParser.TIME_FIELD, 0); } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TerminalNode TRAINING_DATA_SIZE() { return getToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } - public TerminalNode ANOMALY_SCORE_THRESHOLD() { return getToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } - public AdParameterContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_adParameter; } - } - - public final AdParameterContext adParameter() throws RecognitionException { - AdParameterContext _localctx = new AdParameterContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_adParameter); - try { - setState(376); - _errHandler.sync(this); - switch (_input.LA(1)) { - case NUMBER_OF_TREES: - enterOuterAlt(_localctx, 1); - { - { - setState(343); - match(NUMBER_OF_TREES); - setState(344); - match(EQUAL); - setState(345); - ((AdParameterContext)_localctx).number_of_trees = integerLiteral(); - } - } - break; - case SHINGLE_SIZE: - enterOuterAlt(_localctx, 2); - { - { - setState(346); - match(SHINGLE_SIZE); - setState(347); - match(EQUAL); - setState(348); - ((AdParameterContext)_localctx).shingle_size = integerLiteral(); - } - } - break; - case SAMPLE_SIZE: - enterOuterAlt(_localctx, 3); - { - { - setState(349); - match(SAMPLE_SIZE); - setState(350); - match(EQUAL); - setState(351); - ((AdParameterContext)_localctx).sample_size = integerLiteral(); - } - } - break; - case OUTPUT_AFTER: - enterOuterAlt(_localctx, 4); - { - { - setState(352); - match(OUTPUT_AFTER); - setState(353); - match(EQUAL); - setState(354); - ((AdParameterContext)_localctx).output_after = integerLiteral(); - } - } - break; - case TIME_DECAY: - enterOuterAlt(_localctx, 5); - { - { - setState(355); - match(TIME_DECAY); - setState(356); - match(EQUAL); - setState(357); - ((AdParameterContext)_localctx).time_decay = decimalLiteral(); - } - } - break; - case ANOMALY_RATE: - enterOuterAlt(_localctx, 6); - { - { - setState(358); - match(ANOMALY_RATE); - setState(359); - match(EQUAL); - setState(360); - ((AdParameterContext)_localctx).anomaly_rate = decimalLiteral(); - } - } - break; - case TIME_FIELD: - enterOuterAlt(_localctx, 7); - { - { - setState(361); - match(TIME_FIELD); - setState(362); - match(EQUAL); - setState(363); - ((AdParameterContext)_localctx).time_field = stringLiteral(); - } - } - break; - case DATE_FORMAT: - enterOuterAlt(_localctx, 8); - { - { - setState(364); - match(DATE_FORMAT); - setState(365); - match(EQUAL); - setState(366); - ((AdParameterContext)_localctx).date_format = stringLiteral(); - } - } - break; - case TIME_ZONE: - enterOuterAlt(_localctx, 9); - { - { - setState(367); - match(TIME_ZONE); - setState(368); - match(EQUAL); - setState(369); - ((AdParameterContext)_localctx).time_zone = stringLiteral(); - } - } - break; - case TRAINING_DATA_SIZE: - enterOuterAlt(_localctx, 10); - { - { - setState(370); - match(TRAINING_DATA_SIZE); - setState(371); - match(EQUAL); - setState(372); - ((AdParameterContext)_localctx).training_data_size = integerLiteral(); - } - } - break; - case ANOMALY_SCORE_THRESHOLD: - enterOuterAlt(_localctx, 11); - { - { - setState(373); - match(ANOMALY_SCORE_THRESHOLD); - setState(374); - match(EQUAL); - setState(375); - ((AdParameterContext)_localctx).anomaly_score_threshold = decimalLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FromClauseContext extends ParserRuleContext { - public TerminalNode SOURCE() { return getToken(OpenSearchPPLParser.SOURCE, 0); } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public List tableSource() { - return getRuleContexts(TableSourceContext.class); - } - public TableSourceContext tableSource(int i) { - return getRuleContext(TableSourceContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public TerminalNode INDEX() { return getToken(OpenSearchPPLParser.INDEX, 0); } - public FromClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fromClause; } - } - - public final FromClauseContext fromClause() throws RecognitionException { - FromClauseContext _localctx = new FromClauseContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_fromClause); - int _la; - try { - setState(398); - _errHandler.sync(this); - switch (_input.LA(1)) { - case SOURCE: - enterOuterAlt(_localctx, 1); - { - setState(378); - match(SOURCE); - setState(379); - match(EQUAL); - setState(380); - tableSource(); - setState(385); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(381); - match(COMMA); - setState(382); - tableSource(); - } - } - setState(387); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - break; - case INDEX: - enterOuterAlt(_localctx, 2); - { - setState(388); - match(INDEX); - setState(389); - match(EQUAL); - setState(390); - tableSource(); - setState(395); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(391); - match(COMMA); - setState(392); - tableSource(); - } - } - setState(397); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RenameClasueContext extends ParserRuleContext { - public WcFieldExpressionContext orignalField; - public WcFieldExpressionContext renamedField; - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public List wcFieldExpression() { - return getRuleContexts(WcFieldExpressionContext.class); - } - public WcFieldExpressionContext wcFieldExpression(int i) { - return getRuleContext(WcFieldExpressionContext.class,i); - } - public RenameClasueContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_renameClasue; } - } - - public final RenameClasueContext renameClasue() throws RecognitionException { - RenameClasueContext _localctx = new RenameClasueContext(_ctx, getState()); - enterRule(_localctx, 40, RULE_renameClasue); - try { - enterOuterAlt(_localctx, 1); - { - setState(400); - ((RenameClasueContext)_localctx).orignalField = wcFieldExpression(); - setState(401); - match(AS); - setState(402); - ((RenameClasueContext)_localctx).renamedField = wcFieldExpression(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ByClauseContext extends ParserRuleContext { - public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public ByClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_byClause; } - } - - public final ByClauseContext byClause() throws RecognitionException { - ByClauseContext _localctx = new ByClauseContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_byClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(404); - match(BY); - setState(405); - fieldList(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsByClauseContext extends ParserRuleContext { - public TerminalNode BY() { return getToken(OpenSearchPPLParser.BY, 0); } - public FieldListContext fieldList() { - return getRuleContext(FieldListContext.class,0); - } - public BySpanClauseContext bySpanClause() { - return getRuleContext(BySpanClauseContext.class,0); - } - public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } - public StatsByClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsByClause; } - } - - public final StatsByClauseContext statsByClause() throws RecognitionException { - StatsByClauseContext _localctx = new StatsByClauseContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_statsByClause); - try { - setState(416); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(407); - match(BY); - setState(408); - fieldList(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(409); - match(BY); - setState(410); - bySpanClause(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(411); - match(BY); - setState(412); - bySpanClause(); - setState(413); - match(COMMA); - setState(414); - fieldList(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BySpanClauseContext extends ParserRuleContext { - public QualifiedNameContext alias; - public SpanClauseContext spanClause() { - return getRuleContext(SpanClauseContext.class,0); - } - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public BySpanClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_bySpanClause; } - } - - public final BySpanClauseContext bySpanClause() throws RecognitionException { - BySpanClauseContext _localctx = new BySpanClauseContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_bySpanClause); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(418); - spanClause(); - setState(421); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==AS) { - { - setState(419); - match(AS); - setState(420); - ((BySpanClauseContext)_localctx).alias = qualifiedName(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SpanClauseContext extends ParserRuleContext { - public LiteralValueContext value; - public TimespanUnitContext unit; - public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public TerminalNode COMMA() { return getToken(OpenSearchPPLParser.COMMA, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public LiteralValueContext literalValue() { - return getRuleContext(LiteralValueContext.class,0); - } - public TimespanUnitContext timespanUnit() { - return getRuleContext(TimespanUnitContext.class,0); - } - public SpanClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_spanClause; } - } - - public final SpanClauseContext spanClause() throws RecognitionException { - SpanClauseContext _localctx = new SpanClauseContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_spanClause); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(423); - match(SPAN); - setState(424); - match(LT_PRTHS); - setState(425); - fieldExpression(); - setState(426); - match(COMMA); - setState(427); - ((SpanClauseContext)_localctx).value = literalValue(); - setState(429); - _errHandler.sync(this); - _la = _input.LA(1); - if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) { - { - setState(428); - ((SpanClauseContext)_localctx).unit = timespanUnit(); - } - } - - setState(431); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortbyClauseContext extends ParserRuleContext { - public List sortField() { - return getRuleContexts(SortFieldContext.class); - } - public SortFieldContext sortField(int i) { - return getRuleContext(SortFieldContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public SortbyClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortbyClause; } - } - - public final SortbyClauseContext sortbyClause() throws RecognitionException { - SortbyClauseContext _localctx = new SortbyClauseContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_sortbyClause); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(433); - sortField(); - setState(438); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(434); - match(COMMA); - setState(435); - sortField(); - } - } - setState(440); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalClauseContext extends ParserRuleContext { - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public EvalClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalClause; } - } - - public final EvalClauseContext evalClause() throws RecognitionException { - EvalClauseContext _localctx = new EvalClauseContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_evalClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(441); - fieldExpression(); - setState(442); - match(EQUAL); - setState(443); - expression(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsAggTermContext extends ParserRuleContext { - public WcFieldExpressionContext alias; - public StatsFunctionContext statsFunction() { - return getRuleContext(StatsFunctionContext.class,0); - } - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public WcFieldExpressionContext wcFieldExpression() { - return getRuleContext(WcFieldExpressionContext.class,0); - } - public StatsAggTermContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsAggTerm; } - } - - public final StatsAggTermContext statsAggTerm() throws RecognitionException { - StatsAggTermContext _localctx = new StatsAggTermContext(_ctx, getState()); - enterRule(_localctx, 54, RULE_statsAggTerm); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(445); - statsFunction(); - setState(448); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==AS) { - { - setState(446); - match(AS); - setState(447); - ((StatsAggTermContext)_localctx).alias = wcFieldExpression(); - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsFunctionContext extends ParserRuleContext { - public StatsFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsFunction; } - - public StatsFunctionContext() { } - public void copyFrom(StatsFunctionContext ctx) { - super.copyFrom(ctx); - } - } - public static class DistinctCountFunctionCallContext extends StatsFunctionContext { - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public TerminalNode DISTINCT_COUNT() { return getToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } - public TerminalNode DC() { return getToken(OpenSearchPPLParser.DC, 0); } - public DistinctCountFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - public static class StatsFunctionCallContext extends StatsFunctionContext { - public StatsFunctionNameContext statsFunctionName() { - return getRuleContext(StatsFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public StatsFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - public static class CountAllFunctionCallContext extends StatsFunctionContext { - public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public CountAllFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - public static class PercentileAggFunctionCallContext extends StatsFunctionContext { - public PercentileAggFunctionContext percentileAggFunction() { - return getRuleContext(PercentileAggFunctionContext.class,0); - } - public PercentileAggFunctionCallContext(StatsFunctionContext ctx) { copyFrom(ctx); } - } - - public final StatsFunctionContext statsFunction() throws RecognitionException { - StatsFunctionContext _localctx = new StatsFunctionContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_statsFunction); - int _la; - try { - setState(464); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { - case 1: - _localctx = new StatsFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(450); - statsFunctionName(); - setState(451); - match(LT_PRTHS); - setState(452); - valueExpression(0); - setState(453); - match(RT_PRTHS); - } - break; - case 2: - _localctx = new CountAllFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(455); - match(COUNT); - setState(456); - match(LT_PRTHS); - setState(457); - match(RT_PRTHS); - } - break; - case 3: - _localctx = new DistinctCountFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 3); - { - setState(458); - _la = _input.LA(1); - if ( !(_la==DISTINCT_COUNT || _la==DC) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(459); - match(LT_PRTHS); - setState(460); - valueExpression(0); - setState(461); - match(RT_PRTHS); - } - break; - case 4: - _localctx = new PercentileAggFunctionCallContext(_localctx); - enterOuterAlt(_localctx, 4); - { - setState(463); - percentileAggFunction(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StatsFunctionNameContext extends ParserRuleContext { - public TerminalNode AVG() { return getToken(OpenSearchPPLParser.AVG, 0); } - public TerminalNode COUNT() { return getToken(OpenSearchPPLParser.COUNT, 0); } - public TerminalNode SUM() { return getToken(OpenSearchPPLParser.SUM, 0); } - public TerminalNode MIN() { return getToken(OpenSearchPPLParser.MIN, 0); } - public TerminalNode MAX() { return getToken(OpenSearchPPLParser.MAX, 0); } - public TerminalNode VAR_SAMP() { return getToken(OpenSearchPPLParser.VAR_SAMP, 0); } - public TerminalNode VAR_POP() { return getToken(OpenSearchPPLParser.VAR_POP, 0); } - public TerminalNode STDDEV_SAMP() { return getToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } - public TerminalNode STDDEV_POP() { return getToken(OpenSearchPPLParser.STDDEV_POP, 0); } - public StatsFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_statsFunctionName; } - } - - public final StatsFunctionNameContext statsFunctionName() throws RecognitionException { - StatsFunctionNameContext _localctx = new StatsFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_statsFunctionName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(466); - _la = _input.LA(1); - if ( !(((((_la - 114)) & ~0x3f) == 0 && ((1L << (_la - 114)) & ((1L << (AVG - 114)) | (1L << (COUNT - 114)) | (1L << (MAX - 114)) | (1L << (MIN - 114)) | (1L << (SUM - 114)) | (1L << (VAR_SAMP - 114)) | (1L << (VAR_POP - 114)) | (1L << (STDDEV_SAMP - 114)) | (1L << (STDDEV_POP - 114)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class PercentileAggFunctionContext extends ParserRuleContext { - public IntegerLiteralContext value; - public FieldExpressionContext aggField; - public TerminalNode PERCENTILE() { return getToken(OpenSearchPPLParser.PERCENTILE, 0); } - public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } - public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public PercentileAggFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_percentileAggFunction; } - } - - public final PercentileAggFunctionContext percentileAggFunction() throws RecognitionException { - PercentileAggFunctionContext _localctx = new PercentileAggFunctionContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_percentileAggFunction); - try { - enterOuterAlt(_localctx, 1); - { - setState(468); - match(PERCENTILE); - setState(469); - match(LESS); - setState(470); - ((PercentileAggFunctionContext)_localctx).value = integerLiteral(); - setState(471); - match(GREATER); - setState(472); - match(LT_PRTHS); - setState(473); - ((PercentileAggFunctionContext)_localctx).aggField = fieldExpression(); - setState(474); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ExpressionContext extends ParserRuleContext { - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public ComparisonExpressionContext comparisonExpression() { - return getRuleContext(ComparisonExpressionContext.class,0); - } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public ExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_expression; } - } - - public final ExpressionContext expression() throws RecognitionException { - ExpressionContext _localctx = new ExpressionContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_expression); - try { - setState(479); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(476); - logicalExpression(0); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(477); - comparisonExpression(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(478); - valueExpression(0); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class LogicalExpressionContext extends ParserRuleContext { - public LogicalExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_logicalExpression; } - - public LogicalExpressionContext() { } - public void copyFrom(LogicalExpressionContext ctx) { - super.copyFrom(ctx); - } - } - public static class RelevanceExprContext extends LogicalExpressionContext { - public RelevanceExpressionContext relevanceExpression() { - return getRuleContext(RelevanceExpressionContext.class,0); - } - public RelevanceExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalNotContext extends LogicalExpressionContext { - public TerminalNode NOT() { return getToken(OpenSearchPPLParser.NOT, 0); } - public LogicalExpressionContext logicalExpression() { - return getRuleContext(LogicalExpressionContext.class,0); - } - public LogicalNotContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class BooleanExprContext extends LogicalExpressionContext { - public BooleanExpressionContext booleanExpression() { - return getRuleContext(BooleanExpressionContext.class,0); - } - public BooleanExprContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalAndContext extends LogicalExpressionContext { - public LogicalExpressionContext left; - public LogicalExpressionContext right; - public List logicalExpression() { - return getRuleContexts(LogicalExpressionContext.class); - } - public LogicalExpressionContext logicalExpression(int i) { - return getRuleContext(LogicalExpressionContext.class,i); - } - public TerminalNode AND() { return getToken(OpenSearchPPLParser.AND, 0); } - public LogicalAndContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class ComparsionContext extends LogicalExpressionContext { - public ComparisonExpressionContext comparisonExpression() { - return getRuleContext(ComparisonExpressionContext.class,0); - } - public ComparsionContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalXorContext extends LogicalExpressionContext { - public LogicalExpressionContext left; - public LogicalExpressionContext right; - public TerminalNode XOR() { return getToken(OpenSearchPPLParser.XOR, 0); } - public List logicalExpression() { - return getRuleContexts(LogicalExpressionContext.class); - } - public LogicalExpressionContext logicalExpression(int i) { - return getRuleContext(LogicalExpressionContext.class,i); - } - public LogicalXorContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - public static class LogicalOrContext extends LogicalExpressionContext { - public LogicalExpressionContext left; - public LogicalExpressionContext right; - public TerminalNode OR() { return getToken(OpenSearchPPLParser.OR, 0); } - public List logicalExpression() { - return getRuleContexts(LogicalExpressionContext.class); - } - public LogicalExpressionContext logicalExpression(int i) { - return getRuleContext(LogicalExpressionContext.class,i); - } - public LogicalOrContext(LogicalExpressionContext ctx) { copyFrom(ctx); } - } - - public final LogicalExpressionContext logicalExpression() throws RecognitionException { - return logicalExpression(0); - } - - private LogicalExpressionContext logicalExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - LogicalExpressionContext _localctx = new LogicalExpressionContext(_ctx, _parentState); - LogicalExpressionContext _prevctx = _localctx; - int _startState = 64; - enterRecursionRule(_localctx, 64, RULE_logicalExpression, _p); - int _la; - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(487); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { - case 1: - { - _localctx = new ComparsionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(482); - comparisonExpression(); - } - break; - case 2: - { - _localctx = new LogicalNotContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(483); - match(NOT); - setState(484); - logicalExpression(6); - } - break; - case 3: - { - _localctx = new BooleanExprContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(485); - booleanExpression(); - } - break; - case 4: - { - _localctx = new RelevanceExprContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(486); - relevanceExpression(); - } - break; - } - _ctx.stop = _input.LT(-1); - setState(502); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,41,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; - { - setState(500); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { - case 1: - { - _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); - ((LogicalOrContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); - setState(489); - if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(490); - match(OR); - setState(491); - ((LogicalOrContext)_localctx).right = logicalExpression(6); - } - break; - case 2: - { - _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); - ((LogicalAndContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); - setState(492); - if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(494); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==AND) { - { - setState(493); - match(AND); - } - } - - setState(496); - ((LogicalAndContext)_localctx).right = logicalExpression(5); - } - break; - case 3: - { - _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); - ((LogicalXorContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_logicalExpression); - setState(497); - if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(498); - match(XOR); - setState(499); - ((LogicalXorContext)_localctx).right = logicalExpression(4); - } - break; - } - } - } - setState(504); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,41,_ctx); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - unrollRecursionContexts(_parentctx); - } - return _localctx; - } - - public static class ComparisonExpressionContext extends ParserRuleContext { - public ComparisonExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_comparisonExpression; } - - public ComparisonExpressionContext() { } - public void copyFrom(ComparisonExpressionContext ctx) { - super.copyFrom(ctx); - } - } - public static class InExprContext extends ComparisonExpressionContext { - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public TerminalNode IN() { return getToken(OpenSearchPPLParser.IN, 0); } - public ValueListContext valueList() { - return getRuleContext(ValueListContext.class,0); - } - public InExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } - } - public static class CompareExprContext extends ComparisonExpressionContext { - public ValueExpressionContext left; - public ValueExpressionContext right; - public ComparisonOperatorContext comparisonOperator() { - return getRuleContext(ComparisonOperatorContext.class,0); - } - public List valueExpression() { - return getRuleContexts(ValueExpressionContext.class); - } - public ValueExpressionContext valueExpression(int i) { - return getRuleContext(ValueExpressionContext.class,i); - } - public CompareExprContext(ComparisonExpressionContext ctx) { copyFrom(ctx); } - } - - public final ComparisonExpressionContext comparisonExpression() throws RecognitionException { - ComparisonExpressionContext _localctx = new ComparisonExpressionContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_comparisonExpression); - try { - setState(513); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { - case 1: - _localctx = new CompareExprContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(505); - ((CompareExprContext)_localctx).left = valueExpression(0); - setState(506); - comparisonOperator(); - setState(507); - ((CompareExprContext)_localctx).right = valueExpression(0); - } - break; - case 2: - _localctx = new InExprContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(509); - valueExpression(0); - setState(510); - match(IN); - setState(511); - valueList(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ValueExpressionContext extends ParserRuleContext { - public ValueExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_valueExpression; } - - public ValueExpressionContext() { } - public void copyFrom(ValueExpressionContext ctx) { - super.copyFrom(ctx); - } - } - public static class ValueExpressionDefaultContext extends ValueExpressionContext { - public PrimaryExpressionContext primaryExpression() { - return getRuleContext(PrimaryExpressionContext.class,0); - } - public ValueExpressionDefaultContext(ValueExpressionContext ctx) { copyFrom(ctx); } - } - public static class ParentheticBinaryArithmeticContext extends ValueExpressionContext { - public ValueExpressionContext left; - public ValueExpressionContext right; - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public BinaryOperatorContext binaryOperator() { - return getRuleContext(BinaryOperatorContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public List valueExpression() { - return getRuleContexts(ValueExpressionContext.class); - } - public ValueExpressionContext valueExpression(int i) { - return getRuleContext(ValueExpressionContext.class,i); - } - public ParentheticBinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } - } - public static class BinaryArithmeticContext extends ValueExpressionContext { - public ValueExpressionContext left; - public ValueExpressionContext right; - public BinaryOperatorContext binaryOperator() { - return getRuleContext(BinaryOperatorContext.class,0); - } - public List valueExpression() { - return getRuleContexts(ValueExpressionContext.class); - } - public ValueExpressionContext valueExpression(int i) { - return getRuleContext(ValueExpressionContext.class,i); - } - public BinaryArithmeticContext(ValueExpressionContext ctx) { copyFrom(ctx); } - } - - public final ValueExpressionContext valueExpression() throws RecognitionException { - return valueExpression(0); - } - - private ValueExpressionContext valueExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, _parentState); - ValueExpressionContext _prevctx = _localctx; - int _startState = 68; - enterRecursionRule(_localctx, 68, RULE_valueExpression, _p); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(523); - _errHandler.sync(this); - switch (_input.LA(1)) { - case LT_PRTHS: - { - _localctx = new ParentheticBinaryArithmeticContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(516); - match(LT_PRTHS); - setState(517); - ((ParentheticBinaryArithmeticContext)_localctx).left = valueExpression(0); - setState(518); - binaryOperator(); - setState(519); - ((ParentheticBinaryArithmeticContext)_localctx).right = valueExpression(0); - setState(520); - match(RT_PRTHS); - } - break; - case D: - case TRUE: - case FALSE: - case INTERVAL: - case MICROSECOND: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case PLUS: - case MINUS: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case ABS: - case CEIL: - case CEILING: - case CONV: - case CRC32: - case E: - case EXP: - case FLOOR: - case LN: - case LOG: - case LOG10: - case LOG2: - case MOD: - case PI: - case POW: - case POWER: - case RAND: - case ROUND: - case SIGN: - case SQRT: - case TRUNCATE: - case ACOS: - case ASIN: - case ATAN: - case ATAN2: - case COS: - case COT: - case DEGREES: - case RADIANS: - case SIN: - case TAN: - case ADDDATE: - case DATE: - case DATE_ADD: - case DATE_SUB: - case DAYOFMONTH: - case DAYOFWEEK: - case DAYOFYEAR: - case DAYNAME: - case FROM_DAYS: - case MONTHNAME: - case SUBDATE: - case TIME: - case TIME_TO_SEC: - case TIMESTAMP: - case DATE_FORMAT: - case TO_DAYS: - case SUBSTR: - case SUBSTRING: - case LTRIM: - case RTRIM: - case TRIM: - case LOWER: - case UPPER: - case CONCAT: - case CONCAT_WS: - case LENGTH: - case STRCMP: - case RIGHT: - case LEFT: - case ASCII: - case LOCATE: - case REPLACE: - case CAST: - case LIKE: - case ISNULL: - case ISNOTNULL: - case IFNULL: - case NULLIF: - case IF: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case INTEGER_LITERAL: - case DECIMAL_LITERAL: - case DQUOTA_STRING: - case SQUOTA_STRING: - case BQUOTA_STRING: - { - _localctx = new ValueExpressionDefaultContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(522); - primaryExpression(); - } - break; - default: - throw new NoViableAltException(this); - } - _ctx.stop = _input.LT(-1); - setState(531); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; - { - { - _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); - ((BinaryArithmeticContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_valueExpression); - setState(525); - if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(526); - binaryOperator(); - setState(527); - ((BinaryArithmeticContext)_localctx).right = valueExpression(4); - } - } - } - setState(533); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - unrollRecursionContexts(_parentctx); - } - return _localctx; - } - - public static class PrimaryExpressionContext extends ParserRuleContext { - public EvalFunctionCallContext evalFunctionCall() { - return getRuleContext(EvalFunctionCallContext.class,0); - } - public DataTypeFunctionCallContext dataTypeFunctionCall() { - return getRuleContext(DataTypeFunctionCallContext.class,0); - } - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public LiteralValueContext literalValue() { - return getRuleContext(LiteralValueContext.class,0); - } - public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_primaryExpression; } - } - - public final PrimaryExpressionContext primaryExpression() throws RecognitionException { - PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_primaryExpression); - try { - setState(538); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(534); - evalFunctionCall(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(535); - dataTypeFunctionCall(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(536); - fieldExpression(); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(537); - literalValue(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BooleanExpressionContext extends ParserRuleContext { - public BooleanFunctionCallContext booleanFunctionCall() { - return getRuleContext(BooleanFunctionCallContext.class,0); - } - public BooleanExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_booleanExpression; } - } - - public final BooleanExpressionContext booleanExpression() throws RecognitionException { - BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_booleanExpression); - try { - enterOuterAlt(_localctx, 1); - { - setState(540); - booleanFunctionCall(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceExpressionContext extends ParserRuleContext { - public SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() { - return getRuleContext(SingleFieldRelevanceFunctionContext.class,0); - } - public MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() { - return getRuleContext(MultiFieldRelevanceFunctionContext.class,0); - } - public RelevanceExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceExpression; } - } - - public final RelevanceExpressionContext relevanceExpression() throws RecognitionException { - RelevanceExpressionContext _localctx = new RelevanceExpressionContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_relevanceExpression); - try { - setState(544); - _errHandler.sync(this); - switch (_input.LA(1)) { - case MATCH: - case MATCH_PHRASE: - enterOuterAlt(_localctx, 1); - { - setState(542); - singleFieldRelevanceFunction(); - } - break; - case SIMPLE_QUERY_STRING: - enterOuterAlt(_localctx, 2); - { - setState(543); - multiFieldRelevanceFunction(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SingleFieldRelevanceFunctionContext extends ParserRuleContext { - public RelevanceFieldContext field; - public RelevanceQueryContext query; - public SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() { - return getRuleContext(SingleFieldRelevanceFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public RelevanceFieldContext relevanceField() { - return getRuleContext(RelevanceFieldContext.class,0); - } - public RelevanceQueryContext relevanceQuery() { - return getRuleContext(RelevanceQueryContext.class,0); - } - public List relevanceArg() { - return getRuleContexts(RelevanceArgContext.class); - } - public RelevanceArgContext relevanceArg(int i) { - return getRuleContext(RelevanceArgContext.class,i); - } - public SingleFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunction; } - } - - public final SingleFieldRelevanceFunctionContext singleFieldRelevanceFunction() throws RecognitionException { - SingleFieldRelevanceFunctionContext _localctx = new SingleFieldRelevanceFunctionContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_singleFieldRelevanceFunction); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(546); - singleFieldRelevanceFunctionName(); - setState(547); - match(LT_PRTHS); - setState(548); - ((SingleFieldRelevanceFunctionContext)_localctx).field = relevanceField(); - setState(549); - match(COMMA); - setState(550); - ((SingleFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); - setState(555); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(551); - match(COMMA); - setState(552); - relevanceArg(); - } - } - setState(557); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(558); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class MultiFieldRelevanceFunctionContext extends ParserRuleContext { - public RelevanceFieldAndWeightContext field; - public RelevanceQueryContext query; - public MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() { - return getRuleContext(MultiFieldRelevanceFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode LT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } - public TerminalNode RT_SQR_PRTHS() { return getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public List relevanceFieldAndWeight() { - return getRuleContexts(RelevanceFieldAndWeightContext.class); - } - public RelevanceFieldAndWeightContext relevanceFieldAndWeight(int i) { - return getRuleContext(RelevanceFieldAndWeightContext.class,i); - } - public RelevanceQueryContext relevanceQuery() { - return getRuleContext(RelevanceQueryContext.class,0); - } - public List relevanceArg() { - return getRuleContexts(RelevanceArgContext.class); - } - public RelevanceArgContext relevanceArg(int i) { - return getRuleContext(RelevanceArgContext.class,i); - } - public MultiFieldRelevanceFunctionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunction; } - } - - public final MultiFieldRelevanceFunctionContext multiFieldRelevanceFunction() throws RecognitionException { - MultiFieldRelevanceFunctionContext _localctx = new MultiFieldRelevanceFunctionContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_multiFieldRelevanceFunction); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(560); - multiFieldRelevanceFunctionName(); - setState(561); - match(LT_PRTHS); - setState(562); - match(LT_SQR_PRTHS); - setState(563); - ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); - setState(568); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(564); - match(COMMA); - setState(565); - ((MultiFieldRelevanceFunctionContext)_localctx).field = relevanceFieldAndWeight(); - } - } - setState(570); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(571); - match(RT_SQR_PRTHS); - setState(572); - match(COMMA); - setState(573); - ((MultiFieldRelevanceFunctionContext)_localctx).query = relevanceQuery(); - setState(578); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(574); - match(COMMA); - setState(575); - relevanceArg(); - } - } - setState(580); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(581); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TableSourceContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public TerminalNode ID_DATE_SUFFIX() { return getToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } - public TableSourceContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_tableSource; } - } - - public final TableSourceContext tableSource() throws RecognitionException { - TableSourceContext _localctx = new TableSourceContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_tableSource); - try { - setState(585); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(583); - qualifiedName(); - } - break; - case ID_DATE_SUFFIX: - enterOuterAlt(_localctx, 2); - { - setState(584); - match(ID_DATE_SUFFIX); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FieldListContext extends ParserRuleContext { - public List fieldExpression() { - return getRuleContexts(FieldExpressionContext.class); - } - public FieldExpressionContext fieldExpression(int i) { - return getRuleContext(FieldExpressionContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public FieldListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fieldList; } - } - - public final FieldListContext fieldList() throws RecognitionException { - FieldListContext _localctx = new FieldListContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_fieldList); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(587); - fieldExpression(); - setState(592); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(588); - match(COMMA); - setState(589); - fieldExpression(); - } - } - setState(594); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WcFieldListContext extends ParserRuleContext { - public List wcFieldExpression() { - return getRuleContexts(WcFieldExpressionContext.class); - } - public WcFieldExpressionContext wcFieldExpression(int i) { - return getRuleContext(WcFieldExpressionContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public WcFieldListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wcFieldList; } - } - - public final WcFieldListContext wcFieldList() throws RecognitionException { - WcFieldListContext _localctx = new WcFieldListContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_wcFieldList); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(595); - wcFieldExpression(); - setState(600); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(596); - match(COMMA); - setState(597); - wcFieldExpression(); - } - } - setState(602); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortFieldContext extends ParserRuleContext { - public SortFieldExpressionContext sortFieldExpression() { - return getRuleContext(SortFieldExpressionContext.class,0); - } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public SortFieldContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortField; } - } - - public final SortFieldContext sortField() throws RecognitionException { - SortFieldContext _localctx = new SortFieldContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_sortField); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(604); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(603); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(606); - sortFieldExpression(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SortFieldExpressionContext extends ParserRuleContext { - public FieldExpressionContext fieldExpression() { - return getRuleContext(FieldExpressionContext.class,0); - } - public TerminalNode AUTO() { return getToken(OpenSearchPPLParser.AUTO, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public TerminalNode STR() { return getToken(OpenSearchPPLParser.STR, 0); } - public TerminalNode IP() { return getToken(OpenSearchPPLParser.IP, 0); } - public TerminalNode NUM() { return getToken(OpenSearchPPLParser.NUM, 0); } - public SortFieldExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortFieldExpression; } - } - - public final SortFieldExpressionContext sortFieldExpression() throws RecognitionException { - SortFieldExpressionContext _localctx = new SortFieldExpressionContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_sortFieldExpression); - try { - setState(629); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(608); - fieldExpression(); - } - break; - case AUTO: - enterOuterAlt(_localctx, 2); - { - setState(609); - match(AUTO); - setState(610); - match(LT_PRTHS); - setState(611); - fieldExpression(); - setState(612); - match(RT_PRTHS); - } - break; - case STR: - enterOuterAlt(_localctx, 3); - { - setState(614); - match(STR); - setState(615); - match(LT_PRTHS); - setState(616); - fieldExpression(); - setState(617); - match(RT_PRTHS); - } - break; - case IP: - enterOuterAlt(_localctx, 4); - { - setState(619); - match(IP); - setState(620); - match(LT_PRTHS); - setState(621); - fieldExpression(); - setState(622); - match(RT_PRTHS); - } - break; - case NUM: - enterOuterAlt(_localctx, 5); - { - setState(624); - match(NUM); - setState(625); - match(LT_PRTHS); - setState(626); - fieldExpression(); - setState(627); - match(RT_PRTHS); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FieldExpressionContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public FieldExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_fieldExpression; } - } - - public final FieldExpressionContext fieldExpression() throws RecognitionException { - FieldExpressionContext _localctx = new FieldExpressionContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_fieldExpression); - try { - enterOuterAlt(_localctx, 1); - { - setState(631); - qualifiedName(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WcFieldExpressionContext extends ParserRuleContext { - public WcQualifiedNameContext wcQualifiedName() { - return getRuleContext(WcQualifiedNameContext.class,0); - } - public WcFieldExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wcFieldExpression; } - } - - public final WcFieldExpressionContext wcFieldExpression() throws RecognitionException { - WcFieldExpressionContext _localctx = new WcFieldExpressionContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_wcFieldExpression); - try { - enterOuterAlt(_localctx, 1); - { - setState(633); - wcQualifiedName(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalFunctionCallContext extends ParserRuleContext { - public EvalFunctionNameContext evalFunctionName() { - return getRuleContext(EvalFunctionNameContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public FunctionArgsContext functionArgs() { - return getRuleContext(FunctionArgsContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public EvalFunctionCallContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalFunctionCall; } - } - - public final EvalFunctionCallContext evalFunctionCall() throws RecognitionException { - EvalFunctionCallContext _localctx = new EvalFunctionCallContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_evalFunctionCall); - try { - enterOuterAlt(_localctx, 1); - { - setState(635); - evalFunctionName(); - setState(636); - match(LT_PRTHS); - setState(637); - functionArgs(); - setState(638); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DataTypeFunctionCallContext extends ParserRuleContext { - public TerminalNode CAST() { return getToken(OpenSearchPPLParser.CAST, 0); } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public ExpressionContext expression() { - return getRuleContext(ExpressionContext.class,0); - } - public TerminalNode AS() { return getToken(OpenSearchPPLParser.AS, 0); } - public ConvertedDataTypeContext convertedDataType() { - return getRuleContext(ConvertedDataTypeContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public DataTypeFunctionCallContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_dataTypeFunctionCall; } - } - - public final DataTypeFunctionCallContext dataTypeFunctionCall() throws RecognitionException { - DataTypeFunctionCallContext _localctx = new DataTypeFunctionCallContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_dataTypeFunctionCall); - try { - enterOuterAlt(_localctx, 1); - { - setState(640); - match(CAST); - setState(641); - match(LT_PRTHS); - setState(642); - expression(); - setState(643); - match(AS); - setState(644); - convertedDataType(); - setState(645); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BooleanFunctionCallContext extends ParserRuleContext { - public ConditionFunctionBaseContext conditionFunctionBase() { - return getRuleContext(ConditionFunctionBaseContext.class,0); - } - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public FunctionArgsContext functionArgs() { - return getRuleContext(FunctionArgsContext.class,0); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public BooleanFunctionCallContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_booleanFunctionCall; } - } - - public final BooleanFunctionCallContext booleanFunctionCall() throws RecognitionException { - BooleanFunctionCallContext _localctx = new BooleanFunctionCallContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_booleanFunctionCall); - try { - enterOuterAlt(_localctx, 1); - { - setState(647); - conditionFunctionBase(); - setState(648); - match(LT_PRTHS); - setState(649); - functionArgs(); - setState(650); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ConvertedDataTypeContext extends ParserRuleContext { - public Token typeName; - public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } - public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } - public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TerminalNode INT() { return getToken(OpenSearchPPLParser.INT, 0); } - public TerminalNode INTEGER() { return getToken(OpenSearchPPLParser.INTEGER, 0); } - public TerminalNode DOUBLE() { return getToken(OpenSearchPPLParser.DOUBLE, 0); } - public TerminalNode LONG() { return getToken(OpenSearchPPLParser.LONG, 0); } - public TerminalNode FLOAT() { return getToken(OpenSearchPPLParser.FLOAT, 0); } - public TerminalNode STRING() { return getToken(OpenSearchPPLParser.STRING, 0); } - public TerminalNode BOOLEAN() { return getToken(OpenSearchPPLParser.BOOLEAN, 0); } - public ConvertedDataTypeContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_convertedDataType; } - } - - public final ConvertedDataTypeContext convertedDataType() throws RecognitionException { - ConvertedDataTypeContext _localctx = new ConvertedDataTypeContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_convertedDataType); - try { - setState(662); - _errHandler.sync(this); - switch (_input.LA(1)) { - case DATE: - enterOuterAlt(_localctx, 1); - { - setState(652); - ((ConvertedDataTypeContext)_localctx).typeName = match(DATE); - } - break; - case TIME: - enterOuterAlt(_localctx, 2); - { - setState(653); - ((ConvertedDataTypeContext)_localctx).typeName = match(TIME); - } - break; - case TIMESTAMP: - enterOuterAlt(_localctx, 3); - { - setState(654); - ((ConvertedDataTypeContext)_localctx).typeName = match(TIMESTAMP); - } - break; - case INT: - enterOuterAlt(_localctx, 4); - { - setState(655); - ((ConvertedDataTypeContext)_localctx).typeName = match(INT); - } - break; - case INTEGER: - enterOuterAlt(_localctx, 5); - { - setState(656); - ((ConvertedDataTypeContext)_localctx).typeName = match(INTEGER); - } - break; - case DOUBLE: - enterOuterAlt(_localctx, 6); - { - setState(657); - ((ConvertedDataTypeContext)_localctx).typeName = match(DOUBLE); - } - break; - case LONG: - enterOuterAlt(_localctx, 7); - { - setState(658); - ((ConvertedDataTypeContext)_localctx).typeName = match(LONG); - } - break; - case FLOAT: - enterOuterAlt(_localctx, 8); - { - setState(659); - ((ConvertedDataTypeContext)_localctx).typeName = match(FLOAT); - } - break; - case STRING: - enterOuterAlt(_localctx, 9); - { - setState(660); - ((ConvertedDataTypeContext)_localctx).typeName = match(STRING); - } - break; - case BOOLEAN: - enterOuterAlt(_localctx, 10); - { - setState(661); - ((ConvertedDataTypeContext)_localctx).typeName = match(BOOLEAN); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class EvalFunctionNameContext extends ParserRuleContext { - public MathematicalFunctionBaseContext mathematicalFunctionBase() { - return getRuleContext(MathematicalFunctionBaseContext.class,0); - } - public DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() { - return getRuleContext(DateAndTimeFunctionBaseContext.class,0); - } - public TextFunctionBaseContext textFunctionBase() { - return getRuleContext(TextFunctionBaseContext.class,0); - } - public ConditionFunctionBaseContext conditionFunctionBase() { - return getRuleContext(ConditionFunctionBaseContext.class,0); - } - public EvalFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_evalFunctionName; } - } - - public final EvalFunctionNameContext evalFunctionName() throws RecognitionException { - EvalFunctionNameContext _localctx = new EvalFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_evalFunctionName); - try { - setState(668); - _errHandler.sync(this); - switch (_input.LA(1)) { - case ABS: - case CEIL: - case CEILING: - case CONV: - case CRC32: - case E: - case EXP: - case FLOOR: - case LN: - case LOG: - case LOG10: - case LOG2: - case MOD: - case PI: - case POW: - case POWER: - case RAND: - case ROUND: - case SIGN: - case SQRT: - case TRUNCATE: - case ACOS: - case ASIN: - case ATAN: - case ATAN2: - case COS: - case COT: - case DEGREES: - case RADIANS: - case SIN: - case TAN: - enterOuterAlt(_localctx, 1); - { - setState(664); - mathematicalFunctionBase(); - } - break; - case MICROSECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case ADDDATE: - case DATE: - case DATE_ADD: - case DATE_SUB: - case DAYOFMONTH: - case DAYOFWEEK: - case DAYOFYEAR: - case DAYNAME: - case FROM_DAYS: - case MONTHNAME: - case SUBDATE: - case TIME: - case TIME_TO_SEC: - case TIMESTAMP: - case DATE_FORMAT: - case TO_DAYS: - enterOuterAlt(_localctx, 2); - { - setState(665); - dateAndTimeFunctionBase(); - } - break; - case SUBSTR: - case SUBSTRING: - case LTRIM: - case RTRIM: - case TRIM: - case LOWER: - case UPPER: - case CONCAT: - case CONCAT_WS: - case LENGTH: - case STRCMP: - case RIGHT: - case LEFT: - case ASCII: - case LOCATE: - case REPLACE: - enterOuterAlt(_localctx, 3); - { - setState(666); - textFunctionBase(); - } - break; - case LIKE: - case ISNULL: - case ISNOTNULL: - case IFNULL: - case NULLIF: - case IF: - enterOuterAlt(_localctx, 4); - { - setState(667); - conditionFunctionBase(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FunctionArgsContext extends ParserRuleContext { - public List functionArg() { - return getRuleContexts(FunctionArgContext.class); - } - public FunctionArgContext functionArg(int i) { - return getRuleContext(FunctionArgContext.class,i); - } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public FunctionArgsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_functionArgs; } - } - - public final FunctionArgsContext functionArgs() throws RecognitionException { - FunctionArgsContext _localctx = new FunctionArgsContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_functionArgs); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(678); - _errHandler.sync(this); - _la = _input.LA(1); - if (((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (TRUE - 20)) | (1L << (FALSE - 20)) | (1L << (INTERVAL - 20)) | (1L << (MICROSECOND - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 90)) & ~0x3f) == 0 && ((1L << (_la - 90)) & ((1L << (DOT - 90)) | (1L << (PLUS - 90)) | (1L << (MINUS - 90)) | (1L << (LT_PRTHS - 90)) | (1L << (BACKTICK - 90)) | (1L << (AVG - 90)) | (1L << (COUNT - 90)) | (1L << (MAX - 90)) | (1L << (MIN - 90)) | (1L << (SUM - 90)) | (1L << (VAR_SAMP - 90)) | (1L << (VAR_POP - 90)) | (1L << (STDDEV_SAMP - 90)) | (1L << (STDDEV_POP - 90)) | (1L << (FIRST - 90)) | (1L << (LAST - 90)) | (1L << (ABS - 90)) | (1L << (CEIL - 90)) | (1L << (CEILING - 90)) | (1L << (CONV - 90)))) != 0) || ((((_la - 154)) & ~0x3f) == 0 && ((1L << (_la - 154)) & ((1L << (CRC32 - 154)) | (1L << (E - 154)) | (1L << (EXP - 154)) | (1L << (FLOOR - 154)) | (1L << (LN - 154)) | (1L << (LOG - 154)) | (1L << (LOG10 - 154)) | (1L << (LOG2 - 154)) | (1L << (MOD - 154)) | (1L << (PI - 154)) | (1L << (POW - 154)) | (1L << (POWER - 154)) | (1L << (RAND - 154)) | (1L << (ROUND - 154)) | (1L << (SIGN - 154)) | (1L << (SQRT - 154)) | (1L << (TRUNCATE - 154)) | (1L << (ACOS - 154)) | (1L << (ASIN - 154)) | (1L << (ATAN - 154)) | (1L << (ATAN2 - 154)) | (1L << (COS - 154)) | (1L << (COT - 154)) | (1L << (DEGREES - 154)) | (1L << (RADIANS - 154)) | (1L << (SIN - 154)) | (1L << (TAN - 154)) | (1L << (ADDDATE - 154)) | (1L << (DATE - 154)) | (1L << (DATE_ADD - 154)) | (1L << (DATE_SUB - 154)) | (1L << (DAYOFMONTH - 154)) | (1L << (DAYOFWEEK - 154)) | (1L << (DAYOFYEAR - 154)) | (1L << (DAYNAME - 154)) | (1L << (FROM_DAYS - 154)) | (1L << (MONTHNAME - 154)) | (1L << (SUBDATE - 154)) | (1L << (TIME - 154)) | (1L << (TIME_TO_SEC - 154)) | (1L << (TIMESTAMP - 154)) | (1L << (DATE_FORMAT - 154)) | (1L << (TO_DAYS - 154)) | (1L << (SUBSTR - 154)) | (1L << (SUBSTRING - 154)) | (1L << (LTRIM - 154)) | (1L << (RTRIM - 154)) | (1L << (TRIM - 154)) | (1L << (LOWER - 154)) | (1L << (UPPER - 154)) | (1L << (CONCAT - 154)) | (1L << (CONCAT_WS - 154)) | (1L << (LENGTH - 154)) | (1L << (STRCMP - 154)) | (1L << (RIGHT - 154)) | (1L << (LEFT - 154)) | (1L << (ASCII - 154)) | (1L << (LOCATE - 154)) | (1L << (REPLACE - 154)) | (1L << (CAST - 154)) | (1L << (LIKE - 154)) | (1L << (ISNULL - 154)) | (1L << (ISNOTNULL - 154)))) != 0) || ((((_la - 218)) & ~0x3f) == 0 && ((1L << (_la - 218)) & ((1L << (IFNULL - 218)) | (1L << (NULLIF - 218)) | (1L << (IF - 218)) | (1L << (SPAN - 218)) | (1L << (MS - 218)) | (1L << (S - 218)) | (1L << (M - 218)) | (1L << (H - 218)) | (1L << (W - 218)) | (1L << (Q - 218)) | (1L << (Y - 218)) | (1L << (ID - 218)) | (1L << (INTEGER_LITERAL - 218)) | (1L << (DECIMAL_LITERAL - 218)) | (1L << (DQUOTA_STRING - 218)) | (1L << (SQUOTA_STRING - 218)) | (1L << (BQUOTA_STRING - 218)))) != 0)) { - { - setState(670); - functionArg(); - setState(675); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(671); - match(COMMA); - setState(672); - functionArg(); - } - } - setState(677); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class FunctionArgContext extends ParserRuleContext { - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public FunctionArgContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_functionArg; } - } - - public final FunctionArgContext functionArg() throws RecognitionException { - FunctionArgContext _localctx = new FunctionArgContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_functionArg); - try { - enterOuterAlt(_localctx, 1); - { - setState(680); - valueExpression(0); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceArgContext extends ParserRuleContext { - public RelevanceArgNameContext relevanceArgName() { - return getRuleContext(RelevanceArgNameContext.class,0); - } - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public RelevanceArgValueContext relevanceArgValue() { - return getRuleContext(RelevanceArgValueContext.class,0); - } - public RelevanceArgContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceArg; } - } - - public final RelevanceArgContext relevanceArg() throws RecognitionException { - RelevanceArgContext _localctx = new RelevanceArgContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_relevanceArg); - try { - enterOuterAlt(_localctx, 1); - { - setState(682); - relevanceArgName(); - setState(683); - match(EQUAL); - setState(684); - relevanceArgValue(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceArgNameContext extends ParserRuleContext { - public TerminalNode ALLOW_LEADING_WILDCARD() { return getToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } - public TerminalNode ANALYZER() { return getToken(OpenSearchPPLParser.ANALYZER, 0); } - public TerminalNode ANALYZE_WILDCARD() { return getToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } - public TerminalNode AUTO_GENERATE_SYNONYMS_PHRASE_QUERY() { return getToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } - public TerminalNode BOOST() { return getToken(OpenSearchPPLParser.BOOST, 0); } - public TerminalNode CUTOFF_FREQUENCY() { return getToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } - public TerminalNode DEFAULT_FIELD() { return getToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } - public TerminalNode DEFAULT_OPERATOR() { return getToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } - public TerminalNode ENABLE_POSITION_INCREMENTS() { return getToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } - public TerminalNode FIELDS() { return getToken(OpenSearchPPLParser.FIELDS, 0); } - public TerminalNode FLAGS() { return getToken(OpenSearchPPLParser.FLAGS, 0); } - public TerminalNode FUZZINESS() { return getToken(OpenSearchPPLParser.FUZZINESS, 0); } - public TerminalNode FUZZY_MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } - public TerminalNode FUZZY_PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } - public TerminalNode FUZZY_REWRITE() { return getToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } - public TerminalNode FUZZY_TRANSPOSITIONS() { return getToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } - public TerminalNode LENIENT() { return getToken(OpenSearchPPLParser.LENIENT, 0); } - public TerminalNode LOW_FREQ_OPERATOR() { return getToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } - public TerminalNode MAX_DETERMINIZED_STATES() { return getToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } - public TerminalNode MAX_EXPANSIONS() { return getToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } - public TerminalNode MINIMUM_SHOULD_MATCH() { return getToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } - public TerminalNode OPERATOR() { return getToken(OpenSearchPPLParser.OPERATOR, 0); } - public TerminalNode PHRASE_SLOP() { return getToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } - public TerminalNode PREFIX_LENGTH() { return getToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } - public TerminalNode QUOTE_ANALYZER() { return getToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } - public TerminalNode QUOTE_FIELD_SUFFIX() { return getToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } - public TerminalNode REWRITE() { return getToken(OpenSearchPPLParser.REWRITE, 0); } - public TerminalNode SLOP() { return getToken(OpenSearchPPLParser.SLOP, 0); } - public TerminalNode TIE_BREAKER() { return getToken(OpenSearchPPLParser.TIE_BREAKER, 0); } - public TerminalNode TIME_ZONE() { return getToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TerminalNode TYPE() { return getToken(OpenSearchPPLParser.TYPE, 0); } - public TerminalNode ZERO_TERMS_QUERY() { return getToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } - public RelevanceArgNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceArgName; } - } - - public final RelevanceArgNameContext relevanceArgName() throws RecognitionException { - RelevanceArgNameContext _localctx = new RelevanceArgNameContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_relevanceArgName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(686); - _la = _input.LA(1); - if ( !(_la==FIELDS || _la==TIME_ZONE || ((((_la - 224)) & ~0x3f) == 0 && ((1L << (_la - 224)) & ((1L << (ALLOW_LEADING_WILDCARD - 224)) | (1L << (ANALYZE_WILDCARD - 224)) | (1L << (ANALYZER - 224)) | (1L << (AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1L << (BOOST - 224)) | (1L << (CUTOFF_FREQUENCY - 224)) | (1L << (DEFAULT_FIELD - 224)) | (1L << (DEFAULT_OPERATOR - 224)) | (1L << (ENABLE_POSITION_INCREMENTS - 224)) | (1L << (FLAGS - 224)) | (1L << (FUZZY_MAX_EXPANSIONS - 224)) | (1L << (FUZZY_PREFIX_LENGTH - 224)) | (1L << (FUZZY_TRANSPOSITIONS - 224)) | (1L << (FUZZY_REWRITE - 224)) | (1L << (FUZZINESS - 224)) | (1L << (LENIENT - 224)) | (1L << (LOW_FREQ_OPERATOR - 224)) | (1L << (MAX_DETERMINIZED_STATES - 224)) | (1L << (MAX_EXPANSIONS - 224)) | (1L << (MINIMUM_SHOULD_MATCH - 224)) | (1L << (OPERATOR - 224)) | (1L << (PHRASE_SLOP - 224)) | (1L << (PREFIX_LENGTH - 224)) | (1L << (QUOTE_ANALYZER - 224)) | (1L << (QUOTE_FIELD_SUFFIX - 224)) | (1L << (REWRITE - 224)) | (1L << (SLOP - 224)) | (1L << (TIE_BREAKER - 224)) | (1L << (TYPE - 224)) | (1L << (ZERO_TERMS_QUERY - 224)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceFieldAndWeightContext extends ParserRuleContext { - public RelevanceFieldContext field; - public RelevanceFieldWeightContext weight; - public RelevanceFieldContext relevanceField() { - return getRuleContext(RelevanceFieldContext.class,0); - } - public RelevanceFieldWeightContext relevanceFieldWeight() { - return getRuleContext(RelevanceFieldWeightContext.class,0); - } - public TerminalNode BIT_XOR_OP() { return getToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } - public RelevanceFieldAndWeightContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceFieldAndWeight; } - } - - public final RelevanceFieldAndWeightContext relevanceFieldAndWeight() throws RecognitionException { - RelevanceFieldAndWeightContext _localctx = new RelevanceFieldAndWeightContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_relevanceFieldAndWeight); - try { - setState(696); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(688); - ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(689); - ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); - setState(690); - ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(692); - ((RelevanceFieldAndWeightContext)_localctx).field = relevanceField(); - setState(693); - match(BIT_XOR_OP); - setState(694); - ((RelevanceFieldAndWeightContext)_localctx).weight = relevanceFieldWeight(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceFieldWeightContext extends ParserRuleContext { - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public DecimalLiteralContext decimalLiteral() { - return getRuleContext(DecimalLiteralContext.class,0); - } - public RelevanceFieldWeightContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceFieldWeight; } - } - - public final RelevanceFieldWeightContext relevanceFieldWeight() throws RecognitionException { - RelevanceFieldWeightContext _localctx = new RelevanceFieldWeightContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_relevanceFieldWeight); - try { - setState(700); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(698); - integerLiteral(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(699); - decimalLiteral(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceFieldContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public RelevanceFieldContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceField; } - } - - public final RelevanceFieldContext relevanceField() throws RecognitionException { - RelevanceFieldContext _localctx = new RelevanceFieldContext(_ctx, getState()); - enterRule(_localctx, 116, RULE_relevanceField); - try { - setState(704); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(702); - qualifiedName(); - } - break; - case DQUOTA_STRING: - case SQUOTA_STRING: - enterOuterAlt(_localctx, 2); - { - setState(703); - stringLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceQueryContext extends ParserRuleContext { - public RelevanceArgValueContext relevanceArgValue() { - return getRuleContext(RelevanceArgValueContext.class,0); - } - public RelevanceQueryContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceQuery; } - } - - public final RelevanceQueryContext relevanceQuery() throws RecognitionException { - RelevanceQueryContext _localctx = new RelevanceQueryContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_relevanceQuery); - try { - enterOuterAlt(_localctx, 1); - { - setState(706); - relevanceArgValue(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class RelevanceArgValueContext extends ParserRuleContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public LiteralValueContext literalValue() { - return getRuleContext(LiteralValueContext.class,0); - } - public RelevanceArgValueContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_relevanceArgValue; } - } - - public final RelevanceArgValueContext relevanceArgValue() throws RecognitionException { - RelevanceArgValueContext _localctx = new RelevanceArgValueContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_relevanceArgValue); - try { - setState(710); - _errHandler.sync(this); - switch (_input.LA(1)) { - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case DOT: - case BACKTICK: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - case ID: - case BQUOTA_STRING: - enterOuterAlt(_localctx, 1); - { - setState(708); - qualifiedName(); - } - break; - case TRUE: - case FALSE: - case INTERVAL: - case PLUS: - case MINUS: - case INTEGER_LITERAL: - case DECIMAL_LITERAL: - case DQUOTA_STRING: - case SQUOTA_STRING: - enterOuterAlt(_localctx, 2); - { - setState(709); - literalValue(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class MathematicalFunctionBaseContext extends ParserRuleContext { - public TerminalNode ABS() { return getToken(OpenSearchPPLParser.ABS, 0); } - public TerminalNode CEIL() { return getToken(OpenSearchPPLParser.CEIL, 0); } - public TerminalNode CEILING() { return getToken(OpenSearchPPLParser.CEILING, 0); } - public TerminalNode CONV() { return getToken(OpenSearchPPLParser.CONV, 0); } - public TerminalNode CRC32() { return getToken(OpenSearchPPLParser.CRC32, 0); } - public TerminalNode E() { return getToken(OpenSearchPPLParser.E, 0); } - public TerminalNode EXP() { return getToken(OpenSearchPPLParser.EXP, 0); } - public TerminalNode FLOOR() { return getToken(OpenSearchPPLParser.FLOOR, 0); } - public TerminalNode LN() { return getToken(OpenSearchPPLParser.LN, 0); } - public TerminalNode LOG() { return getToken(OpenSearchPPLParser.LOG, 0); } - public TerminalNode LOG10() { return getToken(OpenSearchPPLParser.LOG10, 0); } - public TerminalNode LOG2() { return getToken(OpenSearchPPLParser.LOG2, 0); } - public TerminalNode MOD() { return getToken(OpenSearchPPLParser.MOD, 0); } - public TerminalNode PI() { return getToken(OpenSearchPPLParser.PI, 0); } - public TerminalNode POW() { return getToken(OpenSearchPPLParser.POW, 0); } - public TerminalNode POWER() { return getToken(OpenSearchPPLParser.POWER, 0); } - public TerminalNode RAND() { return getToken(OpenSearchPPLParser.RAND, 0); } - public TerminalNode ROUND() { return getToken(OpenSearchPPLParser.ROUND, 0); } - public TerminalNode SIGN() { return getToken(OpenSearchPPLParser.SIGN, 0); } - public TerminalNode SQRT() { return getToken(OpenSearchPPLParser.SQRT, 0); } - public TerminalNode TRUNCATE() { return getToken(OpenSearchPPLParser.TRUNCATE, 0); } - public TrigonometricFunctionNameContext trigonometricFunctionName() { - return getRuleContext(TrigonometricFunctionNameContext.class,0); - } - public MathematicalFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_mathematicalFunctionBase; } - } - - public final MathematicalFunctionBaseContext mathematicalFunctionBase() throws RecognitionException { - MathematicalFunctionBaseContext _localctx = new MathematicalFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_mathematicalFunctionBase); - try { - setState(734); - _errHandler.sync(this); - switch (_input.LA(1)) { - case ABS: - enterOuterAlt(_localctx, 1); - { - setState(712); - match(ABS); - } - break; - case CEIL: - enterOuterAlt(_localctx, 2); - { - setState(713); - match(CEIL); - } - break; - case CEILING: - enterOuterAlt(_localctx, 3); - { - setState(714); - match(CEILING); - } - break; - case CONV: - enterOuterAlt(_localctx, 4); - { - setState(715); - match(CONV); - } - break; - case CRC32: - enterOuterAlt(_localctx, 5); - { - setState(716); - match(CRC32); - } - break; - case E: - enterOuterAlt(_localctx, 6); - { - setState(717); - match(E); - } - break; - case EXP: - enterOuterAlt(_localctx, 7); - { - setState(718); - match(EXP); - } - break; - case FLOOR: - enterOuterAlt(_localctx, 8); - { - setState(719); - match(FLOOR); - } - break; - case LN: - enterOuterAlt(_localctx, 9); - { - setState(720); - match(LN); - } - break; - case LOG: - enterOuterAlt(_localctx, 10); - { - setState(721); - match(LOG); - } - break; - case LOG10: - enterOuterAlt(_localctx, 11); - { - setState(722); - match(LOG10); - } - break; - case LOG2: - enterOuterAlt(_localctx, 12); - { - setState(723); - match(LOG2); - } - break; - case MOD: - enterOuterAlt(_localctx, 13); - { - setState(724); - match(MOD); - } - break; - case PI: - enterOuterAlt(_localctx, 14); - { - setState(725); - match(PI); - } - break; - case POW: - enterOuterAlt(_localctx, 15); - { - setState(726); - match(POW); - } - break; - case POWER: - enterOuterAlt(_localctx, 16); - { - setState(727); - match(POWER); - } - break; - case RAND: - enterOuterAlt(_localctx, 17); - { - setState(728); - match(RAND); - } - break; - case ROUND: - enterOuterAlt(_localctx, 18); - { - setState(729); - match(ROUND); - } - break; - case SIGN: - enterOuterAlt(_localctx, 19); - { - setState(730); - match(SIGN); - } - break; - case SQRT: - enterOuterAlt(_localctx, 20); - { - setState(731); - match(SQRT); - } - break; - case TRUNCATE: - enterOuterAlt(_localctx, 21); - { - setState(732); - match(TRUNCATE); - } - break; - case ACOS: - case ASIN: - case ATAN: - case ATAN2: - case COS: - case COT: - case DEGREES: - case RADIANS: - case SIN: - case TAN: - enterOuterAlt(_localctx, 22); - { - setState(733); - trigonometricFunctionName(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TrigonometricFunctionNameContext extends ParserRuleContext { - public TerminalNode ACOS() { return getToken(OpenSearchPPLParser.ACOS, 0); } - public TerminalNode ASIN() { return getToken(OpenSearchPPLParser.ASIN, 0); } - public TerminalNode ATAN() { return getToken(OpenSearchPPLParser.ATAN, 0); } - public TerminalNode ATAN2() { return getToken(OpenSearchPPLParser.ATAN2, 0); } - public TerminalNode COS() { return getToken(OpenSearchPPLParser.COS, 0); } - public TerminalNode COT() { return getToken(OpenSearchPPLParser.COT, 0); } - public TerminalNode DEGREES() { return getToken(OpenSearchPPLParser.DEGREES, 0); } - public TerminalNode RADIANS() { return getToken(OpenSearchPPLParser.RADIANS, 0); } - public TerminalNode SIN() { return getToken(OpenSearchPPLParser.SIN, 0); } - public TerminalNode TAN() { return getToken(OpenSearchPPLParser.TAN, 0); } - public TrigonometricFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_trigonometricFunctionName; } - } - - public final TrigonometricFunctionNameContext trigonometricFunctionName() throws RecognitionException { - TrigonometricFunctionNameContext _localctx = new TrigonometricFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_trigonometricFunctionName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(736); - _la = _input.LA(1); - if ( !(((((_la - 171)) & ~0x3f) == 0 && ((1L << (_la - 171)) & ((1L << (ACOS - 171)) | (1L << (ASIN - 171)) | (1L << (ATAN - 171)) | (1L << (ATAN2 - 171)) | (1L << (COS - 171)) | (1L << (COT - 171)) | (1L << (DEGREES - 171)) | (1L << (RADIANS - 171)) | (1L << (SIN - 171)) | (1L << (TAN - 171)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DateAndTimeFunctionBaseContext extends ParserRuleContext { - public TerminalNode ADDDATE() { return getToken(OpenSearchPPLParser.ADDDATE, 0); } - public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } - public TerminalNode DATE_ADD() { return getToken(OpenSearchPPLParser.DATE_ADD, 0); } - public TerminalNode DATE_SUB() { return getToken(OpenSearchPPLParser.DATE_SUB, 0); } - public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } - public TerminalNode DAYNAME() { return getToken(OpenSearchPPLParser.DAYNAME, 0); } - public TerminalNode DAYOFMONTH() { return getToken(OpenSearchPPLParser.DAYOFMONTH, 0); } - public TerminalNode DAYOFWEEK() { return getToken(OpenSearchPPLParser.DAYOFWEEK, 0); } - public TerminalNode DAYOFYEAR() { return getToken(OpenSearchPPLParser.DAYOFYEAR, 0); } - public TerminalNode FROM_DAYS() { return getToken(OpenSearchPPLParser.FROM_DAYS, 0); } - public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } - public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } - public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } - public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } - public TerminalNode MONTHNAME() { return getToken(OpenSearchPPLParser.MONTHNAME, 0); } - public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } - public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } - public TerminalNode SUBDATE() { return getToken(OpenSearchPPLParser.SUBDATE, 0); } - public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } - public TerminalNode TIME_TO_SEC() { return getToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } - public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TerminalNode TO_DAYS() { return getToken(OpenSearchPPLParser.TO_DAYS, 0); } - public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } - public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } - public TerminalNode DATE_FORMAT() { return getToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - public DateAndTimeFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_dateAndTimeFunctionBase; } - } - - public final DateAndTimeFunctionBaseContext dateAndTimeFunctionBase() throws RecognitionException { - DateAndTimeFunctionBaseContext _localctx = new DateAndTimeFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_dateAndTimeFunctionBase); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(738); - _la = _input.LA(1); - if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)))) != 0) || ((((_la - 181)) & ~0x3f) == 0 && ((1L << (_la - 181)) & ((1L << (ADDDATE - 181)) | (1L << (DATE - 181)) | (1L << (DATE_ADD - 181)) | (1L << (DATE_SUB - 181)) | (1L << (DAYOFMONTH - 181)) | (1L << (DAYOFWEEK - 181)) | (1L << (DAYOFYEAR - 181)) | (1L << (DAYNAME - 181)) | (1L << (FROM_DAYS - 181)) | (1L << (MONTHNAME - 181)) | (1L << (SUBDATE - 181)) | (1L << (TIME - 181)) | (1L << (TIME_TO_SEC - 181)) | (1L << (TIMESTAMP - 181)) | (1L << (DATE_FORMAT - 181)) | (1L << (TO_DAYS - 181)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ConditionFunctionBaseContext extends ParserRuleContext { - public TerminalNode LIKE() { return getToken(OpenSearchPPLParser.LIKE, 0); } - public TerminalNode IF() { return getToken(OpenSearchPPLParser.IF, 0); } - public TerminalNode ISNULL() { return getToken(OpenSearchPPLParser.ISNULL, 0); } - public TerminalNode ISNOTNULL() { return getToken(OpenSearchPPLParser.ISNOTNULL, 0); } - public TerminalNode IFNULL() { return getToken(OpenSearchPPLParser.IFNULL, 0); } - public TerminalNode NULLIF() { return getToken(OpenSearchPPLParser.NULLIF, 0); } - public ConditionFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_conditionFunctionBase; } - } - - public final ConditionFunctionBaseContext conditionFunctionBase() throws RecognitionException { - ConditionFunctionBaseContext _localctx = new ConditionFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_conditionFunctionBase); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(740); - _la = _input.LA(1); - if ( !(((((_la - 215)) & ~0x3f) == 0 && ((1L << (_la - 215)) & ((1L << (LIKE - 215)) | (1L << (ISNULL - 215)) | (1L << (ISNOTNULL - 215)) | (1L << (IFNULL - 215)) | (1L << (NULLIF - 215)) | (1L << (IF - 215)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TextFunctionBaseContext extends ParserRuleContext { - public TerminalNode SUBSTR() { return getToken(OpenSearchPPLParser.SUBSTR, 0); } - public TerminalNode SUBSTRING() { return getToken(OpenSearchPPLParser.SUBSTRING, 0); } - public TerminalNode TRIM() { return getToken(OpenSearchPPLParser.TRIM, 0); } - public TerminalNode LTRIM() { return getToken(OpenSearchPPLParser.LTRIM, 0); } - public TerminalNode RTRIM() { return getToken(OpenSearchPPLParser.RTRIM, 0); } - public TerminalNode LOWER() { return getToken(OpenSearchPPLParser.LOWER, 0); } - public TerminalNode UPPER() { return getToken(OpenSearchPPLParser.UPPER, 0); } - public TerminalNode CONCAT() { return getToken(OpenSearchPPLParser.CONCAT, 0); } - public TerminalNode CONCAT_WS() { return getToken(OpenSearchPPLParser.CONCAT_WS, 0); } - public TerminalNode LENGTH() { return getToken(OpenSearchPPLParser.LENGTH, 0); } - public TerminalNode STRCMP() { return getToken(OpenSearchPPLParser.STRCMP, 0); } - public TerminalNode RIGHT() { return getToken(OpenSearchPPLParser.RIGHT, 0); } - public TerminalNode LEFT() { return getToken(OpenSearchPPLParser.LEFT, 0); } - public TerminalNode ASCII() { return getToken(OpenSearchPPLParser.ASCII, 0); } - public TerminalNode LOCATE() { return getToken(OpenSearchPPLParser.LOCATE, 0); } - public TerminalNode REPLACE() { return getToken(OpenSearchPPLParser.REPLACE, 0); } - public TextFunctionBaseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_textFunctionBase; } - } - - public final TextFunctionBaseContext textFunctionBase() throws RecognitionException { - TextFunctionBaseContext _localctx = new TextFunctionBaseContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_textFunctionBase); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(742); - _la = _input.LA(1); - if ( !(((((_la - 197)) & ~0x3f) == 0 && ((1L << (_la - 197)) & ((1L << (SUBSTR - 197)) | (1L << (SUBSTRING - 197)) | (1L << (LTRIM - 197)) | (1L << (RTRIM - 197)) | (1L << (TRIM - 197)) | (1L << (LOWER - 197)) | (1L << (UPPER - 197)) | (1L << (CONCAT - 197)) | (1L << (CONCAT_WS - 197)) | (1L << (LENGTH - 197)) | (1L << (STRCMP - 197)) | (1L << (RIGHT - 197)) | (1L << (LEFT - 197)) | (1L << (ASCII - 197)) | (1L << (LOCATE - 197)) | (1L << (REPLACE - 197)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ComparisonOperatorContext extends ParserRuleContext { - public TerminalNode EQUAL() { return getToken(OpenSearchPPLParser.EQUAL, 0); } - public TerminalNode NOT_EQUAL() { return getToken(OpenSearchPPLParser.NOT_EQUAL, 0); } - public TerminalNode LESS() { return getToken(OpenSearchPPLParser.LESS, 0); } - public TerminalNode NOT_LESS() { return getToken(OpenSearchPPLParser.NOT_LESS, 0); } - public TerminalNode GREATER() { return getToken(OpenSearchPPLParser.GREATER, 0); } - public TerminalNode NOT_GREATER() { return getToken(OpenSearchPPLParser.NOT_GREATER, 0); } - public TerminalNode REGEXP() { return getToken(OpenSearchPPLParser.REGEXP, 0); } - public ComparisonOperatorContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_comparisonOperator; } - } - - public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { - ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_comparisonOperator); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(744); - _la = _input.LA(1); - if ( !(((((_la - 54)) & ~0x3f) == 0 && ((1L << (_la - 54)) & ((1L << (REGEXP - 54)) | (1L << (EQUAL - 54)) | (1L << (GREATER - 54)) | (1L << (LESS - 54)) | (1L << (NOT_GREATER - 54)) | (1L << (NOT_LESS - 54)) | (1L << (NOT_EQUAL - 54)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BinaryOperatorContext extends ParserRuleContext { - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public TerminalNode STAR() { return getToken(OpenSearchPPLParser.STAR, 0); } - public TerminalNode DIVIDE() { return getToken(OpenSearchPPLParser.DIVIDE, 0); } - public TerminalNode MODULE() { return getToken(OpenSearchPPLParser.MODULE, 0); } - public BinaryOperatorContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_binaryOperator; } - } - - public final BinaryOperatorContext binaryOperator() throws RecognitionException { - BinaryOperatorContext _localctx = new BinaryOperatorContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_binaryOperator); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(746); - _la = _input.LA(1); - if ( !(((((_la - 97)) & ~0x3f) == 0 && ((1L << (_la - 97)) & ((1L << (PLUS - 97)) | (1L << (MINUS - 97)) | (1L << (STAR - 97)) | (1L << (DIVIDE - 97)) | (1L << (MODULE - 97)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { - public TerminalNode MATCH() { return getToken(OpenSearchPPLParser.MATCH, 0); } - public TerminalNode MATCH_PHRASE() { return getToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } - public SingleFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_singleFieldRelevanceFunctionName; } - } - - public final SingleFieldRelevanceFunctionNameContext singleFieldRelevanceFunctionName() throws RecognitionException { - SingleFieldRelevanceFunctionNameContext _localctx = new SingleFieldRelevanceFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 136, RULE_singleFieldRelevanceFunctionName); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(748); - _la = _input.LA(1); - if ( !(_la==MATCH || _la==MATCH_PHRASE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { - public TerminalNode SIMPLE_QUERY_STRING() { return getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } - public MultiFieldRelevanceFunctionNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_multiFieldRelevanceFunctionName; } - } - - public final MultiFieldRelevanceFunctionNameContext multiFieldRelevanceFunctionName() throws RecognitionException { - MultiFieldRelevanceFunctionNameContext _localctx = new MultiFieldRelevanceFunctionNameContext(_ctx, getState()); - enterRule(_localctx, 138, RULE_multiFieldRelevanceFunctionName); - try { - enterOuterAlt(_localctx, 1); - { - setState(750); - match(SIMPLE_QUERY_STRING); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class LiteralValueContext extends ParserRuleContext { - public IntervalLiteralContext intervalLiteral() { - return getRuleContext(IntervalLiteralContext.class,0); - } - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public IntegerLiteralContext integerLiteral() { - return getRuleContext(IntegerLiteralContext.class,0); - } - public DecimalLiteralContext decimalLiteral() { - return getRuleContext(DecimalLiteralContext.class,0); - } - public BooleanLiteralContext booleanLiteral() { - return getRuleContext(BooleanLiteralContext.class,0); - } - public LiteralValueContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_literalValue; } - } - - public final LiteralValueContext literalValue() throws RecognitionException { - LiteralValueContext _localctx = new LiteralValueContext(_ctx, getState()); - enterRule(_localctx, 140, RULE_literalValue); - try { - setState(757); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(752); - intervalLiteral(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(753); - stringLiteral(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(754); - integerLiteral(); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(755); - decimalLiteral(); - } - break; - case 5: - enterOuterAlt(_localctx, 5); - { - setState(756); - booleanLiteral(); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IntervalLiteralContext extends ParserRuleContext { - public TerminalNode INTERVAL() { return getToken(OpenSearchPPLParser.INTERVAL, 0); } - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } - public IntervalUnitContext intervalUnit() { - return getRuleContext(IntervalUnitContext.class,0); - } - public IntervalLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_intervalLiteral; } - } - - public final IntervalLiteralContext intervalLiteral() throws RecognitionException { - IntervalLiteralContext _localctx = new IntervalLiteralContext(_ctx, getState()); - enterRule(_localctx, 142, RULE_intervalLiteral); - try { - enterOuterAlt(_localctx, 1); - { - setState(759); - match(INTERVAL); - setState(760); - valueExpression(0); - setState(761); - intervalUnit(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StringLiteralContext extends ParserRuleContext { - public TerminalNode DQUOTA_STRING() { return getToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } - public TerminalNode SQUOTA_STRING() { return getToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } - public StringLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_stringLiteral; } - } - - public final StringLiteralContext stringLiteral() throws RecognitionException { - StringLiteralContext _localctx = new StringLiteralContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_stringLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(763); - _la = _input.LA(1); - if ( !(_la==DQUOTA_STRING || _la==SQUOTA_STRING) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IntegerLiteralContext extends ParserRuleContext { - public TerminalNode INTEGER_LITERAL() { return getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public IntegerLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_integerLiteral; } - } - - public final IntegerLiteralContext integerLiteral() throws RecognitionException { - IntegerLiteralContext _localctx = new IntegerLiteralContext(_ctx, getState()); - enterRule(_localctx, 146, RULE_integerLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(766); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(765); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(768); - match(INTEGER_LITERAL); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class DecimalLiteralContext extends ParserRuleContext { - public TerminalNode DECIMAL_LITERAL() { return getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } - public TerminalNode PLUS() { return getToken(OpenSearchPPLParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(OpenSearchPPLParser.MINUS, 0); } - public DecimalLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_decimalLiteral; } - } - - public final DecimalLiteralContext decimalLiteral() throws RecognitionException { - DecimalLiteralContext _localctx = new DecimalLiteralContext(_ctx, getState()); - enterRule(_localctx, 148, RULE_decimalLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(771); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(770); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(773); - match(DECIMAL_LITERAL); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class BooleanLiteralContext extends ParserRuleContext { - public TerminalNode TRUE() { return getToken(OpenSearchPPLParser.TRUE, 0); } - public TerminalNode FALSE() { return getToken(OpenSearchPPLParser.FALSE, 0); } - public BooleanLiteralContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_booleanLiteral; } - } - - public final BooleanLiteralContext booleanLiteral() throws RecognitionException { - BooleanLiteralContext _localctx = new BooleanLiteralContext(_ctx, getState()); - enterRule(_localctx, 150, RULE_booleanLiteral); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(775); - _la = _input.LA(1); - if ( !(_la==TRUE || _la==FALSE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class PatternContext extends ParserRuleContext { - public StringLiteralContext stringLiteral() { - return getRuleContext(StringLiteralContext.class,0); - } - public PatternContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_pattern; } - } - - public final PatternContext pattern() throws RecognitionException { - PatternContext _localctx = new PatternContext(_ctx, getState()); - enterRule(_localctx, 152, RULE_pattern); - try { - enterOuterAlt(_localctx, 1); - { - setState(777); - stringLiteral(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IntervalUnitContext extends ParserRuleContext { - public TerminalNode MICROSECOND() { return getToken(OpenSearchPPLParser.MICROSECOND, 0); } - public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } - public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } - public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } - public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } - public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } - public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } - public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } - public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } - public TerminalNode SECOND_MICROSECOND() { return getToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } - public TerminalNode MINUTE_MICROSECOND() { return getToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } - public TerminalNode MINUTE_SECOND() { return getToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } - public TerminalNode HOUR_MICROSECOND() { return getToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } - public TerminalNode HOUR_SECOND() { return getToken(OpenSearchPPLParser.HOUR_SECOND, 0); } - public TerminalNode HOUR_MINUTE() { return getToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } - public TerminalNode DAY_MICROSECOND() { return getToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } - public TerminalNode DAY_SECOND() { return getToken(OpenSearchPPLParser.DAY_SECOND, 0); } - public TerminalNode DAY_MINUTE() { return getToken(OpenSearchPPLParser.DAY_MINUTE, 0); } - public TerminalNode DAY_HOUR() { return getToken(OpenSearchPPLParser.DAY_HOUR, 0); } - public TerminalNode YEAR_MONTH() { return getToken(OpenSearchPPLParser.YEAR_MONTH, 0); } - public IntervalUnitContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_intervalUnit; } - } - - public final IntervalUnitContext intervalUnit() throws RecognitionException { - IntervalUnitContext _localctx = new IntervalUnitContext(_ctx, getState()); - enterRule(_localctx, 154, RULE_intervalUnit); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(779); - _la = _input.LA(1); - if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (MICROSECOND - 57)) | (1L << (SECOND - 57)) | (1L << (MINUTE - 57)) | (1L << (HOUR - 57)) | (1L << (DAY - 57)) | (1L << (WEEK - 57)) | (1L << (MONTH - 57)) | (1L << (QUARTER - 57)) | (1L << (YEAR - 57)) | (1L << (SECOND_MICROSECOND - 57)) | (1L << (MINUTE_MICROSECOND - 57)) | (1L << (MINUTE_SECOND - 57)) | (1L << (HOUR_MICROSECOND - 57)) | (1L << (HOUR_SECOND - 57)) | (1L << (HOUR_MINUTE - 57)) | (1L << (DAY_MICROSECOND - 57)) | (1L << (DAY_SECOND - 57)) | (1L << (DAY_MINUTE - 57)) | (1L << (DAY_HOUR - 57)) | (1L << (YEAR_MONTH - 57)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class TimespanUnitContext extends ParserRuleContext { - public TerminalNode MS() { return getToken(OpenSearchPPLParser.MS, 0); } - public TerminalNode S() { return getToken(OpenSearchPPLParser.S, 0); } - public TerminalNode M() { return getToken(OpenSearchPPLParser.M, 0); } - public TerminalNode H() { return getToken(OpenSearchPPLParser.H, 0); } - public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } - public TerminalNode W() { return getToken(OpenSearchPPLParser.W, 0); } - public TerminalNode Q() { return getToken(OpenSearchPPLParser.Q, 0); } - public TerminalNode Y() { return getToken(OpenSearchPPLParser.Y, 0); } - public TerminalNode MILLISECOND() { return getToken(OpenSearchPPLParser.MILLISECOND, 0); } - public TerminalNode SECOND() { return getToken(OpenSearchPPLParser.SECOND, 0); } - public TerminalNode MINUTE() { return getToken(OpenSearchPPLParser.MINUTE, 0); } - public TerminalNode HOUR() { return getToken(OpenSearchPPLParser.HOUR, 0); } - public TerminalNode DAY() { return getToken(OpenSearchPPLParser.DAY, 0); } - public TerminalNode WEEK() { return getToken(OpenSearchPPLParser.WEEK, 0); } - public TerminalNode MONTH() { return getToken(OpenSearchPPLParser.MONTH, 0); } - public TerminalNode QUARTER() { return getToken(OpenSearchPPLParser.QUARTER, 0); } - public TerminalNode YEAR() { return getToken(OpenSearchPPLParser.YEAR, 0); } - public TimespanUnitContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_timespanUnit; } - } - - public final TimespanUnitContext timespanUnit() throws RecognitionException { - TimespanUnitContext _localctx = new TimespanUnitContext(_ctx, getState()); - enterRule(_localctx, 156, RULE_timespanUnit); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(781); - _la = _input.LA(1); - if ( !(((((_la - 20)) & ~0x3f) == 0 && ((1L << (_la - 20)) & ((1L << (D - 20)) | (1L << (MILLISECOND - 20)) | (1L << (SECOND - 20)) | (1L << (MINUTE - 20)) | (1L << (HOUR - 20)) | (1L << (DAY - 20)) | (1L << (WEEK - 20)) | (1L << (MONTH - 20)) | (1L << (QUARTER - 20)) | (1L << (YEAR - 20)))) != 0) || ((((_la - 255)) & ~0x3f) == 0 && ((1L << (_la - 255)) & ((1L << (MS - 255)) | (1L << (S - 255)) | (1L << (M - 255)) | (1L << (H - 255)) | (1L << (W - 255)) | (1L << (Q - 255)) | (1L << (Y - 255)))) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ValueListContext extends ParserRuleContext { - public TerminalNode LT_PRTHS() { return getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public List literalValue() { - return getRuleContexts(LiteralValueContext.class); - } - public LiteralValueContext literalValue(int i) { - return getRuleContext(LiteralValueContext.class,i); - } - public TerminalNode RT_PRTHS() { return getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public List COMMA() { return getTokens(OpenSearchPPLParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(OpenSearchPPLParser.COMMA, i); - } - public ValueListContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_valueList; } - } - - public final ValueListContext valueList() throws RecognitionException { - ValueListContext _localctx = new ValueListContext(_ctx, getState()); - enterRule(_localctx, 158, RULE_valueList); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(783); - match(LT_PRTHS); - setState(784); - literalValue(); - setState(789); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(785); - match(COMMA); - setState(786); - literalValue(); - } - } - setState(791); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(792); - match(RT_PRTHS); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class QualifiedNameContext extends ParserRuleContext { - public QualifiedNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_qualifiedName; } - - public QualifiedNameContext() { } - public void copyFrom(QualifiedNameContext ctx) { - super.copyFrom(ctx); - } - } - public static class IdentsAsQualifiedNameContext extends QualifiedNameContext { - public List ident() { - return getRuleContexts(IdentContext.class); - } - public IdentContext ident(int i) { - return getRuleContext(IdentContext.class,i); - } - public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } - public TerminalNode DOT(int i) { - return getToken(OpenSearchPPLParser.DOT, i); - } - public IdentsAsQualifiedNameContext(QualifiedNameContext ctx) { copyFrom(ctx); } - } - - public final QualifiedNameContext qualifiedName() throws RecognitionException { - QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState()); - enterRule(_localctx, 160, RULE_qualifiedName); - try { - int _alt; - _localctx = new IdentsAsQualifiedNameContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(794); - ident(); - setState(799); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,68,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(795); - match(DOT); - setState(796); - ident(); - } - } - } - setState(801); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,68,_ctx); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WcQualifiedNameContext extends ParserRuleContext { - public WcQualifiedNameContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wcQualifiedName; } - - public WcQualifiedNameContext() { } - public void copyFrom(WcQualifiedNameContext ctx) { - super.copyFrom(ctx); - } - } - public static class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { - public List wildcard() { - return getRuleContexts(WildcardContext.class); - } - public WildcardContext wildcard(int i) { - return getRuleContext(WildcardContext.class,i); - } - public List DOT() { return getTokens(OpenSearchPPLParser.DOT); } - public TerminalNode DOT(int i) { - return getToken(OpenSearchPPLParser.DOT, i); - } - public IdentsAsWildcardQualifiedNameContext(WcQualifiedNameContext ctx) { copyFrom(ctx); } - } - - public final WcQualifiedNameContext wcQualifiedName() throws RecognitionException { - WcQualifiedNameContext _localctx = new WcQualifiedNameContext(_ctx, getState()); - enterRule(_localctx, 162, RULE_wcQualifiedName); - int _la; - try { - _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(802); - wildcard(); - setState(807); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==DOT) { - { - { - setState(803); - match(DOT); - setState(804); - wildcard(); - } - } - setState(809); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class IdentContext extends ParserRuleContext { - public TerminalNode ID() { return getToken(OpenSearchPPLParser.ID, 0); } - public TerminalNode DOT() { return getToken(OpenSearchPPLParser.DOT, 0); } - public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } - public TerminalNode BACKTICK(int i) { - return getToken(OpenSearchPPLParser.BACKTICK, i); - } - public IdentContext ident() { - return getRuleContext(IdentContext.class,0); - } - public TerminalNode BQUOTA_STRING() { return getToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } - public KeywordsCanBeIdContext keywordsCanBeId() { - return getRuleContext(KeywordsCanBeIdContext.class,0); - } - public IdentContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_ident; } - } - - public final IdentContext ident() throws RecognitionException { - IdentContext _localctx = new IdentContext(_ctx, getState()); - enterRule(_localctx, 164, RULE_ident); - int _la; - try { - setState(820); - _errHandler.sync(this); - switch (_input.LA(1)) { - case DOT: - case ID: - enterOuterAlt(_localctx, 1); - { - setState(811); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==DOT) { - { - setState(810); - match(DOT); - } - } - - setState(813); - match(ID); - } - break; - case BACKTICK: - enterOuterAlt(_localctx, 2); - { - setState(814); - match(BACKTICK); - setState(815); - ident(); - setState(816); - match(BACKTICK); - } - break; - case BQUOTA_STRING: - enterOuterAlt(_localctx, 3); - { - setState(818); - match(BQUOTA_STRING); - } - break; - case D: - case MILLISECOND: - case SECOND: - case MINUTE: - case HOUR: - case DAY: - case WEEK: - case MONTH: - case QUARTER: - case YEAR: - case AVG: - case COUNT: - case MAX: - case MIN: - case SUM: - case VAR_SAMP: - case VAR_POP: - case STDDEV_SAMP: - case STDDEV_POP: - case FIRST: - case LAST: - case DATE: - case TIME: - case TIMESTAMP: - case SPAN: - case MS: - case S: - case M: - case H: - case W: - case Q: - case Y: - enterOuterAlt(_localctx, 4); - { - setState(819); - keywordsCanBeId(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class WildcardContext extends ParserRuleContext { - public List ident() { - return getRuleContexts(IdentContext.class); - } - public IdentContext ident(int i) { - return getRuleContext(IdentContext.class,i); - } - public List MODULE() { return getTokens(OpenSearchPPLParser.MODULE); } - public TerminalNode MODULE(int i) { - return getToken(OpenSearchPPLParser.MODULE, i); - } - public List SINGLE_QUOTE() { return getTokens(OpenSearchPPLParser.SINGLE_QUOTE); } - public TerminalNode SINGLE_QUOTE(int i) { - return getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); - } - public WildcardContext wildcard() { - return getRuleContext(WildcardContext.class,0); - } - public List DOUBLE_QUOTE() { return getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); } - public TerminalNode DOUBLE_QUOTE(int i) { - return getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); - } - public List BACKTICK() { return getTokens(OpenSearchPPLParser.BACKTICK); } - public TerminalNode BACKTICK(int i) { - return getToken(OpenSearchPPLParser.BACKTICK, i); - } - public WildcardContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_wildcard; } - } - - public final WildcardContext wildcard() throws RecognitionException { - WildcardContext _localctx = new WildcardContext(_ctx, getState()); - enterRule(_localctx, 166, RULE_wildcard); - int _la; - try { - int _alt; - setState(845); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(822); - ident(); - setState(827); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,72,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(823); - match(MODULE); - setState(824); - ident(); - } - } - } - setState(829); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,72,_ctx); - } - setState(831); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==MODULE) { - { - setState(830); - match(MODULE); - } - } - - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(833); - match(SINGLE_QUOTE); - setState(834); - wildcard(); - setState(835); - match(SINGLE_QUOTE); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(837); - match(DOUBLE_QUOTE); - setState(838); - wildcard(); - setState(839); - match(DOUBLE_QUOTE); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(841); - match(BACKTICK); - setState(842); - wildcard(); - setState(843); - match(BACKTICK); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class KeywordsCanBeIdContext extends ParserRuleContext { - public TerminalNode D() { return getToken(OpenSearchPPLParser.D, 0); } - public StatsFunctionNameContext statsFunctionName() { - return getRuleContext(StatsFunctionNameContext.class,0); - } - public TerminalNode TIMESTAMP() { return getToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TerminalNode DATE() { return getToken(OpenSearchPPLParser.DATE, 0); } - public TerminalNode TIME() { return getToken(OpenSearchPPLParser.TIME, 0); } - public TerminalNode FIRST() { return getToken(OpenSearchPPLParser.FIRST, 0); } - public TerminalNode LAST() { return getToken(OpenSearchPPLParser.LAST, 0); } - public TimespanUnitContext timespanUnit() { - return getRuleContext(TimespanUnitContext.class,0); - } - public TerminalNode SPAN() { return getToken(OpenSearchPPLParser.SPAN, 0); } - public KeywordsCanBeIdContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_keywordsCanBeId; } - } - - public final KeywordsCanBeIdContext keywordsCanBeId() throws RecognitionException { - KeywordsCanBeIdContext _localctx = new KeywordsCanBeIdContext(_ctx, getState()); - enterRule(_localctx, 168, RULE_keywordsCanBeId); - try { - setState(856); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(847); - match(D); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(848); - statsFunctionName(); - } - break; - case 3: - enterOuterAlt(_localctx, 3); - { - setState(849); - match(TIMESTAMP); - } - break; - case 4: - enterOuterAlt(_localctx, 4); - { - setState(850); - match(DATE); - } - break; - case 5: - enterOuterAlt(_localctx, 5); - { - setState(851); - match(TIME); - } - break; - case 6: - enterOuterAlt(_localctx, 6); - { - setState(852); - match(FIRST); - } - break; - case 7: - enterOuterAlt(_localctx, 7); - { - setState(853); - match(LAST); - } - break; - case 8: - enterOuterAlt(_localctx, 8); - { - setState(854); - timespanUnit(); - } - break; - case 9: - enterOuterAlt(_localctx, 9); - { - setState(855); - match(SPAN); - } - break; - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { - switch (ruleIndex) { - case 32: - return logicalExpression_sempred((LogicalExpressionContext)_localctx, predIndex); - case 34: - return valueExpression_sempred((ValueExpressionContext)_localctx, predIndex); - } - return true; - } - private boolean logicalExpression_sempred(LogicalExpressionContext _localctx, int predIndex) { - switch (predIndex) { - case 0: - return precpred(_ctx, 5); - case 1: - return precpred(_ctx, 4); - case 2: - return precpred(_ctx, 3); - } - return true; - } - private boolean valueExpression_sempred(ValueExpressionContext _localctx, int predIndex) { - switch (predIndex) { - case 3: - return precpred(_ctx, 3); - } - return true; - } - - public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u010f\u035d\4\2\t"+ - "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ - "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ - "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ - "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ - "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ - ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ - "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ - "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ - "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ - "\4U\tU\4V\tV\3\2\5\2\u00ae\n\2\3\2\3\2\3\3\3\3\3\3\7\3\u00b5\n\3\f\3\16"+ - "\3\u00b8\13\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\5\4"+ - "\u00c7\n\4\3\5\5\5\u00ca\n\5\3\5\3\5\5\5\u00ce\n\5\3\5\3\5\3\5\3\5\5\5"+ - "\u00d4\n\5\3\5\3\5\3\5\5\5\u00d9\n\5\3\6\3\6\3\6\3\7\3\7\5\7\u00e0\n\7"+ - "\3\7\3\7\3\b\3\b\3\b\3\b\7\b\u00e8\n\b\f\b\16\b\u00eb\13\b\3\t\3\t\3\t"+ - "\3\t\5\t\u00f1\n\t\3\t\3\t\3\t\5\t\u00f6\n\t\3\t\3\t\3\t\5\t\u00fb\n\t"+ - "\3\t\3\t\3\t\7\t\u0100\n\t\f\t\16\t\u0103\13\t\3\t\5\t\u0106\n\t\3\t\3"+ - "\t\3\t\5\t\u010b\n\t\3\n\3\n\5\n\u010f\n\n\3\n\3\n\3\n\3\n\5\n\u0115\n"+ - "\n\3\n\3\n\3\n\5\n\u011a\n\n\3\13\3\13\3\13\3\f\3\f\3\f\3\f\7\f\u0123"+ - "\n\f\f\f\16\f\u0126\13\f\3\r\3\r\5\r\u012a\n\r\3\r\3\r\5\r\u012e\n\r\3"+ - "\16\3\16\5\16\u0132\n\16\3\16\3\16\5\16\u0136\n\16\3\17\3\17\3\17\5\17"+ - "\u013b\n\17\3\20\3\20\3\20\3\20\3\21\3\21\7\21\u0143\n\21\f\21\16\21\u0146"+ - "\13\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\22\5\22\u0151\n\22\3"+ - "\23\3\23\7\23\u0155\n\23\f\23\16\23\u0158\13\23\3\24\3\24\3\24\3\24\3"+ - "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ - "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ - "\24\5\24\u017b\n\24\3\25\3\25\3\25\3\25\3\25\7\25\u0182\n\25\f\25\16\25"+ - "\u0185\13\25\3\25\3\25\3\25\3\25\3\25\7\25\u018c\n\25\f\25\16\25\u018f"+ - "\13\25\5\25\u0191\n\25\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\30\3\30\3"+ - "\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u01a3\n\30\3\31\3\31\3\31\5\31"+ - "\u01a8\n\31\3\32\3\32\3\32\3\32\3\32\3\32\5\32\u01b0\n\32\3\32\3\32\3"+ - "\33\3\33\3\33\7\33\u01b7\n\33\f\33\16\33\u01ba\13\33\3\34\3\34\3\34\3"+ - "\34\3\35\3\35\3\35\5\35\u01c3\n\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+ - "\3\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36\u01d3\n\36\3\37\3\37\3 \3 \3"+ - " \3 \3 \3 \3 \3 \3!\3!\3!\5!\u01e2\n!\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u01ea"+ - "\n\"\3\"\3\"\3\"\3\"\3\"\5\"\u01f1\n\"\3\"\3\"\3\"\3\"\7\"\u01f7\n\"\f"+ - "\"\16\"\u01fa\13\"\3#\3#\3#\3#\3#\3#\3#\3#\5#\u0204\n#\3$\3$\3$\3$\3$"+ - "\3$\3$\3$\5$\u020e\n$\3$\3$\3$\3$\7$\u0214\n$\f$\16$\u0217\13$\3%\3%\3"+ - "%\3%\5%\u021d\n%\3&\3&\3\'\3\'\5\'\u0223\n\'\3(\3(\3(\3(\3(\3(\3(\7(\u022c"+ - "\n(\f(\16(\u022f\13(\3(\3(\3)\3)\3)\3)\3)\3)\7)\u0239\n)\f)\16)\u023c"+ - "\13)\3)\3)\3)\3)\3)\7)\u0243\n)\f)\16)\u0246\13)\3)\3)\3*\3*\5*\u024c"+ - "\n*\3+\3+\3+\7+\u0251\n+\f+\16+\u0254\13+\3,\3,\3,\7,\u0259\n,\f,\16,"+ - "\u025c\13,\3-\5-\u025f\n-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ - ".\3.\3.\3.\3.\3.\3.\3.\3.\5.\u0278\n.\3/\3/\3\60\3\60\3\61\3\61\3\61\3"+ - "\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3"+ - "\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\3\64\5\64\u0299\n\64\3\65"+ - "\3\65\3\65\3\65\5\65\u029f\n\65\3\66\3\66\3\66\7\66\u02a4\n\66\f\66\16"+ - "\66\u02a7\13\66\5\66\u02a9\n\66\3\67\3\67\38\38\38\38\39\39\3:\3:\3:\3"+ - ":\3:\3:\3:\3:\5:\u02bb\n:\3;\3;\5;\u02bf\n;\3<\3<\5<\u02c3\n<\3=\3=\3"+ - ">\3>\5>\u02c9\n>\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3"+ - "?\3?\3?\3?\3?\5?\u02e1\n?\3@\3@\3A\3A\3B\3B\3C\3C\3D\3D\3E\3E\3F\3F\3"+ - "G\3G\3H\3H\3H\3H\3H\5H\u02f8\nH\3I\3I\3I\3I\3J\3J\3K\5K\u0301\nK\3K\3"+ - "K\3L\5L\u0306\nL\3L\3L\3M\3M\3N\3N\3O\3O\3P\3P\3Q\3Q\3Q\3Q\7Q\u0316\n"+ - "Q\fQ\16Q\u0319\13Q\3Q\3Q\3R\3R\3R\7R\u0320\nR\fR\16R\u0323\13R\3S\3S\3"+ - "S\7S\u0328\nS\fS\16S\u032b\13S\3T\5T\u032e\nT\3T\3T\3T\3T\3T\3T\3T\5T"+ - "\u0337\nT\3U\3U\3U\7U\u033c\nU\fU\16U\u033f\13U\3U\5U\u0342\nU\3U\3U\3"+ - "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\5U\u0350\nU\3V\3V\3V\3V\3V\3V\3V\3V\3V\5"+ - "V\u035b\nV\3V\2\4BFW\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60"+ - "\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ - "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e"+ - "\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\2\21\3\2cd\4\2vv\u0097\u0097\7\2"+ - "tuyy||\u0081\u0081\u0083\u0086\5\2\6\6--\u00e2\u00ff\3\2\u00ad\u00b6\5"+ - "\2;;=D\u00b7\u00c6\3\2\u00d9\u00de\4\2\u00c7\u00cb\u00cd\u00d7\4\288]"+ - "b\3\2cg\3\2\u00df\u00e0\3\2\u010c\u010d\3\2\66\67\4\2;;=O\5\2\26\26\u01d6\3\2\2\2@\u01e1\3\2\2\2B\u01e9\3\2\2\2D\u0203\3\2\2\2F"+ - "\u020d\3\2\2\2H\u021c\3\2\2\2J\u021e\3\2\2\2L\u0222\3\2\2\2N\u0224\3\2"+ - "\2\2P\u0232\3\2\2\2R\u024b\3\2\2\2T\u024d\3\2\2\2V\u0255\3\2\2\2X\u025e"+ - "\3\2\2\2Z\u0277\3\2\2\2\\\u0279\3\2\2\2^\u027b\3\2\2\2`\u027d\3\2\2\2"+ - "b\u0282\3\2\2\2d\u0289\3\2\2\2f\u0298\3\2\2\2h\u029e\3\2\2\2j\u02a8\3"+ - "\2\2\2l\u02aa\3\2\2\2n\u02ac\3\2\2\2p\u02b0\3\2\2\2r\u02ba\3\2\2\2t\u02be"+ - "\3\2\2\2v\u02c2\3\2\2\2x\u02c4\3\2\2\2z\u02c8\3\2\2\2|\u02e0\3\2\2\2~"+ - "\u02e2\3\2\2\2\u0080\u02e4\3\2\2\2\u0082\u02e6\3\2\2\2\u0084\u02e8\3\2"+ - "\2\2\u0086\u02ea\3\2\2\2\u0088\u02ec\3\2\2\2\u008a\u02ee\3\2\2\2\u008c"+ - "\u02f0\3\2\2\2\u008e\u02f7\3\2\2\2\u0090\u02f9\3\2\2\2\u0092\u02fd\3\2"+ - "\2\2\u0094\u0300\3\2\2\2\u0096\u0305\3\2\2\2\u0098\u0309\3\2\2\2\u009a"+ - "\u030b\3\2\2\2\u009c\u030d\3\2\2\2\u009e\u030f\3\2\2\2\u00a0\u0311\3\2"+ - "\2\2\u00a2\u031c\3\2\2\2\u00a4\u0324\3\2\2\2\u00a6\u0336\3\2\2\2\u00a8"+ - "\u034f\3\2\2\2\u00aa\u035a\3\2\2\2\u00ac\u00ae\5\4\3\2\u00ad\u00ac\3\2"+ - "\2\2\u00ad\u00ae\3\2\2\2\u00ae\u00af\3\2\2\2\u00af\u00b0\7\2\2\3\u00b0"+ - "\3\3\2\2\2\u00b1\u00b6\5\b\5\2\u00b2\u00b3\7Z\2\2\u00b3\u00b5\5\6\4\2"+ - "\u00b4\u00b2\3\2\2\2\u00b5\u00b8\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b6\u00b7"+ - "\3\2\2\2\u00b7\5\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b9\u00c7\5\n\6\2\u00ba"+ - "\u00c7\5\f\7\2\u00bb\u00c7\5\16\b\2\u00bc\u00c7\5\20\t\2\u00bd\u00c7\5"+ - "\22\n\2\u00be\u00c7\5\24\13\2\u00bf\u00c7\5\26\f\2\u00c0\u00c7\5\30\r"+ - "\2\u00c1\u00c7\5\32\16\2\u00c2\u00c7\5\34\17\2\u00c3\u00c7\5\36\20\2\u00c4"+ - "\u00c7\5 \21\2\u00c5\u00c7\5$\23\2\u00c6\u00b9\3\2\2\2\u00c6\u00ba\3\2"+ - "\2\2\u00c6\u00bb\3\2\2\2\u00c6\u00bc\3\2\2\2\u00c6\u00bd\3\2\2\2\u00c6"+ - "\u00be\3\2\2\2\u00c6\u00bf\3\2\2\2\u00c6\u00c0\3\2\2\2\u00c6\u00c1\3\2"+ - "\2\2\u00c6\u00c2\3\2\2\2\u00c6\u00c3\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6"+ - "\u00c5\3\2\2\2\u00c7\7\3\2\2\2\u00c8\u00ca\7\3\2\2\u00c9\u00c8\3\2\2\2"+ - "\u00c9\u00ca\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00d9\5(\25\2\u00cc\u00ce"+ - "\7\3\2\2\u00cd\u00cc\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf"+ - "\u00d0\5(\25\2\u00d0\u00d1\5B\"\2\u00d1\u00d9\3\2\2\2\u00d2\u00d4\7\3"+ - "\2\2\u00d3\u00d2\3\2\2\2\u00d3\u00d4\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5"+ - "\u00d6\5B\"\2\u00d6\u00d7\5(\25\2\u00d7\u00d9\3\2\2\2\u00d8\u00c9\3\2"+ - "\2\2\u00d8\u00cd\3\2\2\2\u00d8\u00d3\3\2\2\2\u00d9\t\3\2\2\2\u00da\u00db"+ - "\7\5\2\2\u00db\u00dc\5B\"\2\u00dc\13\3\2\2\2\u00dd\u00df\7\6\2\2\u00de"+ - "\u00e0\t\2\2\2\u00df\u00de\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u00e1\3\2"+ - "\2\2\u00e1\u00e2\5T+\2\u00e2\r\3\2\2\2\u00e3\u00e4\7\7\2\2\u00e4\u00e9"+ - "\5*\26\2\u00e5\u00e6\7[\2\2\u00e6\u00e8\5*\26\2\u00e7\u00e5\3\2\2\2\u00e8"+ - "\u00eb\3\2\2\2\u00e9\u00e7\3\2\2\2\u00e9\u00ea\3\2\2\2\u00ea\17\3\2\2"+ - "\2\u00eb\u00e9\3\2\2\2\u00ec\u00f0\7\b\2\2\u00ed\u00ee\7 \2\2\u00ee\u00ef"+ - "\7]\2\2\u00ef\u00f1\5\u0094K\2\u00f0\u00ed\3\2\2\2\u00f0\u00f1\3\2\2\2"+ - "\u00f1\u00f5\3\2\2\2\u00f2\u00f3\7!\2\2\u00f3\u00f4\7]\2\2\u00f4\u00f6"+ - "\5\u0098M\2\u00f5\u00f2\3\2\2\2\u00f5\u00f6\3\2\2\2\u00f6\u00fa\3\2\2"+ - "\2\u00f7\u00f8\7\"\2\2\u00f8\u00f9\7]\2\2\u00f9\u00fb\5\u0092J\2\u00fa"+ - "\u00f7\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u0101\58"+ - "\35\2\u00fd\u00fe\7[\2\2\u00fe\u0100\58\35\2\u00ff\u00fd\3\2\2\2\u0100"+ - "\u0103\3\2\2\2\u0101\u00ff\3\2\2\2\u0101\u0102\3\2\2\2\u0102\u0105\3\2"+ - "\2\2\u0103\u0101\3\2\2\2\u0104\u0106\5.\30\2\u0105\u0104\3\2\2\2\u0105"+ - "\u0106\3\2\2\2\u0106\u010a\3\2\2\2\u0107\u0108\7\37\2\2\u0108\u0109\7"+ - "]\2\2\u0109\u010b\5\u0098M\2\u010a\u0107\3\2\2\2\u010a\u010b\3\2\2\2\u010b"+ - "\21\3\2\2\2\u010c\u010e\7\t\2\2\u010d\u010f\5\u0094K\2\u010e\u010d\3\2"+ - "\2\2\u010e\u010f\3\2\2\2\u010f\u0110\3\2\2\2\u0110\u0114\5T+\2\u0111\u0112"+ - "\7\35\2\2\u0112\u0113\7]\2\2\u0113\u0115\5\u0098M\2\u0114\u0111\3\2\2"+ - "\2\u0114\u0115\3\2\2\2\u0115\u0119\3\2\2\2\u0116\u0117\7\36\2\2\u0117"+ - "\u0118\7]\2\2\u0118\u011a\5\u0098M\2\u0119\u0116\3\2\2\2\u0119\u011a\3"+ - "\2\2\2\u011a\23\3\2\2\2\u011b\u011c\7\n\2\2\u011c\u011d\5\64\33\2\u011d"+ - "\25\3\2\2\2\u011e\u011f\7\13\2\2\u011f\u0124\5\66\34\2\u0120\u0121\7["+ - "\2\2\u0121\u0123\5\66\34\2\u0122\u0120\3\2\2\2\u0123\u0126\3\2\2\2\u0124"+ - "\u0122\3\2\2\2\u0124\u0125\3\2\2\2\u0125\27\3\2\2\2\u0126\u0124\3\2\2"+ - "\2\u0127\u0129\7\f\2\2\u0128\u012a\5\u0094K\2\u0129\u0128\3\2\2\2\u0129"+ - "\u012a\3\2\2\2\u012a\u012d\3\2\2\2\u012b\u012c\7\4\2\2\u012c\u012e\5\u0094"+ - "K\2\u012d\u012b\3\2\2\2\u012d\u012e\3\2\2\2\u012e\31\3\2\2\2\u012f\u0131"+ - "\7\r\2\2\u0130\u0132\5\u0094K\2\u0131\u0130\3\2\2\2\u0131\u0132\3\2\2"+ - "\2\u0132\u0133\3\2\2\2\u0133\u0135\5T+\2\u0134\u0136\5,\27\2\u0135\u0134"+ - "\3\2\2\2\u0135\u0136\3\2\2\2\u0136\33\3\2\2\2\u0137\u0138\7\16\2\2\u0138"+ - "\u013a\5T+\2\u0139\u013b\5,\27\2\u013a\u0139\3\2\2\2\u013a\u013b\3\2\2"+ - "\2\u013b\35\3\2\2\2\u013c\u013d\7\17\2\2\u013d\u013e\5@!\2\u013e\u013f"+ - "\5\u009aN\2\u013f\37\3\2\2\2\u0140\u0144\7\20\2\2\u0141\u0143\5\"\22\2"+ - "\u0142\u0141\3\2\2\2\u0143\u0146\3\2\2\2\u0144\u0142\3\2\2\2\u0144\u0145"+ - "\3\2\2\2\u0145!\3\2\2\2\u0146\u0144\3\2\2\2\u0147\u0148\7#\2\2\u0148\u0149"+ - "\7]\2\2\u0149\u0151\5\u0094K\2\u014a\u014b\7$\2\2\u014b\u014c\7]\2\2\u014c"+ - "\u0151\5\u0094K\2\u014d\u014e\7%\2\2\u014e\u014f\7]\2\2\u014f\u0151\5"+ - "\u0092J\2\u0150\u0147\3\2\2\2\u0150\u014a\3\2\2\2\u0150\u014d\3\2\2\2"+ - "\u0151#\3\2\2\2\u0152\u0156\7\21\2\2\u0153\u0155\5&\24\2\u0154\u0153\3"+ - "\2\2\2\u0155\u0158\3\2\2\2\u0156\u0154\3\2\2\2\u0156\u0157\3\2\2\2\u0157"+ - "%\3\2\2\2\u0158\u0156\3\2\2\2\u0159\u015a\7&\2\2\u015a\u015b\7]\2\2\u015b"+ - "\u017b\5\u0094K\2\u015c\u015d\7\'\2\2\u015d\u015e\7]\2\2\u015e\u017b\5"+ - "\u0094K\2\u015f\u0160\7(\2\2\u0160\u0161\7]\2\2\u0161\u017b\5\u0094K\2"+ - "\u0162\u0163\7)\2\2\u0163\u0164\7]\2\2\u0164\u017b\5\u0094K\2\u0165\u0166"+ - "\7*\2\2\u0166\u0167\7]\2\2\u0167\u017b\5\u0096L\2\u0168\u0169\7+\2\2\u0169"+ - "\u016a\7]\2\2\u016a\u017b\5\u0096L\2\u016b\u016c\7,\2\2\u016c\u016d\7"+ - "]\2\2\u016d\u017b\5\u0092J\2\u016e\u016f\7\u00c5\2\2\u016f\u0170\7]\2"+ - "\2\u0170\u017b\5\u0092J\2\u0171\u0172\7-\2\2\u0172\u0173\7]\2\2\u0173"+ - "\u017b\5\u0092J\2\u0174\u0175\7.\2\2\u0175\u0176\7]\2\2\u0176\u017b\5"+ - "\u0094K\2\u0177\u0178\7/\2\2\u0178\u0179\7]\2\2\u0179\u017b\5\u0096L\2"+ - "\u017a\u0159\3\2\2\2\u017a\u015c\3\2\2\2\u017a\u015f\3\2\2\2\u017a\u0162"+ - "\3\2\2\2\u017a\u0165\3\2\2\2\u017a\u0168\3\2\2\2\u017a\u016b\3\2\2\2\u017a"+ - "\u016e\3\2\2\2\u017a\u0171\3\2\2\2\u017a\u0174\3\2\2\2\u017a\u0177\3\2"+ - "\2\2\u017b\'\3\2\2\2\u017c\u017d\7\24\2\2\u017d\u017e\7]\2\2\u017e\u0183"+ - "\5R*\2\u017f\u0180\7[\2\2\u0180\u0182\5R*\2\u0181\u017f\3\2\2\2\u0182"+ - "\u0185\3\2\2\2\u0183\u0181\3\2\2\2\u0183\u0184\3\2\2\2\u0184\u0191\3\2"+ - "\2\2\u0185\u0183\3\2\2\2\u0186\u0187\7\25\2\2\u0187\u0188\7]\2\2\u0188"+ - "\u018d\5R*\2\u0189\u018a\7[\2\2\u018a\u018c\5R*\2\u018b\u0189\3\2\2\2"+ - "\u018c\u018f\3\2\2\2\u018d\u018b\3\2\2\2\u018d\u018e\3\2\2\2\u018e\u0191"+ - "\3\2\2\2\u018f\u018d\3\2\2\2\u0190\u017c\3\2\2\2\u0190\u0186\3\2\2\2\u0191"+ - ")\3\2\2\2\u0192\u0193\5^\60\2\u0193\u0194\7\22\2\2\u0194\u0195\5^\60\2"+ - "\u0195+\3\2\2\2\u0196\u0197\7\23\2\2\u0197\u0198\5T+\2\u0198-\3\2\2\2"+ - "\u0199\u019a\7\23\2\2\u019a\u01a3\5T+\2\u019b\u019c\7\23\2\2\u019c\u01a3"+ - "\5\60\31\2\u019d\u019e\7\23\2\2\u019e\u019f\5\60\31\2\u019f\u01a0\7[\2"+ - "\2\u01a0\u01a1\5T+\2\u01a1\u01a3\3\2\2\2\u01a2\u0199\3\2\2\2\u01a2\u019b"+ - "\3\2\2\2\u01a2\u019d\3\2\2\2\u01a3/\3\2\2\2\u01a4\u01a7\5\62\32\2\u01a5"+ - "\u01a6\7\22\2\2\u01a6\u01a8\5\u00a2R\2\u01a7\u01a5\3\2\2\2\u01a7\u01a8"+ - "\3\2\2\2\u01a8\61\3\2\2\2\u01a9\u01aa\7\u0100\2\2\u01aa\u01ab\7j\2\2\u01ab"+ - "\u01ac\5\\/\2\u01ac\u01ad\7[\2\2\u01ad\u01af\5\u008eH\2\u01ae\u01b0\5"+ - "\u009eP\2\u01af\u01ae\3\2\2\2\u01af\u01b0\3\2\2\2\u01b0\u01b1\3\2\2\2"+ - "\u01b1\u01b2\7k\2\2\u01b2\63\3\2\2\2\u01b3\u01b8\5X-\2\u01b4\u01b5\7["+ - "\2\2\u01b5\u01b7\5X-\2\u01b6\u01b4\3\2\2\2\u01b7\u01ba\3\2\2\2\u01b8\u01b6"+ - "\3\2\2\2\u01b8\u01b9\3\2\2\2\u01b9\65\3\2\2\2\u01ba\u01b8\3\2\2\2\u01bb"+ - "\u01bc\5\\/\2\u01bc\u01bd\7]\2\2\u01bd\u01be\5@!\2\u01be\67\3\2\2\2\u01bf"+ - "\u01c2\5:\36\2\u01c0\u01c1\7\22\2\2\u01c1\u01c3\5^\60\2\u01c2\u01c0\3"+ - "\2\2\2\u01c2\u01c3\3\2\2\2\u01c39\3\2\2\2\u01c4\u01c5\5<\37\2\u01c5\u01c6"+ - "\7j\2\2\u01c6\u01c7\5F$\2\u01c7\u01c8\7k\2\2\u01c8\u01d3\3\2\2\2\u01c9"+ - "\u01ca\7u\2\2\u01ca\u01cb\7j\2\2\u01cb\u01d3\7k\2\2\u01cc\u01cd\t\3\2"+ - "\2\u01cd\u01ce\7j\2\2\u01ce\u01cf\5F$\2\u01cf\u01d0\7k\2\2\u01d0\u01d3"+ - "\3\2\2\2\u01d1\u01d3\5> \2\u01d2\u01c4\3\2\2\2\u01d2\u01c9\3\2\2\2\u01d2"+ - "\u01cc\3\2\2\2\u01d2\u01d1\3\2\2\2\u01d3;\3\2\2\2\u01d4\u01d5\t\4\2\2"+ - "\u01d5=\3\2\2\2\u01d6\u01d7\7\u0087\2\2\u01d7\u01d8\7_\2\2\u01d8\u01d9"+ - "\5\u0094K\2\u01d9\u01da\7^\2\2\u01da\u01db\7j\2\2\u01db\u01dc\5\\/\2\u01dc"+ - "\u01dd\7k\2\2\u01dd?\3\2\2\2\u01de\u01e2\5B\"\2\u01df\u01e2\5D#\2\u01e0"+ - "\u01e2\5F$\2\u01e1\u01de\3\2\2\2\u01e1\u01df\3\2\2\2\u01e1\u01e0\3\2\2"+ - "\2\u01e2A\3\2\2\2\u01e3\u01e4\b\"\1\2\u01e4\u01ea\5D#\2\u01e5\u01e6\7"+ - "\62\2\2\u01e6\u01ea\5B\"\b\u01e7\u01ea\5J&\2\u01e8\u01ea\5L\'\2\u01e9"+ - "\u01e3\3\2\2\2\u01e9\u01e5\3\2\2\2\u01e9\u01e7\3\2\2\2\u01e9\u01e8\3\2"+ - "\2\2\u01ea\u01f8\3\2\2\2\u01eb\u01ec\f\7\2\2\u01ec\u01ed\7\63\2\2\u01ed"+ - "\u01f7\5B\"\b\u01ee\u01f0\f\6\2\2\u01ef\u01f1\7\64\2\2\u01f0\u01ef\3\2"+ - "\2\2\u01f0\u01f1\3\2\2\2\u01f1\u01f2\3\2\2\2\u01f2\u01f7\5B\"\7\u01f3"+ - "\u01f4\f\5\2\2\u01f4\u01f5\7\65\2\2\u01f5\u01f7\5B\"\6\u01f6\u01eb\3\2"+ - "\2\2\u01f6\u01ee\3\2\2\2\u01f6\u01f3\3\2\2\2\u01f7\u01fa\3\2\2\2\u01f8"+ - "\u01f6\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9C\3\2\2\2\u01fa\u01f8\3\2\2\2"+ - "\u01fb\u01fc\5F$\2\u01fc\u01fd\5\u0086D\2\u01fd\u01fe\5F$\2\u01fe\u0204"+ - "\3\2\2\2\u01ff\u0200\5F$\2\u0200\u0201\7\61\2\2\u0201\u0202\5\u00a0Q\2"+ - "\u0202\u0204\3\2\2\2\u0203\u01fb\3\2\2\2\u0203\u01ff\3\2\2\2\u0204E\3"+ - "\2\2\2\u0205\u0206\b$\1\2\u0206\u0207\7j\2\2\u0207\u0208\5F$\2\u0208\u0209"+ - "\5\u0088E\2\u0209\u020a\5F$\2\u020a\u020b\7k\2\2\u020b\u020e\3\2\2\2\u020c"+ - "\u020e\5H%\2\u020d\u0205\3\2\2\2\u020d\u020c\3\2\2\2\u020e\u0215\3\2\2"+ - "\2\u020f\u0210\f\5\2\2\u0210\u0211\5\u0088E\2\u0211\u0212\5F$\6\u0212"+ - "\u0214\3\2\2\2\u0213\u020f\3\2\2\2\u0214\u0217\3\2\2\2\u0215\u0213\3\2"+ - "\2\2\u0215\u0216\3\2\2\2\u0216G\3\2\2\2\u0217\u0215\3\2\2\2\u0218\u021d"+ - "\5`\61\2\u0219\u021d\5b\62\2\u021a\u021d\5\\/\2\u021b\u021d\5\u008eH\2"+ - "\u021c\u0218\3\2\2\2\u021c\u0219\3\2\2\2\u021c\u021a\3\2\2\2\u021c\u021b"+ - "\3\2\2\2\u021dI\3\2\2\2\u021e\u021f\5d\63\2\u021fK\3\2\2\2\u0220\u0223"+ - "\5N(\2\u0221\u0223\5P)\2\u0222\u0220\3\2\2\2\u0222\u0221\3\2\2\2\u0223"+ - "M\3\2\2\2\u0224\u0225\5\u008aF\2\u0225\u0226\7j\2\2\u0226\u0227\5v<\2"+ - "\u0227\u0228\7[\2\2\u0228\u022d\5x=\2\u0229\u022a\7[\2\2\u022a\u022c\5"+ - "n8\2\u022b\u0229\3\2\2\2\u022c\u022f\3\2\2\2\u022d\u022b\3\2\2\2\u022d"+ - "\u022e\3\2\2\2\u022e\u0230\3\2\2\2\u022f\u022d\3\2\2\2\u0230\u0231\7k"+ - "\2\2\u0231O\3\2\2\2\u0232\u0233\5\u008cG\2\u0233\u0234\7j\2\2\u0234\u0235"+ - "\7l\2\2\u0235\u023a\5r:\2\u0236\u0237\7[\2\2\u0237\u0239\5r:\2\u0238\u0236"+ - "\3\2\2\2\u0239\u023c\3\2\2\2\u023a\u0238\3\2\2\2\u023a\u023b\3\2\2\2\u023b"+ - "\u023d\3\2\2\2\u023c\u023a\3\2\2\2\u023d\u023e\7m\2\2\u023e\u023f\7[\2"+ - "\2\u023f\u0244\5x=\2\u0240\u0241\7[\2\2\u0241\u0243\5n8\2\u0242\u0240"+ - "\3\2\2\2\u0243\u0246\3\2\2\2\u0244\u0242\3\2\2\2\u0244\u0245\3\2\2\2\u0245"+ - "\u0247\3\2\2\2\u0246\u0244\3\2\2\2\u0247\u0248\7k\2\2\u0248Q\3\2\2\2\u0249"+ - "\u024c\5\u00a2R\2\u024a\u024c\7\u010b\2\2\u024b\u0249\3\2\2\2\u024b\u024a"+ - "\3\2\2\2\u024cS\3\2\2\2\u024d\u0252\5\\/\2\u024e\u024f\7[\2\2\u024f\u0251"+ - "\5\\/\2\u0250\u024e\3\2\2\2\u0251\u0254\3\2\2\2\u0252\u0250\3\2\2\2\u0252"+ - "\u0253\3\2\2\2\u0253U\3\2\2\2\u0254\u0252\3\2\2\2\u0255\u025a\5^\60\2"+ - "\u0256\u0257\7[\2\2\u0257\u0259\5^\60\2\u0258\u0256\3\2\2\2\u0259\u025c"+ - "\3\2\2\2\u025a\u0258\3\2\2\2\u025a\u025b\3\2\2\2\u025bW\3\2\2\2\u025c"+ - "\u025a\3\2\2\2\u025d\u025f\t\2\2\2\u025e\u025d\3\2\2\2\u025e\u025f\3\2"+ - "\2\2\u025f\u0260\3\2\2\2\u0260\u0261\5Z.\2\u0261Y\3\2\2\2\u0262\u0278"+ - "\5\\/\2\u0263\u0264\7\31\2\2\u0264\u0265\7j\2\2\u0265\u0266\5\\/\2\u0266"+ - "\u0267\7k\2\2\u0267\u0278\3\2\2\2\u0268\u0269\7\32\2\2\u0269\u026a\7j"+ - "\2\2\u026a\u026b\5\\/\2\u026b\u026c\7k\2\2\u026c\u0278\3\2\2\2\u026d\u026e"+ - "\7\33\2\2\u026e\u026f\7j\2\2\u026f\u0270\5\\/\2\u0270\u0271\7k\2\2\u0271"+ - "\u0278\3\2\2\2\u0272\u0273\7\34\2\2\u0273\u0274\7j\2\2\u0274\u0275\5\\"+ - "/\2\u0275\u0276\7k\2\2\u0276\u0278\3\2\2\2\u0277\u0262\3\2\2\2\u0277\u0263"+ - "\3\2\2\2\u0277\u0268\3\2\2\2\u0277\u026d\3\2\2\2\u0277\u0272\3\2\2\2\u0278"+ - "[\3\2\2\2\u0279\u027a\5\u00a2R\2\u027a]\3\2\2\2\u027b\u027c\5\u00a4S\2"+ - "\u027c_\3\2\2\2\u027d\u027e\5h\65\2\u027e\u027f\7j\2\2\u027f\u0280\5j"+ - "\66\2\u0280\u0281\7k\2\2\u0281a\3\2\2\2\u0282\u0283\7\u00d8\2\2\u0283"+ - "\u0284\7j\2\2\u0284\u0285\5@!\2\u0285\u0286\7\22\2\2\u0286\u0287\5f\64"+ - "\2\u0287\u0288\7k\2\2\u0288c\3\2\2\2\u0289\u028a\5\u0082B\2\u028a\u028b"+ - "\7j\2\2\u028b\u028c\5j\66\2\u028c\u028d\7k\2\2\u028de\3\2\2\2\u028e\u0299"+ - "\7\u00b8\2\2\u028f\u0299\7\u00c2\2\2\u0290\u0299\7\u00c4\2\2\u0291\u0299"+ - "\7S\2\2\u0292\u0299\7T\2\2\u0293\u0299\7U\2\2\u0294\u0299\7V\2\2\u0295"+ - "\u0299\7W\2\2\u0296\u0299\7X\2\2\u0297\u0299\7Y\2\2\u0298\u028e\3\2\2"+ - "\2\u0298\u028f\3\2\2\2\u0298\u0290\3\2\2\2\u0298\u0291\3\2\2\2\u0298\u0292"+ - "\3\2\2\2\u0298\u0293\3\2\2\2\u0298\u0294\3\2\2\2\u0298\u0295\3\2\2\2\u0298"+ - "\u0296\3\2\2\2\u0298\u0297\3\2\2\2\u0299g\3\2\2\2\u029a\u029f\5|?\2\u029b"+ - "\u029f\5\u0080A\2\u029c\u029f\5\u0084C\2\u029d\u029f\5\u0082B\2\u029e"+ - "\u029a\3\2\2\2\u029e\u029b\3\2\2\2\u029e\u029c\3\2\2\2\u029e\u029d\3\2"+ - "\2\2\u029fi\3\2\2\2\u02a0\u02a5\5l\67\2\u02a1\u02a2\7[\2\2\u02a2\u02a4"+ - "\5l\67\2\u02a3\u02a1\3\2\2\2\u02a4\u02a7\3\2\2\2\u02a5\u02a3\3\2\2\2\u02a5"+ - "\u02a6\3\2\2\2\u02a6\u02a9\3\2\2\2\u02a7\u02a5\3\2\2\2\u02a8\u02a0\3\2"+ - "\2\2\u02a8\u02a9\3\2\2\2\u02a9k\3\2\2\2\u02aa\u02ab\5F$\2\u02abm\3\2\2"+ - "\2\u02ac\u02ad\5p9\2\u02ad\u02ae\7]\2\2\u02ae\u02af\5z>\2\u02afo\3\2\2"+ - "\2\u02b0\u02b1\t\5\2\2\u02b1q\3\2\2\2\u02b2\u02bb\5v<\2\u02b3\u02b4\5"+ - "v<\2\u02b4\u02b5\5t;\2\u02b5\u02bb\3\2\2\2\u02b6\u02b7\5v<\2\u02b7\u02b8"+ - "\7s\2\2\u02b8\u02b9\5t;\2\u02b9\u02bb\3\2\2\2\u02ba\u02b2\3\2\2\2\u02ba"+ - "\u02b3\3\2\2\2\u02ba\u02b6\3\2\2\2\u02bbs\3\2\2\2\u02bc\u02bf\5\u0094"+ - "K\2\u02bd\u02bf\5\u0096L\2\u02be\u02bc\3\2\2\2\u02be\u02bd\3\2\2\2\u02bf"+ - "u\3\2\2\2\u02c0\u02c3\5\u00a2R\2\u02c1\u02c3\5\u0092J\2\u02c2\u02c0\3"+ - "\2\2\2\u02c2\u02c1\3\2\2\2\u02c3w\3\2\2\2\u02c4\u02c5\5z>\2\u02c5y\3\2"+ - "\2\2\u02c6\u02c9\5\u00a2R\2\u02c7\u02c9\5\u008eH\2\u02c8\u02c6\3\2\2\2"+ - "\u02c8\u02c7\3\2\2\2\u02c9{\3\2\2\2\u02ca\u02e1\7\u0098\2\2\u02cb\u02e1"+ - "\7\u0099\2\2\u02cc\u02e1\7\u009a\2\2\u02cd\u02e1\7\u009b\2\2\u02ce\u02e1"+ - "\7\u009c\2\2\u02cf\u02e1\7\u009d\2\2\u02d0\u02e1\7\u009e\2\2\u02d1\u02e1"+ - "\7\u009f\2\2\u02d2\u02e1\7\u00a0\2\2\u02d3\u02e1\7\u00a1\2\2\u02d4\u02e1"+ - "\7\u00a2\2\2\u02d5\u02e1\7\u00a3\2\2\u02d6\u02e1\7\u00a4\2\2\u02d7\u02e1"+ - "\7\u00a5\2\2\u02d8\u02e1\7\u00a6\2\2\u02d9\u02e1\7\u00a7\2\2\u02da\u02e1"+ - "\7\u00a8\2\2\u02db\u02e1\7\u00a9\2\2\u02dc\u02e1\7\u00aa\2\2\u02dd\u02e1"+ - "\7\u00ab\2\2\u02de\u02e1\7\u00ac\2\2\u02df\u02e1\5~@\2\u02e0\u02ca\3\2"+ - "\2\2\u02e0\u02cb\3\2\2\2\u02e0\u02cc\3\2\2\2\u02e0\u02cd\3\2\2\2\u02e0"+ - "\u02ce\3\2\2\2\u02e0\u02cf\3\2\2\2\u02e0\u02d0\3\2\2\2\u02e0\u02d1\3\2"+ - "\2\2\u02e0\u02d2\3\2\2\2\u02e0\u02d3\3\2\2\2\u02e0\u02d4\3\2\2\2\u02e0"+ - "\u02d5\3\2\2\2\u02e0\u02d6\3\2\2\2\u02e0\u02d7\3\2\2\2\u02e0\u02d8\3\2"+ - "\2\2\u02e0\u02d9\3\2\2\2\u02e0\u02da\3\2\2\2\u02e0\u02db\3\2\2\2\u02e0"+ - "\u02dc\3\2\2\2\u02e0\u02dd\3\2\2\2\u02e0\u02de\3\2\2\2\u02e0\u02df\3\2"+ - "\2\2\u02e1}\3\2\2\2\u02e2\u02e3\t\6\2\2\u02e3\177\3\2\2\2\u02e4\u02e5"+ - "\t\7\2\2\u02e5\u0081\3\2\2\2\u02e6\u02e7\t\b\2\2\u02e7\u0083\3\2\2\2\u02e8"+ - "\u02e9\t\t\2\2\u02e9\u0085\3\2\2\2\u02ea\u02eb\t\n\2\2\u02eb\u0087\3\2"+ - "\2\2\u02ec\u02ed\t\13\2\2\u02ed\u0089\3\2\2\2\u02ee\u02ef\t\f\2\2\u02ef"+ - "\u008b\3\2\2\2\u02f0\u02f1\7\u00e1\2\2\u02f1\u008d\3\2\2\2\u02f2\u02f8"+ - "\5\u0090I\2\u02f3\u02f8\5\u0092J\2\u02f4\u02f8\5\u0094K\2\u02f5\u02f8"+ - "\5\u0096L\2\u02f6\u02f8\5\u0098M\2\u02f7\u02f2\3\2\2\2\u02f7\u02f3\3\2"+ - "\2\2\u02f7\u02f4\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f7\u02f6\3\2\2\2\u02f8"+ - "\u008f\3\2\2\2\u02f9\u02fa\7:\2\2\u02fa\u02fb\5F$\2\u02fb\u02fc\5\u009c"+ - "O\2\u02fc\u0091\3\2\2\2\u02fd\u02fe\t\r\2\2\u02fe\u0093\3\2\2\2\u02ff"+ - "\u0301\t\2\2\2\u0300\u02ff\3\2\2\2\u0300\u0301\3\2\2\2\u0301\u0302\3\2"+ - "\2\2\u0302\u0303\7\u0109\2\2\u0303\u0095\3\2\2\2\u0304\u0306\t\2\2\2\u0305"+ - "\u0304\3\2\2\2\u0305\u0306\3\2\2\2\u0306\u0307\3\2\2\2\u0307\u0308\7\u010a"+ - "\2\2\u0308\u0097\3\2\2\2\u0309\u030a\t\16\2\2\u030a\u0099\3\2\2\2\u030b"+ - "\u030c\5\u0092J\2\u030c\u009b\3\2\2\2\u030d\u030e\t\17\2\2\u030e\u009d"+ - "\3\2\2\2\u030f\u0310\t\20\2\2\u0310\u009f\3\2\2\2\u0311\u0312\7j\2\2\u0312"+ - "\u0317\5\u008eH\2\u0313\u0314\7[\2\2\u0314\u0316\5\u008eH\2\u0315\u0313"+ - "\3\2\2\2\u0316\u0319\3\2\2\2\u0317\u0315\3\2\2\2\u0317\u0318\3\2\2\2\u0318"+ - "\u031a\3\2\2\2\u0319\u0317\3\2\2\2\u031a\u031b\7k\2\2\u031b\u00a1\3\2"+ - "\2\2\u031c\u0321\5\u00a6T\2\u031d\u031e\7\\\2\2\u031e\u0320\5\u00a6T\2"+ - "\u031f\u031d\3\2\2\2\u0320\u0323\3\2\2\2\u0321\u031f\3\2\2\2\u0321\u0322"+ - "\3\2\2\2\u0322\u00a3\3\2\2\2\u0323\u0321\3\2\2\2\u0324\u0329\5\u00a8U"+ - "\2\u0325\u0326\7\\\2\2\u0326\u0328\5\u00a8U\2\u0327\u0325\3\2\2\2\u0328"+ - "\u032b\3\2\2\2\u0329\u0327\3\2\2\2\u0329\u032a\3\2\2\2\u032a\u00a5\3\2"+ - "\2\2\u032b\u0329\3\2\2\2\u032c\u032e\7\\\2\2\u032d\u032c\3\2\2\2\u032d"+ - "\u032e\3\2\2\2\u032e\u032f\3\2\2\2\u032f\u0337\7\u0108\2\2\u0330\u0331"+ - "\7p\2\2\u0331\u0332\5\u00a6T\2\u0332\u0333\7p\2\2\u0333\u0337\3\2\2\2"+ - "\u0334\u0337\7\u010e\2\2\u0335\u0337\5\u00aaV\2\u0336\u032d\3\2\2\2\u0336"+ - "\u0330\3\2\2\2\u0336\u0334\3\2\2\2\u0336\u0335\3\2\2\2\u0337\u00a7\3\2"+ - "\2\2\u0338\u033d\5\u00a6T\2\u0339\u033a\7g\2\2\u033a\u033c\5\u00a6T\2"+ - "\u033b\u0339\3\2\2\2\u033c\u033f\3\2\2\2\u033d\u033b\3\2\2\2\u033d\u033e"+ - "\3\2\2\2\u033e\u0341\3\2\2\2\u033f\u033d\3\2\2\2\u0340\u0342\7g\2\2\u0341"+ - "\u0340\3\2\2\2\u0341\u0342\3\2\2\2\u0342\u0350\3\2\2\2\u0343\u0344\7n"+ - "\2\2\u0344\u0345\5\u00a8U\2\u0345\u0346\7n\2\2\u0346\u0350\3\2\2\2\u0347"+ - "\u0348\7o\2\2\u0348\u0349\5\u00a8U\2\u0349\u034a\7o\2\2\u034a\u0350\3"+ - "\2\2\2\u034b\u034c\7p\2\2\u034c\u034d\5\u00a8U\2\u034d\u034e\7p\2\2\u034e"+ - "\u0350\3\2\2\2\u034f\u0338\3\2\2\2\u034f\u0343\3\2\2\2\u034f\u0347\3\2"+ - "\2\2\u034f\u034b\3\2\2\2\u0350\u00a9\3\2\2\2\u0351\u035b\7\26\2\2\u0352"+ - "\u035b\5<\37\2\u0353\u035b\7\u00c4\2\2\u0354\u035b\7\u00b8\2\2\u0355\u035b"+ - "\7\u00c2\2\2\u0356\u035b\7\u0088\2\2\u0357\u035b\7\u0089\2\2\u0358\u035b"+ - "\5\u009eP\2\u0359\u035b\7\u0100\2\2\u035a\u0351\3\2\2\2\u035a\u0352\3"+ - "\2\2\2\u035a\u0353\3\2\2\2\u035a\u0354\3\2\2\2\u035a\u0355\3\2\2\2\u035a"+ - "\u0356\3\2\2\2\u035a\u0357\3\2\2\2\u035a\u0358\3\2\2\2\u035a\u0359\3\2"+ - "\2\2\u035b\u00ab\3\2\2\2N\u00ad\u00b6\u00c6\u00c9\u00cd\u00d3\u00d8\u00df"+ - "\u00e9\u00f0\u00f5\u00fa\u0101\u0105\u010a\u010e\u0114\u0119\u0124\u0129"+ - "\u012d\u0131\u0135\u013a\u0144\u0150\u0156\u017a\u0183\u018d\u0190\u01a2"+ - "\u01a7\u01af\u01b8\u01c2\u01d2\u01e1\u01e9\u01f0\u01f6\u01f8\u0203\u020d"+ - "\u0215\u021c\u0222\u022d\u023a\u0244\u024b\u0252\u025a\u025e\u0277\u0298"+ - "\u029e\u02a5\u02a8\u02ba\u02be\u02c2\u02c8\u02e0\u02f7\u0300\u0305\u0317"+ - "\u0321\u0329\u032d\u0336\u033d\u0341\u034f\u035a"; - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } -} \ No newline at end of file diff --git a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens b/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/query_manager/grammar/.antlr/OpenSearchPPLParser.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts b/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts index 8acfdb062..9a39276e0 100644 --- a/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts +++ b/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts @@ -4,7 +4,7 @@ */ import { PPLSyntaxParser } from '../antlr/ppl_syntax_parser'; -import { OpenSearchPPLParser } from '../antlr/bin/OpenSearchPPLParser'; +import { OpenSearchPPLParser } from '../antlr/output/OpenSearchPPLParser'; import { StatsAstBuilder } from '../ast/builder/stats_ast_builder'; export class PPLQueryParser { diff --git a/dashboards-observability/yarn.lock b/dashboards-observability/yarn.lock index 40964dfc1..24d2a17b4 100644 --- a/dashboards-observability/yarn.lock +++ b/dashboards-observability/yarn.lock @@ -143,6 +143,11 @@ debug "^3.1.0" lodash.once "^4.1.1" +"@danieldietrich/copy@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@danieldietrich/copy/-/copy-0.4.2.tgz#c1cabfa499d8b473ba95413c446c1c1efae64d24" + integrity sha512-ZVNZIrgb2KeomfNahP77rL445ho6aQj0HHqU6hNlQ61o4rhvca+NS+ePj0d82zQDq2UPk1mjVZBTXgP+ErsDgw== + "@hypnosphi/create-react-context@^0.3.1": version "0.3.1" resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" @@ -1312,6 +1317,18 @@ glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^7.1.7: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + global-dirs@^2.0.1: version "2.1.0" resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.1.0.tgz#e9046a49c806ff04d6c1825e196c8f0091e8df4d" @@ -1908,6 +1925,13 @@ minimatch@^3.0.4: dependencies: brace-expansion "^1.1.7" +minimatch@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + minimist@^1.2.5, minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" @@ -2126,6 +2150,17 @@ popper.js@^1.14.4, popper.js@^1.16.1: resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== +postinstall@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/postinstall/-/postinstall-0.7.4.tgz#ab8de950f5d0350d753747c8b2606e347c80b3c8" + integrity sha512-jrItKnoJJCY6wuhP/LpTy5KyWJYUOOs+2477PUAXDCrJOZX2vgzCD3jgXawhJG4qdFxvAepaJLum1trieFbEuw== + dependencies: + "@danieldietrich/copy" "^0.4.2" + glob "^7.1.7" + minimist "^1.2.5" + resolve-from "^5.0.0" + resolve-pkg "^2.0.0" + prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" @@ -2444,6 +2479,18 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg/-/resolve-pkg-2.0.0.tgz#ac06991418a7623edc119084edc98b0e6bf05a41" + integrity sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ== + dependencies: + resolve-from "^5.0.0" + restore-cursor@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" From 55163d06961ad161114888744a0f9df6ada2a681 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Fri, 2 Sep 2022 15:52:56 -0700 Subject: [PATCH 13/29] query building fix Signed-off-by: Eric Wei --- .../query_manager/ast/builder/stats_ast_builder.ts | 1 + .../query_manager/ast/expression/group_by.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts index 13dea0f37..6c33b37a1 100644 --- a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts +++ b/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts @@ -48,6 +48,7 @@ export class StatsAstBuilder } visitRoot(ctx: RootContext) { + if (!ctx.pplStatement()) return this.defaultResult(); return this.visitChildren(ctx.pplStatement()!); } diff --git a/dashboards-observability/query_manager/ast/expression/group_by.ts b/dashboards-observability/query_manager/ast/expression/group_by.ts index cb30af2f9..ce6d8ffef 100644 --- a/dashboards-observability/query_manager/ast/expression/group_by.ts +++ b/dashboards-observability/query_manager/ast/expression/group_by.ts @@ -24,7 +24,7 @@ export class GroupBy extends PPLNode { } toString(): string { - return `by ${this.span ? `${this.span.toString()}` : ''}${this.fields + return `by ${this.span ? `${this.span.toString()}${this.fields.length > 0 ? ', ' : ''}` : ''}${this.fields .map((field) => field.toString()) .join(', ')}`; } From 717262e19d7d2ea3e3d949667147d7fb4443d117 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Fri, 2 Sep 2022 20:14:36 -0700 Subject: [PATCH 14/29] updated snapshots Signed-off-by: Eric Wei --- .../__snapshots__/utils.test.tsx.snap | 700 ++++++------------ .../__snapshots__/config_panel.test.tsx.snap | 2 +- .../__tests__/__snapshots__/bar.test.tsx.snap | 9 +- .../__snapshots__/logs_view.test.tsx.snap | 60 +- 4 files changed, 279 insertions(+), 492 deletions(-) diff --git a/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap b/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap index 24c8f5e45..e31ae697b 100644 --- a/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap +++ b/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap @@ -1477,188 +1477,80 @@ exports[`Utils helper functions renders displayVisualization function 1`] = ` } } > - - +
- - + className="euiText euiText--extraSmall lnsChart__empty" + data-test-subj="vizWorkspace__noData" + > + +
+ +
+ + + + + + +
+ +

+ + + No results found + + +

+
+ +
+ +
+ + @@ -4307,188 +4199,80 @@ exports[`Utils helper functions renders displayVisualization function 3`] = ` } } > - - +
- - + className="euiText euiText--extraSmall lnsChart__empty" + data-test-subj="vizWorkspace__noData" + > + +
+ +
+ + + + + + +
+ +

+ + + No results found + + +

+
+ +
+ +
+ + @@ -5225,132 +5009,80 @@ exports[`Utils helper functions renders displayVisualization function 4`] = ` } } > - - +
- - + className="euiText euiText--extraSmall lnsChart__empty" + data-test-subj="vizWorkspace__noData" + > + +
+ +
+ + + + + + +
+ +

+ + + No results found + + +

+
+ +
+ +
+ + diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap index 8d5d2651a..9d76f4d7a 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap @@ -9634,7 +9634,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] "editor": [Function], "id": "data-panel", "mapTo": "dataConfig", - "name": "Data", + "name": "Style", "sections": Array [ Object { "editor": [Function], diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap index 34b400f3a..9a88fe43b 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap @@ -533,9 +533,7 @@ exports[`Bar component Renders bar component 1`] = ` } } > - + Date: Tue, 6 Sep 2022 21:05:49 -0700 Subject: [PATCH 15/29] fixed file not found issue Signed-off-by: Eric Wei --- .../adaptors/case_insensitive_char_stream.ts | 0 .../grammar/.antlr/OpenSearchPPLLexer.interp | 831 ++ .../grammar/.antlr/OpenSearchPPLLexer.java | 1277 +++ .../grammar/.antlr/OpenSearchPPLLexer.tokens | 527 + .../antlr/grammar/OpenSearchPPLLexer.g4 | 0 .../antlr/grammar/OpenSearchPPLParser.g4 | 0 .../antlr/output/OpenSearchPPLLexer.interp | 831 ++ .../antlr/output/OpenSearchPPLLexer.tokens | 527 + .../antlr/output/OpenSearchPPLLexer.ts | 1768 +++ .../antlr/output/OpenSearchPPLParser.interp | 634 ++ .../antlr/output/OpenSearchPPLParser.tokens | 527 + .../antlr/output/OpenSearchPPLParser.ts | 9805 +++++++++++++++++ .../output/OpenSearchPPLParserListener.ts | 1327 +++ .../output/OpenSearchPPLParserVisitor.ts | 885 ++ .../query_manager/antlr/ppl_syntax_parser.ts | 6 +- .../ast/builder/query_builder.ts | 0 .../ast/builder/stats_ast_builder.ts | 0 .../ast/builder/stats_builder.ts | 0 .../ast/expression/AggregateFunction.ts | 0 .../ast/expression/AggregateTerm.ts | 0 .../query_manager/ast/expression/field.ts | 0 .../query_manager/ast/expression/group_by.ts | 0 .../query_manager/ast/expression/index.ts | 0 .../query_manager/ast/expression/span.ts | 0 .../ast/expression/spanExpression.ts | 0 .../{ => common}/query_manager/ast/index.ts | 0 .../{ => common}/query_manager/ast/node.ts | 0 .../query_manager/ast/tree/aggragations.ts | 0 .../query_manager/ast/types/index.ts | 0 .../query_manager/ast/types/stats.ts | 0 .../{ => common}/query_manager/index.ts | 0 .../query_manager/ppl_query_manager.ts | 0 .../query_manager/query_builder/index.ts | 0 .../query_builder/ppl_query_builder.ts | 0 .../query_manager/query_parser/index.ts | 0 .../query_parser/ppl_query_parser.ts | 0 .../{ => common}/query_manager/utils/index.ts | 0 dashboards-observability/package.json | 2 +- .../event_analytics/explorer/explorer.tsx | 2 +- .../data_config_panel_item.tsx | 4 +- 40 files changed, 18946 insertions(+), 7 deletions(-) rename dashboards-observability/{ => common}/query_manager/antlr/adaptors/case_insensitive_char_stream.ts (100%) create mode 100644 dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.interp create mode 100644 dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.java create mode 100644 dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.tokens rename dashboards-observability/{ => common}/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 (100%) rename dashboards-observability/{ => common}/query_manager/antlr/grammar/OpenSearchPPLParser.g4 (100%) create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts create mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts rename dashboards-observability/{ => common}/query_manager/antlr/ppl_syntax_parser.ts (70%) rename dashboards-observability/{ => common}/query_manager/ast/builder/query_builder.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/builder/stats_ast_builder.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/builder/stats_builder.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/expression/AggregateFunction.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/expression/AggregateTerm.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/expression/field.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/expression/group_by.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/expression/index.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/expression/span.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/expression/spanExpression.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/index.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/node.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/tree/aggragations.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/types/index.ts (100%) rename dashboards-observability/{ => common}/query_manager/ast/types/stats.ts (100%) rename dashboards-observability/{ => common}/query_manager/index.ts (100%) rename dashboards-observability/{ => common}/query_manager/ppl_query_manager.ts (100%) rename dashboards-observability/{ => common}/query_manager/query_builder/index.ts (100%) rename dashboards-observability/{ => common}/query_manager/query_builder/ppl_query_builder.ts (100%) rename dashboards-observability/{ => common}/query_manager/query_parser/index.ts (100%) rename dashboards-observability/{ => common}/query_manager/query_parser/ppl_query_parser.ts (100%) rename dashboards-observability/{ => common}/query_manager/utils/index.ts (100%) diff --git a/dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts b/dashboards-observability/common/query_manager/antlr/adaptors/case_insensitive_char_stream.ts similarity index 100% rename from dashboards-observability/query_manager/antlr/adaptors/case_insensitive_char_stream.ts rename to dashboards-observability/common/query_manager/antlr/adaptors/case_insensitive_char_stream.ts diff --git a/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.interp b/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.interp new file mode 100644 index 000000000..68b2f0fd1 --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.interp @@ -0,0 +1,831 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +DATE_SUFFIX +ID_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +DEC_DIGIT +ERROR_RECOGNITION + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN +null +null +WHITESPACE +ERRORCHANNEL + +mode names: +DEFAULT_MODE + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 274, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 2, 533, 2, 535, 267, 537, 268, 539, 269, 541, 270, 543, 2, 545, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.java b/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.java new file mode 100644 index 000000000..b7cc88a4e --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.java @@ -0,0 +1,1277 @@ +// Generated from /Users/menwe/amazon/OpenSearch-Dashboards/plugins/dashboards-observability/common/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.2 +import org.antlr.v4.runtime.Lexer; +import org.antlr.v4.runtime.CharStream; +import org.antlr.v4.runtime.Token; +import org.antlr.v4.runtime.TokenStream; +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.atn.*; +import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.misc.*; + +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) +public class OpenSearchPPLLexer extends Lexer { + static { RuntimeMetaData.checkVersion("4.9.2", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + SEARCH=1, FROM=2, WHERE=3, FIELDS=4, RENAME=5, STATS=6, DEDUP=7, SORT=8, + EVAL=9, HEAD=10, TOP=11, RARE=12, PARSE=13, KMEANS=14, AD=15, AS=16, BY=17, + SOURCE=18, INDEX=19, D=20, DESC=21, SORTBY=22, AUTO=23, STR=24, IP=25, + NUM=26, KEEPEMPTY=27, CONSECUTIVE=28, DEDUP_SPLITVALUES=29, PARTITIONS=30, + ALLNUM=31, DELIM=32, CENTROIDS=33, ITERATIONS=34, DISTANCE_TYPE=35, NUMBER_OF_TREES=36, + SHINGLE_SIZE=37, SAMPLE_SIZE=38, OUTPUT_AFTER=39, TIME_DECAY=40, ANOMALY_RATE=41, + TIME_FIELD=42, TIME_ZONE=43, TRAINING_DATA_SIZE=44, ANOMALY_SCORE_THRESHOLD=45, + CASE=46, IN=47, NOT=48, OR=49, AND=50, XOR=51, TRUE=52, FALSE=53, REGEXP=54, + DATETIME=55, INTERVAL=56, MICROSECOND=57, MILLISECOND=58, SECOND=59, MINUTE=60, + HOUR=61, DAY=62, WEEK=63, MONTH=64, QUARTER=65, YEAR=66, SECOND_MICROSECOND=67, + MINUTE_MICROSECOND=68, MINUTE_SECOND=69, HOUR_MICROSECOND=70, HOUR_SECOND=71, + HOUR_MINUTE=72, DAY_MICROSECOND=73, DAY_SECOND=74, DAY_MINUTE=75, DAY_HOUR=76, + YEAR_MONTH=77, DATAMODEL=78, LOOKUP=79, SAVEDSEARCH=80, INT=81, INTEGER=82, + DOUBLE=83, LONG=84, FLOAT=85, STRING=86, BOOLEAN=87, PIPE=88, COMMA=89, + DOT=90, EQUAL=91, GREATER=92, LESS=93, NOT_GREATER=94, NOT_LESS=95, NOT_EQUAL=96, + PLUS=97, MINUS=98, STAR=99, DIVIDE=100, MODULE=101, EXCLAMATION_SYMBOL=102, + COLON=103, LT_PRTHS=104, RT_PRTHS=105, LT_SQR_PRTHS=106, RT_SQR_PRTHS=107, + SINGLE_QUOTE=108, DOUBLE_QUOTE=109, BACKTICK=110, BIT_NOT_OP=111, BIT_AND_OP=112, + BIT_XOR_OP=113, AVG=114, COUNT=115, DISTINCT_COUNT=116, ESTDC=117, ESTDC_ERROR=118, + MAX=119, MEAN=120, MEDIAN=121, MIN=122, MODE=123, RANGE=124, STDEV=125, + STDEVP=126, SUM=127, SUMSQ=128, VAR_SAMP=129, VAR_POP=130, STDDEV_SAMP=131, + STDDEV_POP=132, PERCENTILE=133, FIRST=134, LAST=135, LIST=136, VALUES=137, + EARLIEST=138, EARLIEST_TIME=139, LATEST=140, LATEST_TIME=141, PER_DAY=142, + PER_HOUR=143, PER_MINUTE=144, PER_SECOND=145, RATE=146, SPARKLINE=147, + C=148, DC=149, ABS=150, CEIL=151, CEILING=152, CONV=153, CRC32=154, E=155, + EXP=156, FLOOR=157, LN=158, LOG=159, LOG10=160, LOG2=161, MOD=162, PI=163, + POW=164, POWER=165, RAND=166, ROUND=167, SIGN=168, SQRT=169, TRUNCATE=170, + ACOS=171, ASIN=172, ATAN=173, ATAN2=174, COS=175, COT=176, DEGREES=177, + RADIANS=178, SIN=179, TAN=180, ADDDATE=181, DATE=182, DATE_ADD=183, DATE_SUB=184, + DAYOFMONTH=185, DAYOFWEEK=186, DAYOFYEAR=187, DAYNAME=188, FROM_DAYS=189, + MONTHNAME=190, SUBDATE=191, TIME=192, TIME_TO_SEC=193, TIMESTAMP=194, + DATE_FORMAT=195, TO_DAYS=196, SUBSTR=197, SUBSTRING=198, LTRIM=199, RTRIM=200, + TRIM=201, TO=202, LOWER=203, UPPER=204, CONCAT=205, CONCAT_WS=206, LENGTH=207, + STRCMP=208, RIGHT=209, LEFT=210, ASCII=211, LOCATE=212, REPLACE=213, CAST=214, + LIKE=215, ISNULL=216, ISNOTNULL=217, IFNULL=218, NULLIF=219, IF=220, MATCH=221, + MATCH_PHRASE=222, SIMPLE_QUERY_STRING=223, ALLOW_LEADING_WILDCARD=224, + ANALYZE_WILDCARD=225, ANALYZER=226, AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227, + BOOST=228, CUTOFF_FREQUENCY=229, DEFAULT_FIELD=230, DEFAULT_OPERATOR=231, + ENABLE_POSITION_INCREMENTS=232, FLAGS=233, FUZZY_MAX_EXPANSIONS=234, FUZZY_PREFIX_LENGTH=235, + FUZZY_TRANSPOSITIONS=236, FUZZY_REWRITE=237, FUZZINESS=238, LENIENT=239, + LOW_FREQ_OPERATOR=240, MAX_DETERMINIZED_STATES=241, MAX_EXPANSIONS=242, + MINIMUM_SHOULD_MATCH=243, OPERATOR=244, PHRASE_SLOP=245, PREFIX_LENGTH=246, + QUOTE_ANALYZER=247, QUOTE_FIELD_SUFFIX=248, REWRITE=249, SLOP=250, TIE_BREAKER=251, + TYPE=252, ZERO_TERMS_QUERY=253, SPAN=254, MS=255, S=256, M=257, H=258, + W=259, Q=260, Y=261, ID=262, INTEGER_LITERAL=263, DECIMAL_LITERAL=264, + ID_DATE_SUFFIX=265, DQUOTA_STRING=266, SQUOTA_STRING=267, BQUOTA_STRING=268, + ERROR_RECOGNITION=269; + public static final int + WHITESPACE=2, ERRORCHANNEL=3; + public static String[] channelNames = { + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL" + }; + + public static String[] modeNames = { + "DEFAULT_MODE" + }; + + private static String[] makeRuleNames() { + return new String[] { + "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", + "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", + "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", + "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", + "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", + "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", + "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", + "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "DATE_SUFFIX", + "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", + "DEC_DIGIT", "ERROR_RECOGNITION" + }; + } + public static final String[] ruleNames = makeRuleNames(); + + private static String[] makeLiteralNames() { + return new String[] { + null, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", + "'TIME_FIELD'", "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", + "'CASE'", "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", + "'REGEXP'", "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", + "'SECOND'", "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", + "'YEAR'", "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", + "'HOUR_MICROSECOND'", "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", + "'DAY_SECOND'", "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", + "'LOOKUP'", "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", + "'FLOAT'", "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", + "'<'", null, null, null, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", + "'FLOOR'", "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", + "'POWER'", "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", + "'ASIN'", "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", + "'SIN'", "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", + "'DAYOFMONTH'", "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", + "'MONTHNAME'", "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", + "'DATE_FORMAT'", "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", + "'TRIM'", "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", + "'STRCMP'", "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", + "'CAST'", "'LIKE'", "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", + "'IF'", "'MATCH'", "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", + "'FUZZY_PREFIX_LENGTH'", "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", + "'FUZZINESS'", "'LENIENT'", "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", + "'MAX_EXPANSIONS'", "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", + "'PREFIX_LENGTH'", "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", + "'SLOP'", "'TIE_BREAKER'", "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", + "'MS'", "'S'", "'M'", "'H'", "'W'", "'Q'", "'Y'" + }; + } + private static final String[] _LITERAL_NAMES = makeLiteralNames(); + private static String[] makeSymbolicNames() { + return new String[] { + null, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", + "NUM", "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", + "ALLNUM", "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", + "ANALYZER", "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", + "DEFAULT_FIELD", "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", + "FUZZY_MAX_EXPANSIONS", "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", + "FUZZY_REWRITE", "FUZZINESS", "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", + "MAX_EXPANSIONS", "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", + "PREFIX_LENGTH", "QUOTE_ANALYZER", "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", + "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", "SPAN", "MS", "S", "M", "H", + "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", "ID_DATE_SUFFIX", + "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION" + }; + } + private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + + public OpenSearchPPLLexer(CharStream input) { + super(input); + _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + + @Override + public String getGrammarFileName() { return "OpenSearchPPLLexer.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public String[] getChannelNames() { return channelNames; } + + @Override + public String[] getModeNames() { return modeNames; } + + @Override + public ATN getATN() { return _ATN; } + + private static final int _serializedATNSegments = 2; + private static final String _serializedATNSegment0 = + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u010f\u0a6f\b\1\4"+ + "\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n"+ + "\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+ + "\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+ + "\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+ + " \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+ + "+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+ + "\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t"+ + "=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4"+ + "I\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\t"+ + "T\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_"+ + "\4`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k"+ + "\tk\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv"+ + "\4w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t"+ + "\u0080\4\u0081\t\u0081\4\u0082\t\u0082\4\u0083\t\u0083\4\u0084\t\u0084"+ + "\4\u0085\t\u0085\4\u0086\t\u0086\4\u0087\t\u0087\4\u0088\t\u0088\4\u0089"+ + "\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+ + "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ + "\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095\t\u0095\4\u0096\t\u0096"+ + "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a\4\u009b"+ + "\t\u009b\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f\t\u009f"+ + "\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3\4\u00a4"+ + "\t\u00a4\4\u00a5\t\u00a5\4\u00a6\t\u00a6\4\u00a7\t\u00a7\4\u00a8\t\u00a8"+ + "\4\u00a9\t\u00a9\4\u00aa\t\u00aa\4\u00ab\t\u00ab\4\u00ac\t\u00ac\4\u00ad"+ + "\t\u00ad\4\u00ae\t\u00ae\4\u00af\t\u00af\4\u00b0\t\u00b0\4\u00b1\t\u00b1"+ + "\4\u00b2\t\u00b2\4\u00b3\t\u00b3\4\u00b4\t\u00b4\4\u00b5\t\u00b5\4\u00b6"+ + "\t\u00b6\4\u00b7\t\u00b7\4\u00b8\t\u00b8\4\u00b9\t\u00b9\4\u00ba\t\u00ba"+ + "\4\u00bb\t\u00bb\4\u00bc\t\u00bc\4\u00bd\t\u00bd\4\u00be\t\u00be\4\u00bf"+ + "\t\u00bf\4\u00c0\t\u00c0\4\u00c1\t\u00c1\4\u00c2\t\u00c2\4\u00c3\t\u00c3"+ + "\4\u00c4\t\u00c4\4\u00c5\t\u00c5\4\u00c6\t\u00c6\4\u00c7\t\u00c7\4\u00c8"+ + "\t\u00c8\4\u00c9\t\u00c9\4\u00ca\t\u00ca\4\u00cb\t\u00cb\4\u00cc\t\u00cc"+ + "\4\u00cd\t\u00cd\4\u00ce\t\u00ce\4\u00cf\t\u00cf\4\u00d0\t\u00d0\4\u00d1"+ + "\t\u00d1\4\u00d2\t\u00d2\4\u00d3\t\u00d3\4\u00d4\t\u00d4\4\u00d5\t\u00d5"+ + "\4\u00d6\t\u00d6\4\u00d7\t\u00d7\4\u00d8\t\u00d8\4\u00d9\t\u00d9\4\u00da"+ + "\t\u00da\4\u00db\t\u00db\4\u00dc\t\u00dc\4\u00dd\t\u00dd\4\u00de\t\u00de"+ + "\4\u00df\t\u00df\4\u00e0\t\u00e0\4\u00e1\t\u00e1\4\u00e2\t\u00e2\4\u00e3"+ + "\t\u00e3\4\u00e4\t\u00e4\4\u00e5\t\u00e5\4\u00e6\t\u00e6\4\u00e7\t\u00e7"+ + "\4\u00e8\t\u00e8\4\u00e9\t\u00e9\4\u00ea\t\u00ea\4\u00eb\t\u00eb\4\u00ec"+ + "\t\u00ec\4\u00ed\t\u00ed\4\u00ee\t\u00ee\4\u00ef\t\u00ef\4\u00f0\t\u00f0"+ + "\4\u00f1\t\u00f1\4\u00f2\t\u00f2\4\u00f3\t\u00f3\4\u00f4\t\u00f4\4\u00f5"+ + "\t\u00f5\4\u00f6\t\u00f6\4\u00f7\t\u00f7\4\u00f8\t\u00f8\4\u00f9\t\u00f9"+ + "\4\u00fa\t\u00fa\4\u00fb\t\u00fb\4\u00fc\t\u00fc\4\u00fd\t\u00fd\4\u00fe"+ + "\t\u00fe\4\u00ff\t\u00ff\4\u0100\t\u0100\4\u0101\t\u0101\4\u0102\t\u0102"+ + "\4\u0103\t\u0103\4\u0104\t\u0104\4\u0105\t\u0105\4\u0106\t\u0106\4\u0107"+ + "\t\u0107\4\u0108\t\u0108\4\u0109\t\u0109\4\u010a\t\u010a\4\u010b\t\u010b"+ + "\4\u010c\t\u010c\4\u010d\t\u010d\4\u010e\t\u010e\4\u010f\t\u010f\4\u0110"+ + "\t\u0110\4\u0111\t\u0111\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\3\3"+ + "\3\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6"+ + "\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3"+ + "\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3"+ + "\f\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3"+ + "\17\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\21\3\22\3\22\3\22\3\23\3"+ + "\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3"+ + "\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3"+ + "\30\3\30\3\30\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3"+ + "\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3"+ + "\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\3"+ + "\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3!\3"+ + "!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3"+ + "#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+ + "&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3"+ + "(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3"+ + "*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3,\3,\3"+ + ",\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3"+ + "-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ + ".\3.\3.\3.\3.\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\62\3"+ + "\62\3\62\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3"+ + "\65\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3"+ + "8\38\38\38\38\38\38\38\38\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3"+ + ":\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3"+ + "<\3<\3<\3=\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3?\3?\3?\3?\3@\3@\3@\3@\3"+ + "@\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3"+ + "D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3"+ + "E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3F\3"+ + "F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3"+ + "H\3H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3I\3J\3J\3"+ + "J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3K\3"+ + "K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3M\3N\3"+ + "N\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3"+ + "P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3S\3S\3S\3"+ + "S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3"+ + "W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Z\3Z\3[\3[\3\\\3\\"+ + "\3]\3]\3^\3^\3_\3_\3_\3`\3`\3`\3a\3a\3a\3b\3b\3c\3c\3d\3d\3e\3e\3f\3f"+ + "\3g\3g\3h\3h\3i\3i\3j\3j\3k\3k\3l\3l\3m\3m\3n\3n\3o\3o\3p\3p\3q\3q\3r"+ + "\3r\3s\3s\3s\3s\3t\3t\3t\3t\3t\3t\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u"+ + "\3u\3u\3u\3v\3v\3v\3v\3v\3v\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3x\3x"+ + "\3x\3x\3y\3y\3y\3y\3y\3z\3z\3z\3z\3z\3z\3z\3{\3{\3{\3{\3|\3|\3|\3|\3|"+ + "\3}\3}\3}\3}\3}\3}\3~\3~\3~\3~\3~\3~\3\177\3\177\3\177\3\177\3\177\3\177"+ + "\3\177\3\u0080\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082\3\u0082"+ + "\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083"+ + "\3\u0083\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ + "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085"+ + "\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086"+ + "\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0086\3\u0087"+ + "\3\u0087\3\u0087\3\u0087\3\u0087\3\u0087\3\u0088\3\u0088\3\u0088\3\u0088"+ + "\3\u0088\3\u0089\3\u0089\3\u0089\3\u0089\3\u0089\3\u008a\3\u008a\3\u008a"+ + "\3\u008a\3\u008a\3\u008a\3\u008a\3\u008b\3\u008b\3\u008b\3\u008b\3\u008b"+ + "\3\u008b\3\u008b\3\u008b\3\u008b\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ + "\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c\3\u008c"+ + "\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008d\3\u008e\3\u008e"+ + "\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e\3\u008e"+ + "\3\u008e\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f\3\u008f"+ + "\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090\3\u0090"+ + "\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091\3\u0091"+ + "\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092\3\u0092"+ + "\3\u0092\3\u0092\3\u0092\3\u0092\3\u0093\3\u0093\3\u0093\3\u0093\3\u0093"+ + "\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094\3\u0094"+ + "\3\u0094\3\u0095\3\u0095\3\u0096\3\u0096\3\u0096\3\u0097\3\u0097\3\u0097"+ + "\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\3\u0098\3\u0099\3\u0099\3\u0099"+ + "\3\u0099\3\u0099\3\u0099\3\u0099\3\u0099\3\u009a\3\u009a\3\u009a\3\u009a"+ + "\3\u009a\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009b\3\u009c\3\u009c"+ + "\3\u009d\3\u009d\3\u009d\3\u009d\3\u009e\3\u009e\3\u009e\3\u009e\3\u009e"+ + "\3\u009e\3\u009f\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a1"+ + "\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a2\3\u00a2"+ + "\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4\3\u00a5"+ + "\3\u00a5\3\u00a5\3\u00a5\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a6"+ + "\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a8\3\u00a8"+ + "\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00aa\3\u00aa"+ + "\3\u00aa\3\u00aa\3\u00aa\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab"+ + "\3\u00ab\3\u00ab\3\u00ab\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ad"+ + "\3\u00ad\3\u00ad\3\u00ad\3\u00ad\3\u00ae\3\u00ae\3\u00ae\3\u00ae\3\u00ae"+ + "\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00af\3\u00b0\3\u00b0\3\u00b0"+ + "\3\u00b0\3\u00b1\3\u00b1\3\u00b1\3\u00b1\3\u00b2\3\u00b2\3\u00b2\3\u00b2"+ + "\3\u00b2\3\u00b2\3\u00b2\3\u00b2\3\u00b3\3\u00b3\3\u00b3\3\u00b3\3\u00b3"+ + "\3\u00b3\3\u00b3\3\u00b3\3\u00b4\3\u00b4\3\u00b4\3\u00b4\3\u00b5\3\u00b5"+ + "\3\u00b5\3\u00b5\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6\3\u00b6"+ + "\3\u00b6\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b7\3\u00b8\3\u00b8\3\u00b8"+ + "\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b8\3\u00b9\3\u00b9\3\u00b9"+ + "\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00b9\3\u00ba\3\u00ba\3\u00ba"+ + "\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00ba\3\u00bb"+ + "\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb\3\u00bb"+ + "\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc\3\u00bc"+ + "\3\u00bc\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd\3\u00bd"+ + "\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be\3\u00be"+ + "\3\u00be\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf\3\u00bf"+ + "\3\u00bf\3\u00bf\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0\3\u00c0"+ + "\3\u00c0\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c1\3\u00c2\3\u00c2\3\u00c2"+ + "\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2\3\u00c2"+ + "\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3\3\u00c3"+ + "\3\u00c3\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c4"+ + "\3\u00c4\3\u00c4\3\u00c4\3\u00c4\3\u00c5\3\u00c5\3\u00c5\3\u00c5\3\u00c5"+ + "\3\u00c5\3\u00c5\3\u00c5\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6\3\u00c6"+ + "\3\u00c6\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7\3\u00c7"+ + "\3\u00c7\3\u00c7\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c8\3\u00c9"+ + "\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00c9\3\u00ca\3\u00ca\3\u00ca\3\u00ca"+ + "\3\u00ca\3\u00cb\3\u00cb\3\u00cb\3\u00cc\3\u00cc\3\u00cc\3\u00cc\3\u00cc"+ + "\3\u00cc\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00cd\3\u00ce\3\u00ce"+ + "\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00ce\3\u00cf\3\u00cf\3\u00cf\3\u00cf"+ + "\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00cf\3\u00d0\3\u00d0\3\u00d0"+ + "\3\u00d0\3\u00d0\3\u00d0\3\u00d0\3\u00d1\3\u00d1\3\u00d1\3\u00d1\3\u00d1"+ + "\3\u00d1\3\u00d1\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d2\3\u00d3"+ + "\3\u00d3\3\u00d3\3\u00d3\3\u00d3\3\u00d4\3\u00d4\3\u00d4\3\u00d4\3\u00d4"+ + "\3\u00d4\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d5\3\u00d6"+ + "\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d6\3\u00d7\3\u00d7"+ + "\3\u00d7\3\u00d7\3\u00d7\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d8\3\u00d9"+ + "\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00d9\3\u00da\3\u00da\3\u00da"+ + "\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00da\3\u00db\3\u00db"+ + "\3\u00db\3\u00db\3\u00db\3\u00db\3\u00db\3\u00dc\3\u00dc\3\u00dc\3\u00dc"+ + "\3\u00dc\3\u00dc\3\u00dc\3\u00dd\3\u00dd\3\u00dd\3\u00de\3\u00de\3\u00de"+ + "\3\u00de\3\u00de\3\u00de\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df"+ + "\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00df\3\u00e0\3\u00e0"+ + "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ + "\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0\3\u00e0"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1"+ + "\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e1\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ + "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e2"+ + "\3\u00e2\3\u00e2\3\u00e2\3\u00e2\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e3"+ + "\3\u00e3\3\u00e3\3\u00e3\3\u00e3\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e4"+ + "\3\u00e4\3\u00e4\3\u00e4\3\u00e4\3\u00e5\3\u00e5\3\u00e5\3\u00e5\3\u00e5"+ + "\3\u00e5\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ + "\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6\3\u00e6"+ + "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7"+ + "\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e7\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ + "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e8"+ + "\3\u00e8\3\u00e8\3\u00e8\3\u00e8\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00e9"+ + "\3\u00e9\3\u00e9\3\u00e9\3\u00e9\3\u00ea\3\u00ea\3\u00ea\3\u00ea\3\u00ea"+ + "\3\u00ea\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ + "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00eb"+ + "\3\u00eb\3\u00eb\3\u00eb\3\u00eb\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ + "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec"+ + "\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ec\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed\3\u00ed"+ + "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee"+ + "\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ee\3\u00ef\3\u00ef\3\u00ef\3\u00ef"+ + "\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00ef\3\u00f0\3\u00f0\3\u00f0"+ + "\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f0\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ + "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1"+ + "\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f1\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2\3\u00f2"+ + "\3\u00f2\3\u00f2\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3"+ + "\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f3\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4\3\u00f4"+ + "\3\u00f4\3\u00f4\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5\3\u00f5"+ + "\3\u00f5\3\u00f5\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6"+ + "\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f6\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ + "\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7\3\u00f7"+ + "\3\u00f7\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8"+ + "\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f8\3\u00f9\3\u00f9"+ + "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9"+ + "\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00f9\3\u00fa"+ + "\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fa\3\u00fb\3\u00fb"+ + "\3\u00fb\3\u00fb\3\u00fb\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc"+ + "\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fc\3\u00fd\3\u00fd\3\u00fd"+ + "\3\u00fd\3\u00fd\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ + "\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe\3\u00fe"+ + "\3\u00fe\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u00ff\3\u0100\3\u0100\3\u0100"+ + "\3\u0101\3\u0101\3\u0102\3\u0102\3\u0103\3\u0103\3\u0104\3\u0104\3\u0105"+ + "\3\u0105\3\u0106\3\u0106\3\u0107\3\u0107\3\u0108\6\u0108\u0a19\n\u0108"+ + "\r\u0108\16\u0108\u0a1a\3\u0109\6\u0109\u0a1e\n\u0109\r\u0109\16\u0109"+ + "\u0a1f\5\u0109\u0a22\n\u0109\3\u0109\3\u0109\6\u0109\u0a26\n\u0109\r\u0109"+ + "\16\u0109\u0a27\3\u010a\3\u010a\6\u010a\u0a2c\n\u010a\r\u010a\16\u010a"+ + "\u0a2d\7\u010a\u0a30\n\u010a\f\u010a\16\u010a\u0a33\13\u010a\3\u010b\6"+ + "\u010b\u0a36\n\u010b\r\u010b\16\u010b\u0a37\3\u010b\7\u010b\u0a3b\n\u010b"+ + "\f\u010b\16\u010b\u0a3e\13\u010b\3\u010c\3\u010c\3\u010c\3\u010d\3\u010d"+ + "\3\u010d\3\u010d\3\u010d\3\u010d\7\u010d\u0a49\n\u010d\f\u010d\16\u010d"+ + "\u0a4c\13\u010d\3\u010d\3\u010d\3\u010e\3\u010e\3\u010e\3\u010e\3\u010e"+ + "\3\u010e\7\u010e\u0a56\n\u010e\f\u010e\16\u010e\u0a59\13\u010e\3\u010e"+ + "\3\u010e\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\3\u010f\7\u010f\u0a63"+ + "\n\u010f\f\u010f\16\u010f\u0a66\13\u010f\3\u010f\3\u010f\3\u0110\3\u0110"+ + "\3\u0111\3\u0111\3\u0111\3\u0111\3\u0a37\2\u0112\3\3\5\4\7\5\t\6\13\7"+ + "\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25"+ + ")\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O"+ + ")Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081"+ + "B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095"+ + "L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9"+ + "V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd"+ + "`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1"+ + "j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5"+ + "t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9"+ + "~\u00fb\177\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105\u0084"+ + "\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111\u008a"+ + "\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d\u0090"+ + "\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129\u0096"+ + "\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135\u009c"+ + "\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141\u00a2"+ + "\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d\u00a8"+ + "\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159\u00ae"+ + "\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165\u00b4"+ + "\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171\u00ba"+ + "\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d\u00c0"+ + "\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189\u00c6"+ + "\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195\u00cc"+ + "\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1\u00d2"+ + "\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8"+ + "\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9\u00de"+ + "\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4"+ + "\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea"+ + "\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd\u00f0"+ + "\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6"+ + "\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc"+ + "\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201\u0102"+ + "\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d\u0108"+ + "\u020f\u0109\u0211\u010a\u0213\2\u0215\2\u0217\u010b\u0219\u010c\u021b"+ + "\u010d\u021d\u010e\u021f\2\u0221\u010f\3\2\n\3\2/\60\4\2,,\62;\4\2,,B"+ + "\\\7\2,,//\62;C\\aa\4\2$$^^\4\2))^^\4\2^^bb\3\2\62;\2\u0a7c\2\3\3\2\2"+ + "\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3"+ + "\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2"+ + "\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2"+ + "\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2"+ + "\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3"+ + "\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2"+ + "\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2"+ + "W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3"+ + "\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2"+ + "\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2"+ + "}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2"+ + "\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f"+ + "\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2"+ + "\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1"+ + "\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2"+ + "\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3"+ + "\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2"+ + "\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5"+ + "\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2"+ + "\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7"+ + "\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2"+ + "\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9"+ + "\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2"+ + "\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb"+ + "\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103\3\2\2"+ + "\2\2\u0105\3\2\2\2\2\u0107\3\2\2\2\2\u0109\3\2\2\2\2\u010b\3\2\2\2\2\u010d"+ + "\3\2\2\2\2\u010f\3\2\2\2\2\u0111\3\2\2\2\2\u0113\3\2\2\2\2\u0115\3\2\2"+ + "\2\2\u0117\3\2\2\2\2\u0119\3\2\2\2\2\u011b\3\2\2\2\2\u011d\3\2\2\2\2\u011f"+ + "\3\2\2\2\2\u0121\3\2\2\2\2\u0123\3\2\2\2\2\u0125\3\2\2\2\2\u0127\3\2\2"+ + "\2\2\u0129\3\2\2\2\2\u012b\3\2\2\2\2\u012d\3\2\2\2\2\u012f\3\2\2\2\2\u0131"+ + "\3\2\2\2\2\u0133\3\2\2\2\2\u0135\3\2\2\2\2\u0137\3\2\2\2\2\u0139\3\2\2"+ + "\2\2\u013b\3\2\2\2\2\u013d\3\2\2\2\2\u013f\3\2\2\2\2\u0141\3\2\2\2\2\u0143"+ + "\3\2\2\2\2\u0145\3\2\2\2\2\u0147\3\2\2\2\2\u0149\3\2\2\2\2\u014b\3\2\2"+ + "\2\2\u014d\3\2\2\2\2\u014f\3\2\2\2\2\u0151\3\2\2\2\2\u0153\3\2\2\2\2\u0155"+ + "\3\2\2\2\2\u0157\3\2\2\2\2\u0159\3\2\2\2\2\u015b\3\2\2\2\2\u015d\3\2\2"+ + "\2\2\u015f\3\2\2\2\2\u0161\3\2\2\2\2\u0163\3\2\2\2\2\u0165\3\2\2\2\2\u0167"+ + "\3\2\2\2\2\u0169\3\2\2\2\2\u016b\3\2\2\2\2\u016d\3\2\2\2\2\u016f\3\2\2"+ + "\2\2\u0171\3\2\2\2\2\u0173\3\2\2\2\2\u0175\3\2\2\2\2\u0177\3\2\2\2\2\u0179"+ + "\3\2\2\2\2\u017b\3\2\2\2\2\u017d\3\2\2\2\2\u017f\3\2\2\2\2\u0181\3\2\2"+ + "\2\2\u0183\3\2\2\2\2\u0185\3\2\2\2\2\u0187\3\2\2\2\2\u0189\3\2\2\2\2\u018b"+ + "\3\2\2\2\2\u018d\3\2\2\2\2\u018f\3\2\2\2\2\u0191\3\2\2\2\2\u0193\3\2\2"+ + "\2\2\u0195\3\2\2\2\2\u0197\3\2\2\2\2\u0199\3\2\2\2\2\u019b\3\2\2\2\2\u019d"+ + "\3\2\2\2\2\u019f\3\2\2\2\2\u01a1\3\2\2\2\2\u01a3\3\2\2\2\2\u01a5\3\2\2"+ + "\2\2\u01a7\3\2\2\2\2\u01a9\3\2\2\2\2\u01ab\3\2\2\2\2\u01ad\3\2\2\2\2\u01af"+ + "\3\2\2\2\2\u01b1\3\2\2\2\2\u01b3\3\2\2\2\2\u01b5\3\2\2\2\2\u01b7\3\2\2"+ + "\2\2\u01b9\3\2\2\2\2\u01bb\3\2\2\2\2\u01bd\3\2\2\2\2\u01bf\3\2\2\2\2\u01c1"+ + "\3\2\2\2\2\u01c3\3\2\2\2\2\u01c5\3\2\2\2\2\u01c7\3\2\2\2\2\u01c9\3\2\2"+ + "\2\2\u01cb\3\2\2\2\2\u01cd\3\2\2\2\2\u01cf\3\2\2\2\2\u01d1\3\2\2\2\2\u01d3"+ + "\3\2\2\2\2\u01d5\3\2\2\2\2\u01d7\3\2\2\2\2\u01d9\3\2\2\2\2\u01db\3\2\2"+ + "\2\2\u01dd\3\2\2\2\2\u01df\3\2\2\2\2\u01e1\3\2\2\2\2\u01e3\3\2\2\2\2\u01e5"+ + "\3\2\2\2\2\u01e7\3\2\2\2\2\u01e9\3\2\2\2\2\u01eb\3\2\2\2\2\u01ed\3\2\2"+ + "\2\2\u01ef\3\2\2\2\2\u01f1\3\2\2\2\2\u01f3\3\2\2\2\2\u01f5\3\2\2\2\2\u01f7"+ + "\3\2\2\2\2\u01f9\3\2\2\2\2\u01fb\3\2\2\2\2\u01fd\3\2\2\2\2\u01ff\3\2\2"+ + "\2\2\u0201\3\2\2\2\2\u0203\3\2\2\2\2\u0205\3\2\2\2\2\u0207\3\2\2\2\2\u0209"+ + "\3\2\2\2\2\u020b\3\2\2\2\2\u020d\3\2\2\2\2\u020f\3\2\2\2\2\u0211\3\2\2"+ + "\2\2\u0217\3\2\2\2\2\u0219\3\2\2\2\2\u021b\3\2\2\2\2\u021d\3\2\2\2\2\u0221"+ + "\3\2\2\2\3\u0223\3\2\2\2\5\u022a\3\2\2\2\7\u022f\3\2\2\2\t\u0235\3\2\2"+ + "\2\13\u023c\3\2\2\2\r\u0243\3\2\2\2\17\u0249\3\2\2\2\21\u024f\3\2\2\2"+ + "\23\u0254\3\2\2\2\25\u0259\3\2\2\2\27\u025e\3\2\2\2\31\u0262\3\2\2\2\33"+ + "\u0267\3\2\2\2\35\u026d\3\2\2\2\37\u0274\3\2\2\2!\u0277\3\2\2\2#\u027a"+ + "\3\2\2\2%\u027d\3\2\2\2\'\u0284\3\2\2\2)\u028a\3\2\2\2+\u028c\3\2\2\2"+ + "-\u0291\3\2\2\2/\u0298\3\2\2\2\61\u029d\3\2\2\2\63\u02a1\3\2\2\2\65\u02a4"+ + "\3\2\2\2\67\u02a8\3\2\2\29\u02b2\3\2\2\2;\u02be\3\2\2\2=\u02d0\3\2\2\2"+ + "?\u02db\3\2\2\2A\u02e2\3\2\2\2C\u02e8\3\2\2\2E\u02f2\3\2\2\2G\u02fd\3"+ + "\2\2\2I\u030b\3\2\2\2K\u031b\3\2\2\2M\u0328\3\2\2\2O\u0334\3\2\2\2Q\u0341"+ + "\3\2\2\2S\u034c\3\2\2\2U\u0359\3\2\2\2W\u0364\3\2\2\2Y\u036e\3\2\2\2["+ + "\u0381\3\2\2\2]\u0399\3\2\2\2_\u039e\3\2\2\2a\u03a1\3\2\2\2c\u03a5\3\2"+ + "\2\2e\u03a8\3\2\2\2g\u03ac\3\2\2\2i\u03b0\3\2\2\2k\u03b5\3\2\2\2m\u03bb"+ + "\3\2\2\2o\u03c2\3\2\2\2q\u03cb\3\2\2\2s\u03d4\3\2\2\2u\u03e0\3\2\2\2w"+ + "\u03ec\3\2\2\2y\u03f3\3\2\2\2{\u03fa\3\2\2\2}\u03ff\3\2\2\2\177\u0403"+ + "\3\2\2\2\u0081\u0408\3\2\2\2\u0083\u040e\3\2\2\2\u0085\u0416\3\2\2\2\u0087"+ + "\u041b\3\2\2\2\u0089\u042e\3\2\2\2\u008b\u0441\3\2\2\2\u008d\u044f\3\2"+ + "\2\2\u008f\u0460\3\2\2\2\u0091\u046c\3\2\2\2\u0093\u0478\3\2\2\2\u0095"+ + "\u0488\3\2\2\2\u0097\u0493\3\2\2\2\u0099\u049e\3\2\2\2\u009b\u04a7\3\2"+ + "\2\2\u009d\u04b2\3\2\2\2\u009f\u04bc\3\2\2\2\u00a1\u04c3\3\2\2\2\u00a3"+ + "\u04cf\3\2\2\2\u00a5\u04d3\3\2\2\2\u00a7\u04db\3\2\2\2\u00a9\u04e2\3\2"+ + "\2\2\u00ab\u04e7\3\2\2\2\u00ad\u04ed\3\2\2\2\u00af\u04f4\3\2\2\2\u00b1"+ + "\u04fc\3\2\2\2\u00b3\u04fe\3\2\2\2\u00b5\u0500\3\2\2\2\u00b7\u0502\3\2"+ + "\2\2\u00b9\u0504\3\2\2\2\u00bb\u0506\3\2\2\2\u00bd\u0508\3\2\2\2\u00bf"+ + "\u050b\3\2\2\2\u00c1\u050e\3\2\2\2\u00c3\u0511\3\2\2\2\u00c5\u0513\3\2"+ + "\2\2\u00c7\u0515\3\2\2\2\u00c9\u0517\3\2\2\2\u00cb\u0519\3\2\2\2\u00cd"+ + "\u051b\3\2\2\2\u00cf\u051d\3\2\2\2\u00d1\u051f\3\2\2\2\u00d3\u0521\3\2"+ + "\2\2\u00d5\u0523\3\2\2\2\u00d7\u0525\3\2\2\2\u00d9\u0527\3\2\2\2\u00db"+ + "\u0529\3\2\2\2\u00dd\u052b\3\2\2\2\u00df\u052d\3\2\2\2\u00e1\u052f\3\2"+ + "\2\2\u00e3\u0531\3\2\2\2\u00e5\u0533\3\2\2\2\u00e7\u0537\3\2\2\2\u00e9"+ + "\u053d\3\2\2\2\u00eb\u054c\3\2\2\2\u00ed\u0552\3\2\2\2\u00ef\u055e\3\2"+ + "\2\2\u00f1\u0562\3\2\2\2\u00f3\u0567\3\2\2\2\u00f5\u056e\3\2\2\2\u00f7"+ + "\u0572\3\2\2\2\u00f9\u0577\3\2\2\2\u00fb\u057d\3\2\2\2\u00fd\u0583\3\2"+ + "\2\2\u00ff\u058a\3\2\2\2\u0101\u058e\3\2\2\2\u0103\u0594\3\2\2\2\u0105"+ + "\u059d\3\2\2\2\u0107\u05a5\3\2\2\2\u0109\u05b1\3\2\2\2\u010b\u05bc\3\2"+ + "\2\2\u010d\u05c7\3\2\2\2\u010f\u05cd\3\2\2\2\u0111\u05d2\3\2\2\2\u0113"+ + "\u05d7\3\2\2\2\u0115\u05de\3\2\2\2\u0117\u05e7\3\2\2\2\u0119\u05f5\3\2"+ + "\2\2\u011b\u05fc\3\2\2\2\u011d\u0608\3\2\2\2\u011f\u0610\3\2\2\2\u0121"+ + "\u0619\3\2\2\2\u0123\u0624\3\2\2\2\u0125\u062f\3\2\2\2\u0127\u0634\3\2"+ + "\2\2\u0129\u063e\3\2\2\2\u012b\u0640\3\2\2\2\u012d\u0643\3\2\2\2\u012f"+ + "\u0647\3\2\2\2\u0131\u064c\3\2\2\2\u0133\u0654\3\2\2\2\u0135\u0659\3\2"+ + "\2\2\u0137\u065f\3\2\2\2\u0139\u0661\3\2\2\2\u013b\u0665\3\2\2\2\u013d"+ + "\u066b\3\2\2\2\u013f\u066e\3\2\2\2\u0141\u0672\3\2\2\2\u0143\u0678\3\2"+ + "\2\2\u0145\u067d\3\2\2\2\u0147\u0681\3\2\2\2\u0149\u0684\3\2\2\2\u014b"+ + "\u0688\3\2\2\2\u014d\u068e\3\2\2\2\u014f\u0693\3\2\2\2\u0151\u0699\3\2"+ + "\2\2\u0153\u069e\3\2\2\2\u0155\u06a3\3\2\2\2\u0157\u06ac\3\2\2\2\u0159"+ + "\u06b1\3\2\2\2\u015b\u06b6\3\2\2\2\u015d\u06bb\3\2\2\2\u015f\u06c1\3\2"+ + "\2\2\u0161\u06c5\3\2\2\2\u0163\u06c9\3\2\2\2\u0165\u06d1\3\2\2\2\u0167"+ + "\u06d9\3\2\2\2\u0169\u06dd\3\2\2\2\u016b\u06e1\3\2\2\2\u016d\u06e9\3\2"+ + "\2\2\u016f\u06ee\3\2\2\2\u0171\u06f7\3\2\2\2\u0173\u0700\3\2\2\2\u0175"+ + "\u070b\3\2\2\2\u0177\u0715\3\2\2\2\u0179\u071f\3\2\2\2\u017b\u0727\3\2"+ + "\2\2\u017d\u0731\3\2\2\2\u017f\u073b\3\2\2\2\u0181\u0743\3\2\2\2\u0183"+ + "\u0748\3\2\2\2\u0185\u0754\3\2\2\2\u0187\u075e\3\2\2\2\u0189\u076a\3\2"+ + "\2\2\u018b\u0772\3\2\2\2\u018d\u0779\3\2\2\2\u018f\u0783\3\2\2\2\u0191"+ + "\u0789\3\2\2\2\u0193\u078f\3\2\2\2\u0195\u0794\3\2\2\2\u0197\u0797\3\2"+ + "\2\2\u0199\u079d\3\2\2\2\u019b\u07a3\3\2\2\2\u019d\u07aa\3\2\2\2\u019f"+ + "\u07b4\3\2\2\2\u01a1\u07bb\3\2\2\2\u01a3\u07c2\3\2\2\2\u01a5\u07c8\3\2"+ + "\2\2\u01a7\u07cd\3\2\2\2\u01a9\u07d3\3\2\2\2\u01ab\u07da\3\2\2\2\u01ad"+ + "\u07e2\3\2\2\2\u01af\u07e7\3\2\2\2\u01b1\u07ec\3\2\2\2\u01b3\u07f3\3\2"+ + "\2\2\u01b5\u07fd\3\2\2\2\u01b7\u0804\3\2\2\2\u01b9\u080b\3\2\2\2\u01bb"+ + "\u080e\3\2\2\2\u01bd\u0814\3\2\2\2\u01bf\u0821\3\2\2\2\u01c1\u0835\3\2"+ + "\2\2\u01c3\u084c\3\2\2\2\u01c5\u085d\3\2\2\2\u01c7\u0866\3\2\2\2\u01c9"+ + "\u088a\3\2\2\2\u01cb\u0890\3\2\2\2\u01cd\u08a1\3\2\2\2\u01cf\u08af\3\2"+ + "\2\2\u01d1\u08c0\3\2\2\2\u01d3\u08db\3\2\2\2\u01d5\u08e1\3\2\2\2\u01d7"+ + "\u08f6\3\2\2\2\u01d9\u090a\3\2\2\2\u01db\u091f\3\2\2\2\u01dd\u092d\3\2"+ + "\2\2\u01df\u0937\3\2\2\2\u01e1\u093f\3\2\2\2\u01e3\u0951\3\2\2\2\u01e5"+ + "\u0969\3\2\2\2\u01e7\u0978\3\2\2\2\u01e9\u098d\3\2\2\2\u01eb\u0996\3\2"+ + "\2\2\u01ed\u09a2\3\2\2\2\u01ef\u09b0\3\2\2\2\u01f1\u09bf\3\2\2\2\u01f3"+ + "\u09d2\3\2\2\2\u01f5\u09da\3\2\2\2\u01f7\u09df\3\2\2\2\u01f9\u09eb\3\2"+ + "\2\2\u01fb\u09f0\3\2\2\2\u01fd\u0a01\3\2\2\2\u01ff\u0a06\3\2\2\2\u0201"+ + "\u0a09\3\2\2\2\u0203\u0a0b\3\2\2\2\u0205\u0a0d\3\2\2\2\u0207\u0a0f\3\2"+ + "\2\2\u0209\u0a11\3\2\2\2\u020b\u0a13\3\2\2\2\u020d\u0a15\3\2\2\2\u020f"+ + "\u0a18\3\2\2\2\u0211\u0a21\3\2\2\2\u0213\u0a31\3\2\2\2\u0215\u0a35\3\2"+ + "\2\2\u0217\u0a3f\3\2\2\2\u0219\u0a42\3\2\2\2\u021b\u0a4f\3\2\2\2\u021d"+ + "\u0a5c\3\2\2\2\u021f\u0a69\3\2\2\2\u0221\u0a6b\3\2\2\2\u0223\u0224\7U"+ + "\2\2\u0224\u0225\7G\2\2\u0225\u0226\7C\2\2\u0226\u0227\7T\2\2\u0227\u0228"+ + "\7E\2\2\u0228\u0229\7J\2\2\u0229\4\3\2\2\2\u022a\u022b\7H\2\2\u022b\u022c"+ + "\7T\2\2\u022c\u022d\7Q\2\2\u022d\u022e\7O\2\2\u022e\6\3\2\2\2\u022f\u0230"+ + "\7Y\2\2\u0230\u0231\7J\2\2\u0231\u0232\7G\2\2\u0232\u0233\7T\2\2\u0233"+ + "\u0234\7G\2\2\u0234\b\3\2\2\2\u0235\u0236\7H\2\2\u0236\u0237\7K\2\2\u0237"+ + "\u0238\7G\2\2\u0238\u0239\7N\2\2\u0239\u023a\7F\2\2\u023a\u023b\7U\2\2"+ + "\u023b\n\3\2\2\2\u023c\u023d\7T\2\2\u023d\u023e\7G\2\2\u023e\u023f\7P"+ + "\2\2\u023f\u0240\7C\2\2\u0240\u0241\7O\2\2\u0241\u0242\7G\2\2\u0242\f"+ + "\3\2\2\2\u0243\u0244\7U\2\2\u0244\u0245\7V\2\2\u0245\u0246\7C\2\2\u0246"+ + "\u0247\7V\2\2\u0247\u0248\7U\2\2\u0248\16\3\2\2\2\u0249\u024a\7F\2\2\u024a"+ + "\u024b\7G\2\2\u024b\u024c\7F\2\2\u024c\u024d\7W\2\2\u024d\u024e\7R\2\2"+ + "\u024e\20\3\2\2\2\u024f\u0250\7U\2\2\u0250\u0251\7Q\2\2\u0251\u0252\7"+ + "T\2\2\u0252\u0253\7V\2\2\u0253\22\3\2\2\2\u0254\u0255\7G\2\2\u0255\u0256"+ + "\7X\2\2\u0256\u0257\7C\2\2\u0257\u0258\7N\2\2\u0258\24\3\2\2\2\u0259\u025a"+ + "\7J\2\2\u025a\u025b\7G\2\2\u025b\u025c\7C\2\2\u025c\u025d\7F\2\2\u025d"+ + "\26\3\2\2\2\u025e\u025f\7V\2\2\u025f\u0260\7Q\2\2\u0260\u0261\7R\2\2\u0261"+ + "\30\3\2\2\2\u0262\u0263\7T\2\2\u0263\u0264\7C\2\2\u0264\u0265\7T\2\2\u0265"+ + "\u0266\7G\2\2\u0266\32\3\2\2\2\u0267\u0268\7R\2\2\u0268\u0269\7C\2\2\u0269"+ + "\u026a\7T\2\2\u026a\u026b\7U\2\2\u026b\u026c\7G\2\2\u026c\34\3\2\2\2\u026d"+ + "\u026e\7M\2\2\u026e\u026f\7O\2\2\u026f\u0270\7G\2\2\u0270\u0271\7C\2\2"+ + "\u0271\u0272\7P\2\2\u0272\u0273\7U\2\2\u0273\36\3\2\2\2\u0274\u0275\7"+ + "C\2\2\u0275\u0276\7F\2\2\u0276 \3\2\2\2\u0277\u0278\7C\2\2\u0278\u0279"+ + "\7U\2\2\u0279\"\3\2\2\2\u027a\u027b\7D\2\2\u027b\u027c\7[\2\2\u027c$\3"+ + "\2\2\2\u027d\u027e\7U\2\2\u027e\u027f\7Q\2\2\u027f\u0280\7W\2\2\u0280"+ + "\u0281\7T\2\2\u0281\u0282\7E\2\2\u0282\u0283\7G\2\2\u0283&\3\2\2\2\u0284"+ + "\u0285\7K\2\2\u0285\u0286\7P\2\2\u0286\u0287\7F\2\2\u0287\u0288\7G\2\2"+ + "\u0288\u0289\7Z\2\2\u0289(\3\2\2\2\u028a\u028b\7F\2\2\u028b*\3\2\2\2\u028c"+ + "\u028d\7F\2\2\u028d\u028e\7G\2\2\u028e\u028f\7U\2\2\u028f\u0290\7E\2\2"+ + "\u0290,\3\2\2\2\u0291\u0292\7U\2\2\u0292\u0293\7Q\2\2\u0293\u0294\7T\2"+ + "\2\u0294\u0295\7V\2\2\u0295\u0296\7D\2\2\u0296\u0297\7[\2\2\u0297.\3\2"+ + "\2\2\u0298\u0299\7C\2\2\u0299\u029a\7W\2\2\u029a\u029b\7V\2\2\u029b\u029c"+ + "\7Q\2\2\u029c\60\3\2\2\2\u029d\u029e\7U\2\2\u029e\u029f\7V\2\2\u029f\u02a0"+ + "\7T\2\2\u02a0\62\3\2\2\2\u02a1\u02a2\7K\2\2\u02a2\u02a3\7R\2\2\u02a3\64"+ + "\3\2\2\2\u02a4\u02a5\7P\2\2\u02a5\u02a6\7W\2\2\u02a6\u02a7\7O\2\2\u02a7"+ + "\66\3\2\2\2\u02a8\u02a9\7M\2\2\u02a9\u02aa\7G\2\2\u02aa\u02ab\7G\2\2\u02ab"+ + "\u02ac\7R\2\2\u02ac\u02ad\7G\2\2\u02ad\u02ae\7O\2\2\u02ae\u02af\7R\2\2"+ + "\u02af\u02b0\7V\2\2\u02b0\u02b1\7[\2\2\u02b18\3\2\2\2\u02b2\u02b3\7E\2"+ + "\2\u02b3\u02b4\7Q\2\2\u02b4\u02b5\7P\2\2\u02b5\u02b6\7U\2\2\u02b6\u02b7"+ + "\7G\2\2\u02b7\u02b8\7E\2\2\u02b8\u02b9\7W\2\2\u02b9\u02ba\7V\2\2\u02ba"+ + "\u02bb\7K\2\2\u02bb\u02bc\7X\2\2\u02bc\u02bd\7G\2\2\u02bd:\3\2\2\2\u02be"+ + "\u02bf\7F\2\2\u02bf\u02c0\7G\2\2\u02c0\u02c1\7F\2\2\u02c1\u02c2\7W\2\2"+ + "\u02c2\u02c3\7R\2\2\u02c3\u02c4\7a\2\2\u02c4\u02c5\7U\2\2\u02c5\u02c6"+ + "\7R\2\2\u02c6\u02c7\7N\2\2\u02c7\u02c8\7K\2\2\u02c8\u02c9\7V\2\2\u02c9"+ + "\u02ca\7X\2\2\u02ca\u02cb\7C\2\2\u02cb\u02cc\7N\2\2\u02cc\u02cd\7W\2\2"+ + "\u02cd\u02ce\7G\2\2\u02ce\u02cf\7U\2\2\u02cf<\3\2\2\2\u02d0\u02d1\7R\2"+ + "\2\u02d1\u02d2\7C\2\2\u02d2\u02d3\7T\2\2\u02d3\u02d4\7V\2\2\u02d4\u02d5"+ + "\7K\2\2\u02d5\u02d6\7V\2\2\u02d6\u02d7\7K\2\2\u02d7\u02d8\7Q\2\2\u02d8"+ + "\u02d9\7P\2\2\u02d9\u02da\7U\2\2\u02da>\3\2\2\2\u02db\u02dc\7C\2\2\u02dc"+ + "\u02dd\7N\2\2\u02dd\u02de\7N\2\2\u02de\u02df\7P\2\2\u02df\u02e0\7W\2\2"+ + "\u02e0\u02e1\7O\2\2\u02e1@\3\2\2\2\u02e2\u02e3\7F\2\2\u02e3\u02e4\7G\2"+ + "\2\u02e4\u02e5\7N\2\2\u02e5\u02e6\7K\2\2\u02e6\u02e7\7O\2\2\u02e7B\3\2"+ + "\2\2\u02e8\u02e9\7E\2\2\u02e9\u02ea\7G\2\2\u02ea\u02eb\7P\2\2\u02eb\u02ec"+ + "\7V\2\2\u02ec\u02ed\7T\2\2\u02ed\u02ee\7Q\2\2\u02ee\u02ef\7K\2\2\u02ef"+ + "\u02f0\7F\2\2\u02f0\u02f1\7U\2\2\u02f1D\3\2\2\2\u02f2\u02f3\7K\2\2\u02f3"+ + "\u02f4\7V\2\2\u02f4\u02f5\7G\2\2\u02f5\u02f6\7T\2\2\u02f6\u02f7\7C\2\2"+ + "\u02f7\u02f8\7V\2\2\u02f8\u02f9\7K\2\2\u02f9\u02fa\7Q\2\2\u02fa\u02fb"+ + "\7P\2\2\u02fb\u02fc\7U\2\2\u02fcF\3\2\2\2\u02fd\u02fe\7F\2\2\u02fe\u02ff"+ + "\7K\2\2\u02ff\u0300\7U\2\2\u0300\u0301\7V\2\2\u0301\u0302\7C\2\2\u0302"+ + "\u0303\7P\2\2\u0303\u0304\7E\2\2\u0304\u0305\7G\2\2\u0305\u0306\7a\2\2"+ + "\u0306\u0307\7V\2\2\u0307\u0308\7[\2\2\u0308\u0309\7R\2\2\u0309\u030a"+ + "\7G\2\2\u030aH\3\2\2\2\u030b\u030c\7P\2\2\u030c\u030d\7W\2\2\u030d\u030e"+ + "\7O\2\2\u030e\u030f\7D\2\2\u030f\u0310\7G\2\2\u0310\u0311\7T\2\2\u0311"+ + "\u0312\7a\2\2\u0312\u0313\7Q\2\2\u0313\u0314\7H\2\2\u0314\u0315\7a\2\2"+ + "\u0315\u0316\7V\2\2\u0316\u0317\7T\2\2\u0317\u0318\7G\2\2\u0318\u0319"+ + "\7G\2\2\u0319\u031a\7U\2\2\u031aJ\3\2\2\2\u031b\u031c\7U\2\2\u031c\u031d"+ + "\7J\2\2\u031d\u031e\7K\2\2\u031e\u031f\7P\2\2\u031f\u0320\7I\2\2\u0320"+ + "\u0321\7N\2\2\u0321\u0322\7G\2\2\u0322\u0323\7a\2\2\u0323\u0324\7U\2\2"+ + "\u0324\u0325\7K\2\2\u0325\u0326\7\\\2\2\u0326\u0327\7G\2\2\u0327L\3\2"+ + "\2\2\u0328\u0329\7U\2\2\u0329\u032a\7C\2\2\u032a\u032b\7O\2\2\u032b\u032c"+ + "\7R\2\2\u032c\u032d\7N\2\2\u032d\u032e\7G\2\2\u032e\u032f\7a\2\2\u032f"+ + "\u0330\7U\2\2\u0330\u0331\7K\2\2\u0331\u0332\7\\\2\2\u0332\u0333\7G\2"+ + "\2\u0333N\3\2\2\2\u0334\u0335\7Q\2\2\u0335\u0336\7W\2\2\u0336\u0337\7"+ + "V\2\2\u0337\u0338\7R\2\2\u0338\u0339\7W\2\2\u0339\u033a\7V\2\2\u033a\u033b"+ + "\7a\2\2\u033b\u033c\7C\2\2\u033c\u033d\7H\2\2\u033d\u033e\7V\2\2\u033e"+ + "\u033f\7G\2\2\u033f\u0340\7T\2\2\u0340P\3\2\2\2\u0341\u0342\7V\2\2\u0342"+ + "\u0343\7K\2\2\u0343\u0344\7O\2\2\u0344\u0345\7G\2\2\u0345\u0346\7a\2\2"+ + "\u0346\u0347\7F\2\2\u0347\u0348\7G\2\2\u0348\u0349\7E\2\2\u0349\u034a"+ + "\7C\2\2\u034a\u034b\7[\2\2\u034bR\3\2\2\2\u034c\u034d\7C\2\2\u034d\u034e"+ + "\7P\2\2\u034e\u034f\7Q\2\2\u034f\u0350\7O\2\2\u0350\u0351\7C\2\2\u0351"+ + "\u0352\7N\2\2\u0352\u0353\7[\2\2\u0353\u0354\7a\2\2\u0354\u0355\7T\2\2"+ + "\u0355\u0356\7C\2\2\u0356\u0357\7V\2\2\u0357\u0358\7G\2\2\u0358T\3\2\2"+ + "\2\u0359\u035a\7V\2\2\u035a\u035b\7K\2\2\u035b\u035c\7O\2\2\u035c\u035d"+ + "\7G\2\2\u035d\u035e\7a\2\2\u035e\u035f\7H\2\2\u035f\u0360\7K\2\2\u0360"+ + "\u0361\7G\2\2\u0361\u0362\7N\2\2\u0362\u0363\7F\2\2\u0363V\3\2\2\2\u0364"+ + "\u0365\7V\2\2\u0365\u0366\7K\2\2\u0366\u0367\7O\2\2\u0367\u0368\7G\2\2"+ + "\u0368\u0369\7a\2\2\u0369\u036a\7\\\2\2\u036a\u036b\7Q\2\2\u036b\u036c"+ + "\7P\2\2\u036c\u036d\7G\2\2\u036dX\3\2\2\2\u036e\u036f\7V\2\2\u036f\u0370"+ + "\7T\2\2\u0370\u0371\7C\2\2\u0371\u0372\7K\2\2\u0372\u0373\7P\2\2\u0373"+ + "\u0374\7K\2\2\u0374\u0375\7P\2\2\u0375\u0376\7I\2\2\u0376\u0377\7a\2\2"+ + "\u0377\u0378\7F\2\2\u0378\u0379\7C\2\2\u0379\u037a\7V\2\2\u037a\u037b"+ + "\7C\2\2\u037b\u037c\7a\2\2\u037c\u037d\7U\2\2\u037d\u037e\7K\2\2\u037e"+ + "\u037f\7\\\2\2\u037f\u0380\7G\2\2\u0380Z\3\2\2\2\u0381\u0382\7C\2\2\u0382"+ + "\u0383\7P\2\2\u0383\u0384\7Q\2\2\u0384\u0385\7O\2\2\u0385\u0386\7C\2\2"+ + "\u0386\u0387\7N\2\2\u0387\u0388\7[\2\2\u0388\u0389\7a\2\2\u0389\u038a"+ + "\7U\2\2\u038a\u038b\7E\2\2\u038b\u038c\7Q\2\2\u038c\u038d\7T\2\2\u038d"+ + "\u038e\7G\2\2\u038e\u038f\7a\2\2\u038f\u0390\7V\2\2\u0390\u0391\7J\2\2"+ + "\u0391\u0392\7T\2\2\u0392\u0393\7G\2\2\u0393\u0394\7U\2\2\u0394\u0395"+ + "\7J\2\2\u0395\u0396\7Q\2\2\u0396\u0397\7N\2\2\u0397\u0398\7F\2\2\u0398"+ + "\\\3\2\2\2\u0399\u039a\7E\2\2\u039a\u039b\7C\2\2\u039b\u039c\7U\2\2\u039c"+ + "\u039d\7G\2\2\u039d^\3\2\2\2\u039e\u039f\7K\2\2\u039f\u03a0\7P\2\2\u03a0"+ + "`\3\2\2\2\u03a1\u03a2\7P\2\2\u03a2\u03a3\7Q\2\2\u03a3\u03a4\7V\2\2\u03a4"+ + "b\3\2\2\2\u03a5\u03a6\7Q\2\2\u03a6\u03a7\7T\2\2\u03a7d\3\2\2\2\u03a8\u03a9"+ + "\7C\2\2\u03a9\u03aa\7P\2\2\u03aa\u03ab\7F\2\2\u03abf\3\2\2\2\u03ac\u03ad"+ + "\7Z\2\2\u03ad\u03ae\7Q\2\2\u03ae\u03af\7T\2\2\u03afh\3\2\2\2\u03b0\u03b1"+ + "\7V\2\2\u03b1\u03b2\7T\2\2\u03b2\u03b3\7W\2\2\u03b3\u03b4\7G\2\2\u03b4"+ + "j\3\2\2\2\u03b5\u03b6\7H\2\2\u03b6\u03b7\7C\2\2\u03b7\u03b8\7N\2\2\u03b8"+ + "\u03b9\7U\2\2\u03b9\u03ba\7G\2\2\u03bal\3\2\2\2\u03bb\u03bc\7T\2\2\u03bc"+ + "\u03bd\7G\2\2\u03bd\u03be\7I\2\2\u03be\u03bf\7G\2\2\u03bf\u03c0\7Z\2\2"+ + "\u03c0\u03c1\7R\2\2\u03c1n\3\2\2\2\u03c2\u03c3\7F\2\2\u03c3\u03c4\7C\2"+ + "\2\u03c4\u03c5\7V\2\2\u03c5\u03c6\7G\2\2\u03c6\u03c7\7V\2\2\u03c7\u03c8"+ + "\7K\2\2\u03c8\u03c9\7O\2\2\u03c9\u03ca\7G\2\2\u03cap\3\2\2\2\u03cb\u03cc"+ + "\7K\2\2\u03cc\u03cd\7P\2\2\u03cd\u03ce\7V\2\2\u03ce\u03cf\7G\2\2\u03cf"+ + "\u03d0\7T\2\2\u03d0\u03d1\7X\2\2\u03d1\u03d2\7C\2\2\u03d2\u03d3\7N\2\2"+ + "\u03d3r\3\2\2\2\u03d4\u03d5\7O\2\2\u03d5\u03d6\7K\2\2\u03d6\u03d7\7E\2"+ + "\2\u03d7\u03d8\7T\2\2\u03d8\u03d9\7Q\2\2\u03d9\u03da\7U\2\2\u03da\u03db"+ + "\7G\2\2\u03db\u03dc\7E\2\2\u03dc\u03dd\7Q\2\2\u03dd\u03de\7P\2\2\u03de"+ + "\u03df\7F\2\2\u03dft\3\2\2\2\u03e0\u03e1\7O\2\2\u03e1\u03e2\7K\2\2\u03e2"+ + "\u03e3\7N\2\2\u03e3\u03e4\7N\2\2\u03e4\u03e5\7K\2\2\u03e5\u03e6\7U\2\2"+ + "\u03e6\u03e7\7G\2\2\u03e7\u03e8\7E\2\2\u03e8\u03e9\7Q\2\2\u03e9\u03ea"+ + "\7P\2\2\u03ea\u03eb\7F\2\2\u03ebv\3\2\2\2\u03ec\u03ed\7U\2\2\u03ed\u03ee"+ + "\7G\2\2\u03ee\u03ef\7E\2\2\u03ef\u03f0\7Q\2\2\u03f0\u03f1\7P\2\2\u03f1"+ + "\u03f2\7F\2\2\u03f2x\3\2\2\2\u03f3\u03f4\7O\2\2\u03f4\u03f5\7K\2\2\u03f5"+ + "\u03f6\7P\2\2\u03f6\u03f7\7W\2\2\u03f7\u03f8\7V\2\2\u03f8\u03f9\7G\2\2"+ + "\u03f9z\3\2\2\2\u03fa\u03fb\7J\2\2\u03fb\u03fc\7Q\2\2\u03fc\u03fd\7W\2"+ + "\2\u03fd\u03fe\7T\2\2\u03fe|\3\2\2\2\u03ff\u0400\7F\2\2\u0400\u0401\7"+ + "C\2\2\u0401\u0402\7[\2\2\u0402~\3\2\2\2\u0403\u0404\7Y\2\2\u0404\u0405"+ + "\7G\2\2\u0405\u0406\7G\2\2\u0406\u0407\7M\2\2\u0407\u0080\3\2\2\2\u0408"+ + "\u0409\7O\2\2\u0409\u040a\7Q\2\2\u040a\u040b\7P\2\2\u040b\u040c\7V\2\2"+ + "\u040c\u040d\7J\2\2\u040d\u0082\3\2\2\2\u040e\u040f\7S\2\2\u040f\u0410"+ + "\7W\2\2\u0410\u0411\7C\2\2\u0411\u0412\7T\2\2\u0412\u0413\7V\2\2\u0413"+ + "\u0414\7G\2\2\u0414\u0415\7T\2\2\u0415\u0084\3\2\2\2\u0416\u0417\7[\2"+ + "\2\u0417\u0418\7G\2\2\u0418\u0419\7C\2\2\u0419\u041a\7T\2\2\u041a\u0086"+ + "\3\2\2\2\u041b\u041c\7U\2\2\u041c\u041d\7G\2\2\u041d\u041e\7E\2\2\u041e"+ + "\u041f\7Q\2\2\u041f\u0420\7P\2\2\u0420\u0421\7F\2\2\u0421\u0422\7a\2\2"+ + "\u0422\u0423\7O\2\2\u0423\u0424\7K\2\2\u0424\u0425\7E\2\2\u0425\u0426"+ + "\7T\2\2\u0426\u0427\7Q\2\2\u0427\u0428\7U\2\2\u0428\u0429\7G\2\2\u0429"+ + "\u042a\7E\2\2\u042a\u042b\7Q\2\2\u042b\u042c\7P\2\2\u042c\u042d\7F\2\2"+ + "\u042d\u0088\3\2\2\2\u042e\u042f\7O\2\2\u042f\u0430\7K\2\2\u0430\u0431"+ + "\7P\2\2\u0431\u0432\7W\2\2\u0432\u0433\7V\2\2\u0433\u0434\7G\2\2\u0434"+ + "\u0435\7a\2\2\u0435\u0436\7O\2\2\u0436\u0437\7K\2\2\u0437\u0438\7E\2\2"+ + "\u0438\u0439\7T\2\2\u0439\u043a\7Q\2\2\u043a\u043b\7U\2\2\u043b\u043c"+ + "\7G\2\2\u043c\u043d\7E\2\2\u043d\u043e\7Q\2\2\u043e\u043f\7P\2\2\u043f"+ + "\u0440\7F\2\2\u0440\u008a\3\2\2\2\u0441\u0442\7O\2\2\u0442\u0443\7K\2"+ + "\2\u0443\u0444\7P\2\2\u0444\u0445\7W\2\2\u0445\u0446\7V\2\2\u0446\u0447"+ + "\7G\2\2\u0447\u0448\7a\2\2\u0448\u0449\7U\2\2\u0449\u044a\7G\2\2\u044a"+ + "\u044b\7E\2\2\u044b\u044c\7Q\2\2\u044c\u044d\7P\2\2\u044d\u044e\7F\2\2"+ + "\u044e\u008c\3\2\2\2\u044f\u0450\7J\2\2\u0450\u0451\7Q\2\2\u0451\u0452"+ + "\7W\2\2\u0452\u0453\7T\2\2\u0453\u0454\7a\2\2\u0454\u0455\7O\2\2\u0455"+ + "\u0456\7K\2\2\u0456\u0457\7E\2\2\u0457\u0458\7T\2\2\u0458\u0459\7Q\2\2"+ + "\u0459\u045a\7U\2\2\u045a\u045b\7G\2\2\u045b\u045c\7E\2\2\u045c\u045d"+ + "\7Q\2\2\u045d\u045e\7P\2\2\u045e\u045f\7F\2\2\u045f\u008e\3\2\2\2\u0460"+ + "\u0461\7J\2\2\u0461\u0462\7Q\2\2\u0462\u0463\7W\2\2\u0463\u0464\7T\2\2"+ + "\u0464\u0465\7a\2\2\u0465\u0466\7U\2\2\u0466\u0467\7G\2\2\u0467\u0468"+ + "\7E\2\2\u0468\u0469\7Q\2\2\u0469\u046a\7P\2\2\u046a\u046b\7F\2\2\u046b"+ + "\u0090\3\2\2\2\u046c\u046d\7J\2\2\u046d\u046e\7Q\2\2\u046e\u046f\7W\2"+ + "\2\u046f\u0470\7T\2\2\u0470\u0471\7a\2\2\u0471\u0472\7O\2\2\u0472\u0473"+ + "\7K\2\2\u0473\u0474\7P\2\2\u0474\u0475\7W\2\2\u0475\u0476\7V\2\2\u0476"+ + "\u0477\7G\2\2\u0477\u0092\3\2\2\2\u0478\u0479\7F\2\2\u0479\u047a\7C\2"+ + "\2\u047a\u047b\7[\2\2\u047b\u047c\7a\2\2\u047c\u047d\7O\2\2\u047d\u047e"+ + "\7K\2\2\u047e\u047f\7E\2\2\u047f\u0480\7T\2\2\u0480\u0481\7Q\2\2\u0481"+ + "\u0482\7U\2\2\u0482\u0483\7G\2\2\u0483\u0484\7E\2\2\u0484\u0485\7Q\2\2"+ + "\u0485\u0486\7P\2\2\u0486\u0487\7F\2\2\u0487\u0094\3\2\2\2\u0488\u0489"+ + "\7F\2\2\u0489\u048a\7C\2\2\u048a\u048b\7[\2\2\u048b\u048c\7a\2\2\u048c"+ + "\u048d\7U\2\2\u048d\u048e\7G\2\2\u048e\u048f\7E\2\2\u048f\u0490\7Q\2\2"+ + "\u0490\u0491\7P\2\2\u0491\u0492\7F\2\2\u0492\u0096\3\2\2\2\u0493\u0494"+ + "\7F\2\2\u0494\u0495\7C\2\2\u0495\u0496\7[\2\2\u0496\u0497\7a\2\2\u0497"+ + "\u0498\7O\2\2\u0498\u0499\7K\2\2\u0499\u049a\7P\2\2\u049a\u049b\7W\2\2"+ + "\u049b\u049c\7V\2\2\u049c\u049d\7G\2\2\u049d\u0098\3\2\2\2\u049e\u049f"+ + "\7F\2\2\u049f\u04a0\7C\2\2\u04a0\u04a1\7[\2\2\u04a1\u04a2\7a\2\2\u04a2"+ + "\u04a3\7J\2\2\u04a3\u04a4\7Q\2\2\u04a4\u04a5\7W\2\2\u04a5\u04a6\7T\2\2"+ + "\u04a6\u009a\3\2\2\2\u04a7\u04a8\7[\2\2\u04a8\u04a9\7G\2\2\u04a9\u04aa"+ + "\7C\2\2\u04aa\u04ab\7T\2\2\u04ab\u04ac\7a\2\2\u04ac\u04ad\7O\2\2\u04ad"+ + "\u04ae\7Q\2\2\u04ae\u04af\7P\2\2\u04af\u04b0\7V\2\2\u04b0\u04b1\7J\2\2"+ + "\u04b1\u009c\3\2\2\2\u04b2\u04b3\7F\2\2\u04b3\u04b4\7C\2\2\u04b4\u04b5"+ + "\7V\2\2\u04b5\u04b6\7C\2\2\u04b6\u04b7\7O\2\2\u04b7\u04b8\7Q\2\2\u04b8"+ + "\u04b9\7F\2\2\u04b9\u04ba\7G\2\2\u04ba\u04bb\7N\2\2\u04bb\u009e\3\2\2"+ + "\2\u04bc\u04bd\7N\2\2\u04bd\u04be\7Q\2\2\u04be\u04bf\7Q\2\2\u04bf\u04c0"+ + "\7M\2\2\u04c0\u04c1\7W\2\2\u04c1\u04c2\7R\2\2\u04c2\u00a0\3\2\2\2\u04c3"+ + "\u04c4\7U\2\2\u04c4\u04c5\7C\2\2\u04c5\u04c6\7X\2\2\u04c6\u04c7\7G\2\2"+ + "\u04c7\u04c8\7F\2\2\u04c8\u04c9\7U\2\2\u04c9\u04ca\7G\2\2\u04ca\u04cb"+ + "\7C\2\2\u04cb\u04cc\7T\2\2\u04cc\u04cd\7E\2\2\u04cd\u04ce\7J\2\2\u04ce"+ + "\u00a2\3\2\2\2\u04cf\u04d0\7K\2\2\u04d0\u04d1\7P\2\2\u04d1\u04d2\7V\2"+ + "\2\u04d2\u00a4\3\2\2\2\u04d3\u04d4\7K\2\2\u04d4\u04d5\7P\2\2\u04d5\u04d6"+ + "\7V\2\2\u04d6\u04d7\7G\2\2\u04d7\u04d8\7I\2\2\u04d8\u04d9\7G\2\2\u04d9"+ + "\u04da\7T\2\2\u04da\u00a6\3\2\2\2\u04db\u04dc\7F\2\2\u04dc\u04dd\7Q\2"+ + "\2\u04dd\u04de\7W\2\2\u04de\u04df\7D\2\2\u04df\u04e0\7N\2\2\u04e0\u04e1"+ + "\7G\2\2\u04e1\u00a8\3\2\2\2\u04e2\u04e3\7N\2\2\u04e3\u04e4\7Q\2\2\u04e4"+ + "\u04e5\7P\2\2\u04e5\u04e6\7I\2\2\u04e6\u00aa\3\2\2\2\u04e7\u04e8\7H\2"+ + "\2\u04e8\u04e9\7N\2\2\u04e9\u04ea\7Q\2\2\u04ea\u04eb\7C\2\2\u04eb\u04ec"+ + "\7V\2\2\u04ec\u00ac\3\2\2\2\u04ed\u04ee\7U\2\2\u04ee\u04ef\7V\2\2\u04ef"+ + "\u04f0\7T\2\2\u04f0\u04f1\7K\2\2\u04f1\u04f2\7P\2\2\u04f2\u04f3\7I\2\2"+ + "\u04f3\u00ae\3\2\2\2\u04f4\u04f5\7D\2\2\u04f5\u04f6\7Q\2\2\u04f6\u04f7"+ + "\7Q\2\2\u04f7\u04f8\7N\2\2\u04f8\u04f9\7G\2\2\u04f9\u04fa\7C\2\2\u04fa"+ + "\u04fb\7P\2\2\u04fb\u00b0\3\2\2\2\u04fc\u04fd\7~\2\2\u04fd\u00b2\3\2\2"+ + "\2\u04fe\u04ff\7.\2\2\u04ff\u00b4\3\2\2\2\u0500\u0501\7\60\2\2\u0501\u00b6"+ + "\3\2\2\2\u0502\u0503\7?\2\2\u0503\u00b8\3\2\2\2\u0504\u0505\7@\2\2\u0505"+ + "\u00ba\3\2\2\2\u0506\u0507\7>\2\2\u0507\u00bc\3\2\2\2\u0508\u0509\7>\2"+ + "\2\u0509\u050a\7?\2\2\u050a\u00be\3\2\2\2\u050b\u050c\7@\2\2\u050c\u050d"+ + "\7?\2\2\u050d\u00c0\3\2\2\2\u050e\u050f\7#\2\2\u050f\u0510\7?\2\2\u0510"+ + "\u00c2\3\2\2\2\u0511\u0512\7-\2\2\u0512\u00c4\3\2\2\2\u0513\u0514\7/\2"+ + "\2\u0514\u00c6\3\2\2\2\u0515\u0516\7,\2\2\u0516\u00c8\3\2\2\2\u0517\u0518"+ + "\7\61\2\2\u0518\u00ca\3\2\2\2\u0519\u051a\7\'\2\2\u051a\u00cc\3\2\2\2"+ + "\u051b\u051c\7#\2\2\u051c\u00ce\3\2\2\2\u051d\u051e\7<\2\2\u051e\u00d0"+ + "\3\2\2\2\u051f\u0520\7*\2\2\u0520\u00d2\3\2\2\2\u0521\u0522\7+\2\2\u0522"+ + "\u00d4\3\2\2\2\u0523\u0524\7]\2\2\u0524\u00d6\3\2\2\2\u0525\u0526\7_\2"+ + "\2\u0526\u00d8\3\2\2\2\u0527\u0528\7)\2\2\u0528\u00da\3\2\2\2\u0529\u052a"+ + "\7$\2\2\u052a\u00dc\3\2\2\2\u052b\u052c\7b\2\2\u052c\u00de\3\2\2\2\u052d"+ + "\u052e\7\u0080\2\2\u052e\u00e0\3\2\2\2\u052f\u0530\7(\2\2\u0530\u00e2"+ + "\3\2\2\2\u0531\u0532\7`\2\2\u0532\u00e4\3\2\2\2\u0533\u0534\7C\2\2\u0534"+ + "\u0535\7X\2\2\u0535\u0536\7I\2\2\u0536\u00e6\3\2\2\2\u0537\u0538\7E\2"+ + "\2\u0538\u0539\7Q\2\2\u0539\u053a\7W\2\2\u053a\u053b\7P\2\2\u053b\u053c"+ + "\7V\2\2\u053c\u00e8\3\2\2\2\u053d\u053e\7F\2\2\u053e\u053f\7K\2\2\u053f"+ + "\u0540\7U\2\2\u0540\u0541\7V\2\2\u0541\u0542\7K\2\2\u0542\u0543\7P\2\2"+ + "\u0543\u0544\7E\2\2\u0544\u0545\7V\2\2\u0545\u0546\7a\2\2\u0546\u0547"+ + "\7E\2\2\u0547\u0548\7Q\2\2\u0548\u0549\7W\2\2\u0549\u054a\7P\2\2\u054a"+ + "\u054b\7V\2\2\u054b\u00ea\3\2\2\2\u054c\u054d\7G\2\2\u054d\u054e\7U\2"+ + "\2\u054e\u054f\7V\2\2\u054f\u0550\7F\2\2\u0550\u0551\7E\2\2\u0551\u00ec"+ + "\3\2\2\2\u0552\u0553\7G\2\2\u0553\u0554\7U\2\2\u0554\u0555\7V\2\2\u0555"+ + "\u0556\7F\2\2\u0556\u0557\7E\2\2\u0557\u0558\7a\2\2\u0558\u0559\7G\2\2"+ + "\u0559\u055a\7T\2\2\u055a\u055b\7T\2\2\u055b\u055c\7Q\2\2\u055c\u055d"+ + "\7T\2\2\u055d\u00ee\3\2\2\2\u055e\u055f\7O\2\2\u055f\u0560\7C\2\2\u0560"+ + "\u0561\7Z\2\2\u0561\u00f0\3\2\2\2\u0562\u0563\7O\2\2\u0563\u0564\7G\2"+ + "\2\u0564\u0565\7C\2\2\u0565\u0566\7P\2\2\u0566\u00f2\3\2\2\2\u0567\u0568"+ + "\7O\2\2\u0568\u0569\7G\2\2\u0569\u056a\7F\2\2\u056a\u056b\7K\2\2\u056b"+ + "\u056c\7C\2\2\u056c\u056d\7P\2\2\u056d\u00f4\3\2\2\2\u056e\u056f\7O\2"+ + "\2\u056f\u0570\7K\2\2\u0570\u0571\7P\2\2\u0571\u00f6\3\2\2\2\u0572\u0573"+ + "\7O\2\2\u0573\u0574\7Q\2\2\u0574\u0575\7F\2\2\u0575\u0576\7G\2\2\u0576"+ + "\u00f8\3\2\2\2\u0577\u0578\7T\2\2\u0578\u0579\7C\2\2\u0579\u057a\7P\2"+ + "\2\u057a\u057b\7I\2\2\u057b\u057c\7G\2\2\u057c\u00fa\3\2\2\2\u057d\u057e"+ + "\7U\2\2\u057e\u057f\7V\2\2\u057f\u0580\7F\2\2\u0580\u0581\7G\2\2\u0581"+ + "\u0582\7X\2\2\u0582\u00fc\3\2\2\2\u0583\u0584\7U\2\2\u0584\u0585\7V\2"+ + "\2\u0585\u0586\7F\2\2\u0586\u0587\7G\2\2\u0587\u0588\7X\2\2\u0588\u0589"+ + "\7R\2\2\u0589\u00fe\3\2\2\2\u058a\u058b\7U\2\2\u058b\u058c\7W\2\2\u058c"+ + "\u058d\7O\2\2\u058d\u0100\3\2\2\2\u058e\u058f\7U\2\2\u058f\u0590\7W\2"+ + "\2\u0590\u0591\7O\2\2\u0591\u0592\7U\2\2\u0592\u0593\7S\2\2\u0593\u0102"+ + "\3\2\2\2\u0594\u0595\7X\2\2\u0595\u0596\7C\2\2\u0596\u0597\7T\2\2\u0597"+ + "\u0598\7a\2\2\u0598\u0599\7U\2\2\u0599\u059a\7C\2\2\u059a\u059b\7O\2\2"+ + "\u059b\u059c\7R\2\2\u059c\u0104\3\2\2\2\u059d\u059e\7X\2\2\u059e\u059f"+ + "\7C\2\2\u059f\u05a0\7T\2\2\u05a0\u05a1\7a\2\2\u05a1\u05a2\7R\2\2\u05a2"+ + "\u05a3\7Q\2\2\u05a3\u05a4\7R\2\2\u05a4\u0106\3\2\2\2\u05a5\u05a6\7U\2"+ + "\2\u05a6\u05a7\7V\2\2\u05a7\u05a8\7F\2\2\u05a8\u05a9\7F\2\2\u05a9\u05aa"+ + "\7G\2\2\u05aa\u05ab\7X\2\2\u05ab\u05ac\7a\2\2\u05ac\u05ad\7U\2\2\u05ad"+ + "\u05ae\7C\2\2\u05ae\u05af\7O\2\2\u05af\u05b0\7R\2\2\u05b0\u0108\3\2\2"+ + "\2\u05b1\u05b2\7U\2\2\u05b2\u05b3\7V\2\2\u05b3\u05b4\7F\2\2\u05b4\u05b5"+ + "\7F\2\2\u05b5\u05b6\7G\2\2\u05b6\u05b7\7X\2\2\u05b7\u05b8\7a\2\2\u05b8"+ + "\u05b9\7R\2\2\u05b9\u05ba\7Q\2\2\u05ba\u05bb\7R\2\2\u05bb\u010a\3\2\2"+ + "\2\u05bc\u05bd\7R\2\2\u05bd\u05be\7G\2\2\u05be\u05bf\7T\2\2\u05bf\u05c0"+ + "\7E\2\2\u05c0\u05c1\7G\2\2\u05c1\u05c2\7P\2\2\u05c2\u05c3\7V\2\2\u05c3"+ + "\u05c4\7K\2\2\u05c4\u05c5\7N\2\2\u05c5\u05c6\7G\2\2\u05c6\u010c\3\2\2"+ + "\2\u05c7\u05c8\7H\2\2\u05c8\u05c9\7K\2\2\u05c9\u05ca\7T\2\2\u05ca\u05cb"+ + "\7U\2\2\u05cb\u05cc\7V\2\2\u05cc\u010e\3\2\2\2\u05cd\u05ce\7N\2\2\u05ce"+ + "\u05cf\7C\2\2\u05cf\u05d0\7U\2\2\u05d0\u05d1\7V\2\2\u05d1\u0110\3\2\2"+ + "\2\u05d2\u05d3\7N\2\2\u05d3\u05d4\7K\2\2\u05d4\u05d5\7U\2\2\u05d5\u05d6"+ + "\7V\2\2\u05d6\u0112\3\2\2\2\u05d7\u05d8\7X\2\2\u05d8\u05d9\7C\2\2\u05d9"+ + "\u05da\7N\2\2\u05da\u05db\7W\2\2\u05db\u05dc\7G\2\2\u05dc\u05dd\7U\2\2"+ + "\u05dd\u0114\3\2\2\2\u05de\u05df\7G\2\2\u05df\u05e0\7C\2\2\u05e0\u05e1"+ + "\7T\2\2\u05e1\u05e2\7N\2\2\u05e2\u05e3\7K\2\2\u05e3\u05e4\7G\2\2\u05e4"+ + "\u05e5\7U\2\2\u05e5\u05e6\7V\2\2\u05e6\u0116\3\2\2\2\u05e7\u05e8\7G\2"+ + "\2\u05e8\u05e9\7C\2\2\u05e9\u05ea\7T\2\2\u05ea\u05eb\7N\2\2\u05eb\u05ec"+ + "\7K\2\2\u05ec\u05ed\7G\2\2\u05ed\u05ee\7U\2\2\u05ee\u05ef\7V\2\2\u05ef"+ + "\u05f0\7a\2\2\u05f0\u05f1\7V\2\2\u05f1\u05f2\7K\2\2\u05f2\u05f3\7O\2\2"+ + "\u05f3\u05f4\7G\2\2\u05f4\u0118\3\2\2\2\u05f5\u05f6\7N\2\2\u05f6\u05f7"+ + "\7C\2\2\u05f7\u05f8\7V\2\2\u05f8\u05f9\7G\2\2\u05f9\u05fa\7U\2\2\u05fa"+ + "\u05fb\7V\2\2\u05fb\u011a\3\2\2\2\u05fc\u05fd\7N\2\2\u05fd\u05fe\7C\2"+ + "\2\u05fe\u05ff\7V\2\2\u05ff\u0600\7G\2\2\u0600\u0601\7U\2\2\u0601\u0602"+ + "\7V\2\2\u0602\u0603\7a\2\2\u0603\u0604\7V\2\2\u0604\u0605\7K\2\2\u0605"+ + "\u0606\7O\2\2\u0606\u0607\7G\2\2\u0607\u011c\3\2\2\2\u0608\u0609\7R\2"+ + "\2\u0609\u060a\7G\2\2\u060a\u060b\7T\2\2\u060b\u060c\7a\2\2\u060c\u060d"+ + "\7F\2\2\u060d\u060e\7C\2\2\u060e\u060f\7[\2\2\u060f\u011e\3\2\2\2\u0610"+ + "\u0611\7R\2\2\u0611\u0612\7G\2\2\u0612\u0613\7T\2\2\u0613\u0614\7a\2\2"+ + "\u0614\u0615\7J\2\2\u0615\u0616\7Q\2\2\u0616\u0617\7W\2\2\u0617\u0618"+ + "\7T\2\2\u0618\u0120\3\2\2\2\u0619\u061a\7R\2\2\u061a\u061b\7G\2\2\u061b"+ + "\u061c\7T\2\2\u061c\u061d\7a\2\2\u061d\u061e\7O\2\2\u061e\u061f\7K\2\2"+ + "\u061f\u0620\7P\2\2\u0620\u0621\7W\2\2\u0621\u0622\7V\2\2\u0622\u0623"+ + "\7G\2\2\u0623\u0122\3\2\2\2\u0624\u0625\7R\2\2\u0625\u0626\7G\2\2\u0626"+ + "\u0627\7T\2\2\u0627\u0628\7a\2\2\u0628\u0629\7U\2\2\u0629\u062a\7G\2\2"+ + "\u062a\u062b\7E\2\2\u062b\u062c\7Q\2\2\u062c\u062d\7P\2\2\u062d\u062e"+ + "\7F\2\2\u062e\u0124\3\2\2\2\u062f\u0630\7T\2\2\u0630\u0631\7C\2\2\u0631"+ + "\u0632\7V\2\2\u0632\u0633\7G\2\2\u0633\u0126\3\2\2\2\u0634\u0635\7U\2"+ + "\2\u0635\u0636\7R\2\2\u0636\u0637\7C\2\2\u0637\u0638\7T\2\2\u0638\u0639"+ + "\7M\2\2\u0639\u063a\7N\2\2\u063a\u063b\7K\2\2\u063b\u063c\7P\2\2\u063c"+ + "\u063d\7G\2\2\u063d\u0128\3\2\2\2\u063e\u063f\7E\2\2\u063f\u012a\3\2\2"+ + "\2\u0640\u0641\7F\2\2\u0641\u0642\7E\2\2\u0642\u012c\3\2\2\2\u0643\u0644"+ + "\7C\2\2\u0644\u0645\7D\2\2\u0645\u0646\7U\2\2\u0646\u012e\3\2\2\2\u0647"+ + "\u0648\7E\2\2\u0648\u0649\7G\2\2\u0649\u064a\7K\2\2\u064a\u064b\7N\2\2"+ + "\u064b\u0130\3\2\2\2\u064c\u064d\7E\2\2\u064d\u064e\7G\2\2\u064e\u064f"+ + "\7K\2\2\u064f\u0650\7N\2\2\u0650\u0651\7K\2\2\u0651\u0652\7P\2\2\u0652"+ + "\u0653\7I\2\2\u0653\u0132\3\2\2\2\u0654\u0655\7E\2\2\u0655\u0656\7Q\2"+ + "\2\u0656\u0657\7P\2\2\u0657\u0658\7X\2\2\u0658\u0134\3\2\2\2\u0659\u065a"+ + "\7E\2\2\u065a\u065b\7T\2\2\u065b\u065c\7E\2\2\u065c\u065d\7\65\2\2\u065d"+ + "\u065e\7\64\2\2\u065e\u0136\3\2\2\2\u065f\u0660\7G\2\2\u0660\u0138\3\2"+ + "\2\2\u0661\u0662\7G\2\2\u0662\u0663\7Z\2\2\u0663\u0664\7R\2\2\u0664\u013a"+ + "\3\2\2\2\u0665\u0666\7H\2\2\u0666\u0667\7N\2\2\u0667\u0668\7Q\2\2\u0668"+ + "\u0669\7Q\2\2\u0669\u066a\7T\2\2\u066a\u013c\3\2\2\2\u066b\u066c\7N\2"+ + "\2\u066c\u066d\7P\2\2\u066d\u013e\3\2\2\2\u066e\u066f\7N\2\2\u066f\u0670"+ + "\7Q\2\2\u0670\u0671\7I\2\2\u0671\u0140\3\2\2\2\u0672\u0673\7N\2\2\u0673"+ + "\u0674\7Q\2\2\u0674\u0675\7I\2\2\u0675\u0676\7\63\2\2\u0676\u0677\7\62"+ + "\2\2\u0677\u0142\3\2\2\2\u0678\u0679\7N\2\2\u0679\u067a\7Q\2\2\u067a\u067b"+ + "\7I\2\2\u067b\u067c\7\64\2\2\u067c\u0144\3\2\2\2\u067d\u067e\7O\2\2\u067e"+ + "\u067f\7Q\2\2\u067f\u0680\7F\2\2\u0680\u0146\3\2\2\2\u0681\u0682\7R\2"+ + "\2\u0682\u0683\7K\2\2\u0683\u0148\3\2\2\2\u0684\u0685\7R\2\2\u0685\u0686"+ + "\7Q\2\2\u0686\u0687\7Y\2\2\u0687\u014a\3\2\2\2\u0688\u0689\7R\2\2\u0689"+ + "\u068a\7Q\2\2\u068a\u068b\7Y\2\2\u068b\u068c\7G\2\2\u068c\u068d\7T\2\2"+ + "\u068d\u014c\3\2\2\2\u068e\u068f\7T\2\2\u068f\u0690\7C\2\2\u0690\u0691"+ + "\7P\2\2\u0691\u0692\7F\2\2\u0692\u014e\3\2\2\2\u0693\u0694\7T\2\2\u0694"+ + "\u0695\7Q\2\2\u0695\u0696\7W\2\2\u0696\u0697\7P\2\2\u0697\u0698\7F\2\2"+ + "\u0698\u0150\3\2\2\2\u0699\u069a\7U\2\2\u069a\u069b\7K\2\2\u069b\u069c"+ + "\7I\2\2\u069c\u069d\7P\2\2\u069d\u0152\3\2\2\2\u069e\u069f\7U\2\2\u069f"+ + "\u06a0\7S\2\2\u06a0\u06a1\7T\2\2\u06a1\u06a2\7V\2\2\u06a2\u0154\3\2\2"+ + "\2\u06a3\u06a4\7V\2\2\u06a4\u06a5\7T\2\2\u06a5\u06a6\7W\2\2\u06a6\u06a7"+ + "\7P\2\2\u06a7\u06a8\7E\2\2\u06a8\u06a9\7C\2\2\u06a9\u06aa\7V\2\2\u06aa"+ + "\u06ab\7G\2\2\u06ab\u0156\3\2\2\2\u06ac\u06ad\7C\2\2\u06ad\u06ae\7E\2"+ + "\2\u06ae\u06af\7Q\2\2\u06af\u06b0\7U\2\2\u06b0\u0158\3\2\2\2\u06b1\u06b2"+ + "\7C\2\2\u06b2\u06b3\7U\2\2\u06b3\u06b4\7K\2\2\u06b4\u06b5\7P\2\2\u06b5"+ + "\u015a\3\2\2\2\u06b6\u06b7\7C\2\2\u06b7\u06b8\7V\2\2\u06b8\u06b9\7C\2"+ + "\2\u06b9\u06ba\7P\2\2\u06ba\u015c\3\2\2\2\u06bb\u06bc\7C\2\2\u06bc\u06bd"+ + "\7V\2\2\u06bd\u06be\7C\2\2\u06be\u06bf\7P\2\2\u06bf\u06c0\7\64\2\2\u06c0"+ + "\u015e\3\2\2\2\u06c1\u06c2\7E\2\2\u06c2\u06c3\7Q\2\2\u06c3\u06c4\7U\2"+ + "\2\u06c4\u0160\3\2\2\2\u06c5\u06c6\7E\2\2\u06c6\u06c7\7Q\2\2\u06c7\u06c8"+ + "\7V\2\2\u06c8\u0162\3\2\2\2\u06c9\u06ca\7F\2\2\u06ca\u06cb\7G\2\2\u06cb"+ + "\u06cc\7I\2\2\u06cc\u06cd\7T\2\2\u06cd\u06ce\7G\2\2\u06ce\u06cf\7G\2\2"+ + "\u06cf\u06d0\7U\2\2\u06d0\u0164\3\2\2\2\u06d1\u06d2\7T\2\2\u06d2\u06d3"+ + "\7C\2\2\u06d3\u06d4\7F\2\2\u06d4\u06d5\7K\2\2\u06d5\u06d6\7C\2\2\u06d6"+ + "\u06d7\7P\2\2\u06d7\u06d8\7U\2\2\u06d8\u0166\3\2\2\2\u06d9\u06da\7U\2"+ + "\2\u06da\u06db\7K\2\2\u06db\u06dc\7P\2\2\u06dc\u0168\3\2\2\2\u06dd\u06de"+ + "\7V\2\2\u06de\u06df\7C\2\2\u06df\u06e0\7P\2\2\u06e0\u016a\3\2\2\2\u06e1"+ + "\u06e2\7C\2\2\u06e2\u06e3\7F\2\2\u06e3\u06e4\7F\2\2\u06e4\u06e5\7F\2\2"+ + "\u06e5\u06e6\7C\2\2\u06e6\u06e7\7V\2\2\u06e7\u06e8\7G\2\2\u06e8\u016c"+ + "\3\2\2\2\u06e9\u06ea\7F\2\2\u06ea\u06eb\7C\2\2\u06eb\u06ec\7V\2\2\u06ec"+ + "\u06ed\7G\2\2\u06ed\u016e\3\2\2\2\u06ee\u06ef\7F\2\2\u06ef\u06f0\7C\2"+ + "\2\u06f0\u06f1\7V\2\2\u06f1\u06f2\7G\2\2\u06f2\u06f3\7a\2\2\u06f3\u06f4"+ + "\7C\2\2\u06f4\u06f5\7F\2\2\u06f5\u06f6\7F\2\2\u06f6\u0170\3\2\2\2\u06f7"+ + "\u06f8\7F\2\2\u06f8\u06f9\7C\2\2\u06f9\u06fa\7V\2\2\u06fa\u06fb\7G\2\2"+ + "\u06fb\u06fc\7a\2\2\u06fc\u06fd\7U\2\2\u06fd\u06fe\7W\2\2\u06fe\u06ff"+ + "\7D\2\2\u06ff\u0172\3\2\2\2\u0700\u0701\7F\2\2\u0701\u0702\7C\2\2\u0702"+ + "\u0703\7[\2\2\u0703\u0704\7Q\2\2\u0704\u0705\7H\2\2\u0705\u0706\7O\2\2"+ + "\u0706\u0707\7Q\2\2\u0707\u0708\7P\2\2\u0708\u0709\7V\2\2\u0709\u070a"+ + "\7J\2\2\u070a\u0174\3\2\2\2\u070b\u070c\7F\2\2\u070c\u070d\7C\2\2\u070d"+ + "\u070e\7[\2\2\u070e\u070f\7Q\2\2\u070f\u0710\7H\2\2\u0710\u0711\7Y\2\2"+ + "\u0711\u0712\7G\2\2\u0712\u0713\7G\2\2\u0713\u0714\7M\2\2\u0714\u0176"+ + "\3\2\2\2\u0715\u0716\7F\2\2\u0716\u0717\7C\2\2\u0717\u0718\7[\2\2\u0718"+ + "\u0719\7Q\2\2\u0719\u071a\7H\2\2\u071a\u071b\7[\2\2\u071b\u071c\7G\2\2"+ + "\u071c\u071d\7C\2\2\u071d\u071e\7T\2\2\u071e\u0178\3\2\2\2\u071f\u0720"+ + "\7F\2\2\u0720\u0721\7C\2\2\u0721\u0722\7[\2\2\u0722\u0723\7P\2\2\u0723"+ + "\u0724\7C\2\2\u0724\u0725\7O\2\2\u0725\u0726\7G\2\2\u0726\u017a\3\2\2"+ + "\2\u0727\u0728\7H\2\2\u0728\u0729\7T\2\2\u0729\u072a\7Q\2\2\u072a\u072b"+ + "\7O\2\2\u072b\u072c\7a\2\2\u072c\u072d\7F\2\2\u072d\u072e\7C\2\2\u072e"+ + "\u072f\7[\2\2\u072f\u0730\7U\2\2\u0730\u017c\3\2\2\2\u0731\u0732\7O\2"+ + "\2\u0732\u0733\7Q\2\2\u0733\u0734\7P\2\2\u0734\u0735\7V\2\2\u0735\u0736"+ + "\7J\2\2\u0736\u0737\7P\2\2\u0737\u0738\7C\2\2\u0738\u0739\7O\2\2\u0739"+ + "\u073a\7G\2\2\u073a\u017e\3\2\2\2\u073b\u073c\7U\2\2\u073c\u073d\7W\2"+ + "\2\u073d\u073e\7D\2\2\u073e\u073f\7F\2\2\u073f\u0740\7C\2\2\u0740\u0741"+ + "\7V\2\2\u0741\u0742\7G\2\2\u0742\u0180\3\2\2\2\u0743\u0744\7V\2\2\u0744"+ + "\u0745\7K\2\2\u0745\u0746\7O\2\2\u0746\u0747\7G\2\2\u0747\u0182\3\2\2"+ + "\2\u0748\u0749\7V\2\2\u0749\u074a\7K\2\2\u074a\u074b\7O\2\2\u074b\u074c"+ + "\7G\2\2\u074c\u074d\7a\2\2\u074d\u074e\7V\2\2\u074e\u074f\7Q\2\2\u074f"+ + "\u0750\7a\2\2\u0750\u0751\7U\2\2\u0751\u0752\7G\2\2\u0752\u0753\7E\2\2"+ + "\u0753\u0184\3\2\2\2\u0754\u0755\7V\2\2\u0755\u0756\7K\2\2\u0756\u0757"+ + "\7O\2\2\u0757\u0758\7G\2\2\u0758\u0759\7U\2\2\u0759\u075a\7V\2\2\u075a"+ + "\u075b\7C\2\2\u075b\u075c\7O\2\2\u075c\u075d\7R\2\2\u075d\u0186\3\2\2"+ + "\2\u075e\u075f\7F\2\2\u075f\u0760\7C\2\2\u0760\u0761\7V\2\2\u0761\u0762"+ + "\7G\2\2\u0762\u0763\7a\2\2\u0763\u0764\7H\2\2\u0764\u0765\7Q\2\2\u0765"+ + "\u0766\7T\2\2\u0766\u0767\7O\2\2\u0767\u0768\7C\2\2\u0768\u0769\7V\2\2"+ + "\u0769\u0188\3\2\2\2\u076a\u076b\7V\2\2\u076b\u076c\7Q\2\2\u076c\u076d"+ + "\7a\2\2\u076d\u076e\7F\2\2\u076e\u076f\7C\2\2\u076f\u0770\7[\2\2\u0770"+ + "\u0771\7U\2\2\u0771\u018a\3\2\2\2\u0772\u0773\7U\2\2\u0773\u0774\7W\2"+ + "\2\u0774\u0775\7D\2\2\u0775\u0776\7U\2\2\u0776\u0777\7V\2\2\u0777\u0778"+ + "\7T\2\2\u0778\u018c\3\2\2\2\u0779\u077a\7U\2\2\u077a\u077b\7W\2\2\u077b"+ + "\u077c\7D\2\2\u077c\u077d\7U\2\2\u077d\u077e\7V\2\2\u077e\u077f\7T\2\2"+ + "\u077f\u0780\7K\2\2\u0780\u0781\7P\2\2\u0781\u0782\7I\2\2\u0782\u018e"+ + "\3\2\2\2\u0783\u0784\7N\2\2\u0784\u0785\7V\2\2\u0785\u0786\7T\2\2\u0786"+ + "\u0787\7K\2\2\u0787\u0788\7O\2\2\u0788\u0190\3\2\2\2\u0789\u078a\7T\2"+ + "\2\u078a\u078b\7V\2\2\u078b\u078c\7T\2\2\u078c\u078d\7K\2\2\u078d\u078e"+ + "\7O\2\2\u078e\u0192\3\2\2\2\u078f\u0790\7V\2\2\u0790\u0791\7T\2\2\u0791"+ + "\u0792\7K\2\2\u0792\u0793\7O\2\2\u0793\u0194\3\2\2\2\u0794\u0795\7V\2"+ + "\2\u0795\u0796\7Q\2\2\u0796\u0196\3\2\2\2\u0797\u0798\7N\2\2\u0798\u0799"+ + "\7Q\2\2\u0799\u079a\7Y\2\2\u079a\u079b\7G\2\2\u079b\u079c\7T\2\2\u079c"+ + "\u0198\3\2\2\2\u079d\u079e\7W\2\2\u079e\u079f\7R\2\2\u079f\u07a0\7R\2"+ + "\2\u07a0\u07a1\7G\2\2\u07a1\u07a2\7T\2\2\u07a2\u019a\3\2\2\2\u07a3\u07a4"+ + "\7E\2\2\u07a4\u07a5\7Q\2\2\u07a5\u07a6\7P\2\2\u07a6\u07a7\7E\2\2\u07a7"+ + "\u07a8\7C\2\2\u07a8\u07a9\7V\2\2\u07a9\u019c\3\2\2\2\u07aa\u07ab\7E\2"+ + "\2\u07ab\u07ac\7Q\2\2\u07ac\u07ad\7P\2\2\u07ad\u07ae\7E\2\2\u07ae\u07af"+ + "\7C\2\2\u07af\u07b0\7V\2\2\u07b0\u07b1\7a\2\2\u07b1\u07b2\7Y\2\2\u07b2"+ + "\u07b3\7U\2\2\u07b3\u019e\3\2\2\2\u07b4\u07b5\7N\2\2\u07b5\u07b6\7G\2"+ + "\2\u07b6\u07b7\7P\2\2\u07b7\u07b8\7I\2\2\u07b8\u07b9\7V\2\2\u07b9\u07ba"+ + "\7J\2\2\u07ba\u01a0\3\2\2\2\u07bb\u07bc\7U\2\2\u07bc\u07bd\7V\2\2\u07bd"+ + "\u07be\7T\2\2\u07be\u07bf\7E\2\2\u07bf\u07c0\7O\2\2\u07c0\u07c1\7R\2\2"+ + "\u07c1\u01a2\3\2\2\2\u07c2\u07c3\7T\2\2\u07c3\u07c4\7K\2\2\u07c4\u07c5"+ + "\7I\2\2\u07c5\u07c6\7J\2\2\u07c6\u07c7\7V\2\2\u07c7\u01a4\3\2\2\2\u07c8"+ + "\u07c9\7N\2\2\u07c9\u07ca\7G\2\2\u07ca\u07cb\7H\2\2\u07cb\u07cc\7V\2\2"+ + "\u07cc\u01a6\3\2\2\2\u07cd\u07ce\7C\2\2\u07ce\u07cf\7U\2\2\u07cf\u07d0"+ + "\7E\2\2\u07d0\u07d1\7K\2\2\u07d1\u07d2\7K\2\2\u07d2\u01a8\3\2\2\2\u07d3"+ + "\u07d4\7N\2\2\u07d4\u07d5\7Q\2\2\u07d5\u07d6\7E\2\2\u07d6\u07d7\7C\2\2"+ + "\u07d7\u07d8\7V\2\2\u07d8\u07d9\7G\2\2\u07d9\u01aa\3\2\2\2\u07da\u07db"+ + "\7T\2\2\u07db\u07dc\7G\2\2\u07dc\u07dd\7R\2\2\u07dd\u07de\7N\2\2\u07de"+ + "\u07df\7C\2\2\u07df\u07e0\7E\2\2\u07e0\u07e1\7G\2\2\u07e1\u01ac\3\2\2"+ + "\2\u07e2\u07e3\7E\2\2\u07e3\u07e4\7C\2\2\u07e4\u07e5\7U\2\2\u07e5\u07e6"+ + "\7V\2\2\u07e6\u01ae\3\2\2\2\u07e7\u07e8\7N\2\2\u07e8\u07e9\7K\2\2\u07e9"+ + "\u07ea\7M\2\2\u07ea\u07eb\7G\2\2\u07eb\u01b0\3\2\2\2\u07ec\u07ed\7K\2"+ + "\2\u07ed\u07ee\7U\2\2\u07ee\u07ef\7P\2\2\u07ef\u07f0\7W\2\2\u07f0\u07f1"+ + "\7N\2\2\u07f1\u07f2\7N\2\2\u07f2\u01b2\3\2\2\2\u07f3\u07f4\7K\2\2\u07f4"+ + "\u07f5\7U\2\2\u07f5\u07f6\7P\2\2\u07f6\u07f7\7Q\2\2\u07f7\u07f8\7V\2\2"+ + "\u07f8\u07f9\7P\2\2\u07f9\u07fa\7W\2\2\u07fa\u07fb\7N\2\2\u07fb\u07fc"+ + "\7N\2\2\u07fc\u01b4\3\2\2\2\u07fd\u07fe\7K\2\2\u07fe\u07ff\7H\2\2\u07ff"+ + "\u0800\7P\2\2\u0800\u0801\7W\2\2\u0801\u0802\7N\2\2\u0802\u0803\7N\2\2"+ + "\u0803\u01b6\3\2\2\2\u0804\u0805\7P\2\2\u0805\u0806\7W\2\2\u0806\u0807"+ + "\7N\2\2\u0807\u0808\7N\2\2\u0808\u0809\7K\2\2\u0809\u080a\7H\2\2\u080a"+ + "\u01b8\3\2\2\2\u080b\u080c\7K\2\2\u080c\u080d\7H\2\2\u080d\u01ba\3\2\2"+ + "\2\u080e\u080f\7O\2\2\u080f\u0810\7C\2\2\u0810\u0811\7V\2\2\u0811\u0812"+ + "\7E\2\2\u0812\u0813\7J\2\2\u0813\u01bc\3\2\2\2\u0814\u0815\7O\2\2\u0815"+ + "\u0816\7C\2\2\u0816\u0817\7V\2\2\u0817\u0818\7E\2\2\u0818\u0819\7J\2\2"+ + "\u0819\u081a\7a\2\2\u081a\u081b\7R\2\2\u081b\u081c\7J\2\2\u081c\u081d"+ + "\7T\2\2\u081d\u081e\7C\2\2\u081e\u081f\7U\2\2\u081f\u0820\7G\2\2\u0820"+ + "\u01be\3\2\2\2\u0821\u0822\7U\2\2\u0822\u0823\7K\2\2\u0823\u0824\7O\2"+ + "\2\u0824\u0825\7R\2\2\u0825\u0826\7N\2\2\u0826\u0827\7G\2\2\u0827\u0828"+ + "\7a\2\2\u0828\u0829\7S\2\2\u0829\u082a\7W\2\2\u082a\u082b\7G\2\2\u082b"+ + "\u082c\7T\2\2\u082c\u082d\7[\2\2\u082d\u082e\7a\2\2\u082e\u082f\7U\2\2"+ + "\u082f\u0830\7V\2\2\u0830\u0831\7T\2\2\u0831\u0832\7K\2\2\u0832\u0833"+ + "\7P\2\2\u0833\u0834\7I\2\2\u0834\u01c0\3\2\2\2\u0835\u0836\7C\2\2\u0836"+ + "\u0837\7N\2\2\u0837\u0838\7N\2\2\u0838\u0839\7Q\2\2\u0839\u083a\7Y\2\2"+ + "\u083a\u083b\7a\2\2\u083b\u083c\7N\2\2\u083c\u083d\7G\2\2\u083d\u083e"+ + "\7C\2\2\u083e\u083f\7F\2\2\u083f\u0840\7K\2\2\u0840\u0841\7P\2\2\u0841"+ + "\u0842\7I\2\2\u0842\u0843\7a\2\2\u0843\u0844\7Y\2\2\u0844\u0845\7K\2\2"+ + "\u0845\u0846\7N\2\2\u0846\u0847\7F\2\2\u0847\u0848\7E\2\2\u0848\u0849"+ + "\7C\2\2\u0849\u084a\7T\2\2\u084a\u084b\7F\2\2\u084b\u01c2\3\2\2\2\u084c"+ + "\u084d\7C\2\2\u084d\u084e\7P\2\2\u084e\u084f\7C\2\2\u084f\u0850\7N\2\2"+ + "\u0850\u0851\7[\2\2\u0851\u0852\7\\\2\2\u0852\u0853\7G\2\2\u0853\u0854"+ + "\7a\2\2\u0854\u0855\7Y\2\2\u0855\u0856\7K\2\2\u0856\u0857\7N\2\2\u0857"+ + "\u0858\7F\2\2\u0858\u0859\7E\2\2\u0859\u085a\7C\2\2\u085a\u085b\7T\2\2"+ + "\u085b\u085c\7F\2\2\u085c\u01c4\3\2\2\2\u085d\u085e\7C\2\2\u085e\u085f"+ + "\7P\2\2\u085f\u0860\7C\2\2\u0860\u0861\7N\2\2\u0861\u0862\7[\2\2\u0862"+ + "\u0863\7\\\2\2\u0863\u0864\7G\2\2\u0864\u0865\7T\2\2\u0865\u01c6\3\2\2"+ + "\2\u0866\u0867\7C\2\2\u0867\u0868\7W\2\2\u0868\u0869\7V\2\2\u0869\u086a"+ + "\7Q\2\2\u086a\u086b\7a\2\2\u086b\u086c\7I\2\2\u086c\u086d\7G\2\2\u086d"+ + "\u086e\7P\2\2\u086e\u086f\7G\2\2\u086f\u0870\7T\2\2\u0870\u0871\7C\2\2"+ + "\u0871\u0872\7V\2\2\u0872\u0873\7G\2\2\u0873\u0874\7a\2\2\u0874\u0875"+ + "\7U\2\2\u0875\u0876\7[\2\2\u0876\u0877\7P\2\2\u0877\u0878\7Q\2\2\u0878"+ + "\u0879\7P\2\2\u0879\u087a\7[\2\2\u087a\u087b\7O\2\2\u087b\u087c\7U\2\2"+ + "\u087c\u087d\7a\2\2\u087d\u087e\7R\2\2\u087e\u087f\7J\2\2\u087f\u0880"+ + "\7T\2\2\u0880\u0881\7C\2\2\u0881\u0882\7U\2\2\u0882\u0883\7G\2\2\u0883"+ + "\u0884\7a\2\2\u0884\u0885\7S\2\2\u0885\u0886\7W\2\2\u0886\u0887\7G\2\2"+ + "\u0887\u0888\7T\2\2\u0888\u0889\7[\2\2\u0889\u01c8\3\2\2\2\u088a\u088b"+ + "\7D\2\2\u088b\u088c\7Q\2\2\u088c\u088d\7Q\2\2\u088d\u088e\7U\2\2\u088e"+ + "\u088f\7V\2\2\u088f\u01ca\3\2\2\2\u0890\u0891\7E\2\2\u0891\u0892\7W\2"+ + "\2\u0892\u0893\7V\2\2\u0893\u0894\7Q\2\2\u0894\u0895\7H\2\2\u0895\u0896"+ + "\7H\2\2\u0896\u0897\7a\2\2\u0897\u0898\7H\2\2\u0898\u0899\7T\2\2\u0899"+ + "\u089a\7G\2\2\u089a\u089b\7S\2\2\u089b\u089c\7W\2\2\u089c\u089d\7G\2\2"+ + "\u089d\u089e\7P\2\2\u089e\u089f\7E\2\2\u089f\u08a0\7[\2\2\u08a0\u01cc"+ + "\3\2\2\2\u08a1\u08a2\7F\2\2\u08a2\u08a3\7G\2\2\u08a3\u08a4\7H\2\2\u08a4"+ + "\u08a5\7C\2\2\u08a5\u08a6\7W\2\2\u08a6\u08a7\7N\2\2\u08a7\u08a8\7V\2\2"+ + "\u08a8\u08a9\7a\2\2\u08a9\u08aa\7H\2\2\u08aa\u08ab\7K\2\2\u08ab\u08ac"+ + "\7G\2\2\u08ac\u08ad\7N\2\2\u08ad\u08ae\7F\2\2\u08ae\u01ce\3\2\2\2\u08af"+ + "\u08b0\7F\2\2\u08b0\u08b1\7G\2\2\u08b1\u08b2\7H\2\2\u08b2\u08b3\7C\2\2"+ + "\u08b3\u08b4\7W\2\2\u08b4\u08b5\7N\2\2\u08b5\u08b6\7V\2\2\u08b6\u08b7"+ + "\7a\2\2\u08b7\u08b8\7Q\2\2\u08b8\u08b9\7R\2\2\u08b9\u08ba\7G\2\2\u08ba"+ + "\u08bb\7T\2\2\u08bb\u08bc\7C\2\2\u08bc\u08bd\7V\2\2\u08bd\u08be\7Q\2\2"+ + "\u08be\u08bf\7T\2\2\u08bf\u01d0\3\2\2\2\u08c0\u08c1\7G\2\2\u08c1\u08c2"+ + "\7P\2\2\u08c2\u08c3\7C\2\2\u08c3\u08c4\7D\2\2\u08c4\u08c5\7N\2\2\u08c5"+ + "\u08c6\7G\2\2\u08c6\u08c7\7a\2\2\u08c7\u08c8\7R\2\2\u08c8\u08c9\7Q\2\2"+ + "\u08c9\u08ca\7U\2\2\u08ca\u08cb\7K\2\2\u08cb\u08cc\7V\2\2\u08cc\u08cd"+ + "\7K\2\2\u08cd\u08ce\7Q\2\2\u08ce\u08cf\7P\2\2\u08cf\u08d0\7a\2\2\u08d0"+ + "\u08d1\7K\2\2\u08d1\u08d2\7P\2\2\u08d2\u08d3\7E\2\2\u08d3\u08d4\7T\2\2"+ + "\u08d4\u08d5\7G\2\2\u08d5\u08d6\7O\2\2\u08d6\u08d7\7G\2\2\u08d7\u08d8"+ + "\7P\2\2\u08d8\u08d9\7V\2\2\u08d9\u08da\7U\2\2\u08da\u01d2\3\2\2\2\u08db"+ + "\u08dc\7H\2\2\u08dc\u08dd\7N\2\2\u08dd\u08de\7C\2\2\u08de\u08df\7I\2\2"+ + "\u08df\u08e0\7U\2\2\u08e0\u01d4\3\2\2\2\u08e1\u08e2\7H\2\2\u08e2\u08e3"+ + "\7W\2\2\u08e3\u08e4\7\\\2\2\u08e4\u08e5\7\\\2\2\u08e5\u08e6\7[\2\2\u08e6"+ + "\u08e7\7a\2\2\u08e7\u08e8\7O\2\2\u08e8\u08e9\7C\2\2\u08e9\u08ea\7Z\2\2"+ + "\u08ea\u08eb\7a\2\2\u08eb\u08ec\7G\2\2\u08ec\u08ed\7Z\2\2\u08ed\u08ee"+ + "\7R\2\2\u08ee\u08ef\7C\2\2\u08ef\u08f0\7P\2\2\u08f0\u08f1\7U\2\2\u08f1"+ + "\u08f2\7K\2\2\u08f2\u08f3\7Q\2\2\u08f3\u08f4\7P\2\2\u08f4\u08f5\7U\2\2"+ + "\u08f5\u01d6\3\2\2\2\u08f6\u08f7\7H\2\2\u08f7\u08f8\7W\2\2\u08f8\u08f9"+ + "\7\\\2\2\u08f9\u08fa\7\\\2\2\u08fa\u08fb\7[\2\2\u08fb\u08fc\7a\2\2\u08fc"+ + "\u08fd\7R\2\2\u08fd\u08fe\7T\2\2\u08fe\u08ff\7G\2\2\u08ff\u0900\7H\2\2"+ + "\u0900\u0901\7K\2\2\u0901\u0902\7Z\2\2\u0902\u0903\7a\2\2\u0903\u0904"+ + "\7N\2\2\u0904\u0905\7G\2\2\u0905\u0906\7P\2\2\u0906\u0907\7I\2\2\u0907"+ + "\u0908\7V\2\2\u0908\u0909\7J\2\2\u0909\u01d8\3\2\2\2\u090a\u090b\7H\2"+ + "\2\u090b\u090c\7W\2\2\u090c\u090d\7\\\2\2\u090d\u090e\7\\\2\2\u090e\u090f"+ + "\7[\2\2\u090f\u0910\7a\2\2\u0910\u0911\7V\2\2\u0911\u0912\7T\2\2\u0912"+ + "\u0913\7C\2\2\u0913\u0914\7P\2\2\u0914\u0915\7U\2\2\u0915\u0916\7R\2\2"+ + "\u0916\u0917\7Q\2\2\u0917\u0918\7U\2\2\u0918\u0919\7K\2\2\u0919\u091a"+ + "\7V\2\2\u091a\u091b\7K\2\2\u091b\u091c\7Q\2\2\u091c\u091d\7P\2\2\u091d"+ + "\u091e\7U\2\2\u091e\u01da\3\2\2\2\u091f\u0920\7H\2\2\u0920\u0921\7W\2"+ + "\2\u0921\u0922\7\\\2\2\u0922\u0923\7\\\2\2\u0923\u0924\7[\2\2\u0924\u0925"+ + "\7a\2\2\u0925\u0926\7T\2\2\u0926\u0927\7G\2\2\u0927\u0928\7Y\2\2\u0928"+ + "\u0929\7T\2\2\u0929\u092a\7K\2\2\u092a\u092b\7V\2\2\u092b\u092c\7G\2\2"+ + "\u092c\u01dc\3\2\2\2\u092d\u092e\7H\2\2\u092e\u092f\7W\2\2\u092f\u0930"+ + "\7\\\2\2\u0930\u0931\7\\\2\2\u0931\u0932\7K\2\2\u0932\u0933\7P\2\2\u0933"+ + "\u0934\7G\2\2\u0934\u0935\7U\2\2\u0935\u0936\7U\2\2\u0936\u01de\3\2\2"+ + "\2\u0937\u0938\7N\2\2\u0938\u0939\7G\2\2\u0939\u093a\7P\2\2\u093a\u093b"+ + "\7K\2\2\u093b\u093c\7G\2\2\u093c\u093d\7P\2\2\u093d\u093e\7V\2\2\u093e"+ + "\u01e0\3\2\2\2\u093f\u0940\7N\2\2\u0940\u0941\7Q\2\2\u0941\u0942\7Y\2"+ + "\2\u0942\u0943\7a\2\2\u0943\u0944\7H\2\2\u0944\u0945\7T\2\2\u0945\u0946"+ + "\7G\2\2\u0946\u0947\7S\2\2\u0947\u0948\7a\2\2\u0948\u0949\7Q\2\2\u0949"+ + "\u094a\7R\2\2\u094a\u094b\7G\2\2\u094b\u094c\7T\2\2\u094c\u094d\7C\2\2"+ + "\u094d\u094e\7V\2\2\u094e\u094f\7Q\2\2\u094f\u0950\7T\2\2\u0950\u01e2"+ + "\3\2\2\2\u0951\u0952\7O\2\2\u0952\u0953\7C\2\2\u0953\u0954\7Z\2\2\u0954"+ + "\u0955\7a\2\2\u0955\u0956\7F\2\2\u0956\u0957\7G\2\2\u0957\u0958\7V\2\2"+ + "\u0958\u0959\7G\2\2\u0959\u095a\7T\2\2\u095a\u095b\7O\2\2\u095b\u095c"+ + "\7K\2\2\u095c\u095d\7P\2\2\u095d\u095e\7K\2\2\u095e\u095f\7\\\2\2\u095f"+ + "\u0960\7G\2\2\u0960\u0961\7F\2\2\u0961\u0962\7a\2\2\u0962\u0963\7U\2\2"+ + "\u0963\u0964\7V\2\2\u0964\u0965\7C\2\2\u0965\u0966\7V\2\2\u0966\u0967"+ + "\7G\2\2\u0967\u0968\7U\2\2\u0968\u01e4\3\2\2\2\u0969\u096a\7O\2\2\u096a"+ + "\u096b\7C\2\2\u096b\u096c\7Z\2\2\u096c\u096d\7a\2\2\u096d\u096e\7G\2\2"+ + "\u096e\u096f\7Z\2\2\u096f\u0970\7R\2\2\u0970\u0971\7C\2\2\u0971\u0972"+ + "\7P\2\2\u0972\u0973\7U\2\2\u0973\u0974\7K\2\2\u0974\u0975\7Q\2\2\u0975"+ + "\u0976\7P\2\2\u0976\u0977\7U\2\2\u0977\u01e6\3\2\2\2\u0978\u0979\7O\2"+ + "\2\u0979\u097a\7K\2\2\u097a\u097b\7P\2\2\u097b\u097c\7K\2\2\u097c\u097d"+ + "\7O\2\2\u097d\u097e\7W\2\2\u097e\u097f\7O\2\2\u097f\u0980\7a\2\2\u0980"+ + "\u0981\7U\2\2\u0981\u0982\7J\2\2\u0982\u0983\7Q\2\2\u0983\u0984\7W\2\2"+ + "\u0984\u0985\7N\2\2\u0985\u0986\7F\2\2\u0986\u0987\7a\2\2\u0987\u0988"+ + "\7O\2\2\u0988\u0989\7C\2\2\u0989\u098a\7V\2\2\u098a\u098b\7E\2\2\u098b"+ + "\u098c\7J\2\2\u098c\u01e8\3\2\2\2\u098d\u098e\7Q\2\2\u098e\u098f\7R\2"+ + "\2\u098f\u0990\7G\2\2\u0990\u0991\7T\2\2\u0991\u0992\7C\2\2\u0992\u0993"+ + "\7V\2\2\u0993\u0994\7Q\2\2\u0994\u0995\7T\2\2\u0995\u01ea\3\2\2\2\u0996"+ + "\u0997\7R\2\2\u0997\u0998\7J\2\2\u0998\u0999\7T\2\2\u0999\u099a\7C\2\2"+ + "\u099a\u099b\7U\2\2\u099b\u099c\7G\2\2\u099c\u099d\7a\2\2\u099d\u099e"+ + "\7U\2\2\u099e\u099f\7N\2\2\u099f\u09a0\7Q\2\2\u09a0\u09a1\7R\2\2\u09a1"+ + "\u01ec\3\2\2\2\u09a2\u09a3\7R\2\2\u09a3\u09a4\7T\2\2\u09a4\u09a5\7G\2"+ + "\2\u09a5\u09a6\7H\2\2\u09a6\u09a7\7K\2\2\u09a7\u09a8\7Z\2\2\u09a8\u09a9"+ + "\7a\2\2\u09a9\u09aa\7N\2\2\u09aa\u09ab\7G\2\2\u09ab\u09ac\7P\2\2\u09ac"+ + "\u09ad\7I\2\2\u09ad\u09ae\7V\2\2\u09ae\u09af\7J\2\2\u09af\u01ee\3\2\2"+ + "\2\u09b0\u09b1\7S\2\2\u09b1\u09b2\7W\2\2\u09b2\u09b3\7Q\2\2\u09b3\u09b4"+ + "\7V\2\2\u09b4\u09b5\7G\2\2\u09b5\u09b6\7a\2\2\u09b6\u09b7\7C\2\2\u09b7"+ + "\u09b8\7P\2\2\u09b8\u09b9\7C\2\2\u09b9\u09ba\7N\2\2\u09ba\u09bb\7[\2\2"+ + "\u09bb\u09bc\7\\\2\2\u09bc\u09bd\7G\2\2\u09bd\u09be\7T\2\2\u09be\u01f0"+ + "\3\2\2\2\u09bf\u09c0\7S\2\2\u09c0\u09c1\7W\2\2\u09c1\u09c2\7Q\2\2\u09c2"+ + "\u09c3\7V\2\2\u09c3\u09c4\7G\2\2\u09c4\u09c5\7a\2\2\u09c5\u09c6\7H\2\2"+ + "\u09c6\u09c7\7K\2\2\u09c7\u09c8\7G\2\2\u09c8\u09c9\7N\2\2\u09c9\u09ca"+ + "\7F\2\2\u09ca\u09cb\7a\2\2\u09cb\u09cc\7U\2\2\u09cc\u09cd\7W\2\2\u09cd"+ + "\u09ce\7H\2\2\u09ce\u09cf\7H\2\2\u09cf\u09d0\7K\2\2\u09d0\u09d1\7Z\2\2"+ + "\u09d1\u01f2\3\2\2\2\u09d2\u09d3\7T\2\2\u09d3\u09d4\7G\2\2\u09d4\u09d5"+ + "\7Y\2\2\u09d5\u09d6\7T\2\2\u09d6\u09d7\7K\2\2\u09d7\u09d8\7V\2\2\u09d8"+ + "\u09d9\7G\2\2\u09d9\u01f4\3\2\2\2\u09da\u09db\7U\2\2\u09db\u09dc\7N\2"+ + "\2\u09dc\u09dd\7Q\2\2\u09dd\u09de\7R\2\2\u09de\u01f6\3\2\2\2\u09df\u09e0"+ + "\7V\2\2\u09e0\u09e1\7K\2\2\u09e1\u09e2\7G\2\2\u09e2\u09e3\7a\2\2\u09e3"+ + "\u09e4\7D\2\2\u09e4\u09e5\7T\2\2\u09e5\u09e6\7G\2\2\u09e6\u09e7\7C\2\2"+ + "\u09e7\u09e8\7M\2\2\u09e8\u09e9\7G\2\2\u09e9\u09ea\7T\2\2\u09ea\u01f8"+ + "\3\2\2\2\u09eb\u09ec\7V\2\2\u09ec\u09ed\7[\2\2\u09ed\u09ee\7R\2\2\u09ee"+ + "\u09ef\7G\2\2\u09ef\u01fa\3\2\2\2\u09f0\u09f1\7\\\2\2\u09f1\u09f2\7G\2"+ + "\2\u09f2\u09f3\7T\2\2\u09f3\u09f4\7Q\2\2\u09f4\u09f5\7a\2\2\u09f5\u09f6"+ + "\7V\2\2\u09f6\u09f7\7G\2\2\u09f7\u09f8\7T\2\2\u09f8\u09f9\7O\2\2\u09f9"+ + "\u09fa\7U\2\2\u09fa\u09fb\7a\2\2\u09fb\u09fc\7S\2\2\u09fc\u09fd\7W\2\2"+ + "\u09fd\u09fe\7G\2\2\u09fe\u09ff\7T\2\2\u09ff\u0a00\7[\2\2\u0a00\u01fc"+ + "\3\2\2\2\u0a01\u0a02\7U\2\2\u0a02\u0a03\7R\2\2\u0a03\u0a04\7C\2\2\u0a04"+ + "\u0a05\7P\2\2\u0a05\u01fe\3\2\2\2\u0a06\u0a07\7O\2\2\u0a07\u0a08\7U\2"+ + "\2\u0a08\u0200\3\2\2\2\u0a09\u0a0a\7U\2\2\u0a0a\u0202\3\2\2\2\u0a0b\u0a0c"+ + "\7O\2\2\u0a0c\u0204\3\2\2\2\u0a0d\u0a0e\7J\2\2\u0a0e\u0206\3\2\2\2\u0a0f"+ + "\u0a10\7Y\2\2\u0a10\u0208\3\2\2\2\u0a11\u0a12\7S\2\2\u0a12\u020a\3\2\2"+ + "\2\u0a13\u0a14\7[\2\2\u0a14\u020c\3\2\2\2\u0a15\u0a16\5\u0215\u010b\2"+ + "\u0a16\u020e\3\2\2\2\u0a17\u0a19\5\u021f\u0110\2\u0a18\u0a17\3\2\2\2\u0a19"+ + "\u0a1a\3\2\2\2\u0a1a\u0a18\3\2\2\2\u0a1a\u0a1b\3\2\2\2\u0a1b\u0210\3\2"+ + "\2\2\u0a1c\u0a1e\5\u021f\u0110\2\u0a1d\u0a1c\3\2\2\2\u0a1e\u0a1f\3\2\2"+ + "\2\u0a1f\u0a1d\3\2\2\2\u0a1f\u0a20\3\2\2\2\u0a20\u0a22\3\2\2\2\u0a21\u0a1d"+ + "\3\2\2\2\u0a21\u0a22\3\2\2\2\u0a22\u0a23\3\2\2\2\u0a23\u0a25\7\60\2\2"+ + "\u0a24\u0a26\5\u021f\u0110\2\u0a25\u0a24\3\2\2\2\u0a26\u0a27\3\2\2\2\u0a27"+ + "\u0a25\3\2\2\2\u0a27\u0a28\3\2\2\2\u0a28\u0212\3\2\2\2\u0a29\u0a2b\t\2"+ + "\2\2\u0a2a\u0a2c\t\3\2\2\u0a2b\u0a2a\3\2\2\2\u0a2c\u0a2d\3\2\2\2\u0a2d"+ + "\u0a2b\3\2\2\2\u0a2d\u0a2e\3\2\2\2\u0a2e\u0a30\3\2\2\2\u0a2f\u0a29\3\2"+ + "\2\2\u0a30\u0a33\3\2\2\2\u0a31\u0a2f\3\2\2\2\u0a31\u0a32\3\2\2\2\u0a32"+ + "\u0214\3\2\2\2\u0a33\u0a31\3\2\2\2\u0a34\u0a36\t\4\2\2\u0a35\u0a34\3\2"+ + "\2\2\u0a36\u0a37\3\2\2\2\u0a37\u0a38\3\2\2\2\u0a37\u0a35\3\2\2\2\u0a38"+ + "\u0a3c\3\2\2\2\u0a39\u0a3b\t\5\2\2\u0a3a\u0a39\3\2\2\2\u0a3b\u0a3e\3\2"+ + "\2\2\u0a3c\u0a3a\3\2\2\2\u0a3c\u0a3d\3\2\2\2\u0a3d\u0216\3\2\2\2\u0a3e"+ + "\u0a3c\3\2\2\2\u0a3f\u0a40\5\u0215\u010b\2\u0a40\u0a41\5\u0213\u010a\2"+ + "\u0a41\u0218\3\2\2\2\u0a42\u0a4a\7$\2\2\u0a43\u0a44\7^\2\2\u0a44\u0a49"+ + "\13\2\2\2\u0a45\u0a46\7$\2\2\u0a46\u0a49\7$\2\2\u0a47\u0a49\n\6\2\2\u0a48"+ + "\u0a43\3\2\2\2\u0a48\u0a45\3\2\2\2\u0a48\u0a47\3\2\2\2\u0a49\u0a4c\3\2"+ + "\2\2\u0a4a\u0a48\3\2\2\2\u0a4a\u0a4b\3\2\2\2\u0a4b\u0a4d\3\2\2\2\u0a4c"+ + "\u0a4a\3\2\2\2\u0a4d\u0a4e\7$\2\2\u0a4e\u021a\3\2\2\2\u0a4f\u0a57\7)\2"+ + "\2\u0a50"; + private static final String _serializedATNSegment1 = + "\u0a51\7^\2\2\u0a51\u0a56\13\2\2\2\u0a52\u0a53\7)\2\2\u0a53\u0a56\7)\2"+ + "\2\u0a54\u0a56\n\7\2\2\u0a55\u0a50\3\2\2\2\u0a55\u0a52\3\2\2\2\u0a55\u0a54"+ + "\3\2\2\2\u0a56\u0a59\3\2\2\2\u0a57\u0a55\3\2\2\2\u0a57\u0a58\3\2\2\2\u0a58"+ + "\u0a5a\3\2\2\2\u0a59\u0a57\3\2\2\2\u0a5a\u0a5b\7)\2\2\u0a5b\u021c\3\2"+ + "\2\2\u0a5c\u0a64\7b\2\2\u0a5d\u0a5e\7^\2\2\u0a5e\u0a63\13\2\2\2\u0a5f"+ + "\u0a60\7b\2\2\u0a60\u0a63\7b\2\2\u0a61\u0a63\n\b\2\2\u0a62\u0a5d\3\2\2"+ + "\2\u0a62\u0a5f\3\2\2\2\u0a62\u0a61\3\2\2\2\u0a63\u0a66\3\2\2\2\u0a64\u0a62"+ + "\3\2\2\2\u0a64\u0a65\3\2\2\2\u0a65\u0a67\3\2\2\2\u0a66\u0a64\3\2\2\2\u0a67"+ + "\u0a68\7b\2\2\u0a68\u021e\3\2\2\2\u0a69\u0a6a\t\t\2\2\u0a6a\u0220\3\2"+ + "\2\2\u0a6b\u0a6c\13\2\2\2\u0a6c\u0a6d\3\2\2\2\u0a6d\u0a6e\b\u0111\2\2"+ + "\u0a6e\u0222\3\2\2\2\21\2\u0a1a\u0a1f\u0a21\u0a27\u0a2d\u0a31\u0a37\u0a3c"+ + "\u0a48\u0a4a\u0a55\u0a57\u0a62\u0a64\3\2\5\2"; + public static final String _serializedATN = Utils.join( + new String[] { + _serializedATNSegment0, + _serializedATNSegment1 + }, + "" + ); + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } +} \ No newline at end of file diff --git a/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.tokens b/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/grammar/.antlr/OpenSearchPPLLexer.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 b/dashboards-observability/common/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 similarity index 100% rename from dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 rename to dashboards-observability/common/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 diff --git a/dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLParser.g4 b/dashboards-observability/common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 similarity index 100% rename from dashboards-observability/query_manager/antlr/grammar/OpenSearchPPLParser.g4 rename to dashboards-observability/common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp new file mode 100644 index 000000000..635beec9a --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp @@ -0,0 +1,831 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +DATE_SUFFIX +ID_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +DEC_DIGIT +ERROR_RECOGNITION + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN +null +null +WHITESPACE +ERRORCHANNEL + +mode names: +DEFAULT_MODE + +atn: +[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 2, 274, 3, 2, 3, 5, 2, 4, 7, 2, 5, 9, 2, 6, 11, 2, 7, 13, 2, 8, 15, 2, 9, 17, 2, 10, 19, 2, 11, 21, 2, 12, 23, 2, 13, 25, 2, 14, 27, 2, 15, 29, 2, 16, 31, 2, 17, 33, 2, 18, 35, 2, 19, 37, 2, 20, 39, 2, 21, 41, 2, 22, 43, 2, 23, 45, 2, 24, 47, 2, 25, 49, 2, 26, 51, 2, 27, 53, 2, 28, 55, 2, 29, 57, 2, 30, 59, 2, 31, 61, 2, 32, 63, 2, 33, 65, 2, 34, 67, 2, 35, 69, 2, 36, 71, 2, 37, 73, 2, 38, 75, 2, 39, 77, 2, 40, 79, 2, 41, 81, 2, 42, 83, 2, 43, 85, 2, 44, 87, 2, 45, 89, 2, 46, 91, 2, 47, 93, 2, 48, 95, 2, 49, 97, 2, 50, 99, 2, 51, 101, 2, 52, 103, 2, 53, 105, 2, 54, 107, 2, 55, 109, 2, 56, 111, 2, 57, 113, 2, 58, 115, 2, 59, 117, 2, 60, 119, 2, 61, 121, 2, 62, 123, 2, 63, 125, 2, 64, 127, 2, 65, 129, 2, 66, 131, 2, 67, 133, 2, 68, 135, 2, 69, 137, 2, 70, 139, 2, 71, 141, 2, 72, 143, 2, 73, 145, 2, 74, 147, 2, 75, 149, 2, 76, 151, 2, 77, 153, 2, 78, 155, 2, 79, 157, 2, 80, 159, 2, 81, 161, 2, 82, 163, 2, 83, 165, 2, 84, 167, 2, 85, 169, 2, 86, 171, 2, 87, 173, 2, 88, 175, 2, 89, 177, 2, 90, 179, 2, 91, 181, 2, 92, 183, 2, 93, 185, 2, 94, 187, 2, 95, 189, 2, 96, 191, 2, 97, 193, 2, 98, 195, 2, 99, 197, 2, 100, 199, 2, 101, 201, 2, 102, 203, 2, 103, 205, 2, 104, 207, 2, 105, 209, 2, 106, 211, 2, 107, 213, 2, 108, 215, 2, 109, 217, 2, 110, 219, 2, 111, 221, 2, 112, 223, 2, 113, 225, 2, 114, 227, 2, 115, 229, 2, 116, 231, 2, 117, 233, 2, 118, 235, 2, 119, 237, 2, 120, 239, 2, 121, 241, 2, 122, 243, 2, 123, 245, 2, 124, 247, 2, 125, 249, 2, 126, 251, 2, 127, 253, 2, 128, 255, 2, 129, 257, 2, 130, 259, 2, 131, 261, 2, 132, 263, 2, 133, 265, 2, 134, 267, 2, 135, 269, 2, 136, 271, 2, 137, 273, 2, 138, 275, 2, 139, 277, 2, 140, 279, 2, 141, 281, 2, 142, 283, 2, 143, 285, 2, 144, 287, 2, 145, 289, 2, 146, 291, 2, 147, 293, 2, 148, 295, 2, 149, 297, 2, 150, 299, 2, 151, 301, 2, 152, 303, 2, 153, 305, 2, 154, 307, 2, 155, 309, 2, 156, 311, 2, 157, 313, 2, 158, 315, 2, 159, 317, 2, 160, 319, 2, 161, 321, 2, 162, 323, 2, 163, 325, 2, 164, 327, 2, 165, 329, 2, 166, 331, 2, 167, 333, 2, 168, 335, 2, 169, 337, 2, 170, 339, 2, 171, 341, 2, 172, 343, 2, 173, 345, 2, 174, 347, 2, 175, 349, 2, 176, 351, 2, 177, 353, 2, 178, 355, 2, 179, 357, 2, 180, 359, 2, 181, 361, 2, 182, 363, 2, 183, 365, 2, 184, 367, 2, 185, 369, 2, 186, 371, 2, 187, 373, 2, 188, 375, 2, 189, 377, 2, 190, 379, 2, 191, 381, 2, 192, 383, 2, 193, 385, 2, 194, 387, 2, 195, 389, 2, 196, 391, 2, 197, 393, 2, 198, 395, 2, 199, 397, 2, 200, 399, 2, 201, 401, 2, 202, 403, 2, 203, 405, 2, 204, 407, 2, 205, 409, 2, 206, 411, 2, 207, 413, 2, 208, 415, 2, 209, 417, 2, 210, 419, 2, 211, 421, 2, 212, 423, 2, 213, 425, 2, 214, 427, 2, 215, 429, 2, 216, 431, 2, 217, 433, 2, 218, 435, 2, 219, 437, 2, 220, 439, 2, 221, 441, 2, 222, 443, 2, 223, 445, 2, 224, 447, 2, 225, 449, 2, 226, 451, 2, 227, 453, 2, 228, 455, 2, 229, 457, 2, 230, 459, 2, 231, 461, 2, 232, 463, 2, 233, 465, 2, 234, 467, 2, 235, 469, 2, 236, 471, 2, 237, 473, 2, 238, 475, 2, 239, 477, 2, 240, 479, 2, 241, 481, 2, 242, 483, 2, 243, 485, 2, 244, 487, 2, 245, 489, 2, 246, 491, 2, 247, 493, 2, 248, 495, 2, 249, 497, 2, 250, 499, 2, 251, 501, 2, 252, 503, 2, 253, 505, 2, 254, 507, 2, 255, 509, 2, 256, 511, 2, 257, 513, 2, 258, 515, 2, 259, 517, 2, 260, 519, 2, 261, 521, 2, 262, 523, 2, 263, 525, 2, 264, 527, 2, 265, 529, 2, 266, 531, 2, 2, 533, 2, 2, 535, 2, 267, 537, 2, 268, 539, 2, 269, 541, 2, 270, 543, 2, 2, 545, 2, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts new file mode 100644 index 000000000..54e73a03f --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts @@ -0,0 +1,1768 @@ +// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ATN } from "antlr4ts/atn/ATN"; +import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; +import { CharStream } from "antlr4ts/CharStream"; +import { Lexer } from "antlr4ts/Lexer"; +import { LexerATNSimulator } from "antlr4ts/atn/LexerATNSimulator"; +import { NotNull } from "antlr4ts/Decorators"; +import { Override } from "antlr4ts/Decorators"; +import { RuleContext } from "antlr4ts/RuleContext"; +import { Vocabulary } from "antlr4ts/Vocabulary"; +import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; + +import * as Utils from "antlr4ts/misc/Utils"; + + +export class OpenSearchPPLLexer extends Lexer { + public static readonly SEARCH = 1; + public static readonly FROM = 2; + public static readonly WHERE = 3; + public static readonly FIELDS = 4; + public static readonly RENAME = 5; + public static readonly STATS = 6; + public static readonly DEDUP = 7; + public static readonly SORT = 8; + public static readonly EVAL = 9; + public static readonly HEAD = 10; + public static readonly TOP = 11; + public static readonly RARE = 12; + public static readonly PARSE = 13; + public static readonly KMEANS = 14; + public static readonly AD = 15; + public static readonly AS = 16; + public static readonly BY = 17; + public static readonly SOURCE = 18; + public static readonly INDEX = 19; + public static readonly D = 20; + public static readonly DESC = 21; + public static readonly SORTBY = 22; + public static readonly AUTO = 23; + public static readonly STR = 24; + public static readonly IP = 25; + public static readonly NUM = 26; + public static readonly KEEPEMPTY = 27; + public static readonly CONSECUTIVE = 28; + public static readonly DEDUP_SPLITVALUES = 29; + public static readonly PARTITIONS = 30; + public static readonly ALLNUM = 31; + public static readonly DELIM = 32; + public static readonly CENTROIDS = 33; + public static readonly ITERATIONS = 34; + public static readonly DISTANCE_TYPE = 35; + public static readonly NUMBER_OF_TREES = 36; + public static readonly SHINGLE_SIZE = 37; + public static readonly SAMPLE_SIZE = 38; + public static readonly OUTPUT_AFTER = 39; + public static readonly TIME_DECAY = 40; + public static readonly ANOMALY_RATE = 41; + public static readonly TIME_FIELD = 42; + public static readonly TIME_ZONE = 43; + public static readonly TRAINING_DATA_SIZE = 44; + public static readonly ANOMALY_SCORE_THRESHOLD = 45; + public static readonly CASE = 46; + public static readonly IN = 47; + public static readonly NOT = 48; + public static readonly OR = 49; + public static readonly AND = 50; + public static readonly XOR = 51; + public static readonly TRUE = 52; + public static readonly FALSE = 53; + public static readonly REGEXP = 54; + public static readonly DATETIME = 55; + public static readonly INTERVAL = 56; + public static readonly MICROSECOND = 57; + public static readonly MILLISECOND = 58; + public static readonly SECOND = 59; + public static readonly MINUTE = 60; + public static readonly HOUR = 61; + public static readonly DAY = 62; + public static readonly WEEK = 63; + public static readonly MONTH = 64; + public static readonly QUARTER = 65; + public static readonly YEAR = 66; + public static readonly SECOND_MICROSECOND = 67; + public static readonly MINUTE_MICROSECOND = 68; + public static readonly MINUTE_SECOND = 69; + public static readonly HOUR_MICROSECOND = 70; + public static readonly HOUR_SECOND = 71; + public static readonly HOUR_MINUTE = 72; + public static readonly DAY_MICROSECOND = 73; + public static readonly DAY_SECOND = 74; + public static readonly DAY_MINUTE = 75; + public static readonly DAY_HOUR = 76; + public static readonly YEAR_MONTH = 77; + public static readonly DATAMODEL = 78; + public static readonly LOOKUP = 79; + public static readonly SAVEDSEARCH = 80; + public static readonly INT = 81; + public static readonly INTEGER = 82; + public static readonly DOUBLE = 83; + public static readonly LONG = 84; + public static readonly FLOAT = 85; + public static readonly STRING = 86; + public static readonly BOOLEAN = 87; + public static readonly PIPE = 88; + public static readonly COMMA = 89; + public static readonly DOT = 90; + public static readonly EQUAL = 91; + public static readonly GREATER = 92; + public static readonly LESS = 93; + public static readonly NOT_GREATER = 94; + public static readonly NOT_LESS = 95; + public static readonly NOT_EQUAL = 96; + public static readonly PLUS = 97; + public static readonly MINUS = 98; + public static readonly STAR = 99; + public static readonly DIVIDE = 100; + public static readonly MODULE = 101; + public static readonly EXCLAMATION_SYMBOL = 102; + public static readonly COLON = 103; + public static readonly LT_PRTHS = 104; + public static readonly RT_PRTHS = 105; + public static readonly LT_SQR_PRTHS = 106; + public static readonly RT_SQR_PRTHS = 107; + public static readonly SINGLE_QUOTE = 108; + public static readonly DOUBLE_QUOTE = 109; + public static readonly BACKTICK = 110; + public static readonly BIT_NOT_OP = 111; + public static readonly BIT_AND_OP = 112; + public static readonly BIT_XOR_OP = 113; + public static readonly AVG = 114; + public static readonly COUNT = 115; + public static readonly DISTINCT_COUNT = 116; + public static readonly ESTDC = 117; + public static readonly ESTDC_ERROR = 118; + public static readonly MAX = 119; + public static readonly MEAN = 120; + public static readonly MEDIAN = 121; + public static readonly MIN = 122; + public static readonly MODE = 123; + public static readonly RANGE = 124; + public static readonly STDEV = 125; + public static readonly STDEVP = 126; + public static readonly SUM = 127; + public static readonly SUMSQ = 128; + public static readonly VAR_SAMP = 129; + public static readonly VAR_POP = 130; + public static readonly STDDEV_SAMP = 131; + public static readonly STDDEV_POP = 132; + public static readonly PERCENTILE = 133; + public static readonly FIRST = 134; + public static readonly LAST = 135; + public static readonly LIST = 136; + public static readonly VALUES = 137; + public static readonly EARLIEST = 138; + public static readonly EARLIEST_TIME = 139; + public static readonly LATEST = 140; + public static readonly LATEST_TIME = 141; + public static readonly PER_DAY = 142; + public static readonly PER_HOUR = 143; + public static readonly PER_MINUTE = 144; + public static readonly PER_SECOND = 145; + public static readonly RATE = 146; + public static readonly SPARKLINE = 147; + public static readonly C = 148; + public static readonly DC = 149; + public static readonly ABS = 150; + public static readonly CEIL = 151; + public static readonly CEILING = 152; + public static readonly CONV = 153; + public static readonly CRC32 = 154; + public static readonly E = 155; + public static readonly EXP = 156; + public static readonly FLOOR = 157; + public static readonly LN = 158; + public static readonly LOG = 159; + public static readonly LOG10 = 160; + public static readonly LOG2 = 161; + public static readonly MOD = 162; + public static readonly PI = 163; + public static readonly POW = 164; + public static readonly POWER = 165; + public static readonly RAND = 166; + public static readonly ROUND = 167; + public static readonly SIGN = 168; + public static readonly SQRT = 169; + public static readonly TRUNCATE = 170; + public static readonly ACOS = 171; + public static readonly ASIN = 172; + public static readonly ATAN = 173; + public static readonly ATAN2 = 174; + public static readonly COS = 175; + public static readonly COT = 176; + public static readonly DEGREES = 177; + public static readonly RADIANS = 178; + public static readonly SIN = 179; + public static readonly TAN = 180; + public static readonly ADDDATE = 181; + public static readonly DATE = 182; + public static readonly DATE_ADD = 183; + public static readonly DATE_SUB = 184; + public static readonly DAYOFMONTH = 185; + public static readonly DAYOFWEEK = 186; + public static readonly DAYOFYEAR = 187; + public static readonly DAYNAME = 188; + public static readonly FROM_DAYS = 189; + public static readonly MONTHNAME = 190; + public static readonly SUBDATE = 191; + public static readonly TIME = 192; + public static readonly TIME_TO_SEC = 193; + public static readonly TIMESTAMP = 194; + public static readonly DATE_FORMAT = 195; + public static readonly TO_DAYS = 196; + public static readonly SUBSTR = 197; + public static readonly SUBSTRING = 198; + public static readonly LTRIM = 199; + public static readonly RTRIM = 200; + public static readonly TRIM = 201; + public static readonly TO = 202; + public static readonly LOWER = 203; + public static readonly UPPER = 204; + public static readonly CONCAT = 205; + public static readonly CONCAT_WS = 206; + public static readonly LENGTH = 207; + public static readonly STRCMP = 208; + public static readonly RIGHT = 209; + public static readonly LEFT = 210; + public static readonly ASCII = 211; + public static readonly LOCATE = 212; + public static readonly REPLACE = 213; + public static readonly CAST = 214; + public static readonly LIKE = 215; + public static readonly ISNULL = 216; + public static readonly ISNOTNULL = 217; + public static readonly IFNULL = 218; + public static readonly NULLIF = 219; + public static readonly IF = 220; + public static readonly MATCH = 221; + public static readonly MATCH_PHRASE = 222; + public static readonly SIMPLE_QUERY_STRING = 223; + public static readonly ALLOW_LEADING_WILDCARD = 224; + public static readonly ANALYZE_WILDCARD = 225; + public static readonly ANALYZER = 226; + public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; + public static readonly BOOST = 228; + public static readonly CUTOFF_FREQUENCY = 229; + public static readonly DEFAULT_FIELD = 230; + public static readonly DEFAULT_OPERATOR = 231; + public static readonly ENABLE_POSITION_INCREMENTS = 232; + public static readonly FLAGS = 233; + public static readonly FUZZY_MAX_EXPANSIONS = 234; + public static readonly FUZZY_PREFIX_LENGTH = 235; + public static readonly FUZZY_TRANSPOSITIONS = 236; + public static readonly FUZZY_REWRITE = 237; + public static readonly FUZZINESS = 238; + public static readonly LENIENT = 239; + public static readonly LOW_FREQ_OPERATOR = 240; + public static readonly MAX_DETERMINIZED_STATES = 241; + public static readonly MAX_EXPANSIONS = 242; + public static readonly MINIMUM_SHOULD_MATCH = 243; + public static readonly OPERATOR = 244; + public static readonly PHRASE_SLOP = 245; + public static readonly PREFIX_LENGTH = 246; + public static readonly QUOTE_ANALYZER = 247; + public static readonly QUOTE_FIELD_SUFFIX = 248; + public static readonly REWRITE = 249; + public static readonly SLOP = 250; + public static readonly TIE_BREAKER = 251; + public static readonly TYPE = 252; + public static readonly ZERO_TERMS_QUERY = 253; + public static readonly SPAN = 254; + public static readonly MS = 255; + public static readonly S = 256; + public static readonly M = 257; + public static readonly H = 258; + public static readonly W = 259; + public static readonly Q = 260; + public static readonly Y = 261; + public static readonly ID = 262; + public static readonly INTEGER_LITERAL = 263; + public static readonly DECIMAL_LITERAL = 264; + public static readonly ID_DATE_SUFFIX = 265; + public static readonly DQUOTA_STRING = 266; + public static readonly SQUOTA_STRING = 267; + public static readonly BQUOTA_STRING = 268; + public static readonly ERROR_RECOGNITION = 269; + public static readonly WHITESPACE = 2; + public static readonly ERRORCHANNEL = 3; + + // tslint:disable:no-trailing-whitespace + public static readonly channelNames: string[] = [ + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL", + ]; + + // tslint:disable:no-trailing-whitespace + public static readonly modeNames: string[] = [ + "DEFAULT_MODE", + ]; + + public static readonly ruleNames: string[] = [ + "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", + "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", + "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", + "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", "CENTROIDS", + "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", "SAMPLE_SIZE", + "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", "TIME_ZONE", + "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", "IN", "NOT", + "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", "INTERVAL", + "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", "DAY", "WEEK", + "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", + "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", + "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", + "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", + "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", + "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", + "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", + "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "DATE_SUFFIX", "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", + "BQUOTA_STRING", "DEC_DIGIT", "ERROR_RECOGNITION", + ]; + + private static readonly _LITERAL_NAMES: Array = [ + undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", + "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", + "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", + "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", + "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", + "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", + "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", + "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", + "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", + "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, + undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", + "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", + "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", + "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", + "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", + "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", + "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", + "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", + "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", + "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", + "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", + "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", + "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", + "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", + "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", + "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", + "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", + "'W'", "'Q'", "'Y'", + ]; + private static readonly _SYMBOLIC_NAMES: Array = [ + undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", + "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", + "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", + "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", + "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", + "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", + "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", + "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", + "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", + "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", + ]; + public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLLexer._LITERAL_NAMES, OpenSearchPPLLexer._SYMBOLIC_NAMES, []); + + // @Override + // @NotNull + public get vocabulary(): Vocabulary { + return OpenSearchPPLLexer.VOCABULARY; + } + // tslint:enable:no-trailing-whitespace + + + constructor(input: CharStream) { + super(input); + this._interp = new LexerATNSimulator(OpenSearchPPLLexer._ATN, this); + } + + // @Override + public get grammarFileName(): string { return "OpenSearchPPLLexer.g4"; } + + // @Override + public get ruleNames(): string[] { return OpenSearchPPLLexer.ruleNames; } + + // @Override + public get serializedATN(): string { return OpenSearchPPLLexer._serializedATN; } + + // @Override + public get channelNames(): string[] { return OpenSearchPPLLexer.channelNames; } + + // @Override + public get modeNames(): string[] { return OpenSearchPPLLexer.modeNames; } + + private static readonly _serializedATNSegments: number = 5; + private static readonly _serializedATNSegment0: string = + "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02\u010F\u0A6F\b" + + "\x01\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t" + + "\x06\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04" + + "\r\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12" + + "\t\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17" + + "\t\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C" + + "\t\x1C\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"" + + "\t\"\x04#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t" + + "*\x04+\t+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x04" + + "3\t3\x044\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04" + + "<\t<\x04=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04" + + "E\tE\x04F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04" + + "N\tN\x04O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x04" + + "W\tW\x04X\tX\x04Y\tY\x04Z\tZ\x04[\t[\x04\\\t\\\x04]\t]\x04^\t^\x04_\t" + + "_\x04`\t`\x04a\ta\x04b\tb\x04c\tc\x04d\td\x04e\te\x04f\tf\x04g\tg\x04" + + "h\th\x04i\ti\x04j\tj\x04k\tk\x04l\tl\x04m\tm\x04n\tn\x04o\to\x04p\tp\x04" + + "q\tq\x04r\tr\x04s\ts\x04t\tt\x04u\tu\x04v\tv\x04w\tw\x04x\tx\x04y\ty\x04" + + "z\tz\x04{\t{\x04|\t|\x04}\t}\x04~\t~\x04\x7F\t\x7F\x04\x80\t\x80\x04\x81" + + "\t\x81\x04\x82\t\x82\x04\x83\t\x83\x04\x84\t\x84\x04\x85\t\x85\x04\x86" + + "\t\x86\x04\x87\t\x87\x04\x88\t\x88\x04\x89\t\x89\x04\x8A\t\x8A\x04\x8B" + + "\t\x8B\x04\x8C\t\x8C\x04\x8D\t\x8D\x04\x8E\t\x8E\x04\x8F\t\x8F\x04\x90" + + "\t\x90\x04\x91\t\x91\x04\x92\t\x92\x04\x93\t\x93\x04\x94\t\x94\x04\x95" + + "\t\x95\x04\x96\t\x96\x04\x97\t\x97\x04\x98\t\x98\x04\x99\t\x99\x04\x9A" + + "\t\x9A\x04\x9B\t\x9B\x04\x9C\t\x9C\x04\x9D\t\x9D\x04\x9E\t\x9E\x04\x9F" + + "\t\x9F\x04\xA0\t\xA0\x04\xA1\t\xA1\x04\xA2\t\xA2\x04\xA3\t\xA3\x04\xA4" + + "\t\xA4\x04\xA5\t\xA5\x04\xA6\t\xA6\x04\xA7\t\xA7\x04\xA8\t\xA8\x04\xA9" + + "\t\xA9\x04\xAA\t\xAA\x04\xAB\t\xAB\x04\xAC\t\xAC\x04\xAD\t\xAD\x04\xAE" + + "\t\xAE\x04\xAF\t\xAF\x04\xB0\t\xB0\x04\xB1\t\xB1\x04\xB2\t\xB2\x04\xB3" + + "\t\xB3\x04\xB4\t\xB4\x04\xB5\t\xB5\x04\xB6\t\xB6\x04\xB7\t\xB7\x04\xB8" + + "\t\xB8\x04\xB9\t\xB9\x04\xBA\t\xBA\x04\xBB\t\xBB\x04\xBC\t\xBC\x04\xBD" + + "\t\xBD\x04\xBE\t\xBE\x04\xBF\t\xBF\x04\xC0\t\xC0\x04\xC1\t\xC1\x04\xC2" + + "\t\xC2\x04\xC3\t\xC3\x04\xC4\t\xC4\x04\xC5\t\xC5\x04\xC6\t\xC6\x04\xC7" + + "\t\xC7\x04\xC8\t\xC8\x04\xC9\t\xC9\x04\xCA\t\xCA\x04\xCB\t\xCB\x04\xCC" + + "\t\xCC\x04\xCD\t\xCD\x04\xCE\t\xCE\x04\xCF\t\xCF\x04\xD0\t\xD0\x04\xD1" + + "\t\xD1\x04\xD2\t\xD2\x04\xD3\t\xD3\x04\xD4\t\xD4\x04\xD5\t\xD5\x04\xD6" + + "\t\xD6\x04\xD7\t\xD7\x04\xD8\t\xD8\x04\xD9\t\xD9\x04\xDA\t\xDA\x04\xDB" + + "\t\xDB\x04\xDC\t\xDC\x04\xDD\t\xDD\x04\xDE\t\xDE\x04\xDF\t\xDF\x04\xE0" + + "\t\xE0\x04\xE1\t\xE1\x04\xE2\t\xE2\x04\xE3\t\xE3\x04\xE4\t\xE4\x04\xE5" + + "\t\xE5\x04\xE6\t\xE6\x04\xE7\t\xE7\x04\xE8\t\xE8\x04\xE9\t\xE9\x04\xEA" + + "\t\xEA\x04\xEB\t\xEB\x04\xEC\t\xEC\x04\xED\t\xED\x04\xEE\t\xEE\x04\xEF" + + "\t\xEF\x04\xF0\t\xF0\x04\xF1\t\xF1\x04\xF2\t\xF2\x04\xF3\t\xF3\x04\xF4" + + "\t\xF4\x04\xF5\t\xF5\x04\xF6\t\xF6\x04\xF7\t\xF7\x04\xF8\t\xF8\x04\xF9" + + "\t\xF9\x04\xFA\t\xFA\x04\xFB\t\xFB\x04\xFC\t\xFC\x04\xFD\t\xFD\x04\xFE" + + "\t\xFE\x04\xFF\t\xFF\x04\u0100\t\u0100\x04\u0101\t\u0101\x04\u0102\t\u0102" + + "\x04\u0103\t\u0103\x04\u0104\t\u0104\x04\u0105\t\u0105\x04\u0106\t\u0106" + + "\x04\u0107\t\u0107\x04\u0108\t\u0108\x04\u0109\t\u0109\x04\u010A\t\u010A" + + "\x04\u010B\t\u010B\x04\u010C\t\u010C\x04\u010D\t\u010D\x04\u010E\t\u010E" + + "\x04\u010F\t\u010F\x04\u0110\t\u0110\x04\u0111\t\u0111\x03\x02\x03\x02" + + "\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x03\x03" + + "\x03\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05\x03\x05" + + "\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x06\x03\x06\x03\x06\x03\x06" + + "\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07" + + "\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03" + + "\n\x03\n\x03\n\x03\n\x03\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + + "\f\x03\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03\x0E\x03\x0E\x03\x0E\x03\x0E" + + "\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F" + + "\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x03\x11\x03\x12\x03\x12\x03\x12" + + "\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x14\x03\x14" + + "\x03\x14\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16" + + "\x03\x16\x03\x16\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" + + "\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x19\x03\x19\x03\x19\x03\x19" + + "\x03\x1A\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1C\x03\x1C" + + "\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D" + + "\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D" + + "\x03\x1D\x03\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + + "\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + + "\x03\x1E\x03\x1E\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F" + + "\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03" + + "!\x03!\x03!\x03!\x03!\x03!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03" + + "\"\x03\"\x03\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#" + + "\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03" + + "$\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03" + + "%\x03%\x03%\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03" + + "&\x03&\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03" + + "\'\x03\'\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03" + + "(\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03*\x03*\x03" + + "*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03+\x03+\x03+\x03" + + "+\x03+\x03+\x03+\x03+\x03+\x03+\x03+\x03,\x03,\x03,\x03,\x03,\x03,\x03" + + ",\x03,\x03,\x03,\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03" + + "-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03.\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x03.\x03.\x03/\x03/\x03/\x03/\x03/\x030\x030\x030\x031\x03" + + "1\x031\x031\x032\x032\x032\x033\x033\x033\x033\x034\x034\x034\x034\x03" + + "5\x035\x035\x035\x035\x036\x036\x036\x036\x036\x036\x037\x037\x037\x03" + + "7\x037\x037\x037\x038\x038\x038\x038\x038\x038\x038\x038\x038\x039\x03" + + "9\x039\x039\x039\x039\x039\x039\x039\x03:\x03:\x03:\x03:\x03:\x03:\x03" + + ":\x03:\x03:\x03:\x03:\x03:\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03" + + ";\x03;\x03;\x03;\x03<\x03<\x03<\x03<\x03<\x03<\x03<\x03=\x03=\x03=\x03" + + "=\x03=\x03=\x03=\x03>\x03>\x03>\x03>\x03>\x03?\x03?\x03?\x03?\x03@\x03" + + "@\x03@\x03@\x03@\x03A\x03A\x03A\x03A\x03A\x03A\x03B\x03B\x03B\x03B\x03" + + "B\x03B\x03B\x03B\x03C\x03C\x03C\x03C\x03C\x03D\x03D\x03D\x03D\x03D\x03" + + "D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03" + + "E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03" + + "E\x03E\x03E\x03E\x03E\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03" + + "F\x03F\x03F\x03F\x03F\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03" + + "G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x03H\x03" + + "H\x03H\x03H\x03H\x03H\x03H\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03" + + "I\x03I\x03I\x03I\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03" + + "J\x03J\x03J\x03J\x03J\x03J\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03" + + "K\x03K\x03K\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03" + + "M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03N\x03N\x03N\x03N\x03N\x03" + + "N\x03N\x03N\x03N\x03N\x03N\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03" + + "O\x03O\x03P\x03P\x03P\x03P\x03P\x03P\x03P\x03Q\x03Q\x03Q\x03Q\x03Q\x03" + + "Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03R\x03R\x03R\x03R\x03S\x03S\x03S\x03" + + "S\x03S\x03S\x03S\x03S\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x03U\x03U\x03" + + "U\x03U\x03U\x03V\x03V\x03V\x03V\x03V\x03V\x03W\x03W\x03W\x03W\x03W\x03" + + "W\x03W\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03Y\x03Y\x03Z\x03Z\x03" + + "[\x03[\x03\\\x03\\\x03]\x03]\x03^\x03^\x03_\x03_\x03_\x03`\x03`\x03`\x03" + + "a\x03a\x03a\x03b\x03b\x03c\x03c\x03d\x03d\x03e\x03e\x03f\x03f\x03g\x03" + + "g\x03h\x03h\x03i\x03i\x03j\x03j\x03k\x03k\x03l\x03l\x03m\x03m\x03n\x03" + + "n\x03o\x03o\x03p\x03p\x03q\x03q\x03r\x03r\x03s\x03s\x03s\x03s\x03t\x03" + + "t\x03t\x03t\x03t\x03t\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03" + + "u\x03u\x03u\x03u\x03u\x03u\x03v\x03v\x03v\x03v\x03v\x03v\x03w\x03w\x03" + + "w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03x\x03x\x03x\x03x\x03" + + "y\x03y\x03y\x03y\x03y\x03z\x03z\x03z\x03z\x03z\x03z\x03z\x03{\x03{\x03" + + "{\x03{\x03|\x03|\x03|\x03|\x03|\x03}\x03}\x03}\x03}\x03}\x03}\x03~\x03" + + "~\x03~\x03~\x03~\x03~\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F" + + "\x03\x7F\x03\x80\x03\x80\x03\x80\x03\x80\x03\x81\x03\x81\x03\x81\x03\x81" + + "\x03\x81\x03\x81\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82" + + "\x03\x82\x03\x82\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83" + + "\x03\x83\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84" + + "\x03\x84\x03\x84\x03\x84\x03\x84\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85" + + "\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x86\x03\x86\x03\x86" + + "\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x87" + + "\x03\x87\x03\x87\x03\x87\x03\x87\x03\x87\x03\x88\x03\x88\x03\x88\x03\x88" + + "\x03\x88\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x8A\x03\x8A\x03\x8A" + + "\x03\x8A\x03\x8A\x03\x8A\x03\x8A\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8B" + + "\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + + "\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + + "\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8E\x03\x8E" + + "\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E" + + "\x03\x8E\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F" + + "\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90" + + "\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91" + + "\x03\x91\x03\x91\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92" + + "\x03\x92\x03\x92\x03\x92\x03\x92\x03\x93\x03\x93\x03\x93\x03\x93\x03\x93" + + "\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94" + + "\x03\x94\x03\x95\x03\x95\x03\x96\x03\x96\x03\x96\x03\x97\x03\x97\x03\x97" + + "\x03\x97\x03\x98\x03\x98\x03\x98\x03\x98\x03\x98\x03\x99\x03\x99\x03\x99" + + "\x03\x99\x03\x99\x03\x99\x03\x99\x03\x99\x03\x9A\x03\x9A\x03\x9A\x03\x9A" + + "\x03\x9A\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9C\x03\x9C" + + "\x03\x9D\x03\x9D\x03\x9D\x03\x9D\x03\x9E\x03\x9E\x03\x9E\x03\x9E\x03\x9E" + + "\x03\x9E\x03\x9F\x03\x9F\x03\x9F\x03\xA0\x03\xA0\x03\xA0\x03\xA0\x03\xA1" + + "\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA2\x03\xA2\x03\xA2\x03\xA2" + + "\x03\xA2\x03\xA3\x03\xA3\x03\xA3\x03\xA3\x03\xA4\x03\xA4\x03\xA4\x03\xA5" + + "\x03\xA5\x03\xA5\x03\xA5\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6" + + "\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA8\x03\xA8\x03\xA8\x03\xA8" + + "\x03\xA8\x03\xA8\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xAA\x03\xAA" + + "\x03\xAA\x03\xAA\x03\xAA\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB" + + "\x03\xAB\x03\xAB\x03\xAB\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAD" + + "\x03\xAD\x03\xAD\x03\xAD\x03\xAD\x03\xAE\x03\xAE\x03\xAE\x03\xAE\x03\xAE" + + "\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xB0\x03\xB0\x03\xB0" + + "\x03\xB0\x03\xB1\x03\xB1\x03\xB1\x03\xB1\x03\xB2\x03\xB2\x03\xB2\x03\xB2" + + "\x03\xB2\x03\xB2\x03\xB2\x03\xB2\x03\xB3\x03\xB3\x03\xB3\x03\xB3\x03\xB3" + + "\x03\xB3\x03\xB3\x03\xB3\x03\xB4\x03\xB4\x03\xB4\x03\xB4\x03\xB5\x03\xB5" + + "\x03\xB5\x03\xB5\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6" + + "\x03\xB6\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB8\x03\xB8\x03\xB8" + + "\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB9\x03\xB9\x03\xB9" + + "\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xBA\x03\xBA\x03\xBA" + + "\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBB" + + "\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB" + + "\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC" + + "\x03\xBC\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD" + + "\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE" + + "\x03\xBE\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF" + + "\x03\xBF\x03\xBF\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0" + + "\x03\xC0\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC2\x03\xC2\x03\xC2" + + "\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2" + + "\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3" + + "\x03\xC3\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4" + + "\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC5\x03\xC5\x03\xC5\x03\xC5\x03\xC5" + + "\x03\xC5\x03\xC5\x03\xC5\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6" + + "\x03\xC6\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7" + + "\x03\xC7\x03\xC7\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC9" + + "\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xCA\x03\xCA\x03\xCA\x03\xCA" + + "\x03\xCA\x03\xCB\x03\xCB\x03\xCB\x03\xCC\x03\xCC\x03\xCC\x03\xCC\x03\xCC" + + "\x03\xCC\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCE\x03\xCE" + + "\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCF\x03\xCF\x03\xCF\x03\xCF" + + "\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xD0\x03\xD0\x03\xD0" + + "\x03\xD0\x03\xD0\x03\xD0\x03\xD0\x03\xD1\x03\xD1\x03\xD1\x03\xD1\x03\xD1" + + "\x03\xD1\x03\xD1\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD3" + + "\x03\xD3\x03\xD3\x03\xD3\x03\xD3\x03\xD4\x03\xD4\x03\xD4\x03\xD4\x03\xD4" + + "\x03\xD4\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD6" + + "\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD7\x03\xD7" + + "\x03\xD7\x03\xD7\x03\xD7\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD9" + + "\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xDA\x03\xDA\x03\xDA" + + "\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDB\x03\xDB" + + "\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDC\x03\xDC\x03\xDC\x03\xDC" + + "\x03\xDC\x03\xDC\x03\xDC\x03\xDD\x03\xDD\x03\xDD\x03\xDE\x03\xDE\x03\xDE" + + "\x03\xDE\x03\xDE\x03\xDE\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF" + + "\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xE0\x03\xE0" + + "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + + "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + + "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + + "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + + "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + + "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + + "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE3" + + "\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + + "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE5\x03\xE5\x03\xE5\x03\xE5\x03\xE5" + + "\x03\xE5\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + + "\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + + "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7" + + "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + + "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + + "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + + "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + + "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + + "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xEA\x03\xEA\x03\xEA\x03\xEA\x03\xEA" + + "\x03\xEA\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + + "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + + "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + + "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + + "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xED\x03\xED\x03\xED" + + "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + + "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + + "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE" + + "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEF\x03\xEF\x03\xEF\x03\xEF" + + "\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xF0\x03\xF0\x03\xF0" + + "\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + + "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + + "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + + "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + + "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + + "\x03\xF2\x03\xF2\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3" + + "\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF4" + + "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + + "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + + "\x03\xF4\x03\xF4\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5" + + "\x03\xF5\x03\xF5\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6" + + "\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + + "\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + + "\x03\xF7\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8" + + "\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF9"; + private static readonly _serializedATNSegment1: string = + "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + + "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + + "\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFB" + + "\x03\xFB\x03\xFB\x03\xFB\x03\xFB\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC" + + "\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFD\x03\xFD" + + "\x03\xFD\x03\xFD\x03\xFD\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + + "\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + + "\x03\xFE\x03\xFE\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\u0100\x03" + + "\u0100\x03\u0100\x03\u0101\x03\u0101\x03\u0102\x03\u0102\x03\u0103\x03" + + "\u0103\x03\u0104\x03\u0104\x03\u0105\x03\u0105\x03\u0106\x03\u0106\x03" + + "\u0107\x03\u0107\x03\u0108\x06\u0108\u0A19\n\u0108\r\u0108\x0E\u0108\u0A1A" + + "\x03\u0109\x06\u0109\u0A1E\n\u0109\r\u0109\x0E\u0109\u0A1F\x05\u0109\u0A22" + + "\n\u0109\x03\u0109\x03\u0109\x06\u0109\u0A26\n\u0109\r\u0109\x0E\u0109" + + "\u0A27\x03\u010A\x03\u010A\x06\u010A\u0A2C\n\u010A\r\u010A\x0E\u010A\u0A2D" + + "\x07\u010A\u0A30\n\u010A\f\u010A\x0E\u010A\u0A33\v\u010A\x03\u010B\x06" + + "\u010B\u0A36\n\u010B\r\u010B\x0E\u010B\u0A37\x03\u010B\x07\u010B\u0A3B" + + "\n\u010B\f\u010B\x0E\u010B\u0A3E\v\u010B\x03\u010C\x03\u010C\x03\u010C" + + "\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x07\u010D" + + "\u0A49\n\u010D\f\u010D\x0E\u010D\u0A4C\v\u010D\x03\u010D\x03\u010D\x03" + + "\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x07\u010E\u0A56" + + "\n\u010E\f\u010E\x0E\u010E\u0A59\v\u010E\x03\u010E\x03\u010E\x03\u010F" + + "\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x07\u010F\u0A63\n\u010F" + + "\f\u010F\x0E\u010F\u0A66\v\u010F\x03\u010F\x03\u010F\x03\u0110\x03\u0110" + + "\x03\u0111\x03\u0111\x03\u0111\x03\u0111\x03\u0A37\x02\x02\u0112\x03\x02" + + "\x03\x05\x02\x04\x07\x02\x05\t\x02\x06\v\x02\x07\r\x02\b\x0F\x02\t\x11" + + "\x02\n\x13\x02\v\x15\x02\f\x17\x02\r\x19\x02\x0E\x1B\x02\x0F\x1D\x02\x10" + + "\x1F\x02\x11!\x02\x12#\x02\x13%\x02\x14\'\x02\x15)\x02\x16+\x02\x17-\x02" + + "\x18/\x02\x191\x02\x1A3\x02\x1B5\x02\x1C7\x02\x1D9\x02\x1E;\x02\x1F=\x02" + + " ?\x02!A\x02\"C\x02#E\x02$G\x02%I\x02&K\x02\'M\x02(O\x02)Q\x02*S\x02+" + + "U\x02,W\x02-Y\x02.[\x02/]\x020_\x021a\x022c\x023e\x024g\x025i\x026k\x02" + + "7m\x028o\x029q\x02:s\x02;u\x02{\x02?}\x02@\x7F\x02A\x81\x02" + + "B\x83\x02C\x85\x02D\x87\x02E\x89\x02F\x8B\x02G\x8D\x02H\x8F\x02I\x91\x02" + + "J\x93\x02K\x95\x02L\x97\x02M\x99\x02N\x9B\x02O\x9D\x02P\x9F\x02Q\xA1\x02" + + "R\xA3\x02S\xA5\x02T\xA7\x02U\xA9\x02V\xAB\x02W\xAD\x02X\xAF\x02Y\xB1\x02" + + "Z\xB3\x02[\xB5\x02\\\xB7\x02]\xB9\x02^\xBB\x02_\xBD\x02`\xBF\x02a\xC1" + + "\x02b\xC3\x02c\xC5\x02d\xC7\x02e\xC9\x02f\xCB\x02g\xCD\x02h\xCF\x02i\xD1" + + "\x02j\xD3\x02k\xD5\x02l\xD7\x02m\xD9\x02n\xDB\x02o\xDD\x02p\xDF\x02q\xE1" + + "\x02r\xE3\x02s\xE5\x02t\xE7\x02u\xE9\x02v\xEB\x02w\xED\x02x\xEF\x02y\xF1" + + "\x02z\xF3\x02{\xF5\x02|\xF7\x02}\xF9\x02~\xFB\x02\x7F\xFD\x02\x80\xFF" + + "\x02\x81\u0101\x02\x82\u0103\x02\x83\u0105\x02\x84\u0107\x02\x85\u0109" + + "\x02\x86\u010B\x02\x87\u010D\x02\x88\u010F\x02\x89\u0111\x02\x8A\u0113" + + "\x02\x8B\u0115\x02\x8C\u0117\x02\x8D\u0119\x02\x8E\u011B\x02\x8F\u011D" + + "\x02\x90\u011F\x02\x91\u0121\x02\x92\u0123\x02\x93\u0125\x02\x94\u0127" + + "\x02\x95\u0129\x02\x96\u012B\x02\x97\u012D\x02\x98\u012F\x02\x99\u0131" + + "\x02\x9A\u0133\x02\x9B\u0135\x02\x9C\u0137\x02\x9D\u0139\x02\x9E\u013B" + + "\x02\x9F\u013D\x02\xA0\u013F\x02\xA1\u0141\x02\xA2\u0143\x02\xA3\u0145" + + "\x02\xA4\u0147\x02\xA5\u0149\x02\xA6\u014B\x02\xA7\u014D\x02\xA8\u014F" + + "\x02\xA9\u0151\x02\xAA\u0153\x02\xAB\u0155\x02\xAC\u0157\x02\xAD\u0159" + + "\x02\xAE\u015B\x02\xAF\u015D\x02\xB0\u015F\x02\xB1\u0161\x02\xB2\u0163" + + "\x02\xB3\u0165\x02\xB4\u0167\x02\xB5\u0169\x02\xB6\u016B\x02\xB7\u016D" + + "\x02\xB8\u016F\x02\xB9\u0171\x02\xBA\u0173\x02\xBB\u0175\x02\xBC\u0177" + + "\x02\xBD\u0179\x02\xBE\u017B\x02\xBF\u017D\x02\xC0\u017F\x02\xC1\u0181" + + "\x02\xC2\u0183\x02\xC3\u0185\x02\xC4\u0187\x02\xC5\u0189\x02\xC6\u018B" + + "\x02\xC7\u018D\x02\xC8\u018F\x02\xC9\u0191\x02\xCA\u0193\x02\xCB\u0195" + + "\x02\xCC\u0197\x02\xCD\u0199\x02\xCE\u019B\x02\xCF\u019D\x02\xD0\u019F" + + "\x02\xD1\u01A1\x02\xD2\u01A3\x02\xD3\u01A5\x02\xD4\u01A7\x02\xD5\u01A9" + + "\x02\xD6\u01AB\x02\xD7\u01AD\x02\xD8\u01AF\x02\xD9\u01B1\x02\xDA\u01B3" + + "\x02\xDB\u01B5\x02\xDC\u01B7\x02\xDD\u01B9\x02\xDE\u01BB\x02\xDF\u01BD" + + "\x02\xE0\u01BF\x02\xE1\u01C1\x02\xE2\u01C3\x02\xE3\u01C5\x02\xE4\u01C7" + + "\x02\xE5\u01C9\x02\xE6\u01CB\x02\xE7\u01CD\x02\xE8\u01CF\x02\xE9\u01D1" + + "\x02\xEA\u01D3\x02\xEB\u01D5\x02\xEC\u01D7\x02\xED\u01D9\x02\xEE\u01DB" + + "\x02\xEF\u01DD\x02\xF0\u01DF\x02\xF1\u01E1\x02\xF2\u01E3\x02\xF3\u01E5" + + "\x02\xF4\u01E7\x02\xF5\u01E9\x02\xF6\u01EB\x02\xF7\u01ED\x02\xF8\u01EF" + + "\x02\xF9\u01F1\x02\xFA\u01F3\x02\xFB\u01F5\x02\xFC\u01F7\x02\xFD\u01F9" + + "\x02\xFE\u01FB\x02\xFF\u01FD\x02\u0100\u01FF\x02\u0101\u0201\x02\u0102" + + "\u0203\x02\u0103\u0205\x02\u0104\u0207\x02\u0105\u0209\x02\u0106\u020B" + + "\x02\u0107\u020D\x02\u0108\u020F\x02\u0109\u0211\x02\u010A\u0213\x02\x02" + + "\u0215\x02\x02\u0217\x02\u010B\u0219\x02\u010C\u021B\x02\u010D\u021D\x02" + + "\u010E\u021F\x02\x02\u0221\x02\u010F\x03\x02\n\x03\x02/0\x04\x02,,2;\x04" + + "\x02,,B\\\x07\x02,,//2;C\\aa\x04\x02$$^^\x04\x02))^^\x04\x02^^bb\x03\x02" + + "2;\x02\u0A7C\x02\x03\x03\x02\x02\x02\x02\x05\x03\x02\x02\x02\x02\x07\x03" + + "\x02\x02\x02\x02\t\x03\x02\x02\x02\x02\v\x03\x02\x02\x02\x02\r\x03\x02" + + "\x02\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03\x02\x02\x02\x02\x13\x03\x02" + + "\x02\x02\x02\x15\x03\x02\x02\x02\x02\x17\x03\x02\x02\x02\x02\x19\x03\x02" + + "\x02\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03\x02\x02\x02\x02\x1F\x03\x02" + + "\x02\x02\x02!\x03\x02\x02\x02\x02#\x03\x02\x02\x02\x02%\x03\x02\x02\x02" + + "\x02\'\x03\x02\x02\x02\x02)\x03\x02\x02\x02\x02+\x03\x02\x02\x02\x02-" + + "\x03\x02\x02\x02\x02/\x03\x02\x02\x02\x021\x03\x02\x02\x02\x023\x03\x02" + + "\x02\x02\x025\x03\x02\x02\x02\x027\x03\x02\x02\x02\x029\x03\x02\x02\x02" + + "\x02;\x03\x02\x02\x02\x02=\x03\x02\x02\x02\x02?\x03\x02\x02\x02\x02A\x03" + + "\x02\x02\x02\x02C\x03\x02\x02\x02\x02E\x03\x02\x02\x02\x02G\x03\x02\x02" + + "\x02\x02I\x03\x02\x02\x02\x02K\x03\x02\x02\x02\x02M\x03\x02\x02\x02\x02" + + "O\x03\x02\x02\x02\x02Q\x03\x02\x02\x02\x02S\x03\x02\x02\x02\x02U\x03\x02" + + "\x02\x02\x02W\x03\x02\x02\x02\x02Y\x03\x02\x02\x02\x02[\x03\x02\x02\x02" + + "\x02]\x03\x02\x02\x02\x02_\x03\x02\x02\x02\x02a\x03\x02\x02\x02\x02c\x03" + + "\x02\x02\x02\x02e\x03\x02\x02\x02\x02g\x03\x02\x02\x02\x02i\x03\x02\x02" + + "\x02\x02k\x03\x02\x02\x02\x02m\x03\x02\x02\x02\x02o\x03\x02\x02\x02\x02" + + "q\x03\x02\x02\x02\x02s\x03\x02\x02\x02\x02u\x03\x02\x02\x02\x02w\x03\x02" + + "\x02\x02\x02y\x03\x02\x02\x02\x02{\x03\x02\x02\x02\x02}\x03\x02\x02\x02" + + "\x02\x7F\x03\x02\x02\x02\x02\x81\x03\x02\x02\x02\x02\x83\x03\x02\x02\x02" + + "\x02\x85\x03\x02\x02\x02\x02\x87\x03\x02\x02\x02\x02\x89\x03\x02\x02\x02" + + "\x02\x8B\x03\x02\x02\x02\x02\x8D\x03\x02\x02\x02\x02\x8F\x03\x02\x02\x02" + + "\x02\x91\x03\x02\x02\x02\x02\x93\x03\x02\x02\x02\x02\x95\x03\x02\x02\x02" + + "\x02\x97\x03\x02\x02\x02\x02\x99\x03\x02\x02\x02\x02\x9B\x03\x02\x02\x02" + + "\x02\x9D\x03\x02\x02\x02\x02\x9F\x03\x02\x02\x02\x02\xA1\x03\x02\x02\x02" + + "\x02\xA3\x03\x02\x02\x02\x02\xA5\x03\x02\x02\x02\x02\xA7\x03\x02\x02\x02" + + "\x02\xA9\x03\x02\x02\x02\x02\xAB\x03\x02\x02\x02\x02\xAD\x03\x02\x02\x02" + + "\x02\xAF\x03\x02\x02\x02\x02\xB1\x03\x02\x02\x02\x02\xB3\x03\x02\x02\x02" + + "\x02\xB5\x03\x02\x02\x02\x02\xB7\x03\x02\x02\x02\x02\xB9\x03\x02\x02\x02" + + "\x02\xBB\x03\x02\x02\x02\x02\xBD\x03\x02\x02\x02\x02\xBF\x03\x02\x02\x02" + + "\x02\xC1\x03\x02\x02\x02\x02\xC3\x03\x02\x02\x02\x02\xC5\x03\x02\x02\x02" + + "\x02\xC7\x03\x02\x02\x02\x02\xC9\x03\x02\x02\x02\x02\xCB\x03\x02\x02\x02" + + "\x02\xCD\x03\x02\x02\x02\x02\xCF\x03\x02\x02\x02\x02\xD1\x03\x02\x02\x02" + + "\x02\xD3\x03\x02\x02\x02\x02\xD5\x03\x02\x02\x02\x02\xD7\x03\x02\x02\x02" + + "\x02\xD9\x03\x02\x02\x02\x02\xDB\x03\x02\x02\x02\x02\xDD\x03\x02\x02\x02" + + "\x02\xDF\x03\x02\x02\x02\x02\xE1\x03\x02\x02\x02\x02\xE3\x03\x02\x02\x02" + + "\x02\xE5\x03\x02\x02\x02\x02\xE7\x03\x02\x02\x02\x02\xE9\x03\x02\x02\x02" + + "\x02\xEB\x03\x02\x02\x02\x02\xED\x03\x02\x02\x02\x02\xEF\x03\x02\x02\x02" + + "\x02\xF1\x03\x02\x02\x02\x02\xF3\x03\x02\x02\x02\x02\xF5\x03\x02\x02\x02" + + "\x02\xF7\x03\x02\x02\x02\x02\xF9\x03\x02\x02\x02\x02\xFB\x03\x02\x02\x02" + + "\x02\xFD\x03\x02\x02\x02\x02\xFF\x03\x02\x02\x02\x02\u0101\x03\x02\x02" + + "\x02\x02\u0103\x03\x02\x02\x02\x02\u0105\x03\x02\x02\x02\x02\u0107\x03" + + "\x02\x02\x02\x02\u0109\x03\x02\x02\x02\x02\u010B\x03\x02\x02\x02\x02\u010D" + + "\x03\x02\x02\x02\x02\u010F\x03\x02\x02\x02\x02\u0111\x03\x02\x02\x02\x02" + + "\u0113\x03\x02\x02\x02\x02\u0115\x03\x02\x02\x02\x02\u0117\x03\x02\x02" + + "\x02\x02\u0119\x03\x02\x02\x02\x02\u011B\x03\x02\x02\x02\x02\u011D\x03" + + "\x02\x02\x02\x02\u011F\x03\x02\x02\x02\x02\u0121\x03\x02\x02\x02\x02\u0123" + + "\x03\x02\x02\x02\x02\u0125\x03\x02\x02\x02\x02\u0127\x03\x02\x02\x02\x02" + + "\u0129\x03\x02\x02\x02\x02\u012B\x03\x02\x02\x02\x02\u012D\x03\x02\x02" + + "\x02\x02\u012F\x03\x02\x02\x02\x02\u0131\x03\x02\x02\x02\x02\u0133\x03" + + "\x02\x02\x02\x02\u0135\x03\x02\x02\x02\x02\u0137\x03\x02\x02\x02\x02\u0139" + + "\x03\x02\x02\x02\x02\u013B\x03\x02\x02\x02\x02\u013D\x03\x02\x02\x02\x02" + + "\u013F\x03\x02\x02\x02\x02\u0141\x03\x02\x02\x02\x02\u0143\x03\x02\x02" + + "\x02\x02\u0145\x03\x02\x02\x02\x02\u0147\x03\x02\x02\x02\x02\u0149\x03" + + "\x02\x02\x02\x02\u014B\x03\x02\x02\x02\x02\u014D\x03\x02\x02\x02\x02\u014F" + + "\x03\x02\x02\x02\x02\u0151\x03\x02\x02\x02\x02\u0153\x03\x02\x02\x02\x02" + + "\u0155\x03\x02\x02\x02\x02\u0157\x03\x02\x02\x02\x02\u0159\x03\x02\x02" + + "\x02\x02\u015B\x03\x02\x02\x02\x02\u015D\x03\x02\x02\x02\x02\u015F\x03" + + "\x02\x02\x02\x02\u0161\x03\x02\x02\x02\x02\u0163\x03\x02\x02\x02\x02\u0165" + + "\x03\x02\x02\x02\x02\u0167\x03\x02\x02\x02\x02\u0169\x03\x02\x02\x02\x02" + + "\u016B\x03\x02\x02\x02\x02\u016D\x03\x02\x02\x02\x02\u016F\x03\x02\x02" + + "\x02\x02\u0171\x03\x02\x02\x02\x02\u0173\x03\x02\x02\x02\x02\u0175\x03" + + "\x02\x02\x02\x02\u0177\x03\x02\x02\x02\x02\u0179\x03\x02\x02\x02\x02\u017B" + + "\x03\x02\x02\x02\x02\u017D\x03\x02\x02\x02\x02\u017F\x03\x02\x02\x02\x02" + + "\u0181\x03\x02\x02\x02\x02\u0183\x03\x02\x02\x02\x02\u0185\x03\x02\x02" + + "\x02\x02\u0187\x03\x02\x02\x02\x02\u0189\x03\x02\x02\x02\x02\u018B\x03" + + "\x02\x02\x02\x02\u018D\x03\x02\x02\x02\x02\u018F\x03\x02\x02\x02\x02\u0191" + + "\x03\x02\x02\x02\x02\u0193\x03\x02\x02\x02\x02\u0195\x03\x02\x02\x02\x02" + + "\u0197\x03\x02\x02\x02\x02\u0199\x03\x02\x02\x02\x02\u019B\x03\x02\x02" + + "\x02\x02\u019D\x03\x02\x02\x02\x02\u019F\x03\x02\x02\x02\x02\u01A1\x03" + + "\x02\x02\x02\x02\u01A3\x03\x02\x02\x02\x02\u01A5\x03\x02\x02\x02\x02\u01A7" + + "\x03\x02\x02\x02\x02\u01A9\x03\x02\x02\x02\x02\u01AB\x03\x02\x02\x02\x02" + + "\u01AD\x03\x02\x02\x02\x02\u01AF\x03\x02\x02\x02\x02\u01B1\x03\x02\x02" + + "\x02\x02\u01B3\x03\x02\x02\x02\x02\u01B5\x03\x02\x02\x02\x02\u01B7\x03" + + "\x02\x02\x02\x02\u01B9\x03\x02\x02\x02\x02\u01BB\x03\x02\x02\x02\x02\u01BD" + + "\x03\x02\x02\x02\x02\u01BF\x03\x02\x02\x02\x02\u01C1\x03\x02\x02\x02\x02" + + "\u01C3\x03\x02\x02\x02\x02\u01C5\x03\x02\x02\x02\x02\u01C7\x03\x02\x02" + + "\x02\x02\u01C9\x03\x02\x02\x02\x02\u01CB\x03\x02\x02\x02\x02\u01CD\x03" + + "\x02\x02\x02\x02\u01CF\x03\x02\x02\x02\x02\u01D1\x03\x02\x02\x02\x02\u01D3" + + "\x03\x02\x02\x02\x02\u01D5\x03\x02\x02\x02\x02\u01D7\x03\x02\x02\x02\x02" + + "\u01D9\x03\x02\x02\x02\x02\u01DB\x03\x02\x02\x02\x02\u01DD\x03\x02\x02" + + "\x02\x02\u01DF\x03\x02\x02\x02\x02\u01E1\x03\x02\x02\x02\x02\u01E3\x03" + + "\x02\x02\x02\x02\u01E5\x03\x02\x02\x02\x02\u01E7\x03\x02\x02\x02\x02\u01E9" + + "\x03\x02\x02\x02\x02\u01EB\x03\x02\x02\x02\x02\u01ED\x03\x02\x02\x02\x02" + + "\u01EF\x03\x02\x02\x02\x02\u01F1\x03\x02\x02\x02\x02\u01F3\x03\x02\x02" + + "\x02\x02\u01F5\x03\x02\x02\x02\x02\u01F7\x03\x02\x02\x02\x02\u01F9\x03" + + "\x02\x02\x02\x02\u01FB\x03\x02\x02\x02\x02\u01FD\x03\x02\x02\x02\x02\u01FF" + + "\x03\x02\x02\x02\x02\u0201\x03\x02\x02\x02\x02\u0203\x03\x02\x02\x02\x02" + + "\u0205\x03\x02\x02\x02\x02\u0207\x03\x02\x02\x02\x02\u0209\x03\x02\x02" + + "\x02\x02\u020B\x03\x02\x02\x02\x02\u020D\x03\x02\x02\x02\x02\u020F\x03" + + "\x02\x02\x02\x02\u0211\x03\x02\x02\x02\x02\u0217\x03\x02\x02\x02\x02\u0219" + + "\x03\x02\x02\x02\x02\u021B\x03\x02\x02\x02\x02\u021D\x03\x02\x02\x02\x02" + + "\u0221\x03\x02\x02\x02\x03\u0223\x03\x02\x02\x02\x05\u022A\x03\x02\x02" + + "\x02\x07\u022F\x03\x02\x02\x02\t\u0235\x03\x02\x02\x02\v\u023C\x03\x02" + + "\x02\x02\r\u0243\x03\x02\x02\x02\x0F\u0249\x03\x02\x02\x02\x11\u024F\x03" + + "\x02\x02\x02\x13\u0254\x03\x02\x02\x02\x15\u0259\x03\x02\x02\x02\x17\u025E" + + "\x03\x02\x02\x02\x19\u0262\x03\x02\x02\x02\x1B\u0267\x03\x02\x02\x02\x1D" + + "\u026D\x03\x02\x02\x02\x1F\u0274\x03\x02\x02\x02!\u0277\x03\x02\x02\x02" + + "#\u027A\x03\x02\x02\x02%\u027D\x03\x02\x02\x02\'\u0284\x03\x02\x02\x02" + + ")\u028A\x03\x02\x02\x02+\u028C\x03\x02\x02\x02-\u0291\x03\x02\x02\x02" + + "/\u0298\x03\x02\x02\x021\u029D\x03\x02\x02\x023\u02A1\x03\x02\x02\x02" + + "5\u02A4\x03\x02\x02\x027\u02A8\x03\x02\x02\x029\u02B2\x03\x02\x02\x02" + + ";\u02BE\x03\x02\x02\x02=\u02D0\x03\x02\x02\x02?\u02DB\x03\x02\x02\x02" + + "A\u02E2\x03\x02\x02\x02C\u02E8\x03\x02\x02\x02E\u02F2\x03\x02\x02\x02" + + "G\u02FD\x03\x02\x02\x02I\u030B\x03\x02\x02\x02K\u031B\x03\x02\x02\x02" + + "M\u0328\x03\x02\x02\x02O\u0334\x03\x02\x02\x02Q\u0341\x03\x02\x02\x02" + + "S\u034C\x03\x02\x02\x02U\u0359\x03\x02\x02\x02W\u0364\x03\x02\x02\x02" + + "Y\u036E\x03\x02\x02\x02[\u0381\x03\x02\x02\x02]\u0399\x03\x02\x02\x02" + + "_\u039E\x03\x02\x02\x02a\u03A1\x03\x02\x02\x02c\u03A5\x03\x02\x02\x02" + + "e\u03A8\x03\x02\x02\x02g\u03AC\x03\x02\x02\x02i\u03B0\x03\x02\x02\x02" + + "k\u03B5\x03\x02\x02\x02m\u03BB\x03\x02\x02\x02o\u03C2\x03\x02\x02\x02" + + "q\u03CB\x03\x02\x02\x02s\u03D4\x03\x02\x02\x02u\u03E0\x03\x02\x02\x02" + + "w\u03EC\x03\x02\x02\x02y\u03F3\x03\x02\x02\x02{\u03FA\x03\x02\x02\x02" + + "}\u03FF\x03\x02\x02\x02\x7F\u0403\x03\x02\x02\x02\x81\u0408\x03\x02\x02" + + "\x02\x83\u040E\x03\x02\x02\x02\x85\u0416\x03\x02\x02\x02\x87\u041B\x03" + + "\x02\x02\x02\x89\u042E\x03\x02\x02\x02\x8B\u0441\x03\x02\x02\x02\x8D\u044F" + + "\x03\x02\x02\x02\x8F\u0460\x03\x02\x02\x02\x91\u046C\x03\x02\x02\x02\x93" + + "\u0478\x03\x02\x02\x02\x95\u0488\x03\x02\x02\x02\x97\u0493\x03\x02\x02" + + "\x02\x99\u049E\x03\x02\x02\x02\x9B\u04A7\x03\x02\x02\x02\x9D\u04B2\x03" + + "\x02\x02\x02\x9F\u04BC\x03\x02\x02\x02\xA1\u04C3\x03\x02\x02\x02\xA3\u04CF" + + "\x03\x02\x02\x02\xA5\u04D3\x03\x02\x02\x02\xA7\u04DB\x03\x02\x02\x02\xA9" + + "\u04E2\x03\x02\x02\x02\xAB\u04E7\x03\x02\x02\x02\xAD\u04ED\x03\x02\x02" + + "\x02\xAF\u04F4\x03\x02\x02\x02\xB1\u04FC\x03\x02\x02\x02\xB3\u04FE\x03" + + "\x02\x02\x02\xB5\u0500\x03\x02\x02\x02\xB7\u0502\x03\x02\x02\x02\xB9\u0504" + + "\x03\x02\x02\x02\xBB\u0506\x03\x02\x02\x02\xBD\u0508\x03\x02\x02\x02\xBF" + + "\u050B\x03\x02\x02\x02\xC1\u050E\x03\x02\x02\x02\xC3\u0511\x03\x02\x02" + + "\x02\xC5\u0513\x03\x02\x02\x02\xC7\u0515\x03\x02\x02\x02\xC9\u0517\x03" + + "\x02\x02\x02\xCB\u0519\x03\x02\x02\x02\xCD\u051B\x03\x02\x02\x02\xCF\u051D" + + "\x03\x02\x02\x02\xD1\u051F\x03\x02\x02\x02\xD3\u0521\x03\x02\x02\x02\xD5" + + "\u0523\x03\x02\x02\x02\xD7\u0525\x03\x02\x02\x02\xD9\u0527\x03\x02\x02" + + "\x02\xDB\u0529\x03\x02\x02\x02\xDD\u052B\x03\x02\x02\x02\xDF\u052D\x03" + + "\x02\x02\x02\xE1\u052F\x03\x02\x02\x02\xE3\u0531\x03\x02\x02\x02\xE5\u0533" + + "\x03\x02\x02\x02\xE7\u0537\x03\x02\x02\x02\xE9\u053D\x03\x02\x02\x02\xEB" + + "\u054C\x03\x02\x02\x02\xED\u0552\x03\x02\x02\x02\xEF\u055E\x03\x02\x02" + + "\x02\xF1\u0562\x03\x02\x02\x02\xF3\u0567\x03\x02\x02\x02\xF5\u056E\x03" + + "\x02\x02\x02\xF7\u0572\x03\x02\x02\x02\xF9\u0577\x03\x02\x02\x02\xFB\u057D" + + "\x03\x02\x02\x02\xFD\u0583\x03\x02\x02\x02\xFF\u058A\x03\x02\x02\x02\u0101" + + "\u058E\x03\x02\x02\x02\u0103\u0594\x03\x02\x02\x02\u0105\u059D\x03\x02" + + "\x02\x02\u0107\u05A5\x03\x02\x02\x02\u0109\u05B1\x03\x02\x02\x02\u010B" + + "\u05BC\x03\x02\x02\x02\u010D\u05C7\x03\x02\x02\x02\u010F\u05CD\x03\x02" + + "\x02\x02\u0111\u05D2\x03\x02\x02\x02\u0113\u05D7\x03\x02\x02\x02\u0115" + + "\u05DE\x03\x02\x02\x02\u0117\u05E7\x03\x02\x02\x02\u0119\u05F5\x03\x02" + + "\x02\x02\u011B\u05FC\x03\x02\x02\x02\u011D\u0608\x03\x02\x02\x02\u011F" + + "\u0610\x03\x02\x02\x02\u0121\u0619\x03\x02\x02\x02\u0123\u0624\x03\x02" + + "\x02\x02\u0125\u062F\x03\x02\x02\x02\u0127\u0634\x03\x02\x02\x02\u0129" + + "\u063E\x03\x02\x02\x02\u012B\u0640\x03\x02\x02\x02\u012D\u0643\x03\x02" + + "\x02\x02\u012F\u0647\x03\x02\x02\x02\u0131\u064C\x03\x02\x02\x02\u0133" + + "\u0654\x03\x02\x02\x02\u0135\u0659\x03\x02\x02\x02\u0137\u065F\x03\x02" + + "\x02\x02\u0139\u0661\x03\x02\x02\x02\u013B\u0665\x03\x02\x02\x02\u013D" + + "\u066B\x03\x02\x02\x02\u013F\u066E\x03\x02\x02\x02\u0141\u0672\x03\x02" + + "\x02\x02\u0143\u0678\x03\x02\x02\x02\u0145\u067D\x03\x02\x02\x02\u0147" + + "\u0681\x03\x02\x02\x02\u0149\u0684\x03\x02\x02\x02\u014B\u0688\x03\x02" + + "\x02\x02\u014D\u068E\x03\x02\x02\x02\u014F\u0693\x03\x02\x02\x02\u0151" + + "\u0699\x03\x02\x02\x02\u0153\u069E\x03\x02\x02\x02\u0155\u06A3\x03\x02" + + "\x02\x02\u0157\u06AC\x03\x02\x02\x02\u0159\u06B1\x03\x02\x02\x02\u015B" + + "\u06B6\x03\x02\x02\x02\u015D\u06BB\x03\x02\x02\x02\u015F\u06C1\x03\x02" + + "\x02\x02\u0161\u06C5\x03\x02\x02\x02\u0163\u06C9\x03\x02\x02\x02\u0165" + + "\u06D1\x03\x02\x02\x02\u0167\u06D9\x03\x02\x02\x02\u0169\u06DD\x03\x02" + + "\x02\x02\u016B\u06E1\x03\x02\x02\x02\u016D\u06E9\x03\x02\x02\x02\u016F" + + "\u06EE\x03\x02\x02\x02\u0171\u06F7\x03\x02\x02\x02\u0173\u0700\x03\x02" + + "\x02\x02\u0175\u070B\x03\x02\x02\x02\u0177\u0715\x03\x02\x02\x02\u0179" + + "\u071F\x03\x02\x02\x02\u017B\u0727\x03\x02\x02\x02\u017D\u0731\x03\x02" + + "\x02\x02\u017F\u073B\x03\x02\x02\x02\u0181\u0743\x03\x02\x02\x02\u0183" + + "\u0748\x03\x02\x02\x02\u0185\u0754\x03\x02\x02\x02\u0187\u075E\x03\x02" + + "\x02\x02\u0189\u076A\x03\x02\x02\x02\u018B\u0772\x03\x02\x02\x02\u018D" + + "\u0779\x03\x02\x02\x02\u018F\u0783\x03\x02\x02\x02\u0191\u0789\x03\x02" + + "\x02\x02\u0193\u078F\x03\x02\x02\x02\u0195\u0794\x03\x02\x02\x02\u0197" + + "\u0797\x03\x02\x02\x02\u0199\u079D\x03\x02\x02\x02\u019B\u07A3\x03\x02" + + "\x02\x02\u019D\u07AA\x03\x02\x02\x02\u019F\u07B4\x03\x02\x02\x02\u01A1" + + "\u07BB\x03\x02\x02\x02\u01A3\u07C2\x03\x02\x02\x02\u01A5\u07C8\x03\x02" + + "\x02\x02\u01A7\u07CD\x03\x02\x02\x02\u01A9\u07D3\x03\x02\x02\x02\u01AB" + + "\u07DA\x03\x02\x02\x02\u01AD\u07E2\x03\x02\x02\x02\u01AF\u07E7\x03\x02" + + "\x02\x02\u01B1\u07EC\x03\x02\x02\x02\u01B3\u07F3\x03\x02\x02\x02\u01B5" + + "\u07FD\x03\x02\x02\x02\u01B7\u0804\x03\x02\x02\x02\u01B9\u080B\x03\x02" + + "\x02\x02\u01BB\u080E\x03\x02\x02\x02\u01BD\u0814\x03\x02\x02\x02\u01BF" + + "\u0821\x03\x02\x02\x02\u01C1\u0835\x03\x02\x02\x02\u01C3\u084C\x03\x02" + + "\x02\x02\u01C5\u085D\x03\x02\x02\x02\u01C7\u0866\x03\x02\x02\x02\u01C9" + + "\u088A\x03\x02\x02\x02\u01CB\u0890\x03\x02\x02\x02\u01CD\u08A1\x03\x02" + + "\x02\x02\u01CF\u08AF\x03\x02\x02\x02\u01D1\u08C0\x03\x02\x02\x02\u01D3" + + "\u08DB\x03\x02\x02\x02\u01D5\u08E1\x03\x02\x02\x02\u01D7\u08F6\x03\x02" + + "\x02\x02\u01D9\u090A\x03\x02\x02\x02\u01DB\u091F\x03\x02\x02\x02\u01DD" + + "\u092D\x03\x02\x02\x02\u01DF\u0937\x03\x02\x02\x02\u01E1\u093F\x03\x02" + + "\x02\x02\u01E3\u0951\x03\x02\x02\x02\u01E5\u0969\x03\x02\x02\x02\u01E7" + + "\u0978\x03\x02\x02\x02\u01E9\u098D\x03\x02\x02\x02\u01EB\u0996\x03\x02" + + "\x02\x02\u01ED\u09A2\x03\x02\x02\x02\u01EF\u09B0\x03\x02\x02\x02\u01F1" + + "\u09BF\x03\x02\x02\x02\u01F3\u09D2\x03\x02\x02\x02\u01F5\u09DA\x03\x02" + + "\x02\x02\u01F7\u09DF\x03\x02\x02\x02\u01F9\u09EB\x03\x02\x02\x02\u01FB" + + "\u09F0\x03\x02\x02\x02\u01FD\u0A01\x03\x02\x02\x02\u01FF\u0A06\x03\x02" + + "\x02\x02\u0201\u0A09\x03\x02\x02\x02\u0203\u0A0B\x03\x02\x02\x02\u0205" + + "\u0A0D\x03\x02\x02\x02\u0207\u0A0F\x03\x02\x02\x02\u0209\u0A11\x03\x02" + + "\x02\x02\u020B\u0A13\x03\x02\x02\x02\u020D\u0A15\x03\x02\x02\x02\u020F" + + "\u0A18\x03\x02\x02\x02\u0211\u0A21\x03\x02\x02\x02\u0213\u0A31\x03\x02" + + "\x02\x02\u0215\u0A35\x03\x02\x02\x02\u0217\u0A3F\x03\x02\x02\x02\u0219" + + "\u0A42\x03\x02\x02\x02\u021B\u0A4F\x03\x02\x02\x02\u021D\u0A5C\x03\x02" + + "\x02\x02\u021F\u0A69\x03\x02\x02\x02\u0221\u0A6B\x03\x02\x02\x02\u0223" + + "\u0224\x07U\x02\x02\u0224\u0225\x07G\x02\x02\u0225\u0226\x07C\x02\x02" + + "\u0226\u0227\x07T\x02\x02\u0227\u0228\x07E\x02\x02\u0228\u0229\x07J\x02" + + "\x02\u0229\x04\x03\x02\x02\x02\u022A\u022B\x07H\x02\x02\u022B\u022C\x07" + + "T\x02\x02\u022C\u022D\x07Q\x02\x02\u022D\u022E\x07O\x02\x02\u022E\x06" + + "\x03\x02\x02\x02\u022F\u0230\x07Y\x02\x02\u0230\u0231\x07J\x02\x02\u0231" + + "\u0232\x07G\x02\x02\u0232\u0233\x07T\x02\x02\u0233\u0234\x07G\x02\x02" + + "\u0234\b\x03\x02\x02\x02\u0235\u0236\x07H\x02\x02\u0236\u0237\x07K\x02" + + "\x02\u0237\u0238\x07G\x02\x02\u0238\u0239\x07N\x02\x02\u0239\u023A\x07" + + "F\x02\x02\u023A\u023B\x07U\x02\x02\u023B\n\x03\x02\x02\x02\u023C\u023D" + + "\x07T\x02\x02\u023D\u023E\x07G\x02\x02\u023E\u023F\x07P\x02\x02\u023F" + + "\u0240\x07C\x02\x02\u0240\u0241\x07O\x02\x02\u0241\u0242\x07G\x02\x02" + + "\u0242\f\x03\x02\x02\x02\u0243\u0244\x07U\x02\x02\u0244\u0245\x07V\x02" + + "\x02\u0245\u0246\x07C\x02\x02\u0246\u0247\x07V\x02\x02\u0247\u0248\x07" + + "U\x02\x02\u0248\x0E\x03\x02\x02\x02\u0249\u024A\x07F\x02\x02\u024A\u024B" + + "\x07G\x02\x02\u024B\u024C\x07F\x02\x02\u024C\u024D\x07W\x02\x02\u024D" + + "\u024E\x07R\x02\x02\u024E\x10\x03\x02\x02\x02\u024F\u0250\x07U\x02\x02" + + "\u0250\u0251\x07Q\x02\x02\u0251\u0252\x07T\x02\x02\u0252\u0253\x07V\x02" + + "\x02\u0253\x12\x03\x02\x02\x02\u0254\u0255\x07G\x02\x02\u0255\u0256\x07" + + "X\x02\x02\u0256\u0257\x07C\x02\x02\u0257\u0258\x07N\x02\x02\u0258\x14" + + "\x03\x02\x02\x02\u0259\u025A\x07J\x02\x02\u025A\u025B\x07G\x02\x02\u025B" + + "\u025C\x07C\x02\x02\u025C\u025D\x07F\x02\x02\u025D\x16\x03\x02\x02\x02" + + "\u025E\u025F\x07V\x02\x02\u025F\u0260\x07Q\x02\x02\u0260\u0261\x07R\x02" + + "\x02\u0261\x18\x03\x02\x02\x02\u0262\u0263\x07T\x02\x02\u0263\u0264\x07" + + "C\x02\x02\u0264\u0265\x07T\x02\x02\u0265\u0266\x07G\x02\x02\u0266\x1A" + + "\x03\x02\x02\x02\u0267\u0268\x07R\x02\x02\u0268\u0269\x07C\x02\x02\u0269" + + "\u026A\x07T\x02\x02\u026A\u026B\x07U\x02\x02\u026B\u026C\x07G\x02\x02" + + "\u026C\x1C\x03\x02\x02\x02\u026D\u026E\x07M\x02\x02\u026E\u026F\x07O\x02" + + "\x02\u026F\u0270\x07G\x02\x02\u0270\u0271\x07C\x02\x02\u0271\u0272\x07" + + "P\x02\x02\u0272\u0273\x07U\x02\x02\u0273\x1E\x03\x02\x02\x02\u0274\u0275" + + "\x07C\x02\x02\u0275\u0276\x07F\x02\x02\u0276 \x03\x02\x02\x02\u0277\u0278" + + "\x07"; + private static readonly _serializedATNSegment2: string = + "C\x02\x02\u0278\u0279\x07U\x02\x02\u0279\"\x03\x02\x02\x02\u027A\u027B" + + "\x07D\x02\x02\u027B\u027C\x07[\x02\x02\u027C$\x03\x02\x02\x02\u027D\u027E" + + "\x07U\x02\x02\u027E\u027F\x07Q\x02\x02\u027F\u0280\x07W\x02\x02\u0280" + + "\u0281\x07T\x02\x02\u0281\u0282\x07E\x02\x02\u0282\u0283\x07G\x02\x02" + + "\u0283&\x03\x02\x02\x02\u0284\u0285\x07K\x02\x02\u0285\u0286\x07P\x02" + + "\x02\u0286\u0287\x07F\x02\x02\u0287\u0288\x07G\x02\x02\u0288\u0289\x07" + + "Z\x02\x02\u0289(\x03\x02\x02\x02\u028A\u028B\x07F\x02\x02\u028B*\x03\x02" + + "\x02\x02\u028C\u028D\x07F\x02\x02\u028D\u028E\x07G\x02\x02\u028E\u028F" + + "\x07U\x02\x02\u028F\u0290\x07E\x02\x02\u0290,\x03\x02\x02\x02\u0291\u0292" + + "\x07U\x02\x02\u0292\u0293\x07Q\x02\x02\u0293\u0294\x07T\x02\x02\u0294" + + "\u0295\x07V\x02\x02\u0295\u0296\x07D\x02\x02\u0296\u0297\x07[\x02\x02" + + "\u0297.\x03\x02\x02\x02\u0298\u0299\x07C\x02\x02\u0299\u029A\x07W\x02" + + "\x02\u029A\u029B\x07V\x02\x02\u029B\u029C\x07Q\x02\x02\u029C0\x03\x02" + + "\x02\x02\u029D\u029E\x07U\x02\x02\u029E\u029F\x07V\x02\x02\u029F\u02A0" + + "\x07T\x02\x02\u02A02\x03\x02\x02\x02\u02A1\u02A2\x07K\x02\x02\u02A2\u02A3" + + "\x07R\x02\x02\u02A34\x03\x02\x02\x02\u02A4\u02A5\x07P\x02\x02\u02A5\u02A6" + + "\x07W\x02\x02\u02A6\u02A7\x07O\x02\x02\u02A76\x03\x02\x02\x02\u02A8\u02A9" + + "\x07M\x02\x02\u02A9\u02AA\x07G\x02\x02\u02AA\u02AB\x07G\x02\x02\u02AB" + + "\u02AC\x07R\x02\x02\u02AC\u02AD\x07G\x02\x02\u02AD\u02AE\x07O\x02\x02" + + "\u02AE\u02AF\x07R\x02\x02\u02AF\u02B0\x07V\x02\x02\u02B0\u02B1\x07[\x02" + + "\x02\u02B18\x03\x02\x02\x02\u02B2\u02B3\x07E\x02\x02\u02B3\u02B4\x07Q" + + "\x02\x02\u02B4\u02B5\x07P\x02\x02\u02B5\u02B6\x07U\x02\x02\u02B6\u02B7" + + "\x07G\x02\x02\u02B7\u02B8\x07E\x02\x02\u02B8\u02B9\x07W\x02\x02\u02B9" + + "\u02BA\x07V\x02\x02\u02BA\u02BB\x07K\x02\x02\u02BB\u02BC\x07X\x02\x02" + + "\u02BC\u02BD\x07G\x02\x02\u02BD:\x03\x02\x02\x02\u02BE\u02BF\x07F\x02" + + "\x02\u02BF\u02C0\x07G\x02\x02\u02C0\u02C1\x07F\x02\x02\u02C1\u02C2\x07" + + "W\x02\x02\u02C2\u02C3\x07R\x02\x02\u02C3\u02C4\x07a\x02\x02\u02C4\u02C5" + + "\x07U\x02\x02\u02C5\u02C6\x07R\x02\x02\u02C6\u02C7\x07N\x02\x02\u02C7" + + "\u02C8\x07K\x02\x02\u02C8\u02C9\x07V\x02\x02\u02C9\u02CA\x07X\x02\x02" + + "\u02CA\u02CB\x07C\x02\x02\u02CB\u02CC\x07N\x02\x02\u02CC\u02CD\x07W\x02" + + "\x02\u02CD\u02CE\x07G\x02\x02\u02CE\u02CF\x07U\x02\x02\u02CF<\x03\x02" + + "\x02\x02\u02D0\u02D1\x07R\x02\x02\u02D1\u02D2\x07C\x02\x02\u02D2\u02D3" + + "\x07T\x02\x02\u02D3\u02D4\x07V\x02\x02\u02D4\u02D5\x07K\x02\x02\u02D5" + + "\u02D6\x07V\x02\x02\u02D6\u02D7\x07K\x02\x02\u02D7\u02D8\x07Q\x02\x02" + + "\u02D8\u02D9\x07P\x02\x02\u02D9\u02DA\x07U\x02\x02\u02DA>\x03\x02\x02" + + "\x02\u02DB\u02DC\x07C\x02\x02\u02DC\u02DD\x07N\x02\x02\u02DD\u02DE\x07" + + "N\x02\x02\u02DE\u02DF\x07P\x02\x02\u02DF\u02E0\x07W\x02\x02\u02E0\u02E1" + + "\x07O\x02\x02\u02E1@\x03\x02\x02\x02\u02E2\u02E3\x07F\x02\x02\u02E3\u02E4" + + "\x07G\x02\x02\u02E4\u02E5\x07N\x02\x02\u02E5\u02E6\x07K\x02\x02\u02E6" + + "\u02E7\x07O\x02\x02\u02E7B\x03\x02\x02\x02\u02E8\u02E9\x07E\x02\x02\u02E9" + + "\u02EA\x07G\x02\x02\u02EA\u02EB\x07P\x02\x02\u02EB\u02EC\x07V\x02\x02" + + "\u02EC\u02ED\x07T\x02\x02\u02ED\u02EE\x07Q\x02\x02\u02EE\u02EF\x07K\x02" + + "\x02\u02EF\u02F0\x07F\x02\x02\u02F0\u02F1\x07U\x02\x02\u02F1D\x03\x02" + + "\x02\x02\u02F2\u02F3\x07K\x02\x02\u02F3\u02F4\x07V\x02\x02\u02F4\u02F5" + + "\x07G\x02\x02\u02F5\u02F6\x07T\x02\x02\u02F6\u02F7\x07C\x02\x02\u02F7" + + "\u02F8\x07V\x02\x02\u02F8\u02F9\x07K\x02\x02\u02F9\u02FA\x07Q\x02\x02" + + "\u02FA\u02FB\x07P\x02\x02\u02FB\u02FC\x07U\x02\x02\u02FCF\x03\x02\x02" + + "\x02\u02FD\u02FE\x07F\x02\x02\u02FE\u02FF\x07K\x02\x02\u02FF\u0300\x07" + + "U\x02\x02\u0300\u0301\x07V\x02\x02\u0301\u0302\x07C\x02\x02\u0302\u0303" + + "\x07P\x02\x02\u0303\u0304\x07E\x02\x02\u0304\u0305\x07G\x02\x02\u0305" + + "\u0306\x07a\x02\x02\u0306\u0307\x07V\x02\x02\u0307\u0308\x07[\x02\x02" + + "\u0308\u0309\x07R\x02\x02\u0309\u030A\x07G\x02\x02\u030AH\x03\x02\x02" + + "\x02\u030B\u030C\x07P\x02\x02\u030C\u030D\x07W\x02\x02\u030D\u030E\x07" + + "O\x02\x02\u030E\u030F\x07D\x02\x02\u030F\u0310\x07G\x02\x02\u0310\u0311" + + "\x07T\x02\x02\u0311\u0312\x07a\x02\x02\u0312\u0313\x07Q\x02\x02\u0313" + + "\u0314\x07H\x02\x02\u0314\u0315\x07a\x02\x02\u0315\u0316\x07V\x02\x02" + + "\u0316\u0317\x07T\x02\x02\u0317\u0318\x07G\x02\x02\u0318\u0319\x07G\x02" + + "\x02\u0319\u031A\x07U\x02\x02\u031AJ\x03\x02\x02\x02\u031B\u031C\x07U" + + "\x02\x02\u031C\u031D\x07J\x02\x02\u031D\u031E\x07K\x02\x02\u031E\u031F" + + "\x07P\x02\x02\u031F\u0320\x07I\x02\x02\u0320\u0321\x07N\x02\x02\u0321" + + "\u0322\x07G\x02\x02\u0322\u0323\x07a\x02\x02\u0323\u0324\x07U\x02\x02" + + "\u0324\u0325\x07K\x02\x02\u0325\u0326\x07\\\x02\x02\u0326\u0327\x07G\x02" + + "\x02\u0327L\x03\x02\x02\x02\u0328\u0329\x07U\x02\x02\u0329\u032A\x07C" + + "\x02\x02\u032A\u032B\x07O\x02\x02\u032B\u032C\x07R\x02\x02\u032C\u032D" + + "\x07N\x02\x02\u032D\u032E\x07G\x02\x02\u032E\u032F\x07a\x02\x02\u032F" + + "\u0330\x07U\x02\x02\u0330\u0331\x07K\x02\x02\u0331\u0332\x07\\\x02\x02" + + "\u0332\u0333\x07G\x02\x02\u0333N\x03\x02\x02\x02\u0334\u0335\x07Q\x02" + + "\x02\u0335\u0336\x07W\x02\x02\u0336\u0337\x07V\x02\x02\u0337\u0338\x07" + + "R\x02\x02\u0338\u0339\x07W\x02\x02\u0339\u033A\x07V\x02\x02\u033A\u033B" + + "\x07a\x02\x02\u033B\u033C\x07C\x02\x02\u033C\u033D\x07H\x02\x02\u033D" + + "\u033E\x07V\x02\x02\u033E\u033F\x07G\x02\x02\u033F\u0340\x07T\x02\x02" + + "\u0340P\x03\x02\x02\x02\u0341\u0342\x07V\x02\x02\u0342\u0343\x07K\x02" + + "\x02\u0343\u0344\x07O\x02\x02\u0344\u0345\x07G\x02\x02\u0345\u0346\x07" + + "a\x02\x02\u0346\u0347\x07F\x02\x02\u0347\u0348\x07G\x02\x02\u0348\u0349" + + "\x07E\x02\x02\u0349\u034A\x07C\x02\x02\u034A\u034B\x07[\x02\x02\u034B" + + "R\x03\x02\x02\x02\u034C\u034D\x07C\x02\x02\u034D\u034E\x07P\x02\x02\u034E" + + "\u034F\x07Q\x02\x02\u034F\u0350\x07O\x02\x02\u0350\u0351\x07C\x02\x02" + + "\u0351\u0352\x07N\x02\x02\u0352\u0353\x07[\x02\x02\u0353\u0354\x07a\x02" + + "\x02\u0354\u0355\x07T\x02\x02\u0355\u0356\x07C\x02\x02\u0356\u0357\x07" + + "V\x02\x02\u0357\u0358\x07G\x02\x02\u0358T\x03\x02\x02\x02\u0359\u035A" + + "\x07V\x02\x02\u035A\u035B\x07K\x02\x02\u035B\u035C\x07O\x02\x02\u035C" + + "\u035D\x07G\x02\x02\u035D\u035E\x07a\x02\x02\u035E\u035F\x07H\x02\x02" + + "\u035F\u0360\x07K\x02\x02\u0360\u0361\x07G\x02\x02\u0361\u0362\x07N\x02" + + "\x02\u0362\u0363\x07F\x02\x02\u0363V\x03\x02\x02\x02\u0364\u0365\x07V" + + "\x02\x02\u0365\u0366\x07K\x02\x02\u0366\u0367\x07O\x02\x02\u0367\u0368" + + "\x07G\x02\x02\u0368\u0369\x07a\x02\x02\u0369\u036A\x07\\\x02\x02\u036A" + + "\u036B\x07Q\x02\x02\u036B\u036C\x07P\x02\x02\u036C\u036D\x07G\x02\x02" + + "\u036DX\x03\x02\x02\x02\u036E\u036F\x07V\x02\x02\u036F\u0370\x07T\x02" + + "\x02\u0370\u0371\x07C\x02\x02\u0371\u0372\x07K\x02\x02\u0372\u0373\x07" + + "P\x02\x02\u0373\u0374\x07K\x02\x02\u0374\u0375\x07P\x02\x02\u0375\u0376" + + "\x07I\x02\x02\u0376\u0377\x07a\x02\x02\u0377\u0378\x07F\x02\x02\u0378" + + "\u0379\x07C\x02\x02\u0379\u037A\x07V\x02\x02\u037A\u037B\x07C\x02\x02" + + "\u037B\u037C\x07a\x02\x02\u037C\u037D\x07U\x02\x02\u037D\u037E\x07K\x02" + + "\x02\u037E\u037F\x07\\\x02\x02\u037F\u0380\x07G\x02\x02\u0380Z\x03\x02" + + "\x02\x02\u0381\u0382\x07C\x02\x02\u0382\u0383\x07P\x02\x02\u0383\u0384" + + "\x07Q\x02\x02\u0384\u0385\x07O\x02\x02\u0385\u0386\x07C\x02\x02\u0386" + + "\u0387\x07N\x02\x02\u0387\u0388\x07[\x02\x02\u0388\u0389\x07a\x02\x02" + + "\u0389\u038A\x07U\x02\x02\u038A\u038B\x07E\x02\x02\u038B\u038C\x07Q\x02" + + "\x02\u038C\u038D\x07T\x02\x02\u038D\u038E\x07G\x02\x02\u038E\u038F\x07" + + "a\x02\x02\u038F\u0390\x07V\x02\x02\u0390\u0391\x07J\x02\x02\u0391\u0392" + + "\x07T\x02\x02\u0392\u0393\x07G\x02\x02\u0393\u0394\x07U\x02\x02\u0394" + + "\u0395\x07J\x02\x02\u0395\u0396\x07Q\x02\x02\u0396\u0397\x07N\x02\x02" + + "\u0397\u0398\x07F\x02\x02\u0398\\\x03\x02\x02\x02\u0399\u039A\x07E\x02" + + "\x02\u039A\u039B\x07C\x02\x02\u039B\u039C\x07U\x02\x02\u039C\u039D\x07" + + "G\x02\x02\u039D^\x03\x02\x02\x02\u039E\u039F\x07K\x02\x02\u039F\u03A0" + + "\x07P\x02\x02\u03A0`\x03\x02\x02\x02\u03A1\u03A2\x07P\x02\x02\u03A2\u03A3" + + "\x07Q\x02\x02\u03A3\u03A4\x07V\x02\x02\u03A4b\x03\x02\x02\x02\u03A5\u03A6" + + "\x07Q\x02\x02\u03A6\u03A7\x07T\x02\x02\u03A7d\x03\x02\x02\x02\u03A8\u03A9" + + "\x07C\x02\x02\u03A9\u03AA\x07P\x02\x02\u03AA\u03AB\x07F\x02\x02\u03AB" + + "f\x03\x02\x02\x02\u03AC\u03AD\x07Z\x02\x02\u03AD\u03AE\x07Q\x02\x02\u03AE" + + "\u03AF\x07T\x02\x02\u03AFh\x03\x02\x02\x02\u03B0\u03B1\x07V\x02\x02\u03B1" + + "\u03B2\x07T\x02\x02\u03B2\u03B3\x07W\x02\x02\u03B3\u03B4\x07G\x02\x02" + + "\u03B4j\x03\x02\x02\x02\u03B5\u03B6\x07H\x02\x02\u03B6\u03B7\x07C\x02" + + "\x02\u03B7\u03B8\x07N\x02\x02\u03B8\u03B9\x07U\x02\x02\u03B9\u03BA\x07" + + "G\x02\x02\u03BAl\x03\x02\x02\x02\u03BB\u03BC\x07T\x02\x02\u03BC\u03BD" + + "\x07G\x02\x02\u03BD\u03BE\x07I\x02\x02\u03BE\u03BF\x07G\x02\x02\u03BF" + + "\u03C0\x07Z\x02\x02\u03C0\u03C1\x07R\x02\x02\u03C1n\x03\x02\x02\x02\u03C2" + + "\u03C3\x07F\x02\x02\u03C3\u03C4\x07C\x02\x02\u03C4\u03C5\x07V\x02\x02" + + "\u03C5\u03C6\x07G\x02\x02\u03C6\u03C7\x07V\x02\x02\u03C7\u03C8\x07K\x02" + + "\x02\u03C8\u03C9\x07O\x02\x02\u03C9\u03CA\x07G\x02\x02\u03CAp\x03\x02" + + "\x02\x02\u03CB\u03CC\x07K\x02\x02\u03CC\u03CD\x07P\x02\x02\u03CD\u03CE" + + "\x07V\x02\x02\u03CE\u03CF\x07G\x02\x02\u03CF\u03D0\x07T\x02\x02\u03D0" + + "\u03D1\x07X\x02\x02\u03D1\u03D2\x07C\x02\x02\u03D2\u03D3\x07N\x02\x02" + + "\u03D3r\x03\x02\x02\x02\u03D4\u03D5\x07O\x02\x02\u03D5\u03D6\x07K\x02" + + "\x02\u03D6\u03D7\x07E\x02\x02\u03D7\u03D8\x07T\x02\x02\u03D8\u03D9\x07" + + "Q\x02\x02\u03D9\u03DA\x07U\x02\x02\u03DA\u03DB\x07G\x02\x02\u03DB\u03DC" + + "\x07E\x02\x02\u03DC\u03DD\x07Q\x02\x02\u03DD\u03DE\x07P\x02\x02\u03DE" + + "\u03DF\x07F\x02\x02\u03DFt\x03\x02\x02\x02\u03E0\u03E1\x07O\x02\x02\u03E1" + + "\u03E2\x07K\x02\x02\u03E2\u03E3\x07N\x02\x02\u03E3\u03E4\x07N\x02\x02" + + "\u03E4\u03E5\x07K\x02\x02\u03E5\u03E6\x07U\x02\x02\u03E6\u03E7\x07G\x02" + + "\x02\u03E7\u03E8\x07E\x02\x02\u03E8\u03E9\x07Q\x02\x02\u03E9\u03EA\x07" + + "P\x02\x02\u03EA\u03EB\x07F\x02\x02\u03EBv\x03\x02\x02\x02\u03EC\u03ED" + + "\x07U\x02\x02\u03ED\u03EE\x07G\x02\x02\u03EE\u03EF\x07E\x02\x02\u03EF" + + "\u03F0\x07Q\x02\x02\u03F0\u03F1\x07P\x02\x02\u03F1\u03F2\x07F\x02\x02" + + "\u03F2x\x03\x02\x02\x02\u03F3\u03F4\x07O\x02\x02\u03F4\u03F5\x07K\x02" + + "\x02\u03F5\u03F6\x07P\x02\x02\u03F6\u03F7\x07W\x02\x02\u03F7\u03F8\x07" + + "V\x02\x02\u03F8\u03F9\x07G\x02\x02\u03F9z\x03\x02\x02\x02\u03FA\u03FB" + + "\x07J\x02\x02\u03FB\u03FC\x07Q\x02\x02\u03FC\u03FD\x07W\x02\x02\u03FD" + + "\u03FE\x07T\x02\x02\u03FE|\x03\x02\x02\x02\u03FF\u0400\x07F\x02\x02\u0400" + + "\u0401\x07C\x02\x02\u0401\u0402\x07[\x02\x02\u0402~\x03\x02\x02\x02\u0403" + + "\u0404\x07Y\x02\x02\u0404\u0405\x07G\x02\x02\u0405\u0406\x07G\x02\x02" + + "\u0406\u0407\x07M\x02\x02\u0407\x80\x03\x02\x02\x02\u0408\u0409\x07O\x02" + + "\x02\u0409\u040A\x07Q\x02\x02\u040A\u040B\x07P\x02\x02\u040B\u040C\x07" + + "V\x02\x02\u040C\u040D\x07J\x02\x02\u040D\x82\x03\x02\x02\x02\u040E\u040F" + + "\x07S\x02\x02\u040F\u0410\x07W\x02\x02\u0410\u0411\x07C\x02\x02\u0411" + + "\u0412\x07T\x02\x02\u0412\u0413\x07V\x02\x02\u0413\u0414\x07G\x02\x02" + + "\u0414\u0415\x07T\x02\x02\u0415\x84\x03\x02\x02\x02\u0416\u0417\x07[\x02" + + "\x02\u0417\u0418\x07G\x02\x02\u0418\u0419\x07C\x02\x02\u0419\u041A\x07" + + "T\x02\x02\u041A\x86\x03\x02\x02\x02\u041B\u041C\x07U\x02\x02\u041C\u041D" + + "\x07G\x02\x02\u041D\u041E\x07E\x02\x02\u041E\u041F\x07Q\x02\x02\u041F" + + "\u0420\x07P\x02\x02\u0420\u0421\x07F\x02\x02\u0421\u0422\x07a\x02\x02" + + "\u0422\u0423\x07O\x02\x02\u0423\u0424\x07K\x02\x02\u0424\u0425\x07E\x02" + + "\x02\u0425\u0426\x07T\x02\x02\u0426\u0427\x07Q\x02\x02\u0427\u0428\x07" + + "U\x02\x02\u0428\u0429\x07G\x02\x02\u0429\u042A\x07E\x02\x02\u042A\u042B" + + "\x07Q\x02\x02\u042B\u042C\x07P\x02\x02\u042C\u042D\x07F\x02\x02\u042D" + + "\x88\x03\x02\x02\x02\u042E\u042F\x07O\x02\x02\u042F\u0430\x07K\x02\x02" + + "\u0430\u0431\x07P\x02\x02\u0431\u0432\x07W\x02\x02\u0432\u0433\x07V\x02" + + "\x02\u0433\u0434\x07G\x02\x02\u0434\u0435\x07a\x02\x02\u0435\u0436\x07" + + "O\x02\x02\u0436\u0437\x07K\x02\x02\u0437\u0438\x07E\x02\x02\u0438\u0439" + + "\x07T\x02\x02\u0439\u043A\x07Q\x02\x02\u043A\u043B\x07U\x02\x02\u043B" + + "\u043C\x07G\x02\x02\u043C\u043D\x07E\x02\x02\u043D\u043E\x07Q\x02\x02" + + "\u043E\u043F\x07P\x02\x02\u043F\u0440\x07F\x02\x02\u0440\x8A\x03\x02\x02" + + "\x02\u0441\u0442\x07O\x02\x02\u0442\u0443\x07K\x02\x02\u0443\u0444\x07" + + "P\x02\x02\u0444\u0445\x07W\x02\x02\u0445\u0446\x07V\x02\x02\u0446\u0447" + + "\x07G\x02\x02\u0447\u0448\x07a\x02\x02\u0448\u0449\x07U\x02\x02\u0449" + + "\u044A\x07G\x02\x02\u044A\u044B\x07E\x02\x02\u044B\u044C\x07Q\x02\x02" + + "\u044C\u044D\x07P\x02\x02\u044D\u044E\x07F\x02\x02\u044E\x8C\x03\x02\x02" + + "\x02\u044F\u0450\x07J\x02\x02\u0450\u0451\x07Q\x02\x02\u0451\u0452\x07" + + "W\x02\x02\u0452\u0453\x07T\x02\x02\u0453\u0454\x07a\x02\x02\u0454\u0455" + + "\x07O\x02\x02\u0455\u0456\x07K\x02\x02\u0456\u0457\x07E\x02\x02\u0457" + + "\u0458\x07T\x02\x02\u0458\u0459\x07Q\x02\x02\u0459\u045A\x07U\x02\x02" + + "\u045A\u045B\x07G\x02\x02\u045B\u045C\x07E\x02\x02\u045C\u045D\x07Q\x02" + + "\x02\u045D\u045E\x07P\x02\x02\u045E\u045F\x07F\x02\x02\u045F\x8E\x03\x02" + + "\x02\x02\u0460\u0461\x07J\x02\x02\u0461\u0462\x07Q\x02\x02\u0462\u0463" + + "\x07W\x02\x02\u0463\u0464\x07T\x02\x02\u0464\u0465\x07a\x02\x02\u0465" + + "\u0466\x07U\x02\x02\u0466\u0467\x07G\x02\x02\u0467\u0468\x07E\x02\x02" + + "\u0468\u0469\x07Q\x02\x02\u0469\u046A\x07P\x02\x02\u046A\u046B\x07F\x02" + + "\x02\u046B\x90\x03\x02\x02\x02\u046C\u046D\x07J\x02\x02\u046D\u046E\x07" + + "Q\x02\x02\u046E\u046F\x07W\x02\x02\u046F\u0470\x07T\x02\x02\u0470\u0471" + + "\x07a\x02\x02\u0471\u0472\x07O\x02\x02\u0472\u0473\x07K\x02\x02\u0473" + + "\u0474\x07P\x02\x02\u0474\u0475\x07W\x02\x02\u0475\u0476\x07V\x02\x02" + + "\u0476\u0477\x07G\x02\x02\u0477\x92\x03\x02\x02\x02\u0478\u0479\x07F\x02" + + "\x02\u0479\u047A\x07C\x02\x02\u047A\u047B\x07[\x02\x02\u047B\u047C\x07" + + "a\x02\x02\u047C\u047D\x07O\x02\x02\u047D\u047E\x07K\x02\x02\u047E\u047F" + + "\x07E\x02\x02\u047F\u0480\x07T\x02\x02\u0480\u0481\x07Q\x02\x02\u0481" + + "\u0482\x07U\x02\x02\u0482\u0483\x07G\x02\x02\u0483\u0484\x07E\x02\x02" + + "\u0484\u0485\x07Q\x02\x02\u0485\u0486\x07P\x02\x02\u0486\u0487\x07F\x02" + + "\x02\u0487\x94\x03\x02\x02\x02\u0488\u0489\x07F\x02\x02\u0489\u048A\x07" + + "C\x02\x02\u048A\u048B\x07[\x02\x02\u048B\u048C\x07a\x02\x02\u048C\u048D" + + "\x07U\x02\x02\u048D\u048E\x07G\x02\x02\u048E\u048F\x07E\x02\x02\u048F" + + "\u0490\x07Q\x02\x02\u0490\u0491\x07P\x02\x02\u0491\u0492\x07F\x02\x02" + + "\u0492\x96\x03\x02\x02\x02\u0493\u0494\x07F\x02\x02\u0494\u0495\x07C\x02" + + "\x02\u0495\u0496\x07[\x02\x02\u0496\u0497\x07a\x02\x02\u0497\u0498\x07" + + "O\x02\x02\u0498\u0499\x07K\x02\x02\u0499\u049A\x07P\x02\x02\u049A\u049B" + + "\x07W\x02\x02\u049B\u049C\x07V\x02\x02\u049C\u049D\x07G\x02\x02\u049D" + + "\x98\x03\x02\x02\x02\u049E\u049F\x07F\x02\x02\u049F\u04A0\x07C\x02\x02" + + "\u04A0\u04A1\x07[\x02\x02\u04A1\u04A2\x07a\x02\x02\u04A2\u04A3\x07J\x02" + + "\x02\u04A3\u04A4\x07Q\x02\x02\u04A4\u04A5\x07W\x02\x02\u04A5\u04A6\x07" + + "T\x02\x02\u04A6\x9A\x03\x02\x02\x02\u04A7\u04A8\x07[\x02\x02\u04A8\u04A9" + + "\x07G\x02\x02\u04A9\u04AA\x07C\x02\x02\u04AA\u04AB\x07T\x02\x02\u04AB" + + "\u04AC\x07a\x02\x02\u04AC\u04AD\x07O\x02\x02\u04AD\u04AE\x07Q\x02\x02" + + "\u04AE\u04AF\x07P\x02\x02\u04AF\u04B0\x07V\x02\x02\u04B0\u04B1\x07J\x02" + + "\x02\u04B1\x9C\x03\x02\x02\x02\u04B2\u04B3\x07F\x02\x02\u04B3\u04B4\x07" + + "C\x02\x02\u04B4\u04B5\x07V\x02\x02\u04B5\u04B6\x07C\x02\x02\u04B6\u04B7" + + "\x07O\x02\x02\u04B7\u04B8\x07Q\x02\x02\u04B8\u04B9\x07F\x02\x02\u04B9" + + "\u04BA\x07G\x02\x02\u04BA\u04BB\x07N\x02\x02\u04BB\x9E\x03\x02\x02\x02" + + "\u04BC\u04BD\x07N\x02\x02\u04BD\u04BE\x07Q\x02\x02\u04BE\u04BF\x07Q\x02" + + "\x02\u04BF\u04C0\x07M\x02\x02\u04C0\u04C1\x07W\x02\x02\u04C1\u04C2\x07" + + "R\x02\x02\u04C2\xA0\x03\x02\x02\x02\u04C3\u04C4\x07U\x02\x02\u04C4\u04C5" + + "\x07C\x02\x02\u04C5\u04C6\x07X\x02\x02\u04C6\u04C7\x07G\x02\x02\u04C7" + + "\u04C8\x07F\x02\x02\u04C8\u04C9\x07U\x02\x02\u04C9\u04CA\x07G\x02\x02" + + "\u04CA\u04CB\x07C\x02\x02\u04CB\u04CC\x07T\x02\x02\u04CC\u04CD\x07E\x02" + + "\x02\u04CD\u04CE\x07J\x02\x02\u04CE\xA2\x03\x02\x02\x02\u04CF\u04D0\x07" + + "K\x02\x02\u04D0\u04D1\x07P\x02\x02\u04D1\u04D2\x07V\x02\x02\u04D2\xA4" + + "\x03\x02\x02\x02\u04D3\u04D4\x07K\x02\x02\u04D4\u04D5\x07P\x02\x02\u04D5" + + "\u04D6\x07V\x02\x02\u04D6\u04D7\x07G\x02\x02\u04D7\u04D8\x07I\x02\x02" + + "\u04D8\u04D9\x07G\x02\x02\u04D9\u04DA\x07T\x02\x02\u04DA\xA6\x03\x02\x02" + + "\x02\u04DB\u04DC\x07F\x02\x02\u04DC\u04DD\x07Q\x02\x02\u04DD\u04DE\x07" + + "W\x02\x02\u04DE\u04DF\x07D\x02\x02\u04DF\u04E0\x07N\x02\x02\u04E0\u04E1" + + "\x07G\x02\x02\u04E1\xA8\x03\x02\x02\x02\u04E2\u04E3\x07N\x02\x02\u04E3" + + "\u04E4\x07Q\x02\x02\u04E4\u04E5\x07P\x02\x02\u04E5\u04E6\x07I\x02\x02" + + "\u04E6\xAA\x03\x02\x02\x02\u04E7\u04E8\x07H\x02\x02\u04E8\u04E9\x07N\x02" + + "\x02\u04E9\u04EA\x07Q\x02\x02\u04EA\u04EB\x07C\x02\x02\u04EB\u04EC\x07" + + "V\x02\x02\u04EC\xAC\x03\x02\x02\x02\u04ED\u04EE\x07U\x02\x02\u04EE\u04EF" + + "\x07V\x02\x02\u04EF\u04F0\x07T\x02\x02\u04F0\u04F1\x07K\x02\x02\u04F1" + + "\u04F2\x07P\x02\x02\u04F2\u04F3\x07I\x02\x02\u04F3\xAE\x03\x02\x02\x02" + + "\u04F4\u04F5\x07D\x02\x02\u04F5\u04F6\x07Q\x02\x02\u04F6\u04F7\x07Q\x02" + + "\x02\u04F7\u04F8\x07N\x02\x02\u04F8\u04F9\x07G\x02\x02\u04F9\u04FA\x07" + + "C\x02\x02\u04FA\u04FB\x07P\x02\x02\u04FB\xB0\x03\x02\x02\x02\u04FC\u04FD" + + "\x07~\x02\x02\u04FD\xB2\x03\x02\x02\x02\u04FE\u04FF\x07.\x02\x02\u04FF" + + "\xB4\x03\x02\x02\x02\u0500\u0501\x070\x02\x02\u0501\xB6\x03\x02\x02\x02" + + "\u0502\u0503\x07?\x02\x02\u0503\xB8\x03\x02\x02\x02\u0504\u0505\x07@\x02" + + "\x02\u0505\xBA\x03\x02\x02\x02\u0506\u0507\x07>\x02\x02\u0507\xBC\x03" + + "\x02\x02\x02\u0508\u0509\x07>\x02\x02\u0509\u050A\x07?\x02\x02\u050A\xBE" + + "\x03\x02\x02\x02\u050B\u050C\x07@\x02\x02\u050C\u050D\x07?\x02\x02\u050D" + + "\xC0\x03\x02\x02\x02\u050E\u050F\x07#\x02\x02\u050F\u0510\x07?\x02\x02" + + "\u0510\xC2\x03\x02\x02\x02\u0511\u0512\x07-\x02\x02\u0512\xC4\x03\x02" + + "\x02\x02\u0513\u0514\x07/\x02\x02\u0514\xC6\x03\x02\x02\x02\u0515\u0516" + + "\x07,\x02\x02\u0516\xC8\x03\x02\x02\x02\u0517\u0518\x071\x02\x02\u0518" + + "\xCA\x03\x02\x02\x02\u0519\u051A\x07\'\x02\x02\u051A\xCC\x03\x02\x02\x02" + + "\u051B\u051C\x07#\x02\x02\u051C\xCE\x03\x02\x02\x02\u051D\u051E\x07<\x02" + + "\x02\u051E\xD0\x03\x02\x02\x02\u051F\u0520\x07*\x02\x02\u0520\xD2\x03" + + "\x02\x02\x02\u0521\u0522\x07+\x02\x02\u0522\xD4\x03\x02\x02\x02\u0523" + + "\u0524\x07]\x02\x02\u0524\xD6\x03\x02\x02\x02\u0525\u0526\x07_\x02\x02" + + "\u0526\xD8\x03\x02\x02\x02\u0527\u0528\x07)\x02\x02\u0528\xDA\x03\x02" + + "\x02\x02\u0529\u052A\x07$\x02\x02\u052A\xDC\x03\x02\x02\x02\u052B\u052C" + + "\x07b\x02\x02\u052C\xDE\x03\x02\x02\x02\u052D\u052E\x07\x80\x02\x02\u052E" + + "\xE0\x03\x02\x02\x02\u052F\u0530\x07(\x02\x02\u0530\xE2\x03\x02\x02\x02" + + "\u0531\u0532\x07`\x02\x02\u0532\xE4\x03\x02\x02\x02\u0533\u0534\x07C\x02" + + "\x02\u0534\u0535\x07X\x02\x02\u0535\u0536\x07I\x02\x02\u0536\xE6\x03\x02" + + "\x02\x02\u0537\u0538\x07E\x02\x02\u0538\u0539\x07Q\x02\x02\u0539\u053A" + + "\x07W\x02\x02\u053A\u053B\x07P\x02\x02\u053B\u053C\x07V\x02\x02\u053C" + + "\xE8\x03\x02\x02\x02\u053D\u053E\x07F\x02\x02\u053E\u053F\x07K\x02\x02" + + "\u053F\u0540\x07U\x02\x02\u0540\u0541\x07V\x02\x02\u0541\u0542\x07K\x02" + + "\x02\u0542\u0543\x07P\x02\x02\u0543\u0544\x07E\x02\x02\u0544\u0545\x07" + + "V\x02\x02\u0545\u0546\x07a\x02\x02\u0546\u0547\x07E\x02\x02\u0547\u0548" + + "\x07Q\x02\x02\u0548\u0549\x07W\x02\x02\u0549\u054A\x07P\x02\x02\u054A" + + "\u054B\x07V\x02\x02\u054B\xEA\x03\x02\x02\x02\u054C\u054D\x07G\x02\x02" + + "\u054D\u054E\x07U\x02\x02\u054E\u054F\x07V\x02\x02\u054F\u0550\x07F\x02" + + "\x02\u0550\u0551\x07E\x02\x02\u0551\xEC\x03\x02\x02\x02\u0552\u0553\x07" + + "G\x02\x02\u0553\u0554\x07U\x02\x02\u0554\u0555\x07V\x02\x02\u0555\u0556" + + "\x07F\x02\x02\u0556\u0557\x07E\x02\x02\u0557\u0558\x07a\x02\x02\u0558" + + "\u0559\x07G\x02\x02\u0559\u055A\x07T\x02\x02\u055A\u055B\x07T\x02\x02" + + "\u055B\u055C\x07Q\x02\x02\u055C\u055D\x07T\x02\x02\u055D\xEE\x03\x02\x02" + + "\x02\u055E\u055F\x07O\x02\x02\u055F\u0560\x07C\x02\x02\u0560\u0561\x07" + + "Z\x02\x02\u0561\xF0\x03\x02\x02\x02\u0562\u0563\x07O\x02\x02\u0563\u0564" + + "\x07G\x02\x02\u0564\u0565\x07C\x02\x02\u0565\u0566\x07P\x02\x02\u0566" + + "\xF2\x03\x02\x02\x02\u0567\u0568\x07O\x02\x02\u0568\u0569\x07G\x02\x02" + + "\u0569\u056A\x07F\x02\x02\u056A\u056B\x07K\x02\x02\u056B\u056C\x07C\x02" + + "\x02\u056C\u056D\x07P\x02\x02\u056D\xF4\x03\x02\x02\x02\u056E\u056F\x07" + + "O\x02\x02\u056F\u0570\x07K\x02\x02\u0570\u0571\x07P\x02\x02\u0571\xF6" + + "\x03\x02\x02\x02\u0572\u0573\x07O\x02\x02\u0573\u0574\x07Q\x02\x02\u0574" + + "\u0575\x07F\x02\x02\u0575\u0576\x07G\x02\x02\u0576\xF8\x03\x02\x02\x02" + + "\u0577\u0578\x07T\x02\x02\u0578\u0579\x07C\x02\x02\u0579\u057A\x07P\x02" + + "\x02\u057A\u057B\x07I\x02\x02\u057B\u057C\x07G\x02\x02\u057C\xFA\x03\x02" + + "\x02\x02\u057D\u057E\x07U\x02\x02\u057E\u057F\x07V\x02\x02\u057F\u0580" + + "\x07F\x02\x02\u0580\u0581\x07G\x02\x02\u0581\u0582\x07X\x02\x02\u0582" + + "\xFC\x03\x02\x02\x02\u0583\u0584\x07U\x02\x02\u0584\u0585\x07V\x02\x02" + + "\u0585\u0586\x07F\x02\x02\u0586\u0587\x07G\x02\x02\u0587\u0588\x07X\x02" + + "\x02\u0588\u0589\x07R\x02\x02\u0589\xFE\x03\x02\x02\x02\u058A\u058B\x07" + + "U\x02\x02\u058B\u058C\x07W\x02\x02\u058C\u058D\x07O\x02\x02\u058D\u0100" + + "\x03\x02\x02\x02\u058E\u058F\x07U\x02\x02\u058F\u0590\x07W\x02\x02\u0590" + + "\u0591\x07O\x02\x02\u0591\u0592\x07U\x02\x02\u0592\u0593\x07S\x02\x02" + + "\u0593\u0102\x03\x02\x02\x02\u0594\u0595\x07X\x02\x02\u0595\u0596\x07" + + "C\x02\x02\u0596\u0597\x07T\x02\x02\u0597\u0598\x07a\x02\x02\u0598\u0599" + + "\x07U\x02\x02\u0599\u059A\x07C\x02\x02\u059A\u059B\x07O\x02\x02\u059B" + + "\u059C\x07R\x02\x02\u059C\u0104\x03\x02\x02\x02\u059D\u059E\x07X\x02\x02" + + "\u059E\u059F\x07C\x02\x02\u059F\u05A0\x07T\x02\x02\u05A0\u05A1\x07a\x02" + + "\x02\u05A1\u05A2\x07R\x02\x02\u05A2\u05A3\x07Q\x02\x02\u05A3\u05A4\x07" + + "R\x02\x02\u05A4\u0106\x03\x02\x02\x02\u05A5\u05A6\x07U\x02\x02\u05A6\u05A7" + + "\x07V\x02\x02\u05A7\u05A8\x07F\x02\x02\u05A8\u05A9\x07F\x02\x02\u05A9" + + "\u05AA\x07G\x02\x02\u05AA\u05AB\x07X\x02\x02\u05AB\u05AC\x07a\x02\x02" + + "\u05AC\u05AD\x07U\x02\x02\u05AD\u05AE\x07C\x02\x02\u05AE\u05AF\x07O\x02" + + "\x02\u05AF\u05B0\x07R\x02\x02\u05B0\u0108\x03\x02\x02\x02\u05B1\u05B2" + + "\x07U\x02\x02\u05B2\u05B3\x07V\x02\x02\u05B3\u05B4\x07F\x02\x02\u05B4" + + "\u05B5\x07F\x02\x02\u05B5\u05B6\x07G\x02\x02\u05B6\u05B7\x07X\x02\x02" + + "\u05B7\u05B8\x07a\x02\x02\u05B8\u05B9\x07R\x02"; + private static readonly _serializedATNSegment3: string = + "\x02\u05B9\u05BA\x07Q\x02\x02\u05BA\u05BB\x07R\x02\x02\u05BB\u010A\x03" + + "\x02\x02\x02\u05BC\u05BD\x07R\x02\x02\u05BD\u05BE\x07G\x02\x02\u05BE\u05BF" + + "\x07T\x02\x02\u05BF\u05C0\x07E\x02\x02\u05C0\u05C1\x07G\x02\x02\u05C1" + + "\u05C2\x07P\x02\x02\u05C2\u05C3\x07V\x02\x02\u05C3\u05C4\x07K\x02\x02" + + "\u05C4\u05C5\x07N\x02\x02\u05C5\u05C6\x07G\x02\x02\u05C6\u010C\x03\x02" + + "\x02\x02\u05C7\u05C8\x07H\x02\x02\u05C8\u05C9\x07K\x02\x02\u05C9\u05CA" + + "\x07T\x02\x02\u05CA\u05CB\x07U\x02\x02\u05CB\u05CC\x07V\x02\x02\u05CC" + + "\u010E\x03\x02\x02\x02\u05CD\u05CE\x07N\x02\x02\u05CE\u05CF\x07C\x02\x02" + + "\u05CF\u05D0\x07U\x02\x02\u05D0\u05D1\x07V\x02\x02\u05D1\u0110\x03\x02" + + "\x02\x02\u05D2\u05D3\x07N\x02\x02\u05D3\u05D4\x07K\x02\x02\u05D4\u05D5" + + "\x07U\x02\x02\u05D5\u05D6\x07V\x02\x02\u05D6\u0112\x03\x02\x02\x02\u05D7" + + "\u05D8\x07X\x02\x02\u05D8\u05D9\x07C\x02\x02\u05D9\u05DA\x07N\x02\x02" + + "\u05DA\u05DB\x07W\x02\x02\u05DB\u05DC\x07G\x02\x02\u05DC\u05DD\x07U\x02" + + "\x02\u05DD\u0114\x03\x02\x02\x02\u05DE\u05DF\x07G\x02\x02\u05DF\u05E0" + + "\x07C\x02\x02\u05E0\u05E1\x07T\x02\x02\u05E1\u05E2\x07N\x02\x02\u05E2" + + "\u05E3\x07K\x02\x02\u05E3\u05E4\x07G\x02\x02\u05E4\u05E5\x07U\x02\x02" + + "\u05E5\u05E6\x07V\x02\x02\u05E6\u0116\x03\x02\x02\x02\u05E7\u05E8\x07" + + "G\x02\x02\u05E8\u05E9\x07C\x02\x02\u05E9\u05EA\x07T\x02\x02\u05EA\u05EB" + + "\x07N\x02\x02\u05EB\u05EC\x07K\x02\x02\u05EC\u05ED\x07G\x02\x02\u05ED" + + "\u05EE\x07U\x02\x02\u05EE\u05EF\x07V\x02\x02\u05EF\u05F0\x07a\x02\x02" + + "\u05F0\u05F1\x07V\x02\x02\u05F1\u05F2\x07K\x02\x02\u05F2\u05F3\x07O\x02" + + "\x02\u05F3\u05F4\x07G\x02\x02\u05F4\u0118\x03\x02\x02\x02\u05F5\u05F6" + + "\x07N\x02\x02\u05F6\u05F7\x07C\x02\x02\u05F7\u05F8\x07V\x02\x02\u05F8" + + "\u05F9\x07G\x02\x02\u05F9\u05FA\x07U\x02\x02\u05FA\u05FB\x07V\x02\x02" + + "\u05FB\u011A\x03\x02\x02\x02\u05FC\u05FD\x07N\x02\x02\u05FD\u05FE\x07" + + "C\x02\x02\u05FE\u05FF\x07V\x02\x02\u05FF\u0600\x07G\x02\x02\u0600\u0601" + + "\x07U\x02\x02\u0601\u0602\x07V\x02\x02\u0602\u0603\x07a\x02\x02\u0603" + + "\u0604\x07V\x02\x02\u0604\u0605\x07K\x02\x02\u0605\u0606\x07O\x02\x02" + + "\u0606\u0607\x07G\x02\x02\u0607\u011C\x03\x02\x02\x02\u0608\u0609\x07" + + "R\x02\x02\u0609\u060A\x07G\x02\x02\u060A\u060B\x07T\x02\x02\u060B\u060C" + + "\x07a\x02\x02\u060C\u060D\x07F\x02\x02\u060D\u060E\x07C\x02\x02\u060E" + + "\u060F\x07[\x02\x02\u060F\u011E\x03\x02\x02\x02\u0610\u0611\x07R\x02\x02" + + "\u0611\u0612\x07G\x02\x02\u0612\u0613\x07T\x02\x02\u0613\u0614\x07a\x02" + + "\x02\u0614\u0615\x07J\x02\x02\u0615\u0616\x07Q\x02\x02\u0616\u0617\x07" + + "W\x02\x02\u0617\u0618\x07T\x02\x02\u0618\u0120\x03\x02\x02\x02\u0619\u061A" + + "\x07R\x02\x02\u061A\u061B\x07G\x02\x02\u061B\u061C\x07T\x02\x02\u061C" + + "\u061D\x07a\x02\x02\u061D\u061E\x07O\x02\x02\u061E\u061F\x07K\x02\x02" + + "\u061F\u0620\x07P\x02\x02\u0620\u0621\x07W\x02\x02\u0621\u0622\x07V\x02" + + "\x02\u0622\u0623\x07G\x02\x02\u0623\u0122\x03\x02\x02\x02\u0624\u0625" + + "\x07R\x02\x02\u0625\u0626\x07G\x02\x02\u0626\u0627\x07T\x02\x02\u0627" + + "\u0628\x07a\x02\x02\u0628\u0629\x07U\x02\x02\u0629\u062A\x07G\x02\x02" + + "\u062A\u062B\x07E\x02\x02\u062B\u062C\x07Q\x02\x02\u062C\u062D\x07P\x02" + + "\x02\u062D\u062E\x07F\x02\x02\u062E\u0124\x03\x02\x02\x02\u062F\u0630" + + "\x07T\x02\x02\u0630\u0631\x07C\x02\x02\u0631\u0632\x07V\x02\x02\u0632" + + "\u0633\x07G\x02\x02\u0633\u0126\x03\x02\x02\x02\u0634\u0635\x07U\x02\x02" + + "\u0635\u0636\x07R\x02\x02\u0636\u0637\x07C\x02\x02\u0637\u0638\x07T\x02" + + "\x02\u0638\u0639\x07M\x02\x02\u0639\u063A\x07N\x02\x02\u063A\u063B\x07" + + "K\x02\x02\u063B\u063C\x07P\x02\x02\u063C\u063D\x07G\x02\x02\u063D\u0128" + + "\x03\x02\x02\x02\u063E\u063F\x07E\x02\x02\u063F\u012A\x03\x02\x02\x02" + + "\u0640\u0641\x07F\x02\x02\u0641\u0642\x07E\x02\x02\u0642\u012C\x03\x02" + + "\x02\x02\u0643\u0644\x07C\x02\x02\u0644\u0645\x07D\x02\x02\u0645\u0646" + + "\x07U\x02\x02\u0646\u012E\x03\x02\x02\x02\u0647\u0648\x07E\x02\x02\u0648" + + "\u0649\x07G\x02\x02\u0649\u064A\x07K\x02\x02\u064A\u064B\x07N\x02\x02" + + "\u064B\u0130\x03\x02\x02\x02\u064C\u064D\x07E\x02\x02\u064D\u064E\x07" + + "G\x02\x02\u064E\u064F\x07K\x02\x02\u064F\u0650\x07N\x02\x02\u0650\u0651" + + "\x07K\x02\x02\u0651\u0652\x07P\x02\x02\u0652\u0653\x07I\x02\x02\u0653" + + "\u0132\x03\x02\x02\x02\u0654\u0655\x07E\x02\x02\u0655\u0656\x07Q\x02\x02" + + "\u0656\u0657\x07P\x02\x02\u0657\u0658\x07X\x02\x02\u0658\u0134\x03\x02" + + "\x02\x02\u0659\u065A\x07E\x02\x02\u065A\u065B\x07T\x02\x02\u065B\u065C" + + "\x07E\x02\x02\u065C\u065D\x075\x02\x02\u065D\u065E\x074\x02\x02\u065E" + + "\u0136\x03\x02\x02\x02\u065F\u0660\x07G\x02\x02\u0660\u0138\x03\x02\x02" + + "\x02\u0661\u0662\x07G\x02\x02\u0662\u0663\x07Z\x02\x02\u0663\u0664\x07" + + "R\x02\x02\u0664\u013A\x03\x02\x02\x02\u0665\u0666\x07H\x02\x02\u0666\u0667" + + "\x07N\x02\x02\u0667\u0668\x07Q\x02\x02\u0668\u0669\x07Q\x02\x02\u0669" + + "\u066A\x07T\x02\x02\u066A\u013C\x03\x02\x02\x02\u066B\u066C\x07N\x02\x02" + + "\u066C\u066D\x07P\x02\x02\u066D\u013E\x03\x02\x02\x02\u066E\u066F\x07" + + "N\x02\x02\u066F\u0670\x07Q\x02\x02\u0670\u0671\x07I\x02\x02\u0671\u0140" + + "\x03\x02\x02\x02\u0672\u0673\x07N\x02\x02\u0673\u0674\x07Q\x02\x02\u0674" + + "\u0675\x07I\x02\x02\u0675\u0676\x073\x02\x02\u0676\u0677\x072\x02\x02" + + "\u0677\u0142\x03\x02\x02\x02\u0678\u0679\x07N\x02\x02\u0679\u067A\x07" + + "Q\x02\x02\u067A\u067B\x07I\x02\x02\u067B\u067C\x074\x02\x02\u067C\u0144" + + "\x03\x02\x02\x02\u067D\u067E\x07O\x02\x02\u067E\u067F\x07Q\x02\x02\u067F" + + "\u0680\x07F\x02\x02\u0680\u0146\x03\x02\x02\x02\u0681\u0682\x07R\x02\x02" + + "\u0682\u0683\x07K\x02\x02\u0683\u0148\x03\x02\x02\x02\u0684\u0685\x07" + + "R\x02\x02\u0685\u0686\x07Q\x02\x02\u0686\u0687\x07Y\x02\x02\u0687\u014A" + + "\x03\x02\x02\x02\u0688\u0689\x07R\x02\x02\u0689\u068A\x07Q\x02\x02\u068A" + + "\u068B\x07Y\x02\x02\u068B\u068C\x07G\x02\x02\u068C\u068D\x07T\x02\x02" + + "\u068D\u014C\x03\x02\x02\x02\u068E\u068F\x07T\x02\x02\u068F\u0690\x07" + + "C\x02\x02\u0690\u0691\x07P\x02\x02\u0691\u0692\x07F\x02\x02\u0692\u014E" + + "\x03\x02\x02\x02\u0693\u0694\x07T\x02\x02\u0694\u0695\x07Q\x02\x02\u0695" + + "\u0696\x07W\x02\x02\u0696\u0697\x07P\x02\x02\u0697\u0698\x07F\x02\x02" + + "\u0698\u0150\x03\x02\x02\x02\u0699\u069A\x07U\x02\x02\u069A\u069B\x07" + + "K\x02\x02\u069B\u069C\x07I\x02\x02\u069C\u069D\x07P\x02\x02\u069D\u0152" + + "\x03\x02\x02\x02\u069E\u069F\x07U\x02\x02\u069F\u06A0\x07S\x02\x02\u06A0" + + "\u06A1\x07T\x02\x02\u06A1\u06A2\x07V\x02\x02\u06A2\u0154\x03\x02\x02\x02" + + "\u06A3\u06A4\x07V\x02\x02\u06A4\u06A5\x07T\x02\x02\u06A5\u06A6\x07W\x02" + + "\x02\u06A6\u06A7\x07P\x02\x02\u06A7\u06A8\x07E\x02\x02\u06A8\u06A9\x07" + + "C\x02\x02\u06A9\u06AA\x07V\x02\x02\u06AA\u06AB\x07G\x02\x02\u06AB\u0156" + + "\x03\x02\x02\x02\u06AC\u06AD\x07C\x02\x02\u06AD\u06AE\x07E\x02\x02\u06AE" + + "\u06AF\x07Q\x02\x02\u06AF\u06B0\x07U\x02\x02\u06B0\u0158\x03\x02\x02\x02" + + "\u06B1\u06B2\x07C\x02\x02\u06B2\u06B3\x07U\x02\x02\u06B3\u06B4\x07K\x02" + + "\x02\u06B4\u06B5\x07P\x02\x02\u06B5\u015A\x03\x02\x02\x02\u06B6\u06B7" + + "\x07C\x02\x02\u06B7\u06B8\x07V\x02\x02\u06B8\u06B9\x07C\x02\x02\u06B9" + + "\u06BA\x07P\x02\x02\u06BA\u015C\x03\x02\x02\x02\u06BB\u06BC\x07C\x02\x02" + + "\u06BC\u06BD\x07V\x02\x02\u06BD\u06BE\x07C\x02\x02\u06BE\u06BF\x07P\x02" + + "\x02\u06BF\u06C0\x074\x02\x02\u06C0\u015E\x03\x02\x02\x02\u06C1\u06C2" + + "\x07E\x02\x02\u06C2\u06C3\x07Q\x02\x02\u06C3\u06C4\x07U\x02\x02\u06C4" + + "\u0160\x03\x02\x02\x02\u06C5\u06C6\x07E\x02\x02\u06C6\u06C7\x07Q\x02\x02" + + "\u06C7\u06C8\x07V\x02\x02\u06C8\u0162\x03\x02\x02\x02\u06C9\u06CA\x07" + + "F\x02\x02\u06CA\u06CB\x07G\x02\x02\u06CB\u06CC\x07I\x02\x02\u06CC\u06CD" + + "\x07T\x02\x02\u06CD\u06CE\x07G\x02\x02\u06CE\u06CF\x07G\x02\x02\u06CF" + + "\u06D0\x07U\x02\x02\u06D0\u0164\x03\x02\x02\x02\u06D1\u06D2\x07T\x02\x02" + + "\u06D2\u06D3\x07C\x02\x02\u06D3\u06D4\x07F\x02\x02\u06D4\u06D5\x07K\x02" + + "\x02\u06D5\u06D6\x07C\x02\x02\u06D6\u06D7\x07P\x02\x02\u06D7\u06D8\x07" + + "U\x02\x02\u06D8\u0166\x03\x02\x02\x02\u06D9\u06DA\x07U\x02\x02\u06DA\u06DB" + + "\x07K\x02\x02\u06DB\u06DC\x07P\x02\x02\u06DC\u0168\x03\x02\x02\x02\u06DD" + + "\u06DE\x07V\x02\x02\u06DE\u06DF\x07C\x02\x02\u06DF\u06E0\x07P\x02\x02" + + "\u06E0\u016A\x03\x02\x02\x02\u06E1\u06E2\x07C\x02\x02\u06E2\u06E3\x07" + + "F\x02\x02\u06E3\u06E4\x07F\x02\x02\u06E4\u06E5\x07F\x02\x02\u06E5\u06E6" + + "\x07C\x02\x02\u06E6\u06E7\x07V\x02\x02\u06E7\u06E8\x07G\x02\x02\u06E8" + + "\u016C\x03\x02\x02\x02\u06E9\u06EA\x07F\x02\x02\u06EA\u06EB\x07C\x02\x02" + + "\u06EB\u06EC\x07V\x02\x02\u06EC\u06ED\x07G\x02\x02\u06ED\u016E\x03\x02" + + "\x02\x02\u06EE\u06EF\x07F\x02\x02\u06EF\u06F0\x07C\x02\x02\u06F0\u06F1" + + "\x07V\x02\x02\u06F1\u06F2\x07G\x02\x02\u06F2\u06F3\x07a\x02\x02\u06F3" + + "\u06F4\x07C\x02\x02\u06F4\u06F5\x07F\x02\x02\u06F5\u06F6\x07F\x02\x02" + + "\u06F6\u0170\x03\x02\x02\x02\u06F7\u06F8\x07F\x02\x02\u06F8\u06F9\x07" + + "C\x02\x02\u06F9\u06FA\x07V\x02\x02\u06FA\u06FB\x07G\x02\x02\u06FB\u06FC" + + "\x07a\x02\x02\u06FC\u06FD\x07U\x02\x02\u06FD\u06FE\x07W\x02\x02\u06FE" + + "\u06FF\x07D\x02\x02\u06FF\u0172\x03\x02\x02\x02\u0700\u0701\x07F\x02\x02" + + "\u0701\u0702\x07C\x02\x02\u0702\u0703\x07[\x02\x02\u0703\u0704\x07Q\x02" + + "\x02\u0704\u0705\x07H\x02\x02\u0705\u0706\x07O\x02\x02\u0706\u0707\x07" + + "Q\x02\x02\u0707\u0708\x07P\x02\x02\u0708\u0709\x07V\x02\x02\u0709\u070A" + + "\x07J\x02\x02\u070A\u0174\x03\x02\x02\x02\u070B\u070C\x07F\x02\x02\u070C" + + "\u070D\x07C\x02\x02\u070D\u070E\x07[\x02\x02\u070E\u070F\x07Q\x02\x02" + + "\u070F\u0710\x07H\x02\x02\u0710\u0711\x07Y\x02\x02\u0711\u0712\x07G\x02" + + "\x02\u0712\u0713\x07G\x02\x02\u0713\u0714\x07M\x02\x02\u0714\u0176\x03" + + "\x02\x02\x02\u0715\u0716\x07F\x02\x02\u0716\u0717\x07C\x02\x02\u0717\u0718" + + "\x07[\x02\x02\u0718\u0719\x07Q\x02\x02\u0719\u071A\x07H\x02\x02\u071A" + + "\u071B\x07[\x02\x02\u071B\u071C\x07G\x02\x02\u071C\u071D\x07C\x02\x02" + + "\u071D\u071E\x07T\x02\x02\u071E\u0178\x03\x02\x02\x02\u071F\u0720\x07" + + "F\x02\x02\u0720\u0721\x07C\x02\x02\u0721\u0722\x07[\x02\x02\u0722\u0723" + + "\x07P\x02\x02\u0723\u0724\x07C\x02\x02\u0724\u0725\x07O\x02\x02\u0725" + + "\u0726\x07G\x02\x02\u0726\u017A\x03\x02\x02\x02\u0727\u0728\x07H\x02\x02" + + "\u0728\u0729\x07T\x02\x02\u0729\u072A\x07Q\x02\x02\u072A\u072B\x07O\x02" + + "\x02\u072B\u072C\x07a\x02\x02\u072C\u072D\x07F\x02\x02\u072D\u072E\x07" + + "C\x02\x02\u072E\u072F\x07[\x02\x02\u072F\u0730\x07U\x02\x02\u0730\u017C" + + "\x03\x02\x02\x02\u0731\u0732\x07O\x02\x02\u0732\u0733\x07Q\x02\x02\u0733" + + "\u0734\x07P\x02\x02\u0734\u0735\x07V\x02\x02\u0735\u0736\x07J\x02\x02" + + "\u0736\u0737\x07P\x02\x02\u0737\u0738\x07C\x02\x02\u0738\u0739\x07O\x02" + + "\x02\u0739\u073A\x07G\x02\x02\u073A\u017E\x03\x02\x02\x02\u073B\u073C" + + "\x07U\x02\x02\u073C\u073D\x07W\x02\x02\u073D\u073E\x07D\x02\x02\u073E" + + "\u073F\x07F\x02\x02\u073F\u0740\x07C\x02\x02\u0740\u0741\x07V\x02\x02" + + "\u0741\u0742\x07G\x02\x02\u0742\u0180\x03\x02\x02\x02\u0743\u0744\x07" + + "V\x02\x02\u0744\u0745\x07K\x02\x02\u0745\u0746\x07O\x02\x02\u0746\u0747" + + "\x07G\x02\x02\u0747\u0182\x03\x02\x02\x02\u0748\u0749\x07V\x02\x02\u0749" + + "\u074A\x07K\x02\x02\u074A\u074B\x07O\x02\x02\u074B\u074C\x07G\x02\x02" + + "\u074C\u074D\x07a\x02\x02\u074D\u074E\x07V\x02\x02\u074E\u074F\x07Q\x02" + + "\x02\u074F\u0750\x07a\x02\x02\u0750\u0751\x07U\x02\x02\u0751\u0752\x07" + + "G\x02\x02\u0752\u0753\x07E\x02\x02\u0753\u0184\x03\x02\x02\x02\u0754\u0755" + + "\x07V\x02\x02\u0755\u0756\x07K\x02\x02\u0756\u0757\x07O\x02\x02\u0757" + + "\u0758\x07G\x02\x02\u0758\u0759\x07U\x02\x02\u0759\u075A\x07V\x02\x02" + + "\u075A\u075B\x07C\x02\x02\u075B\u075C\x07O\x02\x02\u075C\u075D\x07R\x02" + + "\x02\u075D\u0186\x03\x02\x02\x02\u075E\u075F\x07F\x02\x02\u075F\u0760" + + "\x07C\x02\x02\u0760\u0761\x07V\x02\x02\u0761\u0762\x07G\x02\x02\u0762" + + "\u0763\x07a\x02\x02\u0763\u0764\x07H\x02\x02\u0764\u0765\x07Q\x02\x02" + + "\u0765\u0766\x07T\x02\x02\u0766\u0767\x07O\x02\x02\u0767\u0768\x07C\x02" + + "\x02\u0768\u0769\x07V\x02\x02\u0769\u0188\x03\x02\x02\x02\u076A\u076B" + + "\x07V\x02\x02\u076B\u076C\x07Q\x02\x02\u076C\u076D\x07a\x02\x02\u076D" + + "\u076E\x07F\x02\x02\u076E\u076F\x07C\x02\x02\u076F\u0770\x07[\x02\x02" + + "\u0770\u0771\x07U\x02\x02\u0771\u018A\x03\x02\x02\x02\u0772\u0773\x07" + + "U\x02\x02\u0773\u0774\x07W\x02\x02\u0774\u0775\x07D\x02\x02\u0775\u0776" + + "\x07U\x02\x02\u0776\u0777\x07V\x02\x02\u0777\u0778\x07T\x02\x02\u0778" + + "\u018C\x03\x02\x02\x02\u0779\u077A\x07U\x02\x02\u077A\u077B\x07W\x02\x02" + + "\u077B\u077C\x07D\x02\x02\u077C\u077D\x07U\x02\x02\u077D\u077E\x07V\x02" + + "\x02\u077E\u077F\x07T\x02\x02\u077F\u0780\x07K\x02\x02\u0780\u0781\x07" + + "P\x02\x02\u0781\u0782\x07I\x02\x02\u0782\u018E\x03\x02\x02\x02\u0783\u0784" + + "\x07N\x02\x02\u0784\u0785\x07V\x02\x02\u0785\u0786\x07T\x02\x02\u0786" + + "\u0787\x07K\x02\x02\u0787\u0788\x07O\x02\x02\u0788\u0190\x03\x02\x02\x02" + + "\u0789\u078A\x07T\x02\x02\u078A\u078B\x07V\x02\x02\u078B\u078C\x07T\x02" + + "\x02\u078C\u078D\x07K\x02\x02\u078D\u078E\x07O\x02\x02\u078E\u0192\x03" + + "\x02\x02\x02\u078F\u0790\x07V\x02\x02\u0790\u0791\x07T\x02\x02\u0791\u0792" + + "\x07K\x02\x02\u0792\u0793\x07O\x02\x02\u0793\u0194\x03\x02\x02\x02\u0794" + + "\u0795\x07V\x02\x02\u0795\u0796\x07Q\x02\x02\u0796\u0196\x03\x02\x02\x02" + + "\u0797\u0798\x07N\x02\x02\u0798\u0799\x07Q\x02\x02\u0799\u079A\x07Y\x02" + + "\x02\u079A\u079B\x07G\x02\x02\u079B\u079C\x07T\x02\x02\u079C\u0198\x03" + + "\x02\x02\x02\u079D\u079E\x07W\x02\x02\u079E\u079F\x07R\x02\x02\u079F\u07A0" + + "\x07R\x02\x02\u07A0\u07A1\x07G\x02\x02\u07A1\u07A2\x07T\x02\x02\u07A2" + + "\u019A\x03\x02\x02\x02\u07A3\u07A4\x07E\x02\x02\u07A4\u07A5\x07Q\x02\x02" + + "\u07A5\u07A6\x07P\x02\x02\u07A6\u07A7\x07E\x02\x02\u07A7\u07A8\x07C\x02" + + "\x02\u07A8\u07A9\x07V\x02\x02\u07A9\u019C\x03\x02\x02\x02\u07AA\u07AB" + + "\x07E\x02\x02\u07AB\u07AC\x07Q\x02\x02\u07AC\u07AD\x07P\x02\x02\u07AD" + + "\u07AE\x07E\x02\x02\u07AE\u07AF\x07C\x02\x02\u07AF\u07B0\x07V\x02\x02" + + "\u07B0\u07B1\x07a\x02\x02\u07B1\u07B2\x07Y\x02\x02\u07B2\u07B3\x07U\x02" + + "\x02\u07B3\u019E\x03\x02\x02\x02\u07B4\u07B5\x07N\x02\x02\u07B5\u07B6" + + "\x07G\x02\x02\u07B6\u07B7\x07P\x02\x02\u07B7\u07B8\x07I\x02\x02\u07B8" + + "\u07B9\x07V\x02\x02\u07B9\u07BA\x07J\x02\x02\u07BA\u01A0\x03\x02\x02\x02" + + "\u07BB\u07BC\x07U\x02\x02\u07BC\u07BD\x07V\x02\x02\u07BD\u07BE\x07T\x02" + + "\x02\u07BE\u07BF\x07E\x02\x02\u07BF\u07C0\x07O\x02\x02\u07C0\u07C1\x07" + + "R\x02\x02\u07C1\u01A2\x03\x02\x02\x02\u07C2\u07C3\x07T\x02\x02\u07C3\u07C4" + + "\x07K\x02\x02\u07C4\u07C5\x07I\x02\x02\u07C5\u07C6\x07J\x02\x02\u07C6" + + "\u07C7\x07V\x02\x02\u07C7\u01A4\x03\x02\x02\x02\u07C8\u07C9\x07N\x02\x02" + + "\u07C9\u07CA\x07G\x02\x02\u07CA\u07CB\x07H\x02\x02\u07CB\u07CC\x07V\x02" + + "\x02\u07CC\u01A6\x03\x02\x02\x02\u07CD\u07CE\x07C\x02\x02\u07CE\u07CF" + + "\x07U\x02\x02\u07CF\u07D0\x07E\x02\x02\u07D0\u07D1\x07K\x02\x02\u07D1" + + "\u07D2\x07K\x02\x02\u07D2\u01A8\x03\x02\x02\x02\u07D3\u07D4\x07N\x02\x02" + + "\u07D4\u07D5\x07Q\x02\x02\u07D5\u07D6\x07E\x02\x02\u07D6\u07D7\x07C\x02" + + "\x02\u07D7\u07D8\x07V\x02\x02\u07D8\u07D9\x07G\x02\x02\u07D9\u01AA\x03" + + "\x02\x02\x02\u07DA\u07DB\x07T\x02\x02\u07DB\u07DC\x07G\x02\x02\u07DC\u07DD" + + "\x07R\x02\x02\u07DD\u07DE\x07N\x02\x02\u07DE\u07DF\x07C\x02\x02\u07DF" + + "\u07E0\x07E\x02\x02\u07E0\u07E1\x07G\x02\x02\u07E1\u01AC\x03\x02\x02\x02" + + "\u07E2\u07E3\x07E\x02\x02\u07E3\u07E4\x07C\x02\x02\u07E4\u07E5\x07U\x02" + + "\x02\u07E5\u07E6\x07V\x02\x02\u07E6\u01AE\x03\x02\x02\x02\u07E7\u07E8" + + "\x07N\x02\x02\u07E8\u07E9\x07K\x02\x02\u07E9\u07EA\x07M\x02\x02\u07EA" + + "\u07EB\x07G\x02\x02\u07EB\u01B0\x03\x02\x02\x02\u07EC\u07ED\x07K\x02\x02" + + "\u07ED\u07EE\x07U\x02\x02\u07EE\u07EF\x07P\x02\x02\u07EF\u07F0\x07W\x02" + + "\x02\u07F0\u07F1\x07N\x02\x02\u07F1\u07F2\x07N\x02\x02\u07F2\u01B2\x03" + + "\x02\x02\x02\u07F3\u07F4\x07K\x02\x02\u07F4\u07F5\x07U\x02\x02\u07F5\u07F6" + + "\x07P\x02\x02\u07F6\u07F7\x07Q\x02\x02\u07F7\u07F8\x07V\x02\x02\u07F8" + + "\u07F9\x07P\x02\x02\u07F9\u07FA\x07W\x02\x02\u07FA\u07FB\x07N\x02\x02" + + "\u07FB\u07FC\x07N\x02\x02\u07FC\u01B4\x03\x02\x02\x02\u07FD\u07FE\x07" + + "K\x02\x02\u07FE\u07FF\x07H\x02\x02\u07FF\u0800\x07P\x02\x02\u0800\u0801" + + "\x07W\x02\x02\u0801\u0802\x07N\x02\x02\u0802\u0803\x07N\x02\x02\u0803" + + "\u01B6\x03\x02\x02\x02\u0804\u0805\x07P\x02\x02\u0805\u0806\x07W\x02\x02" + + "\u0806\u0807\x07N\x02\x02\u0807\u0808\x07N\x02\x02\u0808\u0809\x07K\x02" + + "\x02\u0809\u080A\x07H\x02\x02\u080A\u01B8\x03\x02\x02\x02\u080B\u080C" + + "\x07K\x02\x02\u080C\u080D\x07H\x02\x02\u080D\u01BA\x03\x02\x02\x02\u080E" + + "\u080F\x07O\x02\x02\u080F\u0810\x07C\x02\x02\u0810\u0811\x07V\x02\x02" + + "\u0811\u0812\x07E\x02\x02\u0812\u0813\x07J\x02\x02\u0813\u01BC\x03\x02" + + "\x02\x02\u0814\u0815\x07O\x02\x02\u0815\u0816\x07C\x02\x02\u0816\u0817" + + "\x07V\x02\x02\u0817\u0818\x07E\x02\x02\u0818\u0819\x07J\x02\x02\u0819" + + "\u081A\x07a\x02\x02\u081A\u081B\x07R\x02\x02\u081B\u081C\x07J\x02\x02" + + "\u081C\u081D\x07T\x02\x02\u081D\u081E\x07C\x02\x02\u081E\u081F\x07U\x02" + + "\x02\u081F\u0820\x07G\x02\x02\u0820\u01BE\x03\x02\x02\x02\u0821\u0822" + + "\x07U\x02\x02\u0822\u0823\x07K\x02\x02\u0823\u0824\x07O\x02\x02\u0824" + + "\u0825\x07R\x02\x02\u0825\u0826\x07N\x02\x02\u0826\u0827\x07G\x02\x02" + + "\u0827\u0828\x07a\x02\x02\u0828\u0829\x07S\x02\x02\u0829\u082A\x07W\x02" + + "\x02\u082A\u082B\x07G\x02\x02\u082B\u082C\x07T\x02\x02\u082C\u082D\x07" + + "[\x02\x02\u082D\u082E\x07a\x02\x02\u082E\u082F\x07U\x02\x02\u082F\u0830" + + "\x07V\x02\x02\u0830\u0831\x07T\x02\x02\u0831\u0832\x07K\x02\x02\u0832" + + "\u0833\x07P\x02\x02\u0833\u0834\x07I\x02\x02\u0834\u01C0\x03\x02\x02\x02" + + "\u0835\u0836\x07C\x02\x02\u0836\u0837\x07N\x02\x02\u0837\u0838\x07N\x02" + + "\x02\u0838\u0839\x07Q\x02\x02\u0839\u083A\x07Y\x02\x02\u083A\u083B\x07" + + "a\x02\x02\u083B\u083C\x07N\x02\x02\u083C\u083D\x07G\x02\x02\u083D\u083E" + + "\x07C\x02\x02\u083E\u083F\x07F\x02\x02\u083F\u0840\x07K\x02\x02\u0840" + + "\u0841\x07P\x02\x02\u0841\u0842\x07I\x02\x02\u0842\u0843\x07a\x02\x02" + + "\u0843\u0844\x07Y\x02\x02\u0844\u0845\x07K\x02\x02\u0845\u0846\x07N\x02" + + "\x02\u0846\u0847\x07F\x02\x02\u0847\u0848\x07E\x02\x02\u0848\u0849\x07" + + "C\x02\x02\u0849\u084A\x07T\x02\x02\u084A\u084B\x07F\x02\x02\u084B\u01C2" + + "\x03\x02\x02\x02\u084C\u084D\x07C\x02\x02\u084D\u084E\x07P\x02\x02\u084E" + + "\u084F\x07C\x02\x02\u084F\u0850\x07N\x02\x02\u0850\u0851\x07[\x02\x02" + + "\u0851\u0852\x07\\\x02\x02\u0852\u0853\x07G\x02\x02\u0853\u0854\x07a\x02" + + "\x02\u0854\u0855\x07Y\x02\x02\u0855\u0856\x07K\x02\x02\u0856\u0857\x07" + + "N\x02\x02\u0857\u0858\x07F\x02\x02\u0858\u0859\x07E\x02\x02\u0859\u085A" + + "\x07C\x02\x02\u085A\u085B\x07T\x02\x02\u085B\u085C\x07F\x02\x02\u085C" + + "\u01C4\x03\x02\x02\x02\u085D\u085E\x07C\x02\x02\u085E\u085F\x07P\x02\x02" + + "\u085F\u0860\x07C\x02\x02\u0860\u0861\x07N\x02\x02\u0861\u0862\x07[\x02" + + "\x02\u0862\u0863\x07\\\x02\x02\u0863\u0864\x07G\x02\x02\u0864\u0865\x07" + + "T\x02\x02\u0865\u01C6\x03\x02\x02\x02\u0866\u0867\x07C\x02\x02\u0867\u0868" + + "\x07W\x02\x02\u0868\u0869\x07V\x02\x02\u0869\u086A\x07Q\x02\x02\u086A" + + "\u086B\x07a\x02\x02\u086B\u086C\x07I\x02\x02\u086C\u086D\x07G\x02\x02" + + "\u086D\u086E\x07P\x02\x02\u086E\u086F\x07G\x02\x02\u086F\u0870\x07T\x02" + + "\x02\u0870\u0871\x07C\x02\x02\u0871\u0872\x07V\x02\x02\u0872\u0873\x07" + + "G\x02\x02\u0873\u0874\x07a\x02\x02\u0874\u0875\x07U\x02\x02\u0875\u0876" + + "\x07[\x02\x02\u0876\u0877\x07P\x02\x02\u0877\u0878\x07Q\x02\x02\u0878" + + "\u0879\x07P\x02\x02\u0879\u087A\x07[\x02\x02\u087A\u087B\x07O\x02\x02" + + "\u087B\u087C\x07U\x02\x02\u087C\u087D\x07a\x02\x02\u087D\u087E\x07R\x02" + + "\x02\u087E\u087F\x07J\x02\x02\u087F\u0880\x07T\x02\x02\u0880\u0881\x07" + + "C\x02\x02\u0881\u0882\x07U\x02\x02\u0882\u0883\x07G\x02\x02\u0883\u0884" + + "\x07a\x02\x02\u0884\u0885\x07S\x02\x02\u0885\u0886\x07W\x02\x02\u0886" + + "\u0887\x07G\x02\x02\u0887\u0888\x07T\x02\x02\u0888\u0889\x07[\x02\x02" + + "\u0889\u01C8\x03\x02\x02\x02\u088A\u088B\x07D\x02\x02\u088B\u088C\x07" + + "Q\x02\x02\u088C\u088D\x07Q\x02\x02\u088D\u088E\x07U\x02\x02\u088E\u088F" + + "\x07V\x02\x02\u088F\u01CA\x03\x02\x02\x02\u0890\u0891\x07E\x02\x02\u0891" + + "\u0892\x07W\x02\x02\u0892\u0893\x07V\x02\x02\u0893\u0894\x07Q\x02\x02" + + "\u0894\u0895\x07H\x02\x02\u0895\u0896\x07H\x02\x02\u0896\u0897\x07a\x02" + + "\x02\u0897\u0898\x07H\x02\x02\u0898\u0899\x07T\x02\x02\u0899\u089A\x07" + + "G\x02\x02\u089A\u089B\x07S\x02\x02\u089B\u089C\x07W\x02\x02\u089C\u089D" + + "\x07G\x02\x02\u089D\u089E\x07P\x02\x02\u089E\u089F\x07E\x02\x02\u089F" + + "\u08A0\x07[\x02\x02\u08A0\u01CC\x03\x02\x02\x02\u08A1\u08A2\x07F\x02\x02" + + "\u08A2\u08A3\x07G\x02\x02\u08A3\u08A4\x07H\x02\x02\u08A4\u08A5\x07C\x02" + + "\x02\u08A5\u08A6\x07W\x02\x02\u08A6\u08A7\x07N\x02\x02\u08A7\u08A8\x07" + + "V\x02\x02\u08A8\u08A9\x07a\x02\x02\u08A9\u08AA\x07H\x02\x02\u08AA\u08AB" + + "\x07K\x02\x02\u08AB\u08AC\x07G\x02\x02\u08AC\u08AD\x07N\x02\x02\u08AD" + + "\u08AE\x07F\x02\x02\u08AE\u01CE\x03\x02\x02\x02\u08AF\u08B0\x07F\x02\x02" + + "\u08B0\u08B1\x07G\x02\x02\u08B1\u08B2\x07H\x02\x02\u08B2\u08B3\x07C\x02" + + "\x02\u08B3\u08B4\x07W\x02\x02\u08B4\u08B5\x07N\x02\x02\u08B5\u08B6\x07" + + "V\x02\x02\u08B6\u08B7\x07a\x02\x02\u08B7\u08B8\x07Q\x02\x02\u08B8\u08B9" + + "\x07R\x02\x02\u08B9\u08BA\x07G\x02\x02\u08BA\u08BB\x07T\x02\x02\u08BB" + + "\u08BC\x07C\x02\x02\u08BC\u08BD\x07V\x02\x02\u08BD\u08BE\x07Q\x02\x02" + + "\u08BE\u08BF\x07T\x02\x02\u08BF\u01D0\x03\x02\x02\x02\u08C0\u08C1\x07" + + "G\x02\x02\u08C1\u08C2\x07P\x02\x02\u08C2\u08C3\x07C\x02\x02\u08C3\u08C4" + + "\x07D\x02\x02\u08C4\u08C5\x07N\x02\x02\u08C5\u08C6\x07G\x02\x02\u08C6" + + "\u08C7\x07a\x02\x02\u08C7\u08C8\x07R\x02\x02\u08C8\u08C9\x07Q\x02\x02" + + "\u08C9\u08CA\x07U\x02\x02\u08CA\u08CB\x07K\x02\x02\u08CB\u08CC\x07V\x02" + + "\x02\u08CC\u08CD\x07K\x02\x02\u08CD\u08CE\x07Q\x02\x02\u08CE\u08CF\x07" + + "P\x02\x02\u08CF\u08D0\x07a\x02\x02\u08D0\u08D1\x07K\x02\x02\u08D1\u08D2" + + "\x07P\x02\x02\u08D2\u08D3\x07E\x02\x02\u08D3\u08D4\x07T\x02\x02\u08D4" + + "\u08D5\x07G\x02\x02\u08D5\u08D6\x07O\x02\x02\u08D6\u08D7\x07G\x02\x02" + + "\u08D7\u08D8\x07P\x02\x02\u08D8\u08D9\x07V\x02\x02\u08D9\u08DA\x07U\x02" + + "\x02\u08DA\u01D2\x03\x02\x02\x02\u08DB\u08DC\x07H\x02\x02\u08DC\u08DD" + + "\x07N\x02\x02\u08DD\u08DE\x07C\x02\x02\u08DE\u08DF\x07I\x02\x02\u08DF" + + "\u08E0\x07U\x02\x02\u08E0\u01D4\x03\x02\x02\x02\u08E1\u08E2\x07H\x02\x02" + + "\u08E2\u08E3\x07W\x02\x02\u08E3\u08E4\x07\\\x02\x02\u08E4\u08E5\x07\\" + + "\x02\x02\u08E5\u08E6\x07[\x02\x02\u08E6\u08E7\x07a\x02\x02\u08E7\u08E8" + + "\x07O\x02\x02\u08E8\u08E9\x07C\x02\x02\u08E9\u08EA\x07Z\x02\x02\u08EA" + + "\u08EB\x07a\x02\x02\u08EB\u08EC\x07G\x02\x02\u08EC\u08ED\x07Z\x02\x02" + + "\u08ED\u08EE\x07R\x02\x02\u08EE\u08EF\x07C\x02\x02\u08EF\u08F0\x07P\x02" + + "\x02\u08F0\u08F1\x07U\x02\x02\u08F1\u08F2\x07K\x02\x02\u08F2\u08F3\x07" + + "Q\x02\x02\u08F3\u08F4\x07P\x02\x02\u08F4\u08F5\x07U\x02\x02\u08F5\u01D6" + + "\x03\x02\x02\x02\u08F6\u08F7\x07H\x02\x02\u08F7\u08F8\x07W\x02\x02\u08F8" + + "\u08F9\x07\\\x02\x02\u08F9\u08FA\x07\\\x02\x02\u08FA"; + private static readonly _serializedATNSegment4: string = + "\u08FB\x07[\x02\x02\u08FB\u08FC\x07a\x02\x02\u08FC\u08FD\x07R\x02\x02" + + "\u08FD\u08FE\x07T\x02\x02\u08FE\u08FF\x07G\x02\x02\u08FF\u0900\x07H\x02" + + "\x02\u0900\u0901\x07K\x02\x02\u0901\u0902\x07Z\x02\x02\u0902\u0903\x07" + + "a\x02\x02\u0903\u0904\x07N\x02\x02\u0904\u0905\x07G\x02\x02\u0905\u0906" + + "\x07P\x02\x02\u0906\u0907\x07I\x02\x02\u0907\u0908\x07V\x02\x02\u0908" + + "\u0909\x07J\x02\x02\u0909\u01D8\x03\x02\x02\x02\u090A\u090B\x07H\x02\x02" + + "\u090B\u090C\x07W\x02\x02\u090C\u090D\x07\\\x02\x02\u090D\u090E\x07\\" + + "\x02\x02\u090E\u090F\x07[\x02\x02\u090F\u0910\x07a\x02\x02\u0910\u0911" + + "\x07V\x02\x02\u0911\u0912\x07T\x02\x02\u0912\u0913\x07C\x02\x02\u0913" + + "\u0914\x07P\x02\x02\u0914\u0915\x07U\x02\x02\u0915\u0916\x07R\x02\x02" + + "\u0916\u0917\x07Q\x02\x02\u0917\u0918\x07U\x02\x02\u0918\u0919\x07K\x02" + + "\x02\u0919\u091A\x07V\x02\x02\u091A\u091B\x07K\x02\x02\u091B\u091C\x07" + + "Q\x02\x02\u091C\u091D\x07P\x02\x02\u091D\u091E\x07U\x02\x02\u091E\u01DA" + + "\x03\x02\x02\x02\u091F\u0920\x07H\x02\x02\u0920\u0921\x07W\x02\x02\u0921" + + "\u0922\x07\\\x02\x02\u0922\u0923\x07\\\x02\x02\u0923\u0924\x07[\x02\x02" + + "\u0924\u0925\x07a\x02\x02\u0925\u0926\x07T\x02\x02\u0926\u0927\x07G\x02" + + "\x02\u0927\u0928\x07Y\x02\x02\u0928\u0929\x07T\x02\x02\u0929\u092A\x07" + + "K\x02\x02\u092A\u092B\x07V\x02\x02\u092B\u092C\x07G\x02\x02\u092C\u01DC" + + "\x03\x02\x02\x02\u092D\u092E\x07H\x02\x02\u092E\u092F\x07W\x02\x02\u092F" + + "\u0930\x07\\\x02\x02\u0930\u0931\x07\\\x02\x02\u0931\u0932\x07K\x02\x02" + + "\u0932\u0933\x07P\x02\x02\u0933\u0934\x07G\x02\x02\u0934\u0935\x07U\x02" + + "\x02\u0935\u0936\x07U\x02\x02\u0936\u01DE\x03\x02\x02\x02\u0937\u0938" + + "\x07N\x02\x02\u0938\u0939\x07G\x02\x02\u0939\u093A\x07P\x02\x02\u093A" + + "\u093B\x07K\x02\x02\u093B\u093C\x07G\x02\x02\u093C\u093D\x07P\x02\x02" + + "\u093D\u093E\x07V\x02\x02\u093E\u01E0\x03\x02\x02\x02\u093F\u0940\x07" + + "N\x02\x02\u0940\u0941\x07Q\x02\x02\u0941\u0942\x07Y\x02\x02\u0942\u0943" + + "\x07a\x02\x02\u0943\u0944\x07H\x02\x02\u0944\u0945\x07T\x02\x02\u0945" + + "\u0946\x07G\x02\x02\u0946\u0947\x07S\x02\x02\u0947\u0948\x07a\x02\x02" + + "\u0948\u0949\x07Q\x02\x02\u0949\u094A\x07R\x02\x02\u094A\u094B\x07G\x02" + + "\x02\u094B\u094C\x07T\x02\x02\u094C\u094D\x07C\x02\x02\u094D\u094E\x07" + + "V\x02\x02\u094E\u094F\x07Q\x02\x02\u094F\u0950\x07T\x02\x02\u0950\u01E2" + + "\x03\x02\x02\x02\u0951\u0952\x07O\x02\x02\u0952\u0953\x07C\x02\x02\u0953" + + "\u0954\x07Z\x02\x02\u0954\u0955\x07a\x02\x02\u0955\u0956\x07F\x02\x02" + + "\u0956\u0957\x07G\x02\x02\u0957\u0958\x07V\x02\x02\u0958\u0959\x07G\x02" + + "\x02\u0959\u095A\x07T\x02\x02\u095A\u095B\x07O\x02\x02\u095B\u095C\x07" + + "K\x02\x02\u095C\u095D\x07P\x02\x02\u095D\u095E\x07K\x02\x02\u095E\u095F" + + "\x07\\\x02\x02\u095F\u0960\x07G\x02\x02\u0960\u0961\x07F\x02\x02\u0961" + + "\u0962\x07a\x02\x02\u0962\u0963\x07U\x02\x02\u0963\u0964\x07V\x02\x02" + + "\u0964\u0965\x07C\x02\x02\u0965\u0966\x07V\x02\x02\u0966\u0967\x07G\x02" + + "\x02\u0967\u0968\x07U\x02\x02\u0968\u01E4\x03\x02\x02\x02\u0969\u096A" + + "\x07O\x02\x02\u096A\u096B\x07C\x02\x02\u096B\u096C\x07Z\x02\x02\u096C" + + "\u096D\x07a\x02\x02\u096D\u096E\x07G\x02\x02\u096E\u096F\x07Z\x02\x02" + + "\u096F\u0970\x07R\x02\x02\u0970\u0971\x07C\x02\x02\u0971\u0972\x07P\x02" + + "\x02\u0972\u0973\x07U\x02\x02\u0973\u0974\x07K\x02\x02\u0974\u0975\x07" + + "Q\x02\x02\u0975\u0976\x07P\x02\x02\u0976\u0977\x07U\x02\x02\u0977\u01E6" + + "\x03\x02\x02\x02\u0978\u0979\x07O\x02\x02\u0979\u097A\x07K\x02\x02\u097A" + + "\u097B\x07P\x02\x02\u097B\u097C\x07K\x02\x02\u097C\u097D\x07O\x02\x02" + + "\u097D\u097E\x07W\x02\x02\u097E\u097F\x07O\x02\x02\u097F\u0980\x07a\x02" + + "\x02\u0980\u0981\x07U\x02\x02\u0981\u0982\x07J\x02\x02\u0982\u0983\x07" + + "Q\x02\x02\u0983\u0984\x07W\x02\x02\u0984\u0985\x07N\x02\x02\u0985\u0986" + + "\x07F\x02\x02\u0986\u0987\x07a\x02\x02\u0987\u0988\x07O\x02\x02\u0988" + + "\u0989\x07C\x02\x02\u0989\u098A\x07V\x02\x02\u098A\u098B\x07E\x02\x02" + + "\u098B\u098C\x07J\x02\x02\u098C\u01E8\x03\x02\x02\x02\u098D\u098E\x07" + + "Q\x02\x02\u098E\u098F\x07R\x02\x02\u098F\u0990\x07G\x02\x02\u0990\u0991" + + "\x07T\x02\x02\u0991\u0992\x07C\x02\x02\u0992\u0993\x07V\x02\x02\u0993" + + "\u0994\x07Q\x02\x02\u0994\u0995\x07T\x02\x02\u0995\u01EA\x03\x02\x02\x02" + + "\u0996\u0997\x07R\x02\x02\u0997\u0998\x07J\x02\x02\u0998\u0999\x07T\x02" + + "\x02\u0999\u099A\x07C\x02\x02\u099A\u099B\x07U\x02\x02\u099B\u099C\x07" + + "G\x02\x02\u099C\u099D\x07a\x02\x02\u099D\u099E\x07U\x02\x02\u099E\u099F" + + "\x07N\x02\x02\u099F\u09A0\x07Q\x02\x02\u09A0\u09A1\x07R\x02\x02\u09A1" + + "\u01EC\x03\x02\x02\x02\u09A2\u09A3\x07R\x02\x02\u09A3\u09A4\x07T\x02\x02" + + "\u09A4\u09A5\x07G\x02\x02\u09A5\u09A6\x07H\x02\x02\u09A6\u09A7\x07K\x02" + + "\x02\u09A7\u09A8\x07Z\x02\x02\u09A8\u09A9\x07a\x02\x02\u09A9\u09AA\x07" + + "N\x02\x02\u09AA\u09AB\x07G\x02\x02\u09AB\u09AC\x07P\x02\x02\u09AC\u09AD" + + "\x07I\x02\x02\u09AD\u09AE\x07V\x02\x02\u09AE\u09AF\x07J\x02\x02\u09AF" + + "\u01EE\x03\x02\x02\x02\u09B0\u09B1\x07S\x02\x02\u09B1\u09B2\x07W\x02\x02" + + "\u09B2\u09B3\x07Q\x02\x02\u09B3\u09B4\x07V\x02\x02\u09B4\u09B5\x07G\x02" + + "\x02\u09B5\u09B6\x07a\x02\x02\u09B6\u09B7\x07C\x02\x02\u09B7\u09B8\x07" + + "P\x02\x02\u09B8\u09B9\x07C\x02\x02\u09B9\u09BA\x07N\x02\x02\u09BA\u09BB" + + "\x07[\x02\x02\u09BB\u09BC\x07\\\x02\x02\u09BC\u09BD\x07G\x02\x02\u09BD" + + "\u09BE\x07T\x02\x02\u09BE\u01F0\x03\x02\x02\x02\u09BF\u09C0\x07S\x02\x02" + + "\u09C0\u09C1\x07W\x02\x02\u09C1\u09C2\x07Q\x02\x02\u09C2\u09C3\x07V\x02" + + "\x02\u09C3\u09C4\x07G\x02\x02\u09C4\u09C5\x07a\x02\x02\u09C5\u09C6\x07" + + "H\x02\x02\u09C6\u09C7\x07K\x02\x02\u09C7\u09C8\x07G\x02\x02\u09C8\u09C9" + + "\x07N\x02\x02\u09C9\u09CA\x07F\x02\x02\u09CA\u09CB\x07a\x02\x02\u09CB" + + "\u09CC\x07U\x02\x02\u09CC\u09CD\x07W\x02\x02\u09CD\u09CE\x07H\x02\x02" + + "\u09CE\u09CF\x07H\x02\x02\u09CF\u09D0\x07K\x02\x02\u09D0\u09D1\x07Z\x02" + + "\x02\u09D1\u01F2\x03\x02\x02\x02\u09D2\u09D3\x07T\x02\x02\u09D3\u09D4" + + "\x07G\x02\x02\u09D4\u09D5\x07Y\x02\x02\u09D5\u09D6\x07T\x02\x02\u09D6" + + "\u09D7\x07K\x02\x02\u09D7\u09D8\x07V\x02\x02\u09D8\u09D9\x07G\x02\x02" + + "\u09D9\u01F4\x03\x02\x02\x02\u09DA\u09DB\x07U\x02\x02\u09DB\u09DC\x07" + + "N\x02\x02\u09DC\u09DD\x07Q\x02\x02\u09DD\u09DE\x07R\x02\x02\u09DE\u01F6" + + "\x03\x02\x02\x02\u09DF\u09E0\x07V\x02\x02\u09E0\u09E1\x07K\x02\x02\u09E1" + + "\u09E2\x07G\x02\x02\u09E2\u09E3\x07a\x02\x02\u09E3\u09E4\x07D\x02\x02" + + "\u09E4\u09E5\x07T\x02\x02\u09E5\u09E6\x07G\x02\x02\u09E6\u09E7\x07C\x02" + + "\x02\u09E7\u09E8\x07M\x02\x02\u09E8\u09E9\x07G\x02\x02\u09E9\u09EA\x07" + + "T\x02\x02\u09EA\u01F8\x03\x02\x02\x02\u09EB\u09EC\x07V\x02\x02\u09EC\u09ED" + + "\x07[\x02\x02\u09ED\u09EE\x07R\x02\x02\u09EE\u09EF\x07G\x02\x02\u09EF" + + "\u01FA\x03\x02\x02\x02\u09F0\u09F1\x07\\\x02\x02\u09F1\u09F2\x07G\x02" + + "\x02\u09F2\u09F3\x07T\x02\x02\u09F3\u09F4\x07Q\x02\x02\u09F4\u09F5\x07" + + "a\x02\x02\u09F5\u09F6\x07V\x02\x02\u09F6\u09F7\x07G\x02\x02\u09F7\u09F8" + + "\x07T\x02\x02\u09F8\u09F9\x07O\x02\x02\u09F9\u09FA\x07U\x02\x02\u09FA" + + "\u09FB\x07a\x02\x02\u09FB\u09FC\x07S\x02\x02\u09FC\u09FD\x07W\x02\x02" + + "\u09FD\u09FE\x07G\x02\x02\u09FE\u09FF\x07T\x02\x02\u09FF\u0A00\x07[\x02" + + "\x02\u0A00\u01FC\x03\x02\x02\x02\u0A01\u0A02\x07U\x02\x02\u0A02\u0A03" + + "\x07R\x02\x02\u0A03\u0A04\x07C\x02\x02\u0A04\u0A05\x07P\x02\x02\u0A05" + + "\u01FE\x03\x02\x02\x02\u0A06\u0A07\x07O\x02\x02\u0A07\u0A08\x07U\x02\x02" + + "\u0A08\u0200\x03\x02\x02\x02\u0A09\u0A0A\x07U\x02\x02\u0A0A\u0202\x03" + + "\x02\x02\x02\u0A0B\u0A0C\x07O\x02\x02\u0A0C\u0204\x03\x02\x02\x02\u0A0D" + + "\u0A0E\x07J\x02\x02\u0A0E\u0206\x03\x02\x02\x02\u0A0F\u0A10\x07Y\x02\x02" + + "\u0A10\u0208\x03\x02\x02\x02\u0A11\u0A12\x07S\x02\x02\u0A12\u020A\x03" + + "\x02\x02\x02\u0A13\u0A14\x07[\x02\x02\u0A14\u020C\x03\x02\x02\x02\u0A15" + + "\u0A16\x05\u0215\u010B\x02\u0A16\u020E\x03\x02\x02\x02\u0A17\u0A19\x05" + + "\u021F\u0110\x02\u0A18\u0A17\x03\x02\x02\x02\u0A19\u0A1A\x03\x02\x02\x02" + + "\u0A1A\u0A18\x03\x02\x02\x02\u0A1A\u0A1B\x03\x02\x02\x02\u0A1B\u0210\x03" + + "\x02\x02\x02\u0A1C\u0A1E\x05\u021F\u0110\x02\u0A1D\u0A1C\x03\x02\x02\x02" + + "\u0A1E\u0A1F\x03\x02\x02\x02\u0A1F\u0A1D\x03\x02\x02\x02\u0A1F\u0A20\x03" + + "\x02\x02\x02\u0A20\u0A22\x03\x02\x02\x02\u0A21\u0A1D\x03\x02\x02\x02\u0A21" + + "\u0A22\x03\x02\x02\x02\u0A22\u0A23\x03\x02\x02\x02\u0A23\u0A25\x070\x02" + + "\x02\u0A24\u0A26\x05\u021F\u0110\x02\u0A25\u0A24\x03\x02\x02\x02\u0A26" + + "\u0A27\x03\x02\x02\x02\u0A27\u0A25\x03\x02\x02\x02\u0A27\u0A28\x03\x02" + + "\x02\x02\u0A28\u0212\x03\x02\x02\x02\u0A29\u0A2B\t\x02\x02\x02\u0A2A\u0A2C" + + "\t\x03\x02\x02\u0A2B\u0A2A\x03\x02\x02\x02\u0A2C\u0A2D\x03\x02\x02\x02" + + "\u0A2D\u0A2B\x03\x02\x02\x02\u0A2D\u0A2E\x03\x02\x02\x02\u0A2E\u0A30\x03" + + "\x02\x02\x02\u0A2F\u0A29\x03\x02\x02\x02\u0A30\u0A33\x03\x02\x02\x02\u0A31" + + "\u0A2F\x03\x02\x02\x02\u0A31\u0A32\x03\x02\x02\x02\u0A32\u0214\x03\x02" + + "\x02\x02\u0A33\u0A31\x03\x02\x02\x02\u0A34\u0A36\t\x04\x02\x02\u0A35\u0A34" + + "\x03\x02\x02\x02\u0A36\u0A37\x03\x02\x02\x02\u0A37\u0A38\x03\x02\x02\x02" + + "\u0A37\u0A35\x03\x02\x02\x02\u0A38\u0A3C\x03\x02\x02\x02\u0A39\u0A3B\t" + + "\x05\x02\x02\u0A3A\u0A39\x03\x02\x02\x02\u0A3B\u0A3E\x03\x02\x02\x02\u0A3C" + + "\u0A3A\x03\x02\x02\x02\u0A3C\u0A3D\x03\x02\x02\x02\u0A3D\u0216\x03\x02" + + "\x02\x02\u0A3E\u0A3C\x03\x02\x02\x02\u0A3F\u0A40\x05\u0215\u010B\x02\u0A40" + + "\u0A41\x05\u0213\u010A\x02\u0A41\u0218\x03\x02\x02\x02\u0A42\u0A4A\x07" + + "$\x02\x02\u0A43\u0A44\x07^\x02\x02\u0A44\u0A49\v\x02\x02\x02\u0A45\u0A46" + + "\x07$\x02\x02\u0A46\u0A49\x07$\x02\x02\u0A47\u0A49\n\x06\x02\x02\u0A48" + + "\u0A43\x03\x02\x02\x02\u0A48\u0A45\x03\x02\x02\x02\u0A48\u0A47\x03\x02" + + "\x02\x02\u0A49\u0A4C\x03\x02\x02\x02\u0A4A\u0A48\x03\x02\x02\x02\u0A4A" + + "\u0A4B\x03\x02\x02\x02\u0A4B\u0A4D\x03\x02\x02\x02\u0A4C\u0A4A\x03\x02" + + "\x02\x02\u0A4D\u0A4E\x07$\x02\x02\u0A4E\u021A\x03\x02\x02\x02\u0A4F\u0A57" + + "\x07)\x02\x02\u0A50\u0A51\x07^\x02\x02\u0A51\u0A56\v\x02\x02\x02\u0A52" + + "\u0A53\x07)\x02\x02\u0A53\u0A56\x07)\x02\x02\u0A54\u0A56\n\x07\x02\x02" + + "\u0A55\u0A50\x03\x02\x02\x02\u0A55\u0A52\x03\x02\x02\x02\u0A55\u0A54\x03" + + "\x02\x02\x02\u0A56\u0A59\x03\x02\x02\x02\u0A57\u0A55\x03\x02\x02\x02\u0A57" + + "\u0A58\x03\x02\x02\x02\u0A58\u0A5A\x03\x02\x02\x02\u0A59\u0A57\x03\x02" + + "\x02\x02\u0A5A\u0A5B\x07)\x02\x02\u0A5B\u021C\x03\x02\x02\x02\u0A5C\u0A64" + + "\x07b\x02\x02\u0A5D\u0A5E\x07^\x02\x02\u0A5E\u0A63\v\x02\x02\x02\u0A5F" + + "\u0A60\x07b\x02\x02\u0A60\u0A63\x07b\x02\x02\u0A61\u0A63\n\b\x02\x02\u0A62" + + "\u0A5D\x03\x02\x02\x02\u0A62\u0A5F\x03\x02\x02\x02\u0A62\u0A61\x03\x02" + + "\x02\x02\u0A63\u0A66\x03\x02\x02\x02\u0A64\u0A62\x03\x02\x02\x02\u0A64" + + "\u0A65\x03\x02\x02\x02\u0A65\u0A67\x03\x02\x02\x02\u0A66\u0A64\x03\x02" + + "\x02\x02\u0A67\u0A68\x07b\x02\x02\u0A68\u021E\x03\x02\x02\x02\u0A69\u0A6A" + + "\t\t\x02\x02\u0A6A\u0220\x03\x02\x02\x02\u0A6B\u0A6C\v\x02\x02\x02\u0A6C" + + "\u0A6D\x03\x02\x02\x02\u0A6D\u0A6E\b\u0111\x02\x02\u0A6E\u0222\x03\x02" + + "\x02\x02\x11\x02\u0A1A\u0A1F\u0A21\u0A27\u0A2D\u0A31\u0A37\u0A3C\u0A48" + + "\u0A4A\u0A55\u0A57\u0A62\u0A64\x03\x02\x05\x02"; + public static readonly _serializedATN: string = Utils.join( + [ + OpenSearchPPLLexer._serializedATNSegment0, + OpenSearchPPLLexer._serializedATNSegment1, + OpenSearchPPLLexer._serializedATNSegment2, + OpenSearchPPLLexer._serializedATNSegment3, + OpenSearchPPLLexer._serializedATNSegment4, + ], + "", + ); + public static __ATN: ATN; + public static get _ATN(): ATN { + if (!OpenSearchPPLLexer.__ATN) { + OpenSearchPPLLexer.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLLexer._serializedATN)); + } + + return OpenSearchPPLLexer.__ATN; + } + +} + diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp new file mode 100644 index 000000000..a9db73a19 --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp @@ -0,0 +1,634 @@ +token literal names: +null +'SEARCH' +'FROM' +'WHERE' +'FIELDS' +'RENAME' +'STATS' +'DEDUP' +'SORT' +'EVAL' +'HEAD' +'TOP' +'RARE' +'PARSE' +'KMEANS' +'AD' +'AS' +'BY' +'SOURCE' +'INDEX' +'D' +'DESC' +'SORTBY' +'AUTO' +'STR' +'IP' +'NUM' +'KEEPEMPTY' +'CONSECUTIVE' +'DEDUP_SPLITVALUES' +'PARTITIONS' +'ALLNUM' +'DELIM' +'CENTROIDS' +'ITERATIONS' +'DISTANCE_TYPE' +'NUMBER_OF_TREES' +'SHINGLE_SIZE' +'SAMPLE_SIZE' +'OUTPUT_AFTER' +'TIME_DECAY' +'ANOMALY_RATE' +'TIME_FIELD' +'TIME_ZONE' +'TRAINING_DATA_SIZE' +'ANOMALY_SCORE_THRESHOLD' +'CASE' +'IN' +'NOT' +'OR' +'AND' +'XOR' +'TRUE' +'FALSE' +'REGEXP' +'DATETIME' +'INTERVAL' +'MICROSECOND' +'MILLISECOND' +'SECOND' +'MINUTE' +'HOUR' +'DAY' +'WEEK' +'MONTH' +'QUARTER' +'YEAR' +'SECOND_MICROSECOND' +'MINUTE_MICROSECOND' +'MINUTE_SECOND' +'HOUR_MICROSECOND' +'HOUR_SECOND' +'HOUR_MINUTE' +'DAY_MICROSECOND' +'DAY_SECOND' +'DAY_MINUTE' +'DAY_HOUR' +'YEAR_MONTH' +'DATAMODEL' +'LOOKUP' +'SAVEDSEARCH' +'INT' +'INTEGER' +'DOUBLE' +'LONG' +'FLOAT' +'STRING' +'BOOLEAN' +'|' +',' +'.' +'=' +'>' +'<' +null +null +null +'+' +'-' +'*' +'/' +'%' +'!' +':' +'(' +')' +'[' +']' +'\'' +'"' +'`' +'~' +'&' +'^' +'AVG' +'COUNT' +'DISTINCT_COUNT' +'ESTDC' +'ESTDC_ERROR' +'MAX' +'MEAN' +'MEDIAN' +'MIN' +'MODE' +'RANGE' +'STDEV' +'STDEVP' +'SUM' +'SUMSQ' +'VAR_SAMP' +'VAR_POP' +'STDDEV_SAMP' +'STDDEV_POP' +'PERCENTILE' +'FIRST' +'LAST' +'LIST' +'VALUES' +'EARLIEST' +'EARLIEST_TIME' +'LATEST' +'LATEST_TIME' +'PER_DAY' +'PER_HOUR' +'PER_MINUTE' +'PER_SECOND' +'RATE' +'SPARKLINE' +'C' +'DC' +'ABS' +'CEIL' +'CEILING' +'CONV' +'CRC32' +'E' +'EXP' +'FLOOR' +'LN' +'LOG' +'LOG10' +'LOG2' +'MOD' +'PI' +'POW' +'POWER' +'RAND' +'ROUND' +'SIGN' +'SQRT' +'TRUNCATE' +'ACOS' +'ASIN' +'ATAN' +'ATAN2' +'COS' +'COT' +'DEGREES' +'RADIANS' +'SIN' +'TAN' +'ADDDATE' +'DATE' +'DATE_ADD' +'DATE_SUB' +'DAYOFMONTH' +'DAYOFWEEK' +'DAYOFYEAR' +'DAYNAME' +'FROM_DAYS' +'MONTHNAME' +'SUBDATE' +'TIME' +'TIME_TO_SEC' +'TIMESTAMP' +'DATE_FORMAT' +'TO_DAYS' +'SUBSTR' +'SUBSTRING' +'LTRIM' +'RTRIM' +'TRIM' +'TO' +'LOWER' +'UPPER' +'CONCAT' +'CONCAT_WS' +'LENGTH' +'STRCMP' +'RIGHT' +'LEFT' +'ASCII' +'LOCATE' +'REPLACE' +'CAST' +'LIKE' +'ISNULL' +'ISNOTNULL' +'IFNULL' +'NULLIF' +'IF' +'MATCH' +'MATCH_PHRASE' +'SIMPLE_QUERY_STRING' +'ALLOW_LEADING_WILDCARD' +'ANALYZE_WILDCARD' +'ANALYZER' +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' +'BOOST' +'CUTOFF_FREQUENCY' +'DEFAULT_FIELD' +'DEFAULT_OPERATOR' +'ENABLE_POSITION_INCREMENTS' +'FLAGS' +'FUZZY_MAX_EXPANSIONS' +'FUZZY_PREFIX_LENGTH' +'FUZZY_TRANSPOSITIONS' +'FUZZY_REWRITE' +'FUZZINESS' +'LENIENT' +'LOW_FREQ_OPERATOR' +'MAX_DETERMINIZED_STATES' +'MAX_EXPANSIONS' +'MINIMUM_SHOULD_MATCH' +'OPERATOR' +'PHRASE_SLOP' +'PREFIX_LENGTH' +'QUOTE_ANALYZER' +'QUOTE_FIELD_SUFFIX' +'REWRITE' +'SLOP' +'TIE_BREAKER' +'TYPE' +'ZERO_TERMS_QUERY' +'SPAN' +'MS' +'S' +'M' +'H' +'W' +'Q' +'Y' +null +null +null +null +null +null +null +null + +token symbolic names: +null +SEARCH +FROM +WHERE +FIELDS +RENAME +STATS +DEDUP +SORT +EVAL +HEAD +TOP +RARE +PARSE +KMEANS +AD +AS +BY +SOURCE +INDEX +D +DESC +SORTBY +AUTO +STR +IP +NUM +KEEPEMPTY +CONSECUTIVE +DEDUP_SPLITVALUES +PARTITIONS +ALLNUM +DELIM +CENTROIDS +ITERATIONS +DISTANCE_TYPE +NUMBER_OF_TREES +SHINGLE_SIZE +SAMPLE_SIZE +OUTPUT_AFTER +TIME_DECAY +ANOMALY_RATE +TIME_FIELD +TIME_ZONE +TRAINING_DATA_SIZE +ANOMALY_SCORE_THRESHOLD +CASE +IN +NOT +OR +AND +XOR +TRUE +FALSE +REGEXP +DATETIME +INTERVAL +MICROSECOND +MILLISECOND +SECOND +MINUTE +HOUR +DAY +WEEK +MONTH +QUARTER +YEAR +SECOND_MICROSECOND +MINUTE_MICROSECOND +MINUTE_SECOND +HOUR_MICROSECOND +HOUR_SECOND +HOUR_MINUTE +DAY_MICROSECOND +DAY_SECOND +DAY_MINUTE +DAY_HOUR +YEAR_MONTH +DATAMODEL +LOOKUP +SAVEDSEARCH +INT +INTEGER +DOUBLE +LONG +FLOAT +STRING +BOOLEAN +PIPE +COMMA +DOT +EQUAL +GREATER +LESS +NOT_GREATER +NOT_LESS +NOT_EQUAL +PLUS +MINUS +STAR +DIVIDE +MODULE +EXCLAMATION_SYMBOL +COLON +LT_PRTHS +RT_PRTHS +LT_SQR_PRTHS +RT_SQR_PRTHS +SINGLE_QUOTE +DOUBLE_QUOTE +BACKTICK +BIT_NOT_OP +BIT_AND_OP +BIT_XOR_OP +AVG +COUNT +DISTINCT_COUNT +ESTDC +ESTDC_ERROR +MAX +MEAN +MEDIAN +MIN +MODE +RANGE +STDEV +STDEVP +SUM +SUMSQ +VAR_SAMP +VAR_POP +STDDEV_SAMP +STDDEV_POP +PERCENTILE +FIRST +LAST +LIST +VALUES +EARLIEST +EARLIEST_TIME +LATEST +LATEST_TIME +PER_DAY +PER_HOUR +PER_MINUTE +PER_SECOND +RATE +SPARKLINE +C +DC +ABS +CEIL +CEILING +CONV +CRC32 +E +EXP +FLOOR +LN +LOG +LOG10 +LOG2 +MOD +PI +POW +POWER +RAND +ROUND +SIGN +SQRT +TRUNCATE +ACOS +ASIN +ATAN +ATAN2 +COS +COT +DEGREES +RADIANS +SIN +TAN +ADDDATE +DATE +DATE_ADD +DATE_SUB +DAYOFMONTH +DAYOFWEEK +DAYOFYEAR +DAYNAME +FROM_DAYS +MONTHNAME +SUBDATE +TIME +TIME_TO_SEC +TIMESTAMP +DATE_FORMAT +TO_DAYS +SUBSTR +SUBSTRING +LTRIM +RTRIM +TRIM +TO +LOWER +UPPER +CONCAT +CONCAT_WS +LENGTH +STRCMP +RIGHT +LEFT +ASCII +LOCATE +REPLACE +CAST +LIKE +ISNULL +ISNOTNULL +IFNULL +NULLIF +IF +MATCH +MATCH_PHRASE +SIMPLE_QUERY_STRING +ALLOW_LEADING_WILDCARD +ANALYZE_WILDCARD +ANALYZER +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY +BOOST +CUTOFF_FREQUENCY +DEFAULT_FIELD +DEFAULT_OPERATOR +ENABLE_POSITION_INCREMENTS +FLAGS +FUZZY_MAX_EXPANSIONS +FUZZY_PREFIX_LENGTH +FUZZY_TRANSPOSITIONS +FUZZY_REWRITE +FUZZINESS +LENIENT +LOW_FREQ_OPERATOR +MAX_DETERMINIZED_STATES +MAX_EXPANSIONS +MINIMUM_SHOULD_MATCH +OPERATOR +PHRASE_SLOP +PREFIX_LENGTH +QUOTE_ANALYZER +QUOTE_FIELD_SUFFIX +REWRITE +SLOP +TIE_BREAKER +TYPE +ZERO_TERMS_QUERY +SPAN +MS +S +M +H +W +Q +Y +ID +INTEGER_LITERAL +DECIMAL_LITERAL +ID_DATE_SUFFIX +DQUOTA_STRING +SQUOTA_STRING +BQUOTA_STRING +ERROR_RECOGNITION + +rule names: +root +pplStatement +commands +searchCommand +whereCommand +fieldsCommand +renameCommand +statsCommand +dedupCommand +sortCommand +evalCommand +headCommand +topCommand +rareCommand +parseCommand +kmeansCommand +kmeansParameter +adCommand +adParameter +fromClause +renameClasue +byClause +statsByClause +bySpanClause +spanClause +sortbyClause +evalClause +statsAggTerm +statsFunction +statsFunctionName +percentileAggFunction +expression +logicalExpression +comparisonExpression +valueExpression +primaryExpression +booleanExpression +relevanceExpression +singleFieldRelevanceFunction +multiFieldRelevanceFunction +tableSource +fieldList +wcFieldList +sortField +sortFieldExpression +fieldExpression +wcFieldExpression +evalFunctionCall +dataTypeFunctionCall +booleanFunctionCall +convertedDataType +evalFunctionName +functionArgs +functionArg +relevanceArg +relevanceArgName +relevanceFieldAndWeight +relevanceFieldWeight +relevanceField +relevanceQuery +relevanceArgValue +mathematicalFunctionBase +trigonometricFunctionName +dateAndTimeFunctionBase +conditionFunctionBase +textFunctionBase +comparisonOperator +binaryOperator +singleFieldRelevanceFunctionName +multiFieldRelevanceFunctionName +literalValue +intervalLiteral +stringLiteral +integerLiteral +decimalLiteral +booleanLiteral +pattern +intervalUnit +timespanUnit +valueList +qualifiedName +wcQualifiedName +ident +wildcard +keywordsCanBeId + + +atn: +[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 2, 4, 66, 70, 87, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 78, 2, 80, 2, 82, 2, 84, 2, 86, 2, 88, 2, 90, 2, 92, 2, 94, 2, 96, 2, 98, 2, 100, 2, 102, 2, 104, 2, 106, 2, 108, 2, 110, 2, 112, 2, 114, 2, 116, 2, 118, 2, 120, 2, 122, 2, 124, 2, 126, 2, 128, 2, 130, 2, 132, 2, 134, 2, 136, 2, 138, 2, 140, 2, 142, 2, 144, 2, 146, 2, 148, 2, 150, 2, 152, 2, 154, 2, 156, 2, 158, 2, 160, 2, 162, 2, 164, 2, 166, 2, 168, 2, 170, 2, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens new file mode 100644 index 000000000..e7b58d1ef --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens @@ -0,0 +1,527 @@ +SEARCH=1 +FROM=2 +WHERE=3 +FIELDS=4 +RENAME=5 +STATS=6 +DEDUP=7 +SORT=8 +EVAL=9 +HEAD=10 +TOP=11 +RARE=12 +PARSE=13 +KMEANS=14 +AD=15 +AS=16 +BY=17 +SOURCE=18 +INDEX=19 +D=20 +DESC=21 +SORTBY=22 +AUTO=23 +STR=24 +IP=25 +NUM=26 +KEEPEMPTY=27 +CONSECUTIVE=28 +DEDUP_SPLITVALUES=29 +PARTITIONS=30 +ALLNUM=31 +DELIM=32 +CENTROIDS=33 +ITERATIONS=34 +DISTANCE_TYPE=35 +NUMBER_OF_TREES=36 +SHINGLE_SIZE=37 +SAMPLE_SIZE=38 +OUTPUT_AFTER=39 +TIME_DECAY=40 +ANOMALY_RATE=41 +TIME_FIELD=42 +TIME_ZONE=43 +TRAINING_DATA_SIZE=44 +ANOMALY_SCORE_THRESHOLD=45 +CASE=46 +IN=47 +NOT=48 +OR=49 +AND=50 +XOR=51 +TRUE=52 +FALSE=53 +REGEXP=54 +DATETIME=55 +INTERVAL=56 +MICROSECOND=57 +MILLISECOND=58 +SECOND=59 +MINUTE=60 +HOUR=61 +DAY=62 +WEEK=63 +MONTH=64 +QUARTER=65 +YEAR=66 +SECOND_MICROSECOND=67 +MINUTE_MICROSECOND=68 +MINUTE_SECOND=69 +HOUR_MICROSECOND=70 +HOUR_SECOND=71 +HOUR_MINUTE=72 +DAY_MICROSECOND=73 +DAY_SECOND=74 +DAY_MINUTE=75 +DAY_HOUR=76 +YEAR_MONTH=77 +DATAMODEL=78 +LOOKUP=79 +SAVEDSEARCH=80 +INT=81 +INTEGER=82 +DOUBLE=83 +LONG=84 +FLOAT=85 +STRING=86 +BOOLEAN=87 +PIPE=88 +COMMA=89 +DOT=90 +EQUAL=91 +GREATER=92 +LESS=93 +NOT_GREATER=94 +NOT_LESS=95 +NOT_EQUAL=96 +PLUS=97 +MINUS=98 +STAR=99 +DIVIDE=100 +MODULE=101 +EXCLAMATION_SYMBOL=102 +COLON=103 +LT_PRTHS=104 +RT_PRTHS=105 +LT_SQR_PRTHS=106 +RT_SQR_PRTHS=107 +SINGLE_QUOTE=108 +DOUBLE_QUOTE=109 +BACKTICK=110 +BIT_NOT_OP=111 +BIT_AND_OP=112 +BIT_XOR_OP=113 +AVG=114 +COUNT=115 +DISTINCT_COUNT=116 +ESTDC=117 +ESTDC_ERROR=118 +MAX=119 +MEAN=120 +MEDIAN=121 +MIN=122 +MODE=123 +RANGE=124 +STDEV=125 +STDEVP=126 +SUM=127 +SUMSQ=128 +VAR_SAMP=129 +VAR_POP=130 +STDDEV_SAMP=131 +STDDEV_POP=132 +PERCENTILE=133 +FIRST=134 +LAST=135 +LIST=136 +VALUES=137 +EARLIEST=138 +EARLIEST_TIME=139 +LATEST=140 +LATEST_TIME=141 +PER_DAY=142 +PER_HOUR=143 +PER_MINUTE=144 +PER_SECOND=145 +RATE=146 +SPARKLINE=147 +C=148 +DC=149 +ABS=150 +CEIL=151 +CEILING=152 +CONV=153 +CRC32=154 +E=155 +EXP=156 +FLOOR=157 +LN=158 +LOG=159 +LOG10=160 +LOG2=161 +MOD=162 +PI=163 +POW=164 +POWER=165 +RAND=166 +ROUND=167 +SIGN=168 +SQRT=169 +TRUNCATE=170 +ACOS=171 +ASIN=172 +ATAN=173 +ATAN2=174 +COS=175 +COT=176 +DEGREES=177 +RADIANS=178 +SIN=179 +TAN=180 +ADDDATE=181 +DATE=182 +DATE_ADD=183 +DATE_SUB=184 +DAYOFMONTH=185 +DAYOFWEEK=186 +DAYOFYEAR=187 +DAYNAME=188 +FROM_DAYS=189 +MONTHNAME=190 +SUBDATE=191 +TIME=192 +TIME_TO_SEC=193 +TIMESTAMP=194 +DATE_FORMAT=195 +TO_DAYS=196 +SUBSTR=197 +SUBSTRING=198 +LTRIM=199 +RTRIM=200 +TRIM=201 +TO=202 +LOWER=203 +UPPER=204 +CONCAT=205 +CONCAT_WS=206 +LENGTH=207 +STRCMP=208 +RIGHT=209 +LEFT=210 +ASCII=211 +LOCATE=212 +REPLACE=213 +CAST=214 +LIKE=215 +ISNULL=216 +ISNOTNULL=217 +IFNULL=218 +NULLIF=219 +IF=220 +MATCH=221 +MATCH_PHRASE=222 +SIMPLE_QUERY_STRING=223 +ALLOW_LEADING_WILDCARD=224 +ANALYZE_WILDCARD=225 +ANALYZER=226 +AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 +BOOST=228 +CUTOFF_FREQUENCY=229 +DEFAULT_FIELD=230 +DEFAULT_OPERATOR=231 +ENABLE_POSITION_INCREMENTS=232 +FLAGS=233 +FUZZY_MAX_EXPANSIONS=234 +FUZZY_PREFIX_LENGTH=235 +FUZZY_TRANSPOSITIONS=236 +FUZZY_REWRITE=237 +FUZZINESS=238 +LENIENT=239 +LOW_FREQ_OPERATOR=240 +MAX_DETERMINIZED_STATES=241 +MAX_EXPANSIONS=242 +MINIMUM_SHOULD_MATCH=243 +OPERATOR=244 +PHRASE_SLOP=245 +PREFIX_LENGTH=246 +QUOTE_ANALYZER=247 +QUOTE_FIELD_SUFFIX=248 +REWRITE=249 +SLOP=250 +TIE_BREAKER=251 +TYPE=252 +ZERO_TERMS_QUERY=253 +SPAN=254 +MS=255 +S=256 +M=257 +H=258 +W=259 +Q=260 +Y=261 +ID=262 +INTEGER_LITERAL=263 +DECIMAL_LITERAL=264 +ID_DATE_SUFFIX=265 +DQUOTA_STRING=266 +SQUOTA_STRING=267 +BQUOTA_STRING=268 +ERROR_RECOGNITION=269 +'SEARCH'=1 +'FROM'=2 +'WHERE'=3 +'FIELDS'=4 +'RENAME'=5 +'STATS'=6 +'DEDUP'=7 +'SORT'=8 +'EVAL'=9 +'HEAD'=10 +'TOP'=11 +'RARE'=12 +'PARSE'=13 +'KMEANS'=14 +'AD'=15 +'AS'=16 +'BY'=17 +'SOURCE'=18 +'INDEX'=19 +'D'=20 +'DESC'=21 +'SORTBY'=22 +'AUTO'=23 +'STR'=24 +'IP'=25 +'NUM'=26 +'KEEPEMPTY'=27 +'CONSECUTIVE'=28 +'DEDUP_SPLITVALUES'=29 +'PARTITIONS'=30 +'ALLNUM'=31 +'DELIM'=32 +'CENTROIDS'=33 +'ITERATIONS'=34 +'DISTANCE_TYPE'=35 +'NUMBER_OF_TREES'=36 +'SHINGLE_SIZE'=37 +'SAMPLE_SIZE'=38 +'OUTPUT_AFTER'=39 +'TIME_DECAY'=40 +'ANOMALY_RATE'=41 +'TIME_FIELD'=42 +'TIME_ZONE'=43 +'TRAINING_DATA_SIZE'=44 +'ANOMALY_SCORE_THRESHOLD'=45 +'CASE'=46 +'IN'=47 +'NOT'=48 +'OR'=49 +'AND'=50 +'XOR'=51 +'TRUE'=52 +'FALSE'=53 +'REGEXP'=54 +'DATETIME'=55 +'INTERVAL'=56 +'MICROSECOND'=57 +'MILLISECOND'=58 +'SECOND'=59 +'MINUTE'=60 +'HOUR'=61 +'DAY'=62 +'WEEK'=63 +'MONTH'=64 +'QUARTER'=65 +'YEAR'=66 +'SECOND_MICROSECOND'=67 +'MINUTE_MICROSECOND'=68 +'MINUTE_SECOND'=69 +'HOUR_MICROSECOND'=70 +'HOUR_SECOND'=71 +'HOUR_MINUTE'=72 +'DAY_MICROSECOND'=73 +'DAY_SECOND'=74 +'DAY_MINUTE'=75 +'DAY_HOUR'=76 +'YEAR_MONTH'=77 +'DATAMODEL'=78 +'LOOKUP'=79 +'SAVEDSEARCH'=80 +'INT'=81 +'INTEGER'=82 +'DOUBLE'=83 +'LONG'=84 +'FLOAT'=85 +'STRING'=86 +'BOOLEAN'=87 +'|'=88 +','=89 +'.'=90 +'='=91 +'>'=92 +'<'=93 +'+'=97 +'-'=98 +'*'=99 +'/'=100 +'%'=101 +'!'=102 +':'=103 +'('=104 +')'=105 +'['=106 +']'=107 +'\''=108 +'"'=109 +'`'=110 +'~'=111 +'&'=112 +'^'=113 +'AVG'=114 +'COUNT'=115 +'DISTINCT_COUNT'=116 +'ESTDC'=117 +'ESTDC_ERROR'=118 +'MAX'=119 +'MEAN'=120 +'MEDIAN'=121 +'MIN'=122 +'MODE'=123 +'RANGE'=124 +'STDEV'=125 +'STDEVP'=126 +'SUM'=127 +'SUMSQ'=128 +'VAR_SAMP'=129 +'VAR_POP'=130 +'STDDEV_SAMP'=131 +'STDDEV_POP'=132 +'PERCENTILE'=133 +'FIRST'=134 +'LAST'=135 +'LIST'=136 +'VALUES'=137 +'EARLIEST'=138 +'EARLIEST_TIME'=139 +'LATEST'=140 +'LATEST_TIME'=141 +'PER_DAY'=142 +'PER_HOUR'=143 +'PER_MINUTE'=144 +'PER_SECOND'=145 +'RATE'=146 +'SPARKLINE'=147 +'C'=148 +'DC'=149 +'ABS'=150 +'CEIL'=151 +'CEILING'=152 +'CONV'=153 +'CRC32'=154 +'E'=155 +'EXP'=156 +'FLOOR'=157 +'LN'=158 +'LOG'=159 +'LOG10'=160 +'LOG2'=161 +'MOD'=162 +'PI'=163 +'POW'=164 +'POWER'=165 +'RAND'=166 +'ROUND'=167 +'SIGN'=168 +'SQRT'=169 +'TRUNCATE'=170 +'ACOS'=171 +'ASIN'=172 +'ATAN'=173 +'ATAN2'=174 +'COS'=175 +'COT'=176 +'DEGREES'=177 +'RADIANS'=178 +'SIN'=179 +'TAN'=180 +'ADDDATE'=181 +'DATE'=182 +'DATE_ADD'=183 +'DATE_SUB'=184 +'DAYOFMONTH'=185 +'DAYOFWEEK'=186 +'DAYOFYEAR'=187 +'DAYNAME'=188 +'FROM_DAYS'=189 +'MONTHNAME'=190 +'SUBDATE'=191 +'TIME'=192 +'TIME_TO_SEC'=193 +'TIMESTAMP'=194 +'DATE_FORMAT'=195 +'TO_DAYS'=196 +'SUBSTR'=197 +'SUBSTRING'=198 +'LTRIM'=199 +'RTRIM'=200 +'TRIM'=201 +'TO'=202 +'LOWER'=203 +'UPPER'=204 +'CONCAT'=205 +'CONCAT_WS'=206 +'LENGTH'=207 +'STRCMP'=208 +'RIGHT'=209 +'LEFT'=210 +'ASCII'=211 +'LOCATE'=212 +'REPLACE'=213 +'CAST'=214 +'LIKE'=215 +'ISNULL'=216 +'ISNOTNULL'=217 +'IFNULL'=218 +'NULLIF'=219 +'IF'=220 +'MATCH'=221 +'MATCH_PHRASE'=222 +'SIMPLE_QUERY_STRING'=223 +'ALLOW_LEADING_WILDCARD'=224 +'ANALYZE_WILDCARD'=225 +'ANALYZER'=226 +'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 +'BOOST'=228 +'CUTOFF_FREQUENCY'=229 +'DEFAULT_FIELD'=230 +'DEFAULT_OPERATOR'=231 +'ENABLE_POSITION_INCREMENTS'=232 +'FLAGS'=233 +'FUZZY_MAX_EXPANSIONS'=234 +'FUZZY_PREFIX_LENGTH'=235 +'FUZZY_TRANSPOSITIONS'=236 +'FUZZY_REWRITE'=237 +'FUZZINESS'=238 +'LENIENT'=239 +'LOW_FREQ_OPERATOR'=240 +'MAX_DETERMINIZED_STATES'=241 +'MAX_EXPANSIONS'=242 +'MINIMUM_SHOULD_MATCH'=243 +'OPERATOR'=244 +'PHRASE_SLOP'=245 +'PREFIX_LENGTH'=246 +'QUOTE_ANALYZER'=247 +'QUOTE_FIELD_SUFFIX'=248 +'REWRITE'=249 +'SLOP'=250 +'TIE_BREAKER'=251 +'TYPE'=252 +'ZERO_TERMS_QUERY'=253 +'SPAN'=254 +'MS'=255 +'S'=256 +'M'=257 +'H'=258 +'W'=259 +'Q'=260 +'Y'=261 diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts new file mode 100644 index 000000000..78d1b84a7 --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts @@ -0,0 +1,9805 @@ +// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ATN } from "antlr4ts/atn/ATN"; +import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; +import { FailedPredicateException } from "antlr4ts/FailedPredicateException"; +import { NotNull } from "antlr4ts/Decorators"; +import { NoViableAltException } from "antlr4ts/NoViableAltException"; +import { Override } from "antlr4ts/Decorators"; +import { Parser } from "antlr4ts/Parser"; +import { ParserRuleContext } from "antlr4ts/ParserRuleContext"; +import { ParserATNSimulator } from "antlr4ts/atn/ParserATNSimulator"; +import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; +import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; +import { RecognitionException } from "antlr4ts/RecognitionException"; +import { RuleContext } from "antlr4ts/RuleContext"; +//import { RuleVersion } from "antlr4ts/RuleVersion"; +import { TerminalNode } from "antlr4ts/tree/TerminalNode"; +import { Token } from "antlr4ts/Token"; +import { TokenStream } from "antlr4ts/TokenStream"; +import { Vocabulary } from "antlr4ts/Vocabulary"; +import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; + +import * as Utils from "antlr4ts/misc/Utils"; + +import { OpenSearchPPLParserListener } from "./OpenSearchPPLParserListener"; +import { OpenSearchPPLParserVisitor } from "./OpenSearchPPLParserVisitor"; + + +export class OpenSearchPPLParser extends Parser { + public static readonly SEARCH = 1; + public static readonly FROM = 2; + public static readonly WHERE = 3; + public static readonly FIELDS = 4; + public static readonly RENAME = 5; + public static readonly STATS = 6; + public static readonly DEDUP = 7; + public static readonly SORT = 8; + public static readonly EVAL = 9; + public static readonly HEAD = 10; + public static readonly TOP = 11; + public static readonly RARE = 12; + public static readonly PARSE = 13; + public static readonly KMEANS = 14; + public static readonly AD = 15; + public static readonly AS = 16; + public static readonly BY = 17; + public static readonly SOURCE = 18; + public static readonly INDEX = 19; + public static readonly D = 20; + public static readonly DESC = 21; + public static readonly SORTBY = 22; + public static readonly AUTO = 23; + public static readonly STR = 24; + public static readonly IP = 25; + public static readonly NUM = 26; + public static readonly KEEPEMPTY = 27; + public static readonly CONSECUTIVE = 28; + public static readonly DEDUP_SPLITVALUES = 29; + public static readonly PARTITIONS = 30; + public static readonly ALLNUM = 31; + public static readonly DELIM = 32; + public static readonly CENTROIDS = 33; + public static readonly ITERATIONS = 34; + public static readonly DISTANCE_TYPE = 35; + public static readonly NUMBER_OF_TREES = 36; + public static readonly SHINGLE_SIZE = 37; + public static readonly SAMPLE_SIZE = 38; + public static readonly OUTPUT_AFTER = 39; + public static readonly TIME_DECAY = 40; + public static readonly ANOMALY_RATE = 41; + public static readonly TIME_FIELD = 42; + public static readonly TIME_ZONE = 43; + public static readonly TRAINING_DATA_SIZE = 44; + public static readonly ANOMALY_SCORE_THRESHOLD = 45; + public static readonly CASE = 46; + public static readonly IN = 47; + public static readonly NOT = 48; + public static readonly OR = 49; + public static readonly AND = 50; + public static readonly XOR = 51; + public static readonly TRUE = 52; + public static readonly FALSE = 53; + public static readonly REGEXP = 54; + public static readonly DATETIME = 55; + public static readonly INTERVAL = 56; + public static readonly MICROSECOND = 57; + public static readonly MILLISECOND = 58; + public static readonly SECOND = 59; + public static readonly MINUTE = 60; + public static readonly HOUR = 61; + public static readonly DAY = 62; + public static readonly WEEK = 63; + public static readonly MONTH = 64; + public static readonly QUARTER = 65; + public static readonly YEAR = 66; + public static readonly SECOND_MICROSECOND = 67; + public static readonly MINUTE_MICROSECOND = 68; + public static readonly MINUTE_SECOND = 69; + public static readonly HOUR_MICROSECOND = 70; + public static readonly HOUR_SECOND = 71; + public static readonly HOUR_MINUTE = 72; + public static readonly DAY_MICROSECOND = 73; + public static readonly DAY_SECOND = 74; + public static readonly DAY_MINUTE = 75; + public static readonly DAY_HOUR = 76; + public static readonly YEAR_MONTH = 77; + public static readonly DATAMODEL = 78; + public static readonly LOOKUP = 79; + public static readonly SAVEDSEARCH = 80; + public static readonly INT = 81; + public static readonly INTEGER = 82; + public static readonly DOUBLE = 83; + public static readonly LONG = 84; + public static readonly FLOAT = 85; + public static readonly STRING = 86; + public static readonly BOOLEAN = 87; + public static readonly PIPE = 88; + public static readonly COMMA = 89; + public static readonly DOT = 90; + public static readonly EQUAL = 91; + public static readonly GREATER = 92; + public static readonly LESS = 93; + public static readonly NOT_GREATER = 94; + public static readonly NOT_LESS = 95; + public static readonly NOT_EQUAL = 96; + public static readonly PLUS = 97; + public static readonly MINUS = 98; + public static readonly STAR = 99; + public static readonly DIVIDE = 100; + public static readonly MODULE = 101; + public static readonly EXCLAMATION_SYMBOL = 102; + public static readonly COLON = 103; + public static readonly LT_PRTHS = 104; + public static readonly RT_PRTHS = 105; + public static readonly LT_SQR_PRTHS = 106; + public static readonly RT_SQR_PRTHS = 107; + public static readonly SINGLE_QUOTE = 108; + public static readonly DOUBLE_QUOTE = 109; + public static readonly BACKTICK = 110; + public static readonly BIT_NOT_OP = 111; + public static readonly BIT_AND_OP = 112; + public static readonly BIT_XOR_OP = 113; + public static readonly AVG = 114; + public static readonly COUNT = 115; + public static readonly DISTINCT_COUNT = 116; + public static readonly ESTDC = 117; + public static readonly ESTDC_ERROR = 118; + public static readonly MAX = 119; + public static readonly MEAN = 120; + public static readonly MEDIAN = 121; + public static readonly MIN = 122; + public static readonly MODE = 123; + public static readonly RANGE = 124; + public static readonly STDEV = 125; + public static readonly STDEVP = 126; + public static readonly SUM = 127; + public static readonly SUMSQ = 128; + public static readonly VAR_SAMP = 129; + public static readonly VAR_POP = 130; + public static readonly STDDEV_SAMP = 131; + public static readonly STDDEV_POP = 132; + public static readonly PERCENTILE = 133; + public static readonly FIRST = 134; + public static readonly LAST = 135; + public static readonly LIST = 136; + public static readonly VALUES = 137; + public static readonly EARLIEST = 138; + public static readonly EARLIEST_TIME = 139; + public static readonly LATEST = 140; + public static readonly LATEST_TIME = 141; + public static readonly PER_DAY = 142; + public static readonly PER_HOUR = 143; + public static readonly PER_MINUTE = 144; + public static readonly PER_SECOND = 145; + public static readonly RATE = 146; + public static readonly SPARKLINE = 147; + public static readonly C = 148; + public static readonly DC = 149; + public static readonly ABS = 150; + public static readonly CEIL = 151; + public static readonly CEILING = 152; + public static readonly CONV = 153; + public static readonly CRC32 = 154; + public static readonly E = 155; + public static readonly EXP = 156; + public static readonly FLOOR = 157; + public static readonly LN = 158; + public static readonly LOG = 159; + public static readonly LOG10 = 160; + public static readonly LOG2 = 161; + public static readonly MOD = 162; + public static readonly PI = 163; + public static readonly POW = 164; + public static readonly POWER = 165; + public static readonly RAND = 166; + public static readonly ROUND = 167; + public static readonly SIGN = 168; + public static readonly SQRT = 169; + public static readonly TRUNCATE = 170; + public static readonly ACOS = 171; + public static readonly ASIN = 172; + public static readonly ATAN = 173; + public static readonly ATAN2 = 174; + public static readonly COS = 175; + public static readonly COT = 176; + public static readonly DEGREES = 177; + public static readonly RADIANS = 178; + public static readonly SIN = 179; + public static readonly TAN = 180; + public static readonly ADDDATE = 181; + public static readonly DATE = 182; + public static readonly DATE_ADD = 183; + public static readonly DATE_SUB = 184; + public static readonly DAYOFMONTH = 185; + public static readonly DAYOFWEEK = 186; + public static readonly DAYOFYEAR = 187; + public static readonly DAYNAME = 188; + public static readonly FROM_DAYS = 189; + public static readonly MONTHNAME = 190; + public static readonly SUBDATE = 191; + public static readonly TIME = 192; + public static readonly TIME_TO_SEC = 193; + public static readonly TIMESTAMP = 194; + public static readonly DATE_FORMAT = 195; + public static readonly TO_DAYS = 196; + public static readonly SUBSTR = 197; + public static readonly SUBSTRING = 198; + public static readonly LTRIM = 199; + public static readonly RTRIM = 200; + public static readonly TRIM = 201; + public static readonly TO = 202; + public static readonly LOWER = 203; + public static readonly UPPER = 204; + public static readonly CONCAT = 205; + public static readonly CONCAT_WS = 206; + public static readonly LENGTH = 207; + public static readonly STRCMP = 208; + public static readonly RIGHT = 209; + public static readonly LEFT = 210; + public static readonly ASCII = 211; + public static readonly LOCATE = 212; + public static readonly REPLACE = 213; + public static readonly CAST = 214; + public static readonly LIKE = 215; + public static readonly ISNULL = 216; + public static readonly ISNOTNULL = 217; + public static readonly IFNULL = 218; + public static readonly NULLIF = 219; + public static readonly IF = 220; + public static readonly MATCH = 221; + public static readonly MATCH_PHRASE = 222; + public static readonly SIMPLE_QUERY_STRING = 223; + public static readonly ALLOW_LEADING_WILDCARD = 224; + public static readonly ANALYZE_WILDCARD = 225; + public static readonly ANALYZER = 226; + public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; + public static readonly BOOST = 228; + public static readonly CUTOFF_FREQUENCY = 229; + public static readonly DEFAULT_FIELD = 230; + public static readonly DEFAULT_OPERATOR = 231; + public static readonly ENABLE_POSITION_INCREMENTS = 232; + public static readonly FLAGS = 233; + public static readonly FUZZY_MAX_EXPANSIONS = 234; + public static readonly FUZZY_PREFIX_LENGTH = 235; + public static readonly FUZZY_TRANSPOSITIONS = 236; + public static readonly FUZZY_REWRITE = 237; + public static readonly FUZZINESS = 238; + public static readonly LENIENT = 239; + public static readonly LOW_FREQ_OPERATOR = 240; + public static readonly MAX_DETERMINIZED_STATES = 241; + public static readonly MAX_EXPANSIONS = 242; + public static readonly MINIMUM_SHOULD_MATCH = 243; + public static readonly OPERATOR = 244; + public static readonly PHRASE_SLOP = 245; + public static readonly PREFIX_LENGTH = 246; + public static readonly QUOTE_ANALYZER = 247; + public static readonly QUOTE_FIELD_SUFFIX = 248; + public static readonly REWRITE = 249; + public static readonly SLOP = 250; + public static readonly TIE_BREAKER = 251; + public static readonly TYPE = 252; + public static readonly ZERO_TERMS_QUERY = 253; + public static readonly SPAN = 254; + public static readonly MS = 255; + public static readonly S = 256; + public static readonly M = 257; + public static readonly H = 258; + public static readonly W = 259; + public static readonly Q = 260; + public static readonly Y = 261; + public static readonly ID = 262; + public static readonly INTEGER_LITERAL = 263; + public static readonly DECIMAL_LITERAL = 264; + public static readonly ID_DATE_SUFFIX = 265; + public static readonly DQUOTA_STRING = 266; + public static readonly SQUOTA_STRING = 267; + public static readonly BQUOTA_STRING = 268; + public static readonly ERROR_RECOGNITION = 269; + public static readonly RULE_root = 0; + public static readonly RULE_pplStatement = 1; + public static readonly RULE_commands = 2; + public static readonly RULE_searchCommand = 3; + public static readonly RULE_whereCommand = 4; + public static readonly RULE_fieldsCommand = 5; + public static readonly RULE_renameCommand = 6; + public static readonly RULE_statsCommand = 7; + public static readonly RULE_dedupCommand = 8; + public static readonly RULE_sortCommand = 9; + public static readonly RULE_evalCommand = 10; + public static readonly RULE_headCommand = 11; + public static readonly RULE_topCommand = 12; + public static readonly RULE_rareCommand = 13; + public static readonly RULE_parseCommand = 14; + public static readonly RULE_kmeansCommand = 15; + public static readonly RULE_kmeansParameter = 16; + public static readonly RULE_adCommand = 17; + public static readonly RULE_adParameter = 18; + public static readonly RULE_fromClause = 19; + public static readonly RULE_renameClasue = 20; + public static readonly RULE_byClause = 21; + public static readonly RULE_statsByClause = 22; + public static readonly RULE_bySpanClause = 23; + public static readonly RULE_spanClause = 24; + public static readonly RULE_sortbyClause = 25; + public static readonly RULE_evalClause = 26; + public static readonly RULE_statsAggTerm = 27; + public static readonly RULE_statsFunction = 28; + public static readonly RULE_statsFunctionName = 29; + public static readonly RULE_percentileAggFunction = 30; + public static readonly RULE_expression = 31; + public static readonly RULE_logicalExpression = 32; + public static readonly RULE_comparisonExpression = 33; + public static readonly RULE_valueExpression = 34; + public static readonly RULE_primaryExpression = 35; + public static readonly RULE_booleanExpression = 36; + public static readonly RULE_relevanceExpression = 37; + public static readonly RULE_singleFieldRelevanceFunction = 38; + public static readonly RULE_multiFieldRelevanceFunction = 39; + public static readonly RULE_tableSource = 40; + public static readonly RULE_fieldList = 41; + public static readonly RULE_wcFieldList = 42; + public static readonly RULE_sortField = 43; + public static readonly RULE_sortFieldExpression = 44; + public static readonly RULE_fieldExpression = 45; + public static readonly RULE_wcFieldExpression = 46; + public static readonly RULE_evalFunctionCall = 47; + public static readonly RULE_dataTypeFunctionCall = 48; + public static readonly RULE_booleanFunctionCall = 49; + public static readonly RULE_convertedDataType = 50; + public static readonly RULE_evalFunctionName = 51; + public static readonly RULE_functionArgs = 52; + public static readonly RULE_functionArg = 53; + public static readonly RULE_relevanceArg = 54; + public static readonly RULE_relevanceArgName = 55; + public static readonly RULE_relevanceFieldAndWeight = 56; + public static readonly RULE_relevanceFieldWeight = 57; + public static readonly RULE_relevanceField = 58; + public static readonly RULE_relevanceQuery = 59; + public static readonly RULE_relevanceArgValue = 60; + public static readonly RULE_mathematicalFunctionBase = 61; + public static readonly RULE_trigonometricFunctionName = 62; + public static readonly RULE_dateAndTimeFunctionBase = 63; + public static readonly RULE_conditionFunctionBase = 64; + public static readonly RULE_textFunctionBase = 65; + public static readonly RULE_comparisonOperator = 66; + public static readonly RULE_binaryOperator = 67; + public static readonly RULE_singleFieldRelevanceFunctionName = 68; + public static readonly RULE_multiFieldRelevanceFunctionName = 69; + public static readonly RULE_literalValue = 70; + public static readonly RULE_intervalLiteral = 71; + public static readonly RULE_stringLiteral = 72; + public static readonly RULE_integerLiteral = 73; + public static readonly RULE_decimalLiteral = 74; + public static readonly RULE_booleanLiteral = 75; + public static readonly RULE_pattern = 76; + public static readonly RULE_intervalUnit = 77; + public static readonly RULE_timespanUnit = 78; + public static readonly RULE_valueList = 79; + public static readonly RULE_qualifiedName = 80; + public static readonly RULE_wcQualifiedName = 81; + public static readonly RULE_ident = 82; + public static readonly RULE_wildcard = 83; + public static readonly RULE_keywordsCanBeId = 84; + // tslint:disable:no-trailing-whitespace + public static readonly ruleNames: string[] = [ + "root", "pplStatement", "commands", "searchCommand", "whereCommand", "fieldsCommand", + "renameCommand", "statsCommand", "dedupCommand", "sortCommand", "evalCommand", + "headCommand", "topCommand", "rareCommand", "parseCommand", "kmeansCommand", + "kmeansParameter", "adCommand", "adParameter", "fromClause", "renameClasue", + "byClause", "statsByClause", "bySpanClause", "spanClause", "sortbyClause", + "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", "percentileAggFunction", + "expression", "logicalExpression", "comparisonExpression", "valueExpression", + "primaryExpression", "booleanExpression", "relevanceExpression", "singleFieldRelevanceFunction", + "multiFieldRelevanceFunction", "tableSource", "fieldList", "wcFieldList", + "sortField", "sortFieldExpression", "fieldExpression", "wcFieldExpression", + "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", "convertedDataType", + "evalFunctionName", "functionArgs", "functionArg", "relevanceArg", "relevanceArgName", + "relevanceFieldAndWeight", "relevanceFieldWeight", "relevanceField", "relevanceQuery", + "relevanceArgValue", "mathematicalFunctionBase", "trigonometricFunctionName", + "dateAndTimeFunctionBase", "conditionFunctionBase", "textFunctionBase", + "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", + "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", + "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", + "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", + "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId", + ]; + + private static readonly _LITERAL_NAMES: Array = [ + undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", + "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", + "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", + "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", + "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", + "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", + "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", + "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", + "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", + "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", + "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", + "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", + "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", + "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", + "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", + "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, + undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", + "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", + "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", + "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", + "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", + "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", + "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", + "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", + "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", + "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", + "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", + "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", + "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", + "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", + "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", + "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", + "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", + "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", + "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", + "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", + "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", + "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", + "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", + "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", + "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", + "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", + "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", + "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", + "'W'", "'Q'", "'Y'", + ]; + private static readonly _SYMBOLIC_NAMES: Array = [ + undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", + "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", + "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", + "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", + "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", + "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", + "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", + "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", + "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", + "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", + "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", + "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", + "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", + "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", + "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", + "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", + "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", + "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", + "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", + "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", + "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", + "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", + "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", + "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", + "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", + "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", + "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", + "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", + "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", + "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", + "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", + "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", + "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", + "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", + "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", + "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", + "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", + "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", + "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", + "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", + ]; + public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLParser._LITERAL_NAMES, OpenSearchPPLParser._SYMBOLIC_NAMES, []); + + // @Override + // @NotNull + public get vocabulary(): Vocabulary { + return OpenSearchPPLParser.VOCABULARY; + } + // tslint:enable:no-trailing-whitespace + + // @Override + public get grammarFileName(): string { return "OpenSearchPPLParser.g4"; } + + // @Override + public get ruleNames(): string[] { return OpenSearchPPLParser.ruleNames; } + + // @Override + public get serializedATN(): string { return OpenSearchPPLParser._serializedATN; } + + protected createFailedPredicateException(predicate?: string, message?: string): FailedPredicateException { + return new FailedPredicateException(this, predicate, message); + } + + constructor(input: TokenStream) { + super(input); + this._interp = new ParserATNSimulator(OpenSearchPPLParser._ATN, this); + } + // @RuleVersion(0) + public root(): RootContext { + let _localctx: RootContext = new RootContext(this._ctx, this.state); + this.enterRule(_localctx, 0, OpenSearchPPLParser.RULE_root); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 171; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << OpenSearchPPLParser.SEARCH) | (1 << OpenSearchPPLParser.SOURCE) | (1 << OpenSearchPPLParser.INDEX) | (1 << OpenSearchPPLParser.D))) !== 0) || ((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & ((1 << (OpenSearchPPLParser.NOT - 48)) | (1 << (OpenSearchPPLParser.TRUE - 48)) | (1 << (OpenSearchPPLParser.FALSE - 48)) | (1 << (OpenSearchPPLParser.INTERVAL - 48)) | (1 << (OpenSearchPPLParser.MICROSECOND - 48)) | (1 << (OpenSearchPPLParser.MILLISECOND - 48)) | (1 << (OpenSearchPPLParser.SECOND - 48)) | (1 << (OpenSearchPPLParser.MINUTE - 48)) | (1 << (OpenSearchPPLParser.HOUR - 48)) | (1 << (OpenSearchPPLParser.DAY - 48)) | (1 << (OpenSearchPPLParser.WEEK - 48)) | (1 << (OpenSearchPPLParser.MONTH - 48)) | (1 << (OpenSearchPPLParser.QUARTER - 48)) | (1 << (OpenSearchPPLParser.YEAR - 48)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)) | (1 << (OpenSearchPPLParser.MATCH - 218)) | (1 << (OpenSearchPPLParser.MATCH_PHRASE - 218)) | (1 << (OpenSearchPPLParser.SIMPLE_QUERY_STRING - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { + { + this.state = 170; + this.pplStatement(); + } + } + + this.state = 173; + this.match(OpenSearchPPLParser.EOF); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public pplStatement(): PplStatementContext { + let _localctx: PplStatementContext = new PplStatementContext(this._ctx, this.state); + this.enterRule(_localctx, 2, OpenSearchPPLParser.RULE_pplStatement); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 175; + this.searchCommand(); + this.state = 180; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.PIPE) { + { + { + this.state = 176; + this.match(OpenSearchPPLParser.PIPE); + this.state = 177; + this.commands(); + } + } + this.state = 182; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public commands(): CommandsContext { + let _localctx: CommandsContext = new CommandsContext(this._ctx, this.state); + this.enterRule(_localctx, 4, OpenSearchPPLParser.RULE_commands); + try { + this.state = 196; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.WHERE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 183; + this.whereCommand(); + } + break; + case OpenSearchPPLParser.FIELDS: + this.enterOuterAlt(_localctx, 2); + { + this.state = 184; + this.fieldsCommand(); + } + break; + case OpenSearchPPLParser.RENAME: + this.enterOuterAlt(_localctx, 3); + { + this.state = 185; + this.renameCommand(); + } + break; + case OpenSearchPPLParser.STATS: + this.enterOuterAlt(_localctx, 4); + { + this.state = 186; + this.statsCommand(); + } + break; + case OpenSearchPPLParser.DEDUP: + this.enterOuterAlt(_localctx, 5); + { + this.state = 187; + this.dedupCommand(); + } + break; + case OpenSearchPPLParser.SORT: + this.enterOuterAlt(_localctx, 6); + { + this.state = 188; + this.sortCommand(); + } + break; + case OpenSearchPPLParser.EVAL: + this.enterOuterAlt(_localctx, 7); + { + this.state = 189; + this.evalCommand(); + } + break; + case OpenSearchPPLParser.HEAD: + this.enterOuterAlt(_localctx, 8); + { + this.state = 190; + this.headCommand(); + } + break; + case OpenSearchPPLParser.TOP: + this.enterOuterAlt(_localctx, 9); + { + this.state = 191; + this.topCommand(); + } + break; + case OpenSearchPPLParser.RARE: + this.enterOuterAlt(_localctx, 10); + { + this.state = 192; + this.rareCommand(); + } + break; + case OpenSearchPPLParser.PARSE: + this.enterOuterAlt(_localctx, 11); + { + this.state = 193; + this.parseCommand(); + } + break; + case OpenSearchPPLParser.KMEANS: + this.enterOuterAlt(_localctx, 12); + { + this.state = 194; + this.kmeansCommand(); + } + break; + case OpenSearchPPLParser.AD: + this.enterOuterAlt(_localctx, 13); + { + this.state = 195; + this.adCommand(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public searchCommand(): SearchCommandContext { + let _localctx: SearchCommandContext = new SearchCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 6, OpenSearchPPLParser.RULE_searchCommand); + let _la: number; + try { + this.state = 214; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 6, this._ctx) ) { + case 1: + _localctx = new SearchFromContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 199; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.SEARCH) { + { + this.state = 198; + this.match(OpenSearchPPLParser.SEARCH); + } + } + + this.state = 201; + this.fromClause(); + } + break; + + case 2: + _localctx = new SearchFromFilterContext(_localctx); + this.enterOuterAlt(_localctx, 2); + { + this.state = 203; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.SEARCH) { + { + this.state = 202; + this.match(OpenSearchPPLParser.SEARCH); + } + } + + this.state = 205; + this.fromClause(); + this.state = 206; + this.logicalExpression(0); + } + break; + + case 3: + _localctx = new SearchFilterFromContext(_localctx); + this.enterOuterAlt(_localctx, 3); + { + this.state = 209; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.SEARCH) { + { + this.state = 208; + this.match(OpenSearchPPLParser.SEARCH); + } + } + + this.state = 211; + this.logicalExpression(0); + this.state = 212; + this.fromClause(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public whereCommand(): WhereCommandContext { + let _localctx: WhereCommandContext = new WhereCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 8, OpenSearchPPLParser.RULE_whereCommand); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 216; + this.match(OpenSearchPPLParser.WHERE); + this.state = 217; + this.logicalExpression(0); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fieldsCommand(): FieldsCommandContext { + let _localctx: FieldsCommandContext = new FieldsCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 10, OpenSearchPPLParser.RULE_fieldsCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 219; + this.match(OpenSearchPPLParser.FIELDS); + this.state = 221; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 220; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 223; + this.fieldList(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public renameCommand(): RenameCommandContext { + let _localctx: RenameCommandContext = new RenameCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 12, OpenSearchPPLParser.RULE_renameCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 225; + this.match(OpenSearchPPLParser.RENAME); + this.state = 226; + this.renameClasue(); + this.state = 231; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 227; + this.match(OpenSearchPPLParser.COMMA); + this.state = 228; + this.renameClasue(); + } + } + this.state = 233; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsCommand(): StatsCommandContext { + let _localctx: StatsCommandContext = new StatsCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 14, OpenSearchPPLParser.RULE_statsCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 234; + this.match(OpenSearchPPLParser.STATS); + this.state = 238; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PARTITIONS) { + { + this.state = 235; + this.match(OpenSearchPPLParser.PARTITIONS); + this.state = 236; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 237; + _localctx._partitions = this.integerLiteral(); + } + } + + this.state = 243; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.ALLNUM) { + { + this.state = 240; + this.match(OpenSearchPPLParser.ALLNUM); + this.state = 241; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 242; + _localctx._allnum = this.booleanLiteral(); + } + } + + this.state = 248; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.DELIM) { + { + this.state = 245; + this.match(OpenSearchPPLParser.DELIM); + this.state = 246; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 247; + _localctx._delim = this.stringLiteral(); + } + } + + this.state = 250; + this.statsAggTerm(); + this.state = 255; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 251; + this.match(OpenSearchPPLParser.COMMA); + this.state = 252; + this.statsAggTerm(); + } + } + this.state = 257; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 259; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.BY) { + { + this.state = 258; + this.statsByClause(); + } + } + + this.state = 264; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.DEDUP_SPLITVALUES) { + { + this.state = 261; + this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); + this.state = 262; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 263; + _localctx._dedupsplit = this.booleanLiteral(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public dedupCommand(): DedupCommandContext { + let _localctx: DedupCommandContext = new DedupCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 16, OpenSearchPPLParser.RULE_dedupCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 266; + this.match(OpenSearchPPLParser.DEDUP); + this.state = 268; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { + { + this.state = 267; + _localctx._number = this.integerLiteral(); + } + } + + this.state = 270; + this.fieldList(); + this.state = 274; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.KEEPEMPTY) { + { + this.state = 271; + this.match(OpenSearchPPLParser.KEEPEMPTY); + this.state = 272; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 273; + _localctx._keepempty = this.booleanLiteral(); + } + } + + this.state = 279; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.CONSECUTIVE) { + { + this.state = 276; + this.match(OpenSearchPPLParser.CONSECUTIVE); + this.state = 277; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 278; + _localctx._consecutive = this.booleanLiteral(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortCommand(): SortCommandContext { + let _localctx: SortCommandContext = new SortCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 18, OpenSearchPPLParser.RULE_sortCommand); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 281; + this.match(OpenSearchPPLParser.SORT); + this.state = 282; + this.sortbyClause(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalCommand(): EvalCommandContext { + let _localctx: EvalCommandContext = new EvalCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 20, OpenSearchPPLParser.RULE_evalCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 284; + this.match(OpenSearchPPLParser.EVAL); + this.state = 285; + this.evalClause(); + this.state = 290; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 286; + this.match(OpenSearchPPLParser.COMMA); + this.state = 287; + this.evalClause(); + } + } + this.state = 292; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public headCommand(): HeadCommandContext { + let _localctx: HeadCommandContext = new HeadCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 22, OpenSearchPPLParser.RULE_headCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 293; + this.match(OpenSearchPPLParser.HEAD); + this.state = 295; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { + { + this.state = 294; + _localctx._number = this.integerLiteral(); + } + } + + this.state = 299; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.FROM) { + { + this.state = 297; + this.match(OpenSearchPPLParser.FROM); + this.state = 298; + _localctx._from = this.integerLiteral(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public topCommand(): TopCommandContext { + let _localctx: TopCommandContext = new TopCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 24, OpenSearchPPLParser.RULE_topCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 301; + this.match(OpenSearchPPLParser.TOP); + this.state = 303; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { + { + this.state = 302; + _localctx._number = this.integerLiteral(); + } + } + + this.state = 305; + this.fieldList(); + this.state = 307; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.BY) { + { + this.state = 306; + this.byClause(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public rareCommand(): RareCommandContext { + let _localctx: RareCommandContext = new RareCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 26, OpenSearchPPLParser.RULE_rareCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 309; + this.match(OpenSearchPPLParser.RARE); + this.state = 310; + this.fieldList(); + this.state = 312; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.BY) { + { + this.state = 311; + this.byClause(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public parseCommand(): ParseCommandContext { + let _localctx: ParseCommandContext = new ParseCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 28, OpenSearchPPLParser.RULE_parseCommand); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 314; + this.match(OpenSearchPPLParser.PARSE); + this.state = 315; + this.expression(); + this.state = 316; + this.pattern(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public kmeansCommand(): KmeansCommandContext { + let _localctx: KmeansCommandContext = new KmeansCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 30, OpenSearchPPLParser.RULE_kmeansCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 318; + this.match(OpenSearchPPLParser.KMEANS); + this.state = 322; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & ((1 << (OpenSearchPPLParser.CENTROIDS - 33)) | (1 << (OpenSearchPPLParser.ITERATIONS - 33)) | (1 << (OpenSearchPPLParser.DISTANCE_TYPE - 33)))) !== 0)) { + { + { + this.state = 319; + this.kmeansParameter(); + } + } + this.state = 324; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public kmeansParameter(): KmeansParameterContext { + let _localctx: KmeansParameterContext = new KmeansParameterContext(this._ctx, this.state); + this.enterRule(_localctx, 32, OpenSearchPPLParser.RULE_kmeansParameter); + try { + this.state = 334; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.CENTROIDS: + this.enterOuterAlt(_localctx, 1); + { + { + this.state = 325; + this.match(OpenSearchPPLParser.CENTROIDS); + this.state = 326; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 327; + _localctx._centroids = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.ITERATIONS: + this.enterOuterAlt(_localctx, 2); + { + { + this.state = 328; + this.match(OpenSearchPPLParser.ITERATIONS); + this.state = 329; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 330; + _localctx._iterations = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.DISTANCE_TYPE: + this.enterOuterAlt(_localctx, 3); + { + { + this.state = 331; + this.match(OpenSearchPPLParser.DISTANCE_TYPE); + this.state = 332; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 333; + _localctx._distance_type = this.stringLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public adCommand(): AdCommandContext { + let _localctx: AdCommandContext = new AdCommandContext(this._ctx, this.state); + this.enterRule(_localctx, 34, OpenSearchPPLParser.RULE_adCommand); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 336; + this.match(OpenSearchPPLParser.AD); + this.state = 340; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & ((1 << (OpenSearchPPLParser.NUMBER_OF_TREES - 36)) | (1 << (OpenSearchPPLParser.SHINGLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.SAMPLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.OUTPUT_AFTER - 36)) | (1 << (OpenSearchPPLParser.TIME_DECAY - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_RATE - 36)) | (1 << (OpenSearchPPLParser.TIME_FIELD - 36)) | (1 << (OpenSearchPPLParser.TIME_ZONE - 36)) | (1 << (OpenSearchPPLParser.TRAINING_DATA_SIZE - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD - 36)))) !== 0) || _la === OpenSearchPPLParser.DATE_FORMAT) { + { + { + this.state = 337; + this.adParameter(); + } + } + this.state = 342; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public adParameter(): AdParameterContext { + let _localctx: AdParameterContext = new AdParameterContext(this._ctx, this.state); + this.enterRule(_localctx, 36, OpenSearchPPLParser.RULE_adParameter); + try { + this.state = 376; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.NUMBER_OF_TREES: + this.enterOuterAlt(_localctx, 1); + { + { + this.state = 343; + this.match(OpenSearchPPLParser.NUMBER_OF_TREES); + this.state = 344; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 345; + _localctx._number_of_trees = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.SHINGLE_SIZE: + this.enterOuterAlt(_localctx, 2); + { + { + this.state = 346; + this.match(OpenSearchPPLParser.SHINGLE_SIZE); + this.state = 347; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 348; + _localctx._shingle_size = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.SAMPLE_SIZE: + this.enterOuterAlt(_localctx, 3); + { + { + this.state = 349; + this.match(OpenSearchPPLParser.SAMPLE_SIZE); + this.state = 350; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 351; + _localctx._sample_size = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.OUTPUT_AFTER: + this.enterOuterAlt(_localctx, 4); + { + { + this.state = 352; + this.match(OpenSearchPPLParser.OUTPUT_AFTER); + this.state = 353; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 354; + _localctx._output_after = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.TIME_DECAY: + this.enterOuterAlt(_localctx, 5); + { + { + this.state = 355; + this.match(OpenSearchPPLParser.TIME_DECAY); + this.state = 356; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 357; + _localctx._time_decay = this.decimalLiteral(); + } + } + break; + case OpenSearchPPLParser.ANOMALY_RATE: + this.enterOuterAlt(_localctx, 6); + { + { + this.state = 358; + this.match(OpenSearchPPLParser.ANOMALY_RATE); + this.state = 359; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 360; + _localctx._anomaly_rate = this.decimalLiteral(); + } + } + break; + case OpenSearchPPLParser.TIME_FIELD: + this.enterOuterAlt(_localctx, 7); + { + { + this.state = 361; + this.match(OpenSearchPPLParser.TIME_FIELD); + this.state = 362; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 363; + _localctx._time_field = this.stringLiteral(); + } + } + break; + case OpenSearchPPLParser.DATE_FORMAT: + this.enterOuterAlt(_localctx, 8); + { + { + this.state = 364; + this.match(OpenSearchPPLParser.DATE_FORMAT); + this.state = 365; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 366; + _localctx._date_format = this.stringLiteral(); + } + } + break; + case OpenSearchPPLParser.TIME_ZONE: + this.enterOuterAlt(_localctx, 9); + { + { + this.state = 367; + this.match(OpenSearchPPLParser.TIME_ZONE); + this.state = 368; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 369; + _localctx._time_zone = this.stringLiteral(); + } + } + break; + case OpenSearchPPLParser.TRAINING_DATA_SIZE: + this.enterOuterAlt(_localctx, 10); + { + { + this.state = 370; + this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); + this.state = 371; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 372; + _localctx._training_data_size = this.integerLiteral(); + } + } + break; + case OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD: + this.enterOuterAlt(_localctx, 11); + { + { + this.state = 373; + this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); + this.state = 374; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 375; + _localctx._anomaly_score_threshold = this.decimalLiteral(); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fromClause(): FromClauseContext { + let _localctx: FromClauseContext = new FromClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 38, OpenSearchPPLParser.RULE_fromClause); + let _la: number; + try { + this.state = 398; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.SOURCE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 378; + this.match(OpenSearchPPLParser.SOURCE); + this.state = 379; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 380; + this.tableSource(); + this.state = 385; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 381; + this.match(OpenSearchPPLParser.COMMA); + this.state = 382; + this.tableSource(); + } + } + this.state = 387; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + break; + case OpenSearchPPLParser.INDEX: + this.enterOuterAlt(_localctx, 2); + { + this.state = 388; + this.match(OpenSearchPPLParser.INDEX); + this.state = 389; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 390; + this.tableSource(); + this.state = 395; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 391; + this.match(OpenSearchPPLParser.COMMA); + this.state = 392; + this.tableSource(); + } + } + this.state = 397; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public renameClasue(): RenameClasueContext { + let _localctx: RenameClasueContext = new RenameClasueContext(this._ctx, this.state); + this.enterRule(_localctx, 40, OpenSearchPPLParser.RULE_renameClasue); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 400; + _localctx._orignalField = this.wcFieldExpression(); + this.state = 401; + this.match(OpenSearchPPLParser.AS); + this.state = 402; + _localctx._renamedField = this.wcFieldExpression(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public byClause(): ByClauseContext { + let _localctx: ByClauseContext = new ByClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 42, OpenSearchPPLParser.RULE_byClause); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 404; + this.match(OpenSearchPPLParser.BY); + this.state = 405; + this.fieldList(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsByClause(): StatsByClauseContext { + let _localctx: StatsByClauseContext = new StatsByClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 44, OpenSearchPPLParser.RULE_statsByClause); + try { + this.state = 416; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 31, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 407; + this.match(OpenSearchPPLParser.BY); + this.state = 408; + this.fieldList(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 409; + this.match(OpenSearchPPLParser.BY); + this.state = 410; + this.bySpanClause(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 411; + this.match(OpenSearchPPLParser.BY); + this.state = 412; + this.bySpanClause(); + this.state = 413; + this.match(OpenSearchPPLParser.COMMA); + this.state = 414; + this.fieldList(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public bySpanClause(): BySpanClauseContext { + let _localctx: BySpanClauseContext = new BySpanClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 46, OpenSearchPPLParser.RULE_bySpanClause); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 418; + this.spanClause(); + this.state = 421; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.AS) { + { + this.state = 419; + this.match(OpenSearchPPLParser.AS); + this.state = 420; + _localctx._alias = this.qualifiedName(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public spanClause(): SpanClauseContext { + let _localctx: SpanClauseContext = new SpanClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 48, OpenSearchPPLParser.RULE_spanClause); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 423; + this.match(OpenSearchPPLParser.SPAN); + this.state = 424; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 425; + this.fieldExpression(); + this.state = 426; + this.match(OpenSearchPPLParser.COMMA); + this.state = 427; + _localctx._value = this.literalValue(); + this.state = 429; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0)) { + { + this.state = 428; + _localctx._unit = this.timespanUnit(); + } + } + + this.state = 431; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortbyClause(): SortbyClauseContext { + let _localctx: SortbyClauseContext = new SortbyClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 50, OpenSearchPPLParser.RULE_sortbyClause); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 433; + this.sortField(); + this.state = 438; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 434; + this.match(OpenSearchPPLParser.COMMA); + this.state = 435; + this.sortField(); + } + } + this.state = 440; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalClause(): EvalClauseContext { + let _localctx: EvalClauseContext = new EvalClauseContext(this._ctx, this.state); + this.enterRule(_localctx, 52, OpenSearchPPLParser.RULE_evalClause); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 441; + this.fieldExpression(); + this.state = 442; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 443; + this.expression(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsAggTerm(): StatsAggTermContext { + let _localctx: StatsAggTermContext = new StatsAggTermContext(this._ctx, this.state); + this.enterRule(_localctx, 54, OpenSearchPPLParser.RULE_statsAggTerm); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 445; + this.statsFunction(); + this.state = 448; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.AS) { + { + this.state = 446; + this.match(OpenSearchPPLParser.AS); + this.state = 447; + _localctx._alias = this.wcFieldExpression(); + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsFunction(): StatsFunctionContext { + let _localctx: StatsFunctionContext = new StatsFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 56, OpenSearchPPLParser.RULE_statsFunction); + let _la: number; + try { + this.state = 464; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 36, this._ctx) ) { + case 1: + _localctx = new StatsFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 450; + this.statsFunctionName(); + this.state = 451; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 452; + this.valueExpression(0); + this.state = 453; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + + case 2: + _localctx = new CountAllFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 2); + { + this.state = 455; + this.match(OpenSearchPPLParser.COUNT); + this.state = 456; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 457; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + + case 3: + _localctx = new DistinctCountFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 3); + { + this.state = 458; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.DISTINCT_COUNT || _la === OpenSearchPPLParser.DC)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 459; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 460; + this.valueExpression(0); + this.state = 461; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + + case 4: + _localctx = new PercentileAggFunctionCallContext(_localctx); + this.enterOuterAlt(_localctx, 4); + { + this.state = 463; + this.percentileAggFunction(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public statsFunctionName(): StatsFunctionNameContext { + let _localctx: StatsFunctionNameContext = new StatsFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 58, OpenSearchPPLParser.RULE_statsFunctionName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 466; + _la = this._input.LA(1); + if (!(((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & ((1 << (OpenSearchPPLParser.AVG - 114)) | (1 << (OpenSearchPPLParser.COUNT - 114)) | (1 << (OpenSearchPPLParser.MAX - 114)) | (1 << (OpenSearchPPLParser.MIN - 114)) | (1 << (OpenSearchPPLParser.SUM - 114)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 114)) | (1 << (OpenSearchPPLParser.VAR_POP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 114)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public percentileAggFunction(): PercentileAggFunctionContext { + let _localctx: PercentileAggFunctionContext = new PercentileAggFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 60, OpenSearchPPLParser.RULE_percentileAggFunction); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 468; + this.match(OpenSearchPPLParser.PERCENTILE); + this.state = 469; + this.match(OpenSearchPPLParser.LESS); + this.state = 470; + _localctx._value = this.integerLiteral(); + this.state = 471; + this.match(OpenSearchPPLParser.GREATER); + this.state = 472; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 473; + _localctx._aggField = this.fieldExpression(); + this.state = 474; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public expression(): ExpressionContext { + let _localctx: ExpressionContext = new ExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 62, OpenSearchPPLParser.RULE_expression); + try { + this.state = 479; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 37, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 476; + this.logicalExpression(0); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 477; + this.comparisonExpression(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 478; + this.valueExpression(0); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + + public logicalExpression(): LogicalExpressionContext; + public logicalExpression(_p: number): LogicalExpressionContext; + // @RuleVersion(0) + public logicalExpression(_p?: number): LogicalExpressionContext { + if (_p === undefined) { + _p = 0; + } + + let _parentctx: ParserRuleContext = this._ctx; + let _parentState: number = this.state; + let _localctx: LogicalExpressionContext = new LogicalExpressionContext(this._ctx, _parentState); + let _prevctx: LogicalExpressionContext = _localctx; + let _startState: number = 64; + this.enterRecursionRule(_localctx, 64, OpenSearchPPLParser.RULE_logicalExpression, _p); + let _la: number; + try { + let _alt: number; + this.enterOuterAlt(_localctx, 1); + { + this.state = 487; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 38, this._ctx) ) { + case 1: + { + _localctx = new ComparsionContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + + this.state = 482; + this.comparisonExpression(); + } + break; + + case 2: + { + _localctx = new LogicalNotContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 483; + this.match(OpenSearchPPLParser.NOT); + this.state = 484; + this.logicalExpression(6); + } + break; + + case 3: + { + _localctx = new BooleanExprContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 485; + this.booleanExpression(); + } + break; + + case 4: + { + _localctx = new RelevanceExprContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 486; + this.relevanceExpression(); + } + break; + } + this._ctx._stop = this._input.tryLT(-1); + this.state = 502; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = _localctx; + { + this.state = 500; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 40, this._ctx) ) { + case 1: + { + _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); + (_localctx as LogicalOrContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); + this.state = 489; + if (!(this.precpred(this._ctx, 5))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); + } + this.state = 490; + this.match(OpenSearchPPLParser.OR); + this.state = 491; + (_localctx as LogicalOrContext)._right = this.logicalExpression(6); + } + break; + + case 2: + { + _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); + (_localctx as LogicalAndContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); + this.state = 492; + if (!(this.precpred(this._ctx, 4))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); + } + this.state = 494; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.AND) { + { + this.state = 493; + this.match(OpenSearchPPLParser.AND); + } + } + + this.state = 496; + (_localctx as LogicalAndContext)._right = this.logicalExpression(5); + } + break; + + case 3: + { + _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); + (_localctx as LogicalXorContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); + this.state = 497; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 498; + this.match(OpenSearchPPLParser.XOR); + this.state = 499; + (_localctx as LogicalXorContext)._right = this.logicalExpression(4); + } + break; + } + } + } + this.state = 504; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.unrollRecursionContexts(_parentctx); + } + return _localctx; + } + // @RuleVersion(0) + public comparisonExpression(): ComparisonExpressionContext { + let _localctx: ComparisonExpressionContext = new ComparisonExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 66, OpenSearchPPLParser.RULE_comparisonExpression); + try { + this.state = 513; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 42, this._ctx) ) { + case 1: + _localctx = new CompareExprContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 505; + (_localctx as CompareExprContext)._left = this.valueExpression(0); + this.state = 506; + this.comparisonOperator(); + this.state = 507; + (_localctx as CompareExprContext)._right = this.valueExpression(0); + } + break; + + case 2: + _localctx = new InExprContext(_localctx); + this.enterOuterAlt(_localctx, 2); + { + this.state = 509; + this.valueExpression(0); + this.state = 510; + this.match(OpenSearchPPLParser.IN); + this.state = 511; + this.valueList(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + + public valueExpression(): ValueExpressionContext; + public valueExpression(_p: number): ValueExpressionContext; + // @RuleVersion(0) + public valueExpression(_p?: number): ValueExpressionContext { + if (_p === undefined) { + _p = 0; + } + + let _parentctx: ParserRuleContext = this._ctx; + let _parentState: number = this.state; + let _localctx: ValueExpressionContext = new ValueExpressionContext(this._ctx, _parentState); + let _prevctx: ValueExpressionContext = _localctx; + let _startState: number = 68; + this.enterRecursionRule(_localctx, 68, OpenSearchPPLParser.RULE_valueExpression, _p); + try { + let _alt: number; + this.enterOuterAlt(_localctx, 1); + { + this.state = 523; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.LT_PRTHS: + { + _localctx = new ParentheticBinaryArithmeticContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + + this.state = 516; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 517; + (_localctx as ParentheticBinaryArithmeticContext)._left = this.valueExpression(0); + this.state = 518; + this.binaryOperator(); + this.state = 519; + (_localctx as ParentheticBinaryArithmeticContext)._right = this.valueExpression(0); + this.state = 520; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.TRUE: + case OpenSearchPPLParser.FALSE: + case OpenSearchPPLParser.INTERVAL: + case OpenSearchPPLParser.MICROSECOND: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.PLUS: + case OpenSearchPPLParser.MINUS: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.ABS: + case OpenSearchPPLParser.CEIL: + case OpenSearchPPLParser.CEILING: + case OpenSearchPPLParser.CONV: + case OpenSearchPPLParser.CRC32: + case OpenSearchPPLParser.E: + case OpenSearchPPLParser.EXP: + case OpenSearchPPLParser.FLOOR: + case OpenSearchPPLParser.LN: + case OpenSearchPPLParser.LOG: + case OpenSearchPPLParser.LOG10: + case OpenSearchPPLParser.LOG2: + case OpenSearchPPLParser.MOD: + case OpenSearchPPLParser.PI: + case OpenSearchPPLParser.POW: + case OpenSearchPPLParser.POWER: + case OpenSearchPPLParser.RAND: + case OpenSearchPPLParser.ROUND: + case OpenSearchPPLParser.SIGN: + case OpenSearchPPLParser.SQRT: + case OpenSearchPPLParser.TRUNCATE: + case OpenSearchPPLParser.ACOS: + case OpenSearchPPLParser.ASIN: + case OpenSearchPPLParser.ATAN: + case OpenSearchPPLParser.ATAN2: + case OpenSearchPPLParser.COS: + case OpenSearchPPLParser.COT: + case OpenSearchPPLParser.DEGREES: + case OpenSearchPPLParser.RADIANS: + case OpenSearchPPLParser.SIN: + case OpenSearchPPLParser.TAN: + case OpenSearchPPLParser.ADDDATE: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.DATE_ADD: + case OpenSearchPPLParser.DATE_SUB: + case OpenSearchPPLParser.DAYOFMONTH: + case OpenSearchPPLParser.DAYOFWEEK: + case OpenSearchPPLParser.DAYOFYEAR: + case OpenSearchPPLParser.DAYNAME: + case OpenSearchPPLParser.FROM_DAYS: + case OpenSearchPPLParser.MONTHNAME: + case OpenSearchPPLParser.SUBDATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIME_TO_SEC: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.DATE_FORMAT: + case OpenSearchPPLParser.TO_DAYS: + case OpenSearchPPLParser.SUBSTR: + case OpenSearchPPLParser.SUBSTRING: + case OpenSearchPPLParser.LTRIM: + case OpenSearchPPLParser.RTRIM: + case OpenSearchPPLParser.TRIM: + case OpenSearchPPLParser.LOWER: + case OpenSearchPPLParser.UPPER: + case OpenSearchPPLParser.CONCAT: + case OpenSearchPPLParser.CONCAT_WS: + case OpenSearchPPLParser.LENGTH: + case OpenSearchPPLParser.STRCMP: + case OpenSearchPPLParser.RIGHT: + case OpenSearchPPLParser.LEFT: + case OpenSearchPPLParser.ASCII: + case OpenSearchPPLParser.LOCATE: + case OpenSearchPPLParser.REPLACE: + case OpenSearchPPLParser.CAST: + case OpenSearchPPLParser.LIKE: + case OpenSearchPPLParser.ISNULL: + case OpenSearchPPLParser.ISNOTNULL: + case OpenSearchPPLParser.IFNULL: + case OpenSearchPPLParser.NULLIF: + case OpenSearchPPLParser.IF: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.INTEGER_LITERAL: + case OpenSearchPPLParser.DECIMAL_LITERAL: + case OpenSearchPPLParser.DQUOTA_STRING: + case OpenSearchPPLParser.SQUOTA_STRING: + case OpenSearchPPLParser.BQUOTA_STRING: + { + _localctx = new ValueExpressionDefaultContext(_localctx); + this._ctx = _localctx; + _prevctx = _localctx; + this.state = 522; + this.primaryExpression(); + } + break; + default: + throw new NoViableAltException(this); + } + this._ctx._stop = this._input.tryLT(-1); + this.state = 531; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = _localctx; + { + { + _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); + (_localctx as BinaryArithmeticContext)._left = _prevctx; + this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_valueExpression); + this.state = 525; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 526; + this.binaryOperator(); + this.state = 527; + (_localctx as BinaryArithmeticContext)._right = this.valueExpression(4); + } + } + } + this.state = 533; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.unrollRecursionContexts(_parentctx); + } + return _localctx; + } + // @RuleVersion(0) + public primaryExpression(): PrimaryExpressionContext { + let _localctx: PrimaryExpressionContext = new PrimaryExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 70, OpenSearchPPLParser.RULE_primaryExpression); + try { + this.state = 538; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 45, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 534; + this.evalFunctionCall(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 535; + this.dataTypeFunctionCall(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 536; + this.fieldExpression(); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 537; + this.literalValue(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public booleanExpression(): BooleanExpressionContext { + let _localctx: BooleanExpressionContext = new BooleanExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 72, OpenSearchPPLParser.RULE_booleanExpression); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 540; + this.booleanFunctionCall(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceExpression(): RelevanceExpressionContext { + let _localctx: RelevanceExpressionContext = new RelevanceExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 74, OpenSearchPPLParser.RULE_relevanceExpression); + try { + this.state = 544; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.MATCH: + case OpenSearchPPLParser.MATCH_PHRASE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 542; + this.singleFieldRelevanceFunction(); + } + break; + case OpenSearchPPLParser.SIMPLE_QUERY_STRING: + this.enterOuterAlt(_localctx, 2); + { + this.state = 543; + this.multiFieldRelevanceFunction(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext { + let _localctx: SingleFieldRelevanceFunctionContext = new SingleFieldRelevanceFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 76, OpenSearchPPLParser.RULE_singleFieldRelevanceFunction); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 546; + this.singleFieldRelevanceFunctionName(); + this.state = 547; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 548; + _localctx._field = this.relevanceField(); + this.state = 549; + this.match(OpenSearchPPLParser.COMMA); + this.state = 550; + _localctx._query = this.relevanceQuery(); + this.state = 555; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 551; + this.match(OpenSearchPPLParser.COMMA); + this.state = 552; + this.relevanceArg(); + } + } + this.state = 557; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 558; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext { + let _localctx: MultiFieldRelevanceFunctionContext = new MultiFieldRelevanceFunctionContext(this._ctx, this.state); + this.enterRule(_localctx, 78, OpenSearchPPLParser.RULE_multiFieldRelevanceFunction); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 560; + this.multiFieldRelevanceFunctionName(); + this.state = 561; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 562; + this.match(OpenSearchPPLParser.LT_SQR_PRTHS); + this.state = 563; + _localctx._field = this.relevanceFieldAndWeight(); + this.state = 568; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 564; + this.match(OpenSearchPPLParser.COMMA); + this.state = 565; + _localctx._field = this.relevanceFieldAndWeight(); + } + } + this.state = 570; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 571; + this.match(OpenSearchPPLParser.RT_SQR_PRTHS); + this.state = 572; + this.match(OpenSearchPPLParser.COMMA); + this.state = 573; + _localctx._query = this.relevanceQuery(); + this.state = 578; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 574; + this.match(OpenSearchPPLParser.COMMA); + this.state = 575; + this.relevanceArg(); + } + } + this.state = 580; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 581; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public tableSource(): TableSourceContext { + let _localctx: TableSourceContext = new TableSourceContext(this._ctx, this.state); + this.enterRule(_localctx, 80, OpenSearchPPLParser.RULE_tableSource); + try { + this.state = 585; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 583; + this.qualifiedName(); + } + break; + case OpenSearchPPLParser.ID_DATE_SUFFIX: + this.enterOuterAlt(_localctx, 2); + { + this.state = 584; + this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fieldList(): FieldListContext { + let _localctx: FieldListContext = new FieldListContext(this._ctx, this.state); + this.enterRule(_localctx, 82, OpenSearchPPLParser.RULE_fieldList); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 587; + this.fieldExpression(); + this.state = 592; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 588; + this.match(OpenSearchPPLParser.COMMA); + this.state = 589; + this.fieldExpression(); + } + } + this.state = 594; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wcFieldList(): WcFieldListContext { + let _localctx: WcFieldListContext = new WcFieldListContext(this._ctx, this.state); + this.enterRule(_localctx, 84, OpenSearchPPLParser.RULE_wcFieldList); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 595; + this.wcFieldExpression(); + this.state = 600; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 596; + this.match(OpenSearchPPLParser.COMMA); + this.state = 597; + this.wcFieldExpression(); + } + } + this.state = 602; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortField(): SortFieldContext { + let _localctx: SortFieldContext = new SortFieldContext(this._ctx, this.state); + this.enterRule(_localctx, 86, OpenSearchPPLParser.RULE_sortField); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 604; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 603; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 606; + this.sortFieldExpression(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public sortFieldExpression(): SortFieldExpressionContext { + let _localctx: SortFieldExpressionContext = new SortFieldExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 88, OpenSearchPPLParser.RULE_sortFieldExpression); + try { + this.state = 629; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 608; + this.fieldExpression(); + } + break; + case OpenSearchPPLParser.AUTO: + this.enterOuterAlt(_localctx, 2); + { + this.state = 609; + this.match(OpenSearchPPLParser.AUTO); + this.state = 610; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 611; + this.fieldExpression(); + this.state = 612; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.STR: + this.enterOuterAlt(_localctx, 3); + { + this.state = 614; + this.match(OpenSearchPPLParser.STR); + this.state = 615; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 616; + this.fieldExpression(); + this.state = 617; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.IP: + this.enterOuterAlt(_localctx, 4); + { + this.state = 619; + this.match(OpenSearchPPLParser.IP); + this.state = 620; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 621; + this.fieldExpression(); + this.state = 622; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + case OpenSearchPPLParser.NUM: + this.enterOuterAlt(_localctx, 5); + { + this.state = 624; + this.match(OpenSearchPPLParser.NUM); + this.state = 625; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 626; + this.fieldExpression(); + this.state = 627; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public fieldExpression(): FieldExpressionContext { + let _localctx: FieldExpressionContext = new FieldExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 90, OpenSearchPPLParser.RULE_fieldExpression); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 631; + this.qualifiedName(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wcFieldExpression(): WcFieldExpressionContext { + let _localctx: WcFieldExpressionContext = new WcFieldExpressionContext(this._ctx, this.state); + this.enterRule(_localctx, 92, OpenSearchPPLParser.RULE_wcFieldExpression); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 633; + this.wcQualifiedName(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalFunctionCall(): EvalFunctionCallContext { + let _localctx: EvalFunctionCallContext = new EvalFunctionCallContext(this._ctx, this.state); + this.enterRule(_localctx, 94, OpenSearchPPLParser.RULE_evalFunctionCall); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 635; + this.evalFunctionName(); + this.state = 636; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 637; + this.functionArgs(); + this.state = 638; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public dataTypeFunctionCall(): DataTypeFunctionCallContext { + let _localctx: DataTypeFunctionCallContext = new DataTypeFunctionCallContext(this._ctx, this.state); + this.enterRule(_localctx, 96, OpenSearchPPLParser.RULE_dataTypeFunctionCall); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 640; + this.match(OpenSearchPPLParser.CAST); + this.state = 641; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 642; + this.expression(); + this.state = 643; + this.match(OpenSearchPPLParser.AS); + this.state = 644; + this.convertedDataType(); + this.state = 645; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public booleanFunctionCall(): BooleanFunctionCallContext { + let _localctx: BooleanFunctionCallContext = new BooleanFunctionCallContext(this._ctx, this.state); + this.enterRule(_localctx, 98, OpenSearchPPLParser.RULE_booleanFunctionCall); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 647; + this.conditionFunctionBase(); + this.state = 648; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 649; + this.functionArgs(); + this.state = 650; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public convertedDataType(): ConvertedDataTypeContext { + let _localctx: ConvertedDataTypeContext = new ConvertedDataTypeContext(this._ctx, this.state); + this.enterRule(_localctx, 100, OpenSearchPPLParser.RULE_convertedDataType); + try { + this.state = 662; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.DATE: + this.enterOuterAlt(_localctx, 1); + { + this.state = 652; + _localctx._typeName = this.match(OpenSearchPPLParser.DATE); + } + break; + case OpenSearchPPLParser.TIME: + this.enterOuterAlt(_localctx, 2); + { + this.state = 653; + _localctx._typeName = this.match(OpenSearchPPLParser.TIME); + } + break; + case OpenSearchPPLParser.TIMESTAMP: + this.enterOuterAlt(_localctx, 3); + { + this.state = 654; + _localctx._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); + } + break; + case OpenSearchPPLParser.INT: + this.enterOuterAlt(_localctx, 4); + { + this.state = 655; + _localctx._typeName = this.match(OpenSearchPPLParser.INT); + } + break; + case OpenSearchPPLParser.INTEGER: + this.enterOuterAlt(_localctx, 5); + { + this.state = 656; + _localctx._typeName = this.match(OpenSearchPPLParser.INTEGER); + } + break; + case OpenSearchPPLParser.DOUBLE: + this.enterOuterAlt(_localctx, 6); + { + this.state = 657; + _localctx._typeName = this.match(OpenSearchPPLParser.DOUBLE); + } + break; + case OpenSearchPPLParser.LONG: + this.enterOuterAlt(_localctx, 7); + { + this.state = 658; + _localctx._typeName = this.match(OpenSearchPPLParser.LONG); + } + break; + case OpenSearchPPLParser.FLOAT: + this.enterOuterAlt(_localctx, 8); + { + this.state = 659; + _localctx._typeName = this.match(OpenSearchPPLParser.FLOAT); + } + break; + case OpenSearchPPLParser.STRING: + this.enterOuterAlt(_localctx, 9); + { + this.state = 660; + _localctx._typeName = this.match(OpenSearchPPLParser.STRING); + } + break; + case OpenSearchPPLParser.BOOLEAN: + this.enterOuterAlt(_localctx, 10); + { + this.state = 661; + _localctx._typeName = this.match(OpenSearchPPLParser.BOOLEAN); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public evalFunctionName(): EvalFunctionNameContext { + let _localctx: EvalFunctionNameContext = new EvalFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 102, OpenSearchPPLParser.RULE_evalFunctionName); + try { + this.state = 668; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.ABS: + case OpenSearchPPLParser.CEIL: + case OpenSearchPPLParser.CEILING: + case OpenSearchPPLParser.CONV: + case OpenSearchPPLParser.CRC32: + case OpenSearchPPLParser.E: + case OpenSearchPPLParser.EXP: + case OpenSearchPPLParser.FLOOR: + case OpenSearchPPLParser.LN: + case OpenSearchPPLParser.LOG: + case OpenSearchPPLParser.LOG10: + case OpenSearchPPLParser.LOG2: + case OpenSearchPPLParser.MOD: + case OpenSearchPPLParser.PI: + case OpenSearchPPLParser.POW: + case OpenSearchPPLParser.POWER: + case OpenSearchPPLParser.RAND: + case OpenSearchPPLParser.ROUND: + case OpenSearchPPLParser.SIGN: + case OpenSearchPPLParser.SQRT: + case OpenSearchPPLParser.TRUNCATE: + case OpenSearchPPLParser.ACOS: + case OpenSearchPPLParser.ASIN: + case OpenSearchPPLParser.ATAN: + case OpenSearchPPLParser.ATAN2: + case OpenSearchPPLParser.COS: + case OpenSearchPPLParser.COT: + case OpenSearchPPLParser.DEGREES: + case OpenSearchPPLParser.RADIANS: + case OpenSearchPPLParser.SIN: + case OpenSearchPPLParser.TAN: + this.enterOuterAlt(_localctx, 1); + { + this.state = 664; + this.mathematicalFunctionBase(); + } + break; + case OpenSearchPPLParser.MICROSECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.ADDDATE: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.DATE_ADD: + case OpenSearchPPLParser.DATE_SUB: + case OpenSearchPPLParser.DAYOFMONTH: + case OpenSearchPPLParser.DAYOFWEEK: + case OpenSearchPPLParser.DAYOFYEAR: + case OpenSearchPPLParser.DAYNAME: + case OpenSearchPPLParser.FROM_DAYS: + case OpenSearchPPLParser.MONTHNAME: + case OpenSearchPPLParser.SUBDATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIME_TO_SEC: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.DATE_FORMAT: + case OpenSearchPPLParser.TO_DAYS: + this.enterOuterAlt(_localctx, 2); + { + this.state = 665; + this.dateAndTimeFunctionBase(); + } + break; + case OpenSearchPPLParser.SUBSTR: + case OpenSearchPPLParser.SUBSTRING: + case OpenSearchPPLParser.LTRIM: + case OpenSearchPPLParser.RTRIM: + case OpenSearchPPLParser.TRIM: + case OpenSearchPPLParser.LOWER: + case OpenSearchPPLParser.UPPER: + case OpenSearchPPLParser.CONCAT: + case OpenSearchPPLParser.CONCAT_WS: + case OpenSearchPPLParser.LENGTH: + case OpenSearchPPLParser.STRCMP: + case OpenSearchPPLParser.RIGHT: + case OpenSearchPPLParser.LEFT: + case OpenSearchPPLParser.ASCII: + case OpenSearchPPLParser.LOCATE: + case OpenSearchPPLParser.REPLACE: + this.enterOuterAlt(_localctx, 3); + { + this.state = 666; + this.textFunctionBase(); + } + break; + case OpenSearchPPLParser.LIKE: + case OpenSearchPPLParser.ISNULL: + case OpenSearchPPLParser.ISNOTNULL: + case OpenSearchPPLParser.IFNULL: + case OpenSearchPPLParser.NULLIF: + case OpenSearchPPLParser.IF: + this.enterOuterAlt(_localctx, 4); + { + this.state = 667; + this.conditionFunctionBase(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public functionArgs(): FunctionArgsContext { + let _localctx: FunctionArgsContext = new FunctionArgsContext(this._ctx, this.state); + this.enterRule(_localctx, 104, OpenSearchPPLParser.RULE_functionArgs); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 678; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.D || ((((_la - 52)) & ~0x1F) === 0 && ((1 << (_la - 52)) & ((1 << (OpenSearchPPLParser.TRUE - 52)) | (1 << (OpenSearchPPLParser.FALSE - 52)) | (1 << (OpenSearchPPLParser.INTERVAL - 52)) | (1 << (OpenSearchPPLParser.MICROSECOND - 52)) | (1 << (OpenSearchPPLParser.MILLISECOND - 52)) | (1 << (OpenSearchPPLParser.SECOND - 52)) | (1 << (OpenSearchPPLParser.MINUTE - 52)) | (1 << (OpenSearchPPLParser.HOUR - 52)) | (1 << (OpenSearchPPLParser.DAY - 52)) | (1 << (OpenSearchPPLParser.WEEK - 52)) | (1 << (OpenSearchPPLParser.MONTH - 52)) | (1 << (OpenSearchPPLParser.QUARTER - 52)) | (1 << (OpenSearchPPLParser.YEAR - 52)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { + { + this.state = 670; + this.functionArg(); + this.state = 675; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 671; + this.match(OpenSearchPPLParser.COMMA); + this.state = 672; + this.functionArg(); + } + } + this.state = 677; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public functionArg(): FunctionArgContext { + let _localctx: FunctionArgContext = new FunctionArgContext(this._ctx, this.state); + this.enterRule(_localctx, 106, OpenSearchPPLParser.RULE_functionArg); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 680; + this.valueExpression(0); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceArg(): RelevanceArgContext { + let _localctx: RelevanceArgContext = new RelevanceArgContext(this._ctx, this.state); + this.enterRule(_localctx, 108, OpenSearchPPLParser.RULE_relevanceArg); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 682; + this.relevanceArgName(); + this.state = 683; + this.match(OpenSearchPPLParser.EQUAL); + this.state = 684; + this.relevanceArgValue(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceArgName(): RelevanceArgNameContext { + let _localctx: RelevanceArgNameContext = new RelevanceArgNameContext(this._ctx, this.state); + this.enterRule(_localctx, 110, OpenSearchPPLParser.RULE_relevanceArgName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 686; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.FIELDS || _la === OpenSearchPPLParser.TIME_ZONE || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & ((1 << (OpenSearchPPLParser.ALLOW_LEADING_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZE_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZER - 224)) | (1 << (OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1 << (OpenSearchPPLParser.BOOST - 224)) | (1 << (OpenSearchPPLParser.CUTOFF_FREQUENCY - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_FIELD - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS - 224)) | (1 << (OpenSearchPPLParser.FLAGS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.FUZZY_TRANSPOSITIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_REWRITE - 224)) | (1 << (OpenSearchPPLParser.FUZZINESS - 224)) | (1 << (OpenSearchPPLParser.LENIENT - 224)) | (1 << (OpenSearchPPLParser.LOW_FREQ_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.MAX_DETERMINIZED_STATES - 224)) | (1 << (OpenSearchPPLParser.MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.MINIMUM_SHOULD_MATCH - 224)) | (1 << (OpenSearchPPLParser.OPERATOR - 224)) | (1 << (OpenSearchPPLParser.PHRASE_SLOP - 224)) | (1 << (OpenSearchPPLParser.PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.QUOTE_ANALYZER - 224)) | (1 << (OpenSearchPPLParser.QUOTE_FIELD_SUFFIX - 224)) | (1 << (OpenSearchPPLParser.REWRITE - 224)) | (1 << (OpenSearchPPLParser.SLOP - 224)) | (1 << (OpenSearchPPLParser.TIE_BREAKER - 224)) | (1 << (OpenSearchPPLParser.TYPE - 224)) | (1 << (OpenSearchPPLParser.ZERO_TERMS_QUERY - 224)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext { + let _localctx: RelevanceFieldAndWeightContext = new RelevanceFieldAndWeightContext(this._ctx, this.state); + this.enterRule(_localctx, 112, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); + try { + this.state = 696; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 59, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 688; + _localctx._field = this.relevanceField(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 689; + _localctx._field = this.relevanceField(); + this.state = 690; + _localctx._weight = this.relevanceFieldWeight(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 692; + _localctx._field = this.relevanceField(); + this.state = 693; + this.match(OpenSearchPPLParser.BIT_XOR_OP); + this.state = 694; + _localctx._weight = this.relevanceFieldWeight(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceFieldWeight(): RelevanceFieldWeightContext { + let _localctx: RelevanceFieldWeightContext = new RelevanceFieldWeightContext(this._ctx, this.state); + this.enterRule(_localctx, 114, OpenSearchPPLParser.RULE_relevanceFieldWeight); + try { + this.state = 700; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 60, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 698; + this.integerLiteral(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 699; + this.decimalLiteral(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceField(): RelevanceFieldContext { + let _localctx: RelevanceFieldContext = new RelevanceFieldContext(this._ctx, this.state); + this.enterRule(_localctx, 116, OpenSearchPPLParser.RULE_relevanceField); + try { + this.state = 704; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 702; + this.qualifiedName(); + } + break; + case OpenSearchPPLParser.DQUOTA_STRING: + case OpenSearchPPLParser.SQUOTA_STRING: + this.enterOuterAlt(_localctx, 2); + { + this.state = 703; + this.stringLiteral(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceQuery(): RelevanceQueryContext { + let _localctx: RelevanceQueryContext = new RelevanceQueryContext(this._ctx, this.state); + this.enterRule(_localctx, 118, OpenSearchPPLParser.RULE_relevanceQuery); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 706; + this.relevanceArgValue(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public relevanceArgValue(): RelevanceArgValueContext { + let _localctx: RelevanceArgValueContext = new RelevanceArgValueContext(this._ctx, this.state); + this.enterRule(_localctx, 120, OpenSearchPPLParser.RULE_relevanceArgValue); + try { + this.state = 710; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.BACKTICK: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + case OpenSearchPPLParser.ID: + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 1); + { + this.state = 708; + this.qualifiedName(); + } + break; + case OpenSearchPPLParser.TRUE: + case OpenSearchPPLParser.FALSE: + case OpenSearchPPLParser.INTERVAL: + case OpenSearchPPLParser.PLUS: + case OpenSearchPPLParser.MINUS: + case OpenSearchPPLParser.INTEGER_LITERAL: + case OpenSearchPPLParser.DECIMAL_LITERAL: + case OpenSearchPPLParser.DQUOTA_STRING: + case OpenSearchPPLParser.SQUOTA_STRING: + this.enterOuterAlt(_localctx, 2); + { + this.state = 709; + this.literalValue(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public mathematicalFunctionBase(): MathematicalFunctionBaseContext { + let _localctx: MathematicalFunctionBaseContext = new MathematicalFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 122, OpenSearchPPLParser.RULE_mathematicalFunctionBase); + try { + this.state = 734; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.ABS: + this.enterOuterAlt(_localctx, 1); + { + this.state = 712; + this.match(OpenSearchPPLParser.ABS); + } + break; + case OpenSearchPPLParser.CEIL: + this.enterOuterAlt(_localctx, 2); + { + this.state = 713; + this.match(OpenSearchPPLParser.CEIL); + } + break; + case OpenSearchPPLParser.CEILING: + this.enterOuterAlt(_localctx, 3); + { + this.state = 714; + this.match(OpenSearchPPLParser.CEILING); + } + break; + case OpenSearchPPLParser.CONV: + this.enterOuterAlt(_localctx, 4); + { + this.state = 715; + this.match(OpenSearchPPLParser.CONV); + } + break; + case OpenSearchPPLParser.CRC32: + this.enterOuterAlt(_localctx, 5); + { + this.state = 716; + this.match(OpenSearchPPLParser.CRC32); + } + break; + case OpenSearchPPLParser.E: + this.enterOuterAlt(_localctx, 6); + { + this.state = 717; + this.match(OpenSearchPPLParser.E); + } + break; + case OpenSearchPPLParser.EXP: + this.enterOuterAlt(_localctx, 7); + { + this.state = 718; + this.match(OpenSearchPPLParser.EXP); + } + break; + case OpenSearchPPLParser.FLOOR: + this.enterOuterAlt(_localctx, 8); + { + this.state = 719; + this.match(OpenSearchPPLParser.FLOOR); + } + break; + case OpenSearchPPLParser.LN: + this.enterOuterAlt(_localctx, 9); + { + this.state = 720; + this.match(OpenSearchPPLParser.LN); + } + break; + case OpenSearchPPLParser.LOG: + this.enterOuterAlt(_localctx, 10); + { + this.state = 721; + this.match(OpenSearchPPLParser.LOG); + } + break; + case OpenSearchPPLParser.LOG10: + this.enterOuterAlt(_localctx, 11); + { + this.state = 722; + this.match(OpenSearchPPLParser.LOG10); + } + break; + case OpenSearchPPLParser.LOG2: + this.enterOuterAlt(_localctx, 12); + { + this.state = 723; + this.match(OpenSearchPPLParser.LOG2); + } + break; + case OpenSearchPPLParser.MOD: + this.enterOuterAlt(_localctx, 13); + { + this.state = 724; + this.match(OpenSearchPPLParser.MOD); + } + break; + case OpenSearchPPLParser.PI: + this.enterOuterAlt(_localctx, 14); + { + this.state = 725; + this.match(OpenSearchPPLParser.PI); + } + break; + case OpenSearchPPLParser.POW: + this.enterOuterAlt(_localctx, 15); + { + this.state = 726; + this.match(OpenSearchPPLParser.POW); + } + break; + case OpenSearchPPLParser.POWER: + this.enterOuterAlt(_localctx, 16); + { + this.state = 727; + this.match(OpenSearchPPLParser.POWER); + } + break; + case OpenSearchPPLParser.RAND: + this.enterOuterAlt(_localctx, 17); + { + this.state = 728; + this.match(OpenSearchPPLParser.RAND); + } + break; + case OpenSearchPPLParser.ROUND: + this.enterOuterAlt(_localctx, 18); + { + this.state = 729; + this.match(OpenSearchPPLParser.ROUND); + } + break; + case OpenSearchPPLParser.SIGN: + this.enterOuterAlt(_localctx, 19); + { + this.state = 730; + this.match(OpenSearchPPLParser.SIGN); + } + break; + case OpenSearchPPLParser.SQRT: + this.enterOuterAlt(_localctx, 20); + { + this.state = 731; + this.match(OpenSearchPPLParser.SQRT); + } + break; + case OpenSearchPPLParser.TRUNCATE: + this.enterOuterAlt(_localctx, 21); + { + this.state = 732; + this.match(OpenSearchPPLParser.TRUNCATE); + } + break; + case OpenSearchPPLParser.ACOS: + case OpenSearchPPLParser.ASIN: + case OpenSearchPPLParser.ATAN: + case OpenSearchPPLParser.ATAN2: + case OpenSearchPPLParser.COS: + case OpenSearchPPLParser.COT: + case OpenSearchPPLParser.DEGREES: + case OpenSearchPPLParser.RADIANS: + case OpenSearchPPLParser.SIN: + case OpenSearchPPLParser.TAN: + this.enterOuterAlt(_localctx, 22); + { + this.state = 733; + this.trigonometricFunctionName(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public trigonometricFunctionName(): TrigonometricFunctionNameContext { + let _localctx: TrigonometricFunctionNameContext = new TrigonometricFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 124, OpenSearchPPLParser.RULE_trigonometricFunctionName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 736; + _la = this._input.LA(1); + if (!(((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & ((1 << (OpenSearchPPLParser.ACOS - 171)) | (1 << (OpenSearchPPLParser.ASIN - 171)) | (1 << (OpenSearchPPLParser.ATAN - 171)) | (1 << (OpenSearchPPLParser.ATAN2 - 171)) | (1 << (OpenSearchPPLParser.COS - 171)) | (1 << (OpenSearchPPLParser.COT - 171)) | (1 << (OpenSearchPPLParser.DEGREES - 171)) | (1 << (OpenSearchPPLParser.RADIANS - 171)) | (1 << (OpenSearchPPLParser.SIN - 171)) | (1 << (OpenSearchPPLParser.TAN - 171)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext { + let _localctx: DateAndTimeFunctionBaseContext = new DateAndTimeFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 126, OpenSearchPPLParser.RULE_dateAndTimeFunctionBase); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 738; + _la = this._input.LA(1); + if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)))) !== 0) || ((((_la - 181)) & ~0x1F) === 0 && ((1 << (_la - 181)) & ((1 << (OpenSearchPPLParser.ADDDATE - 181)) | (1 << (OpenSearchPPLParser.DATE - 181)) | (1 << (OpenSearchPPLParser.DATE_ADD - 181)) | (1 << (OpenSearchPPLParser.DATE_SUB - 181)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 181)) | (1 << (OpenSearchPPLParser.DAYOFWEEK - 181)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 181)) | (1 << (OpenSearchPPLParser.DAYNAME - 181)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 181)) | (1 << (OpenSearchPPLParser.MONTHNAME - 181)) | (1 << (OpenSearchPPLParser.SUBDATE - 181)) | (1 << (OpenSearchPPLParser.TIME - 181)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 181)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 181)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 181)) | (1 << (OpenSearchPPLParser.TO_DAYS - 181)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public conditionFunctionBase(): ConditionFunctionBaseContext { + let _localctx: ConditionFunctionBaseContext = new ConditionFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 128, OpenSearchPPLParser.RULE_conditionFunctionBase); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 740; + _la = this._input.LA(1); + if (!(((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & ((1 << (OpenSearchPPLParser.LIKE - 215)) | (1 << (OpenSearchPPLParser.ISNULL - 215)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 215)) | (1 << (OpenSearchPPLParser.IFNULL - 215)) | (1 << (OpenSearchPPLParser.NULLIF - 215)) | (1 << (OpenSearchPPLParser.IF - 215)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public textFunctionBase(): TextFunctionBaseContext { + let _localctx: TextFunctionBaseContext = new TextFunctionBaseContext(this._ctx, this.state); + this.enterRule(_localctx, 130, OpenSearchPPLParser.RULE_textFunctionBase); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 742; + _la = this._input.LA(1); + if (!(((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & ((1 << (OpenSearchPPLParser.SUBSTR - 197)) | (1 << (OpenSearchPPLParser.SUBSTRING - 197)) | (1 << (OpenSearchPPLParser.LTRIM - 197)) | (1 << (OpenSearchPPLParser.RTRIM - 197)) | (1 << (OpenSearchPPLParser.TRIM - 197)) | (1 << (OpenSearchPPLParser.LOWER - 197)) | (1 << (OpenSearchPPLParser.UPPER - 197)) | (1 << (OpenSearchPPLParser.CONCAT - 197)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 197)) | (1 << (OpenSearchPPLParser.LENGTH - 197)) | (1 << (OpenSearchPPLParser.STRCMP - 197)) | (1 << (OpenSearchPPLParser.RIGHT - 197)) | (1 << (OpenSearchPPLParser.LEFT - 197)) | (1 << (OpenSearchPPLParser.ASCII - 197)) | (1 << (OpenSearchPPLParser.LOCATE - 197)) | (1 << (OpenSearchPPLParser.REPLACE - 197)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public comparisonOperator(): ComparisonOperatorContext { + let _localctx: ComparisonOperatorContext = new ComparisonOperatorContext(this._ctx, this.state); + this.enterRule(_localctx, 132, OpenSearchPPLParser.RULE_comparisonOperator); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 744; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.REGEXP || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & ((1 << (OpenSearchPPLParser.EQUAL - 91)) | (1 << (OpenSearchPPLParser.GREATER - 91)) | (1 << (OpenSearchPPLParser.LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_GREATER - 91)) | (1 << (OpenSearchPPLParser.NOT_LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_EQUAL - 91)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public binaryOperator(): BinaryOperatorContext { + let _localctx: BinaryOperatorContext = new BinaryOperatorContext(this._ctx, this.state); + this.enterRule(_localctx, 134, OpenSearchPPLParser.RULE_binaryOperator); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 746; + _la = this._input.LA(1); + if (!(((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & ((1 << (OpenSearchPPLParser.PLUS - 97)) | (1 << (OpenSearchPPLParser.MINUS - 97)) | (1 << (OpenSearchPPLParser.STAR - 97)) | (1 << (OpenSearchPPLParser.DIVIDE - 97)) | (1 << (OpenSearchPPLParser.MODULE - 97)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { + let _localctx: SingleFieldRelevanceFunctionNameContext = new SingleFieldRelevanceFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 136, OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 748; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.MATCH || _la === OpenSearchPPLParser.MATCH_PHRASE)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { + let _localctx: MultiFieldRelevanceFunctionNameContext = new MultiFieldRelevanceFunctionNameContext(this._ctx, this.state); + this.enterRule(_localctx, 138, OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 750; + this.match(OpenSearchPPLParser.SIMPLE_QUERY_STRING); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public literalValue(): LiteralValueContext { + let _localctx: LiteralValueContext = new LiteralValueContext(this._ctx, this.state); + this.enterRule(_localctx, 140, OpenSearchPPLParser.RULE_literalValue); + try { + this.state = 757; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 64, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 752; + this.intervalLiteral(); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 753; + this.stringLiteral(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 754; + this.integerLiteral(); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 755; + this.decimalLiteral(); + } + break; + + case 5: + this.enterOuterAlt(_localctx, 5); + { + this.state = 756; + this.booleanLiteral(); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public intervalLiteral(): IntervalLiteralContext { + let _localctx: IntervalLiteralContext = new IntervalLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 142, OpenSearchPPLParser.RULE_intervalLiteral); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 759; + this.match(OpenSearchPPLParser.INTERVAL); + this.state = 760; + this.valueExpression(0); + this.state = 761; + this.intervalUnit(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public stringLiteral(): StringLiteralContext { + let _localctx: StringLiteralContext = new StringLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 144, OpenSearchPPLParser.RULE_stringLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 763; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.DQUOTA_STRING || _la === OpenSearchPPLParser.SQUOTA_STRING)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public integerLiteral(): IntegerLiteralContext { + let _localctx: IntegerLiteralContext = new IntegerLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 146, OpenSearchPPLParser.RULE_integerLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 766; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 765; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 768; + this.match(OpenSearchPPLParser.INTEGER_LITERAL); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public decimalLiteral(): DecimalLiteralContext { + let _localctx: DecimalLiteralContext = new DecimalLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 148, OpenSearchPPLParser.RULE_decimalLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 771; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { + { + this.state = 770; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + + this.state = 773; + this.match(OpenSearchPPLParser.DECIMAL_LITERAL); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public booleanLiteral(): BooleanLiteralContext { + let _localctx: BooleanLiteralContext = new BooleanLiteralContext(this._ctx, this.state); + this.enterRule(_localctx, 150, OpenSearchPPLParser.RULE_booleanLiteral); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 775; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.TRUE || _la === OpenSearchPPLParser.FALSE)) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public pattern(): PatternContext { + let _localctx: PatternContext = new PatternContext(this._ctx, this.state); + this.enterRule(_localctx, 152, OpenSearchPPLParser.RULE_pattern); + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 777; + this.stringLiteral(); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public intervalUnit(): IntervalUnitContext { + let _localctx: IntervalUnitContext = new IntervalUnitContext(this._ctx, this.state); + this.enterRule(_localctx, 154, OpenSearchPPLParser.RULE_intervalUnit); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 779; + _la = this._input.LA(1); + if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)) | (1 << (OpenSearchPPLParser.SECOND_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_SECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_HOUR - 57)) | (1 << (OpenSearchPPLParser.YEAR_MONTH - 57)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public timespanUnit(): TimespanUnitContext { + let _localctx: TimespanUnitContext = new TimespanUnitContext(this._ctx, this.state); + this.enterRule(_localctx, 156, OpenSearchPPLParser.RULE_timespanUnit); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 781; + _la = this._input.LA(1); + if (!(_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0))) { + this._errHandler.recoverInline(this); + } else { + if (this._input.LA(1) === Token.EOF) { + this.matchedEOF = true; + } + + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public valueList(): ValueListContext { + let _localctx: ValueListContext = new ValueListContext(this._ctx, this.state); + this.enterRule(_localctx, 158, OpenSearchPPLParser.RULE_valueList); + let _la: number; + try { + this.enterOuterAlt(_localctx, 1); + { + this.state = 783; + this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 784; + this.literalValue(); + this.state = 789; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.COMMA) { + { + { + this.state = 785; + this.match(OpenSearchPPLParser.COMMA); + this.state = 786; + this.literalValue(); + } + } + this.state = 791; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 792; + this.match(OpenSearchPPLParser.RT_PRTHS); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public qualifiedName(): QualifiedNameContext { + let _localctx: QualifiedNameContext = new QualifiedNameContext(this._ctx, this.state); + this.enterRule(_localctx, 160, OpenSearchPPLParser.RULE_qualifiedName); + try { + let _alt: number; + _localctx = new IdentsAsQualifiedNameContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 794; + this.ident(); + this.state = 799; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + { + { + this.state = 795; + this.match(OpenSearchPPLParser.DOT); + this.state = 796; + this.ident(); + } + } + } + this.state = 801; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wcQualifiedName(): WcQualifiedNameContext { + let _localctx: WcQualifiedNameContext = new WcQualifiedNameContext(this._ctx, this.state); + this.enterRule(_localctx, 162, OpenSearchPPLParser.RULE_wcQualifiedName); + let _la: number; + try { + _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); + this.enterOuterAlt(_localctx, 1); + { + this.state = 802; + this.wildcard(); + this.state = 807; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la === OpenSearchPPLParser.DOT) { + { + { + this.state = 803; + this.match(OpenSearchPPLParser.DOT); + this.state = 804; + this.wildcard(); + } + } + this.state = 809; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public ident(): IdentContext { + let _localctx: IdentContext = new IdentContext(this._ctx, this.state); + this.enterRule(_localctx, 164, OpenSearchPPLParser.RULE_ident); + let _la: number; + try { + this.state = 820; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case OpenSearchPPLParser.DOT: + case OpenSearchPPLParser.ID: + this.enterOuterAlt(_localctx, 1); + { + this.state = 811; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.DOT) { + { + this.state = 810; + this.match(OpenSearchPPLParser.DOT); + } + } + + this.state = 813; + this.match(OpenSearchPPLParser.ID); + } + break; + case OpenSearchPPLParser.BACKTICK: + this.enterOuterAlt(_localctx, 2); + { + this.state = 814; + this.match(OpenSearchPPLParser.BACKTICK); + this.state = 815; + this.ident(); + this.state = 816; + this.match(OpenSearchPPLParser.BACKTICK); + } + break; + case OpenSearchPPLParser.BQUOTA_STRING: + this.enterOuterAlt(_localctx, 3); + { + this.state = 818; + this.match(OpenSearchPPLParser.BQUOTA_STRING); + } + break; + case OpenSearchPPLParser.D: + case OpenSearchPPLParser.MILLISECOND: + case OpenSearchPPLParser.SECOND: + case OpenSearchPPLParser.MINUTE: + case OpenSearchPPLParser.HOUR: + case OpenSearchPPLParser.DAY: + case OpenSearchPPLParser.WEEK: + case OpenSearchPPLParser.MONTH: + case OpenSearchPPLParser.QUARTER: + case OpenSearchPPLParser.YEAR: + case OpenSearchPPLParser.AVG: + case OpenSearchPPLParser.COUNT: + case OpenSearchPPLParser.MAX: + case OpenSearchPPLParser.MIN: + case OpenSearchPPLParser.SUM: + case OpenSearchPPLParser.VAR_SAMP: + case OpenSearchPPLParser.VAR_POP: + case OpenSearchPPLParser.STDDEV_SAMP: + case OpenSearchPPLParser.STDDEV_POP: + case OpenSearchPPLParser.FIRST: + case OpenSearchPPLParser.LAST: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.SPAN: + case OpenSearchPPLParser.MS: + case OpenSearchPPLParser.S: + case OpenSearchPPLParser.M: + case OpenSearchPPLParser.H: + case OpenSearchPPLParser.W: + case OpenSearchPPLParser.Q: + case OpenSearchPPLParser.Y: + this.enterOuterAlt(_localctx, 4); + { + this.state = 819; + this.keywordsCanBeId(); + } + break; + default: + throw new NoViableAltException(this); + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public wildcard(): WildcardContext { + let _localctx: WildcardContext = new WildcardContext(this._ctx, this.state); + this.enterRule(_localctx, 166, OpenSearchPPLParser.RULE_wildcard); + let _la: number; + try { + let _alt: number; + this.state = 845; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 74, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 822; + this.ident(); + this.state = 827; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); + while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + { + { + this.state = 823; + this.match(OpenSearchPPLParser.MODULE); + this.state = 824; + this.ident(); + } + } + } + this.state = 829; + this._errHandler.sync(this); + _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); + } + this.state = 831; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la === OpenSearchPPLParser.MODULE) { + { + this.state = 830; + this.match(OpenSearchPPLParser.MODULE); + } + } + + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 833; + this.match(OpenSearchPPLParser.SINGLE_QUOTE); + this.state = 834; + this.wildcard(); + this.state = 835; + this.match(OpenSearchPPLParser.SINGLE_QUOTE); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 837; + this.match(OpenSearchPPLParser.DOUBLE_QUOTE); + this.state = 838; + this.wildcard(); + this.state = 839; + this.match(OpenSearchPPLParser.DOUBLE_QUOTE); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 841; + this.match(OpenSearchPPLParser.BACKTICK); + this.state = 842; + this.wildcard(); + this.state = 843; + this.match(OpenSearchPPLParser.BACKTICK); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + // @RuleVersion(0) + public keywordsCanBeId(): KeywordsCanBeIdContext { + let _localctx: KeywordsCanBeIdContext = new KeywordsCanBeIdContext(this._ctx, this.state); + this.enterRule(_localctx, 168, OpenSearchPPLParser.RULE_keywordsCanBeId); + try { + this.state = 856; + this._errHandler.sync(this); + switch ( this.interpreter.adaptivePredict(this._input, 75, this._ctx) ) { + case 1: + this.enterOuterAlt(_localctx, 1); + { + this.state = 847; + this.match(OpenSearchPPLParser.D); + } + break; + + case 2: + this.enterOuterAlt(_localctx, 2); + { + this.state = 848; + this.statsFunctionName(); + } + break; + + case 3: + this.enterOuterAlt(_localctx, 3); + { + this.state = 849; + this.match(OpenSearchPPLParser.TIMESTAMP); + } + break; + + case 4: + this.enterOuterAlt(_localctx, 4); + { + this.state = 850; + this.match(OpenSearchPPLParser.DATE); + } + break; + + case 5: + this.enterOuterAlt(_localctx, 5); + { + this.state = 851; + this.match(OpenSearchPPLParser.TIME); + } + break; + + case 6: + this.enterOuterAlt(_localctx, 6); + { + this.state = 852; + this.match(OpenSearchPPLParser.FIRST); + } + break; + + case 7: + this.enterOuterAlt(_localctx, 7); + { + this.state = 853; + this.match(OpenSearchPPLParser.LAST); + } + break; + + case 8: + this.enterOuterAlt(_localctx, 8); + { + this.state = 854; + this.timespanUnit(); + } + break; + + case 9: + this.enterOuterAlt(_localctx, 9); + { + this.state = 855; + this.match(OpenSearchPPLParser.SPAN); + } + break; + } + } + catch (re) { + if (re instanceof RecognitionException) { + _localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return _localctx; + } + + public sempred(_localctx: RuleContext, ruleIndex: number, predIndex: number): boolean { + switch (ruleIndex) { + case 32: + return this.logicalExpression_sempred(_localctx as LogicalExpressionContext, predIndex); + + case 34: + return this.valueExpression_sempred(_localctx as ValueExpressionContext, predIndex); + } + return true; + } + private logicalExpression_sempred(_localctx: LogicalExpressionContext, predIndex: number): boolean { + switch (predIndex) { + case 0: + return this.precpred(this._ctx, 5); + + case 1: + return this.precpred(this._ctx, 4); + + case 2: + return this.precpred(this._ctx, 3); + } + return true; + } + private valueExpression_sempred(_localctx: ValueExpressionContext, predIndex: number): boolean { + switch (predIndex) { + case 3: + return this.precpred(this._ctx, 3); + } + return true; + } + + private static readonly _serializedATNSegments: number = 2; + private static readonly _serializedATNSegment0: string = + "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\u010F\u035D\x04" + + "\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04" + + "\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r" + + "\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12" + + "\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t\x17" + + "\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t\x1C" + + "\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"\t\"\x04" + + "#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t*\x04+\t" + + "+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x043\t3\x04" + + "4\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04<\t<\x04" + + "=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04E\tE\x04" + + "F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04N\tN\x04" + + "O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x03\x02\x05" + + "\x02\xAE\n\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x07\x03\xB5\n\x03" + + "\f\x03\x0E\x03\xB8\v\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" + + "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x05\x04\xC7\n" + + "\x04\x03\x05\x05\x05\xCA\n\x05\x03\x05\x03\x05\x05\x05\xCE\n\x05\x03\x05" + + "\x03\x05\x03\x05\x03\x05\x05\x05\xD4\n\x05\x03\x05\x03\x05\x03\x05\x05" + + "\x05\xD9\n\x05\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x05\x07\xE0\n\x07" + + "\x03\x07\x03\x07\x03\b\x03\b\x03\b\x03\b\x07\b\xE8\n\b\f\b\x0E\b\xEB\v" + + "\b\x03\t\x03\t\x03\t\x03\t\x05\t\xF1\n\t\x03\t\x03\t\x03\t\x05\t\xF6\n" + + "\t\x03\t\x03\t\x03\t\x05\t\xFB\n\t\x03\t\x03\t\x03\t\x07\t\u0100\n\t\f" + + "\t\x0E\t\u0103\v\t\x03\t\x05\t\u0106\n\t\x03\t\x03\t\x03\t\x05\t\u010B" + + "\n\t\x03\n\x03\n\x05\n\u010F\n\n\x03\n\x03\n\x03\n\x03\n\x05\n\u0115\n" + + "\n\x03\n\x03\n\x03\n\x05\n\u011A\n\n\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + + "\f\x03\f\x07\f\u0123\n\f\f\f\x0E\f\u0126\v\f\x03\r\x03\r\x05\r\u012A\n" + + "\r\x03\r\x03\r\x05\r\u012E\n\r\x03\x0E\x03\x0E\x05\x0E\u0132\n\x0E\x03" + + "\x0E\x03\x0E\x05\x0E\u0136\n\x0E\x03\x0F\x03\x0F\x03\x0F\x05\x0F\u013B" + + "\n\x0F\x03\x10\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x07\x11\u0143\n" + + "\x11\f\x11\x0E\x11\u0146\v\x11\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12" + + "\x03\x12\x03\x12\x03\x12\x03\x12\x05\x12\u0151\n\x12\x03\x13\x03\x13\x07" + + "\x13\u0155\n\x13\f\x13\x0E\x13\u0158\v\x13\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + + "\x14\x03\x14\x03\x14\x05\x14\u017B\n\x14\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x07\x15\u0182\n\x15\f\x15\x0E\x15\u0185\v\x15\x03\x15\x03\x15" + + "\x03\x15\x03\x15\x03\x15\x07\x15\u018C\n\x15\f\x15\x0E\x15\u018F\v\x15" + + "\x05\x15\u0191\n\x15\x03\x16\x03\x16\x03\x16\x03\x16\x03\x17\x03\x17\x03" + + "\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" + + "\x18\x05\x18\u01A3\n\x18\x03\x19\x03\x19\x03\x19\x05\x19\u01A8\n\x19\x03" + + "\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x05\x1A\u01B0\n\x1A\x03\x1A" + + "\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x07\x1B\u01B7\n\x1B\f\x1B\x0E\x1B\u01BA" + + "\v\x1B\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D\x03\x1D\x03\x1D\x05\x1D" + + "\u01C3\n\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03" + + "\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x05\x1E\u01D3\n\x1E" + + "\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03!\x03!\x03" + + "!\x05!\u01E2\n!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01EA\n\"\x03" + + "\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01F1\n\"\x03\"\x03\"\x03\"\x03\"\x07" + + "\"\u01F7\n\"\f\"\x0E\"\u01FA\v\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03" + + "#\x05#\u0204\n#\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x05$\u020E\n$" + + "\x03$\x03$\x03$\x03$\x07$\u0214\n$\f$\x0E$\u0217\v$\x03%\x03%\x03%\x03" + + "%\x05%\u021D\n%\x03&\x03&\x03\'\x03\'\x05\'\u0223\n\'\x03(\x03(\x03(\x03" + + "(\x03(\x03(\x03(\x07(\u022C\n(\f(\x0E(\u022F\v(\x03(\x03(\x03)\x03)\x03" + + ")\x03)\x03)\x03)\x07)\u0239\n)\f)\x0E)\u023C\v)\x03)\x03)\x03)\x03)\x03" + + ")\x07)\u0243\n)\f)\x0E)\u0246\v)\x03)\x03)\x03*\x03*\x05*\u024C\n*\x03" + + "+\x03+\x03+\x07+\u0251\n+\f+\x0E+\u0254\v+\x03,\x03,\x03,\x07,\u0259\n" + + ",\f,\x0E,\u025C\v,\x03-\x05-\u025F\n-\x03-\x03-\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + + ".\x03.\x03.\x05.\u0278\n.\x03/\x03/\x030\x030\x031\x031\x031\x031\x03" + + "1\x032\x032\x032\x032\x032\x032\x032\x033\x033\x033\x033\x033\x034\x03" + + "4\x034\x034\x034\x034\x034\x034\x034\x034\x054\u0299\n4\x035\x035\x03" + + "5\x035\x055\u029F\n5\x036\x036\x036\x076\u02A4\n6\f6\x0E6\u02A7\v6\x05" + + "6\u02A9\n6\x037\x037\x038\x038\x038\x038\x039\x039\x03:\x03:\x03:\x03" + + ":\x03:\x03:\x03:\x03:\x05:\u02BB\n:\x03;\x03;\x05;\u02BF\n;\x03<\x03<" + + "\x05<\u02C3\n<\x03=\x03=\x03>\x03>\x05>\u02C9\n>\x03?\x03?\x03?\x03?\x03" + + "?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03" + + "?\x03?\x03?\x03?\x05?\u02E1\n?\x03@\x03@\x03A\x03A\x03B\x03B\x03C\x03" + + "C\x03D\x03D\x03E\x03E\x03F\x03F\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x05" + + "H\u02F8\nH\x03I\x03I\x03I\x03I\x03J\x03J\x03K\x05K\u0301\nK\x03K\x03K" + + "\x03L\x05L\u0306\nL\x03L\x03L\x03M\x03M\x03N\x03N\x03O\x03O\x03P\x03P" + + "\x03Q\x03Q\x03Q\x03Q\x07Q\u0316\nQ\fQ\x0EQ\u0319\vQ\x03Q\x03Q\x03R\x03" + + "R\x03R\x07R\u0320\nR\fR\x0ER\u0323\vR\x03S\x03S\x03S\x07S\u0328\nS\fS" + + "\x0ES\u032B\vS\x03T\x05T\u032E\nT\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x05" + + "T\u0337\nT\x03U\x03U\x03U\x07U\u033C\nU\fU\x0EU\u033F\vU\x03U\x05U\u0342" + + "\nU\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x05U\u0350" + + "\nU\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x05V\u035B\nV\x03V\x02" + + "\x02\x04BFW\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E\x02\x10\x02" + + "\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02 \x02\"\x02$\x02" + + "&\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02<\x02>\x02@\x02" + + "B\x02D\x02F\x02H\x02J\x02L\x02N\x02P\x02R\x02T\x02V\x02X\x02Z\x02\\\x02" + + "^\x02`\x02b\x02d\x02f\x02h\x02j\x02l\x02n\x02p\x02r\x02t\x02v\x02x\x02" + + "z\x02|\x02~\x02\x80\x02\x82\x02\x84\x02\x86\x02\x88\x02\x8A\x02\x8C\x02" + + "\x8E\x02\x90\x02\x92\x02\x94\x02\x96\x02\x98\x02\x9A\x02\x9C\x02\x9E\x02" + + "\xA0\x02\xA2\x02\xA4\x02\xA6\x02\xA8\x02\xAA\x02\x02\x11\x03\x02cd\x04" + + "\x02vv\x97\x97\x07\x02tuyy||\x81\x81\x83\x86\x05\x02\x06\x06--\xE2\xFF" + + "\x03\x02\xAD\xB6\x05\x02;;=D\xB7\xC6\x03\x02\xD9\xDE\x04\x02\xC7\xCB\xCD" + + "\xD7\x04\x0288]b\x03\x02cg\x03\x02\xDF\xE0\x03\x02\u010C\u010D\x03\x02" + + "67\x04\x02;;=O\x05\x02\x16\x16\u01D6\x03\x02\x02\x02@\u01E1\x03\x02\x02\x02B\u01E9\x03\x02\x02\x02" + + "D\u0203\x03\x02\x02\x02F\u020D\x03\x02\x02\x02H\u021C\x03\x02\x02\x02" + + "J\u021E\x03\x02\x02\x02L\u0222\x03\x02\x02\x02N\u0224\x03\x02\x02\x02" + + "P\u0232\x03\x02\x02\x02R\u024B\x03\x02\x02\x02T\u024D\x03\x02\x02\x02" + + "V\u0255\x03\x02\x02\x02X\u025E\x03\x02\x02\x02Z\u0277\x03\x02\x02\x02" + + "\\\u0279\x03\x02\x02\x02^\u027B\x03\x02\x02\x02`\u027D\x03\x02\x02\x02" + + "b\u0282\x03\x02\x02\x02d\u0289\x03\x02\x02\x02f\u0298\x03\x02\x02\x02" + + "h\u029E\x03\x02\x02\x02j\u02A8\x03\x02\x02\x02l\u02AA\x03\x02\x02\x02" + + "n\u02AC\x03\x02\x02\x02p\u02B0\x03\x02\x02\x02r\u02BA\x03\x02\x02\x02" + + "t\u02BE\x03\x02\x02\x02v\u02C2\x03\x02\x02\x02x\u02C4\x03\x02\x02\x02" + + "z\u02C8\x03\x02\x02\x02|\u02E0\x03\x02\x02\x02~\u02E2\x03\x02\x02\x02" + + "\x80\u02E4\x03\x02\x02\x02\x82\u02E6\x03\x02\x02\x02\x84\u02E8\x03\x02" + + "\x02\x02\x86\u02EA\x03\x02\x02\x02\x88\u02EC\x03\x02\x02\x02\x8A\u02EE" + + "\x03\x02\x02\x02\x8C\u02F0\x03\x02\x02\x02\x8E\u02F7\x03\x02\x02\x02\x90" + + "\u02F9\x03\x02\x02\x02\x92\u02FD\x03\x02\x02\x02\x94\u0300\x03\x02\x02" + + "\x02\x96\u0305\x03\x02\x02\x02\x98\u0309\x03\x02\x02\x02\x9A\u030B\x03" + + "\x02\x02\x02\x9C\u030D\x03\x02\x02\x02\x9E\u030F\x03\x02\x02\x02\xA0\u0311" + + "\x03\x02\x02\x02\xA2\u031C\x03\x02\x02\x02\xA4\u0324\x03\x02\x02\x02\xA6" + + "\u0336\x03\x02\x02\x02\xA8\u034F\x03\x02\x02\x02\xAA\u035A\x03\x02\x02" + + "\x02\xAC\xAE\x05\x04\x03\x02\xAD\xAC\x03\x02\x02\x02\xAD\xAE\x03\x02\x02" + + "\x02\xAE\xAF\x03\x02\x02\x02\xAF\xB0\x07\x02\x02\x03\xB0\x03\x03\x02\x02" + + "\x02\xB1\xB6\x05\b\x05\x02\xB2\xB3\x07Z\x02\x02\xB3\xB5\x05\x06\x04\x02" + + "\xB4\xB2\x03\x02\x02\x02\xB5\xB8\x03\x02\x02\x02\xB6\xB4\x03\x02\x02\x02" + + "\xB6\xB7\x03\x02\x02\x02\xB7\x05\x03\x02\x02\x02\xB8\xB6\x03\x02\x02\x02" + + "\xB9\xC7\x05\n\x06\x02\xBA\xC7\x05\f\x07\x02\xBB\xC7\x05\x0E\b\x02\xBC" + + "\xC7\x05\x10\t\x02\xBD\xC7\x05\x12\n\x02\xBE\xC7\x05\x14\v\x02\xBF\xC7" + + "\x05\x16\f\x02\xC0\xC7\x05\x18\r\x02\xC1\xC7\x05\x1A\x0E\x02\xC2\xC7\x05" + + "\x1C\x0F\x02\xC3\xC7\x05\x1E\x10\x02\xC4\xC7\x05 \x11\x02\xC5\xC7\x05" + + "$\x13\x02\xC6\xB9\x03\x02\x02\x02\xC6\xBA\x03\x02\x02\x02\xC6\xBB\x03" + + "\x02\x02\x02\xC6\xBC\x03\x02\x02\x02\xC6\xBD\x03\x02\x02\x02\xC6\xBE\x03" + + "\x02\x02\x02\xC6\xBF\x03\x02\x02\x02\xC6\xC0\x03\x02\x02\x02\xC6\xC1\x03" + + "\x02\x02\x02\xC6\xC2\x03\x02\x02\x02\xC6\xC3\x03\x02\x02\x02\xC6\xC4\x03" + + "\x02\x02\x02\xC6\xC5\x03\x02\x02\x02\xC7\x07\x03\x02\x02\x02\xC8\xCA\x07" + + "\x03\x02\x02\xC9\xC8\x03\x02\x02\x02\xC9\xCA\x03\x02\x02\x02\xCA\xCB\x03" + + "\x02\x02\x02\xCB\xD9\x05(\x15\x02\xCC\xCE\x07\x03\x02\x02\xCD\xCC\x03" + + "\x02\x02\x02\xCD\xCE\x03\x02\x02\x02\xCE\xCF\x03\x02\x02\x02\xCF\xD0\x05" + + "(\x15\x02\xD0\xD1\x05B\"\x02\xD1\xD9\x03\x02\x02\x02\xD2\xD4\x07\x03\x02" + + "\x02\xD3\xD2\x03\x02\x02\x02\xD3\xD4\x03\x02\x02\x02\xD4\xD5\x03\x02\x02" + + "\x02\xD5\xD6\x05B\"\x02\xD6\xD7\x05(\x15\x02\xD7\xD9\x03\x02\x02\x02\xD8" + + "\xC9\x03\x02\x02\x02\xD8\xCD\x03\x02\x02\x02\xD8\xD3\x03\x02\x02\x02\xD9" + + "\t\x03\x02\x02\x02\xDA\xDB\x07\x05\x02\x02\xDB\xDC\x05B\"\x02\xDC\v\x03" + + "\x02\x02\x02\xDD\xDF\x07\x06\x02\x02\xDE\xE0\t\x02\x02\x02\xDF\xDE\x03" + + "\x02\x02\x02\xDF\xE0\x03\x02\x02\x02\xE0\xE1\x03\x02\x02\x02\xE1\xE2\x05" + + "T+\x02\xE2\r\x03\x02\x02\x02\xE3\xE4\x07\x07\x02\x02\xE4\xE9\x05*\x16" + + "\x02\xE5\xE6\x07[\x02\x02\xE6\xE8\x05*\x16\x02\xE7\xE5\x03\x02\x02\x02" + + "\xE8\xEB\x03\x02\x02\x02\xE9\xE7\x03\x02\x02\x02\xE9\xEA\x03\x02\x02\x02" + + "\xEA\x0F\x03\x02\x02\x02\xEB\xE9\x03\x02\x02\x02\xEC\xF0\x07\b\x02\x02" + + "\xED\xEE\x07 \x02\x02\xEE\xEF\x07]\x02\x02\xEF\xF1\x05\x94K\x02\xF0\xED" + + "\x03\x02\x02\x02\xF0\xF1\x03\x02\x02\x02\xF1\xF5\x03\x02\x02\x02\xF2\xF3" + + "\x07!\x02\x02\xF3\xF4\x07]\x02\x02\xF4\xF6\x05\x98M\x02\xF5\xF2\x03\x02" + + "\x02\x02\xF5\xF6\x03\x02\x02\x02\xF6\xFA\x03\x02\x02\x02\xF7\xF8\x07\"" + + "\x02\x02\xF8\xF9\x07]\x02\x02\xF9\xFB\x05\x92J\x02\xFA\xF7\x03\x02\x02" + + "\x02\xFA\xFB\x03\x02\x02\x02\xFB\xFC\x03\x02\x02\x02\xFC\u0101\x058\x1D" + + "\x02\xFD\xFE\x07[\x02\x02\xFE\u0100\x058\x1D\x02\xFF\xFD\x03\x02\x02\x02" + + "\u0100\u0103\x03\x02\x02\x02\u0101\xFF\x03\x02\x02\x02\u0101\u0102\x03" + + "\x02\x02\x02\u0102\u0105\x03\x02\x02\x02\u0103\u0101\x03\x02\x02\x02\u0104" + + "\u0106\x05.\x18\x02\u0105\u0104\x03\x02\x02\x02\u0105\u0106\x03\x02\x02" + + "\x02\u0106\u010A\x03\x02\x02\x02\u0107\u0108\x07\x1F\x02\x02\u0108\u0109" + + "\x07]\x02\x02\u0109\u010B\x05\x98M\x02\u010A\u0107\x03\x02\x02\x02\u010A" + + "\u010B\x03\x02\x02\x02\u010B\x11\x03\x02\x02\x02\u010C\u010E\x07\t\x02" + + "\x02\u010D\u010F\x05\x94K\x02\u010E\u010D\x03\x02\x02\x02\u010E\u010F" + + "\x03\x02\x02\x02\u010F\u0110\x03\x02\x02\x02\u0110\u0114\x05T+\x02\u0111" + + "\u0112\x07\x1D\x02\x02\u0112\u0113\x07]\x02\x02\u0113\u0115\x05\x98M\x02" + + "\u0114\u0111\x03\x02\x02\x02\u0114\u0115\x03\x02\x02\x02\u0115\u0119\x03" + + "\x02\x02\x02\u0116\u0117\x07\x1E\x02\x02\u0117\u0118\x07]\x02\x02\u0118" + + "\u011A\x05\x98M\x02\u0119\u0116\x03\x02\x02\x02\u0119\u011A\x03\x02\x02" + + "\x02\u011A\x13\x03\x02\x02\x02\u011B\u011C\x07\n\x02\x02\u011C\u011D\x05" + + "4\x1B\x02\u011D\x15\x03\x02\x02\x02\u011E\u011F\x07\v\x02\x02\u011F\u0124" + + "\x056\x1C\x02\u0120\u0121\x07[\x02\x02\u0121\u0123\x056\x1C\x02\u0122" + + "\u0120\x03\x02\x02\x02\u0123\u0126\x03\x02\x02\x02\u0124\u0122\x03\x02" + + "\x02\x02\u0124\u0125\x03\x02\x02\x02\u0125\x17\x03\x02\x02\x02\u0126\u0124" + + "\x03\x02\x02\x02\u0127\u0129\x07\f\x02\x02\u0128\u012A\x05\x94K\x02\u0129" + + "\u0128\x03\x02\x02\x02\u0129\u012A\x03\x02\x02\x02\u012A\u012D\x03\x02" + + "\x02\x02\u012B\u012C\x07\x04\x02\x02\u012C\u012E\x05\x94K\x02\u012D\u012B" + + "\x03\x02\x02\x02\u012D\u012E\x03\x02\x02\x02\u012E\x19\x03\x02\x02\x02" + + "\u012F\u0131\x07\r\x02\x02\u0130\u0132\x05\x94K\x02\u0131\u0130\x03\x02" + + "\x02\x02\u0131\u0132\x03\x02\x02\x02\u0132\u0133\x03\x02\x02\x02\u0133" + + "\u0135\x05T+\x02\u0134\u0136\x05,\x17\x02\u0135\u0134\x03\x02\x02\x02" + + "\u0135\u0136\x03\x02\x02\x02\u0136\x1B\x03\x02\x02\x02\u0137\u0138\x07" + + "\x0E\x02\x02\u0138\u013A\x05T+\x02\u0139\u013B\x05,\x17\x02\u013A\u0139" + + "\x03\x02\x02\x02\u013A\u013B\x03\x02\x02\x02\u013B\x1D\x03\x02\x02\x02" + + "\u013C\u013D\x07\x0F\x02\x02\u013D\u013E\x05@!\x02\u013E\u013F\x05\x9A" + + "N\x02\u013F\x1F\x03\x02\x02\x02\u0140\u0144\x07\x10\x02\x02\u0141\u0143" + + "\x05\"\x12\x02\u0142\u0141\x03\x02\x02\x02\u0143\u0146\x03\x02\x02\x02" + + "\u0144\u0142\x03\x02\x02\x02\u0144\u0145\x03\x02\x02\x02\u0145!\x03\x02" + + "\x02\x02\u0146\u0144\x03\x02\x02\x02\u0147\u0148\x07#\x02\x02\u0148\u0149" + + "\x07]\x02\x02\u0149\u0151\x05\x94K\x02\u014A\u014B\x07$\x02\x02\u014B" + + "\u014C\x07]\x02\x02\u014C\u0151\x05\x94K\x02\u014D\u014E\x07%\x02\x02" + + "\u014E\u014F\x07]\x02\x02\u014F\u0151\x05\x92J\x02\u0150\u0147\x03\x02" + + "\x02\x02\u0150\u014A\x03\x02\x02\x02\u0150\u014D\x03\x02\x02\x02\u0151" + + "#\x03\x02\x02\x02\u0152\u0156\x07\x11\x02\x02\u0153\u0155\x05&\x14\x02" + + "\u0154\u0153\x03\x02\x02\x02\u0155\u0158\x03\x02\x02\x02\u0156\u0154\x03" + + "\x02\x02\x02\u0156\u0157\x03\x02\x02\x02\u0157%\x03\x02\x02\x02\u0158" + + "\u0156\x03\x02\x02\x02\u0159\u015A\x07&\x02\x02\u015A\u015B\x07]\x02\x02" + + "\u015B\u017B\x05\x94K\x02\u015C\u015D\x07\'\x02\x02\u015D\u015E\x07]\x02" + + "\x02\u015E\u017B\x05\x94K\x02\u015F\u0160\x07(\x02\x02\u0160\u0161\x07" + + "]\x02\x02\u0161\u017B\x05\x94K\x02\u0162\u0163\x07)\x02\x02\u0163\u0164" + + "\x07]\x02\x02\u0164\u017B\x05\x94K\x02\u0165\u0166\x07*\x02\x02\u0166" + + "\u0167\x07]\x02\x02\u0167\u017B\x05\x96L\x02\u0168\u0169\x07+\x02\x02" + + "\u0169\u016A\x07]\x02\x02\u016A\u017B\x05\x96L\x02\u016B\u016C\x07,\x02" + + "\x02\u016C\u016D\x07]\x02\x02\u016D\u017B\x05\x92J\x02\u016E\u016F\x07" + + "\xC5\x02\x02\u016F\u0170\x07]\x02\x02\u0170\u017B\x05\x92J\x02\u0171\u0172" + + "\x07-\x02\x02\u0172\u0173\x07]\x02\x02\u0173\u017B\x05\x92J\x02\u0174" + + "\u0175\x07.\x02\x02\u0175\u0176\x07]\x02\x02\u0176\u017B\x05\x94K\x02" + + "\u0177\u0178\x07/\x02\x02\u0178\u0179\x07]\x02\x02\u0179\u017B\x05\x96" + + "L\x02\u017A\u0159\x03\x02\x02\x02\u017A\u015C\x03\x02\x02\x02\u017A\u015F" + + "\x03\x02\x02\x02\u017A\u0162\x03\x02\x02\x02\u017A\u0165\x03\x02\x02\x02" + + "\u017A\u0168\x03\x02\x02\x02\u017A\u016B\x03\x02\x02\x02\u017A\u016E\x03" + + "\x02\x02\x02\u017A\u0171\x03\x02\x02\x02\u017A\u0174\x03\x02\x02\x02\u017A" + + "\u0177\x03\x02\x02\x02\u017B\'\x03\x02\x02\x02\u017C\u017D\x07\x14\x02" + + "\x02\u017D\u017E\x07]\x02\x02\u017E\u0183\x05R*\x02\u017F\u0180\x07[\x02" + + "\x02\u0180\u0182\x05R*\x02\u0181\u017F\x03\x02\x02\x02\u0182\u0185\x03" + + "\x02\x02\x02\u0183\u0181\x03\x02\x02\x02\u0183\u0184\x03\x02\x02\x02\u0184" + + "\u0191\x03\x02\x02\x02\u0185\u0183\x03\x02\x02\x02\u0186\u0187\x07\x15" + + "\x02\x02\u0187\u0188\x07]\x02\x02\u0188\u018D\x05R*\x02\u0189\u018A\x07" + + "[\x02\x02\u018A\u018C\x05R*\x02\u018B\u0189\x03\x02\x02\x02\u018C\u018F" + + "\x03\x02\x02\x02\u018D\u018B\x03\x02\x02\x02\u018D\u018E\x03\x02\x02\x02" + + "\u018E\u0191\x03\x02\x02\x02\u018F\u018D\x03\x02\x02\x02\u0190\u017C\x03" + + "\x02\x02\x02\u0190\u0186\x03\x02\x02\x02\u0191)\x03\x02\x02\x02\u0192" + + "\u0193\x05^0\x02\u0193\u0194\x07\x12\x02\x02\u0194\u0195\x05^0\x02\u0195" + + "+\x03\x02\x02\x02\u0196\u0197\x07\x13\x02\x02\u0197\u0198\x05T+\x02\u0198" + + "-\x03\x02\x02\x02\u0199\u019A\x07\x13\x02\x02\u019A\u01A3\x05T+\x02\u019B" + + "\u019C\x07\x13\x02\x02\u019C\u01A3\x050\x19\x02\u019D\u019E\x07\x13\x02" + + "\x02\u019E\u019F\x050\x19\x02\u019F\u01A0\x07[\x02\x02\u01A0\u01A1\x05" + + "T+\x02\u01A1\u01A3\x03\x02\x02\x02\u01A2\u0199\x03\x02\x02\x02\u01A2\u019B" + + "\x03\x02\x02\x02\u01A2\u019D\x03\x02\x02\x02\u01A3/\x03\x02\x02\x02\u01A4" + + "\u01A7\x052\x1A\x02\u01A5\u01A6\x07\x12\x02\x02\u01A6\u01A8\x05\xA2R\x02" + + "\u01A7\u01A5\x03\x02\x02\x02\u01A7\u01A8\x03\x02\x02\x02\u01A81\x03\x02" + + "\x02\x02\u01A9\u01AA\x07\u0100\x02\x02\u01AA\u01AB\x07j\x02\x02\u01AB" + + "\u01AC\x05\\/\x02\u01AC\u01AD\x07[\x02\x02\u01AD\u01AF\x05\x8EH\x02\u01AE" + + "\u01B0\x05\x9EP\x02\u01AF\u01AE\x03\x02\x02\x02\u01AF\u01B0\x03\x02\x02" + + "\x02\u01B0\u01B1\x03\x02\x02\x02\u01B1\u01B2\x07k\x02\x02\u01B23\x03\x02" + + "\x02\x02\u01B3\u01B8\x05X-\x02\u01B4\u01B5\x07[\x02\x02\u01B5\u01B7\x05" + + "X-\x02\u01B6\u01B4\x03\x02\x02\x02\u01B7\u01BA\x03\x02\x02\x02\u01B8\u01B6" + + "\x03\x02\x02\x02\u01B8\u01B9\x03\x02\x02\x02\u01B95\x03\x02\x02\x02\u01BA" + + "\u01B8\x03\x02\x02\x02\u01BB\u01BC\x05\\/\x02\u01BC\u01BD\x07]\x02\x02" + + "\u01BD\u01BE\x05@!\x02\u01BE7\x03\x02\x02\x02\u01BF\u01C2\x05:\x1E\x02" + + "\u01C0\u01C1\x07\x12\x02\x02\u01C1\u01C3\x05^0\x02\u01C2\u01C0\x03\x02" + + "\x02\x02\u01C2\u01C3\x03\x02\x02\x02\u01C39\x03\x02\x02\x02\u01C4\u01C5" + + "\x05<\x1F\x02\u01C5\u01C6\x07j\x02\x02\u01C6\u01C7\x05F$\x02\u01C7\u01C8" + + "\x07k\x02\x02\u01C8\u01D3\x03\x02\x02\x02\u01C9\u01CA\x07u\x02\x02\u01CA" + + "\u01CB\x07j\x02\x02\u01CB\u01D3\x07k\x02\x02\u01CC\u01CD\t\x03\x02\x02" + + "\u01CD\u01CE\x07j\x02\x02\u01CE\u01CF\x05F$\x02\u01CF\u01D0\x07k\x02\x02" + + "\u01D0\u01D3\x03\x02\x02\x02\u01D1\u01D3\x05> \x02\u01D2\u01C4\x03\x02" + + "\x02\x02\u01D2\u01C9\x03\x02\x02\x02\u01D2\u01CC\x03\x02\x02\x02\u01D2" + + "\u01D1\x03\x02\x02\x02\u01D3;\x03\x02\x02\x02\u01D4\u01D5\t\x04\x02\x02" + + "\u01D5=\x03\x02\x02\x02\u01D6\u01D7\x07\x87\x02\x02\u01D7\u01D8\x07_\x02" + + "\x02\u01D8\u01D9\x05\x94K\x02\u01D9\u01DA\x07^\x02\x02\u01DA\u01DB\x07" + + "j\x02\x02\u01DB\u01DC\x05\\/\x02\u01DC\u01DD\x07k\x02\x02\u01DD?\x03\x02" + + "\x02\x02\u01DE\u01E2\x05B\"\x02\u01DF\u01E2\x05D#\x02\u01E0\u01E2\x05" + + "F$\x02\u01E1\u01DE\x03\x02\x02\x02\u01E1\u01DF\x03\x02\x02\x02\u01E1\u01E0" + + "\x03\x02\x02\x02\u01E2A\x03\x02\x02\x02\u01E3\u01E4\b\"\x01\x02\u01E4" + + "\u01EA\x05D#\x02\u01E5\u01E6\x072\x02\x02\u01E6\u01EA\x05B\"\b\u01E7\u01EA" + + "\x05J&\x02\u01E8\u01EA\x05L\'\x02\u01E9\u01E3\x03\x02\x02\x02\u01E9\u01E5" + + "\x03\x02\x02\x02\u01E9\u01E7\x03\x02\x02\x02\u01E9\u01E8\x03\x02\x02\x02" + + "\u01EA\u01F8\x03\x02\x02\x02\u01EB\u01EC\f\x07\x02\x02\u01EC\u01ED\x07" + + "3\x02\x02\u01ED\u01F7\x05B\"\b\u01EE\u01F0\f\x06\x02\x02\u01EF\u01F1\x07" + + "4\x02\x02\u01F0\u01EF\x03\x02\x02\x02\u01F0\u01F1\x03\x02\x02\x02\u01F1" + + "\u01F2\x03\x02\x02\x02\u01F2\u01F7\x05B\"\x07\u01F3\u01F4\f\x05\x02\x02" + + "\u01F4\u01F5\x075\x02\x02\u01F5\u01F7\x05B\"\x06\u01F6\u01EB\x03\x02\x02" + + "\x02\u01F6\u01EE"; + private static readonly _serializedATNSegment1: string = + "\x03\x02\x02\x02\u01F6\u01F3\x03\x02\x02\x02\u01F7\u01FA\x03\x02\x02\x02" + + "\u01F8\u01F6\x03\x02\x02\x02\u01F8\u01F9\x03\x02\x02\x02\u01F9C\x03\x02" + + "\x02\x02\u01FA\u01F8\x03\x02\x02\x02\u01FB\u01FC\x05F$\x02\u01FC\u01FD" + + "\x05\x86D\x02\u01FD\u01FE\x05F$\x02\u01FE\u0204\x03\x02\x02\x02\u01FF" + + "\u0200\x05F$\x02\u0200\u0201\x071\x02\x02\u0201\u0202\x05\xA0Q\x02\u0202" + + "\u0204\x03\x02\x02\x02\u0203\u01FB\x03\x02\x02\x02\u0203\u01FF\x03\x02" + + "\x02\x02\u0204E\x03\x02\x02\x02\u0205\u0206\b$\x01\x02\u0206\u0207\x07" + + "j\x02\x02\u0207\u0208\x05F$\x02\u0208\u0209\x05\x88E\x02\u0209\u020A\x05" + + "F$\x02\u020A\u020B\x07k\x02\x02\u020B\u020E\x03\x02\x02\x02\u020C\u020E" + + "\x05H%\x02\u020D\u0205\x03\x02\x02\x02\u020D\u020C\x03\x02\x02\x02\u020E" + + "\u0215\x03\x02\x02\x02\u020F\u0210\f\x05\x02\x02\u0210\u0211\x05\x88E" + + "\x02\u0211\u0212\x05F$\x06\u0212\u0214\x03\x02\x02\x02\u0213\u020F\x03" + + "\x02\x02\x02\u0214\u0217\x03\x02\x02\x02\u0215\u0213\x03\x02\x02\x02\u0215" + + "\u0216\x03\x02\x02\x02\u0216G\x03\x02\x02\x02\u0217\u0215\x03\x02\x02" + + "\x02\u0218\u021D\x05`1\x02\u0219\u021D\x05b2\x02\u021A\u021D\x05\\/\x02" + + "\u021B\u021D\x05\x8EH\x02\u021C\u0218\x03\x02\x02\x02\u021C\u0219\x03" + + "\x02\x02\x02\u021C\u021A\x03\x02\x02\x02\u021C\u021B\x03\x02\x02\x02\u021D" + + "I\x03\x02\x02\x02\u021E\u021F\x05d3\x02\u021FK\x03\x02\x02\x02\u0220\u0223" + + "\x05N(\x02\u0221\u0223\x05P)\x02\u0222\u0220\x03\x02\x02\x02\u0222\u0221" + + "\x03\x02\x02\x02\u0223M\x03\x02\x02\x02\u0224\u0225\x05\x8AF\x02\u0225" + + "\u0226\x07j\x02\x02\u0226\u0227\x05v<\x02\u0227\u0228\x07[\x02\x02\u0228" + + "\u022D\x05x=\x02\u0229\u022A\x07[\x02\x02\u022A\u022C\x05n8\x02\u022B" + + "\u0229\x03\x02\x02\x02\u022C\u022F\x03\x02\x02\x02\u022D\u022B\x03\x02" + + "\x02\x02\u022D\u022E\x03\x02\x02\x02\u022E\u0230\x03\x02\x02\x02\u022F" + + "\u022D\x03\x02\x02\x02\u0230\u0231\x07k\x02\x02\u0231O\x03\x02\x02\x02" + + "\u0232\u0233\x05\x8CG\x02\u0233\u0234\x07j\x02\x02\u0234\u0235\x07l\x02" + + "\x02\u0235\u023A\x05r:\x02\u0236\u0237\x07[\x02\x02\u0237\u0239\x05r:" + + "\x02\u0238\u0236\x03\x02\x02\x02\u0239\u023C\x03\x02\x02\x02\u023A\u0238" + + "\x03\x02\x02\x02\u023A\u023B\x03\x02\x02\x02\u023B\u023D\x03\x02\x02\x02" + + "\u023C\u023A\x03\x02\x02\x02\u023D\u023E\x07m\x02\x02\u023E\u023F\x07" + + "[\x02\x02\u023F\u0244\x05x=\x02\u0240\u0241\x07[\x02\x02\u0241\u0243\x05" + + "n8\x02\u0242\u0240\x03\x02\x02\x02\u0243\u0246\x03\x02\x02\x02\u0244\u0242" + + "\x03\x02\x02\x02\u0244\u0245\x03\x02\x02\x02\u0245\u0247\x03\x02\x02\x02" + + "\u0246\u0244\x03\x02\x02\x02\u0247\u0248\x07k\x02\x02\u0248Q\x03\x02\x02" + + "\x02\u0249\u024C\x05\xA2R\x02\u024A\u024C\x07\u010B\x02\x02\u024B\u0249" + + "\x03\x02\x02\x02\u024B\u024A\x03\x02\x02\x02\u024CS\x03\x02\x02\x02\u024D" + + "\u0252\x05\\/\x02\u024E\u024F\x07[\x02\x02\u024F\u0251\x05\\/\x02\u0250" + + "\u024E\x03\x02\x02\x02\u0251\u0254\x03\x02\x02\x02\u0252\u0250\x03\x02" + + "\x02\x02\u0252\u0253\x03\x02\x02\x02\u0253U\x03\x02\x02\x02\u0254\u0252" + + "\x03\x02\x02\x02\u0255\u025A\x05^0\x02\u0256\u0257\x07[\x02\x02\u0257" + + "\u0259\x05^0\x02\u0258\u0256\x03\x02\x02\x02\u0259\u025C\x03\x02\x02\x02" + + "\u025A\u0258\x03\x02\x02\x02\u025A\u025B\x03\x02\x02\x02\u025BW\x03\x02" + + "\x02\x02\u025C\u025A\x03\x02\x02\x02\u025D\u025F\t\x02\x02\x02\u025E\u025D" + + "\x03\x02\x02\x02\u025E\u025F\x03\x02\x02\x02\u025F\u0260\x03\x02\x02\x02" + + "\u0260\u0261\x05Z.\x02\u0261Y\x03\x02\x02\x02\u0262\u0278\x05\\/\x02\u0263" + + "\u0264\x07\x19\x02\x02\u0264\u0265\x07j\x02\x02\u0265\u0266\x05\\/\x02" + + "\u0266\u0267\x07k\x02\x02\u0267\u0278\x03\x02\x02\x02\u0268\u0269\x07" + + "\x1A\x02\x02\u0269\u026A\x07j\x02\x02\u026A\u026B\x05\\/\x02\u026B\u026C" + + "\x07k\x02\x02\u026C\u0278\x03\x02\x02\x02\u026D\u026E\x07\x1B\x02\x02" + + "\u026E\u026F\x07j\x02\x02\u026F\u0270\x05\\/\x02\u0270\u0271\x07k\x02" + + "\x02\u0271\u0278\x03\x02\x02\x02\u0272\u0273\x07\x1C\x02\x02\u0273\u0274" + + "\x07j\x02\x02\u0274\u0275\x05\\/\x02\u0275\u0276\x07k\x02\x02\u0276\u0278" + + "\x03\x02\x02\x02\u0277\u0262\x03\x02\x02\x02\u0277\u0263\x03\x02\x02\x02" + + "\u0277\u0268\x03\x02\x02\x02\u0277\u026D\x03\x02\x02\x02\u0277\u0272\x03" + + "\x02\x02\x02\u0278[\x03\x02\x02\x02\u0279\u027A\x05\xA2R\x02\u027A]\x03" + + "\x02\x02\x02\u027B\u027C\x05\xA4S\x02\u027C_\x03\x02\x02\x02\u027D\u027E" + + "\x05h5\x02\u027E\u027F\x07j\x02\x02\u027F\u0280\x05j6\x02\u0280\u0281" + + "\x07k\x02\x02\u0281a\x03\x02\x02\x02\u0282\u0283\x07\xD8\x02\x02\u0283" + + "\u0284\x07j\x02\x02\u0284\u0285\x05@!\x02\u0285\u0286\x07\x12\x02\x02" + + "\u0286\u0287\x05f4\x02\u0287\u0288\x07k\x02\x02\u0288c\x03\x02\x02\x02" + + "\u0289\u028A\x05\x82B\x02\u028A\u028B\x07j\x02\x02\u028B\u028C\x05j6\x02" + + "\u028C\u028D\x07k\x02\x02\u028De\x03\x02\x02\x02\u028E\u0299\x07\xB8\x02" + + "\x02\u028F\u0299\x07\xC2\x02\x02\u0290\u0299\x07\xC4\x02\x02\u0291\u0299" + + "\x07S\x02\x02\u0292\u0299\x07T\x02\x02\u0293\u0299\x07U\x02\x02\u0294" + + "\u0299\x07V\x02\x02\u0295\u0299\x07W\x02\x02\u0296\u0299\x07X\x02\x02" + + "\u0297\u0299\x07Y\x02\x02\u0298\u028E\x03\x02\x02\x02\u0298\u028F\x03" + + "\x02\x02\x02\u0298\u0290\x03\x02\x02\x02\u0298\u0291\x03\x02\x02\x02\u0298" + + "\u0292\x03\x02\x02\x02\u0298\u0293\x03\x02\x02\x02\u0298\u0294\x03\x02" + + "\x02\x02\u0298\u0295\x03\x02\x02\x02\u0298\u0296\x03\x02\x02\x02\u0298" + + "\u0297\x03\x02\x02\x02\u0299g\x03\x02\x02\x02\u029A\u029F\x05|?\x02\u029B" + + "\u029F\x05\x80A\x02\u029C\u029F\x05\x84C\x02\u029D\u029F\x05\x82B\x02" + + "\u029E\u029A\x03\x02\x02\x02\u029E\u029B\x03\x02\x02\x02\u029E\u029C\x03" + + "\x02\x02\x02\u029E\u029D\x03\x02\x02\x02\u029Fi\x03\x02\x02\x02\u02A0" + + "\u02A5\x05l7\x02\u02A1\u02A2\x07[\x02\x02\u02A2\u02A4\x05l7\x02\u02A3" + + "\u02A1\x03\x02\x02\x02\u02A4\u02A7\x03\x02\x02\x02\u02A5\u02A3\x03\x02" + + "\x02\x02\u02A5\u02A6\x03\x02\x02\x02\u02A6\u02A9\x03\x02\x02\x02\u02A7" + + "\u02A5\x03\x02\x02\x02\u02A8\u02A0\x03\x02\x02\x02\u02A8\u02A9\x03\x02" + + "\x02\x02\u02A9k\x03\x02\x02\x02\u02AA\u02AB\x05F$\x02\u02ABm\x03\x02\x02" + + "\x02\u02AC\u02AD\x05p9\x02\u02AD\u02AE\x07]\x02\x02\u02AE\u02AF\x05z>" + + "\x02\u02AFo\x03\x02\x02\x02\u02B0\u02B1\t\x05\x02\x02\u02B1q\x03\x02\x02" + + "\x02\u02B2\u02BB\x05v<\x02\u02B3\u02B4\x05v<\x02\u02B4\u02B5\x05t;\x02" + + "\u02B5\u02BB\x03\x02\x02\x02\u02B6\u02B7\x05v<\x02\u02B7\u02B8\x07s\x02" + + "\x02\u02B8\u02B9\x05t;\x02\u02B9\u02BB\x03\x02\x02\x02\u02BA\u02B2\x03" + + "\x02\x02\x02\u02BA\u02B3\x03\x02\x02\x02\u02BA\u02B6\x03\x02\x02\x02\u02BB" + + "s\x03\x02\x02\x02\u02BC\u02BF\x05\x94K\x02\u02BD\u02BF\x05\x96L\x02\u02BE" + + "\u02BC\x03\x02\x02\x02\u02BE\u02BD\x03\x02\x02\x02\u02BFu\x03\x02\x02" + + "\x02\u02C0\u02C3\x05\xA2R\x02\u02C1\u02C3\x05\x92J\x02\u02C2\u02C0\x03" + + "\x02\x02\x02\u02C2\u02C1\x03\x02\x02\x02\u02C3w\x03\x02\x02\x02\u02C4" + + "\u02C5\x05z>\x02\u02C5y\x03\x02\x02\x02\u02C6\u02C9\x05\xA2R\x02\u02C7" + + "\u02C9\x05\x8EH\x02\u02C8\u02C6\x03\x02\x02\x02\u02C8\u02C7\x03\x02\x02" + + "\x02\u02C9{\x03\x02\x02\x02\u02CA\u02E1\x07\x98\x02\x02\u02CB\u02E1\x07" + + "\x99\x02\x02\u02CC\u02E1\x07\x9A\x02\x02\u02CD\u02E1\x07\x9B\x02\x02\u02CE" + + "\u02E1\x07\x9C\x02\x02\u02CF\u02E1\x07\x9D\x02\x02\u02D0\u02E1\x07\x9E" + + "\x02\x02\u02D1\u02E1\x07\x9F\x02\x02\u02D2\u02E1\x07\xA0\x02\x02\u02D3" + + "\u02E1\x07\xA1\x02\x02\u02D4\u02E1\x07\xA2\x02\x02\u02D5\u02E1\x07\xA3" + + "\x02\x02\u02D6\u02E1\x07\xA4\x02\x02\u02D7\u02E1\x07\xA5\x02\x02\u02D8" + + "\u02E1\x07\xA6\x02\x02\u02D9\u02E1\x07\xA7\x02\x02\u02DA\u02E1\x07\xA8" + + "\x02\x02\u02DB\u02E1\x07\xA9\x02\x02\u02DC\u02E1\x07\xAA\x02\x02\u02DD" + + "\u02E1\x07\xAB\x02\x02\u02DE\u02E1\x07\xAC\x02\x02\u02DF\u02E1\x05~@\x02" + + "\u02E0\u02CA\x03\x02\x02\x02\u02E0\u02CB\x03\x02\x02\x02\u02E0\u02CC\x03" + + "\x02\x02\x02\u02E0\u02CD\x03\x02\x02\x02\u02E0\u02CE\x03\x02\x02\x02\u02E0" + + "\u02CF\x03\x02\x02\x02\u02E0\u02D0\x03\x02\x02\x02\u02E0\u02D1\x03\x02" + + "\x02\x02\u02E0\u02D2\x03\x02\x02\x02\u02E0\u02D3\x03\x02\x02\x02\u02E0" + + "\u02D4\x03\x02\x02\x02\u02E0\u02D5\x03\x02\x02\x02\u02E0\u02D6\x03\x02" + + "\x02\x02\u02E0\u02D7\x03\x02\x02\x02\u02E0\u02D8\x03\x02\x02\x02\u02E0" + + "\u02D9\x03\x02\x02\x02\u02E0\u02DA\x03\x02\x02\x02\u02E0\u02DB\x03\x02" + + "\x02\x02\u02E0\u02DC\x03\x02\x02\x02\u02E0\u02DD\x03\x02\x02\x02\u02E0" + + "\u02DE\x03\x02\x02\x02\u02E0\u02DF\x03\x02\x02\x02\u02E1}\x03\x02\x02" + + "\x02\u02E2\u02E3\t\x06\x02\x02\u02E3\x7F\x03\x02\x02\x02\u02E4\u02E5\t" + + "\x07\x02\x02\u02E5\x81\x03\x02\x02\x02\u02E6\u02E7\t\b\x02\x02\u02E7\x83" + + "\x03\x02\x02\x02\u02E8\u02E9\t\t\x02\x02\u02E9\x85\x03\x02\x02\x02\u02EA" + + "\u02EB\t\n\x02\x02\u02EB\x87\x03\x02\x02\x02\u02EC\u02ED\t\v\x02\x02\u02ED" + + "\x89\x03\x02\x02\x02\u02EE\u02EF\t\f\x02\x02\u02EF\x8B\x03\x02\x02\x02" + + "\u02F0\u02F1\x07\xE1\x02\x02\u02F1\x8D\x03\x02\x02\x02\u02F2\u02F8\x05" + + "\x90I\x02\u02F3\u02F8\x05\x92J\x02\u02F4\u02F8\x05\x94K\x02\u02F5\u02F8" + + "\x05\x96L\x02\u02F6\u02F8\x05\x98M\x02\u02F7\u02F2\x03\x02\x02\x02\u02F7" + + "\u02F3\x03\x02\x02\x02\u02F7\u02F4\x03\x02\x02\x02\u02F7\u02F5\x03\x02" + + "\x02\x02\u02F7\u02F6\x03\x02\x02\x02\u02F8\x8F\x03\x02\x02\x02\u02F9\u02FA" + + "\x07:\x02\x02\u02FA\u02FB\x05F$\x02\u02FB\u02FC\x05\x9CO\x02\u02FC\x91" + + "\x03\x02\x02\x02\u02FD\u02FE\t\r\x02\x02\u02FE\x93\x03\x02\x02\x02\u02FF" + + "\u0301\t\x02\x02\x02\u0300\u02FF\x03\x02\x02\x02\u0300\u0301\x03\x02\x02" + + "\x02\u0301\u0302\x03\x02\x02\x02\u0302\u0303\x07\u0109\x02\x02\u0303\x95" + + "\x03\x02\x02\x02\u0304\u0306\t\x02\x02\x02\u0305\u0304\x03\x02\x02\x02" + + "\u0305\u0306\x03\x02\x02\x02\u0306\u0307\x03\x02\x02\x02\u0307\u0308\x07" + + "\u010A\x02\x02\u0308\x97\x03\x02\x02\x02\u0309\u030A\t\x0E\x02\x02\u030A" + + "\x99\x03\x02\x02\x02\u030B\u030C\x05\x92J\x02\u030C\x9B\x03\x02\x02\x02" + + "\u030D\u030E\t\x0F\x02\x02\u030E\x9D\x03\x02\x02\x02\u030F\u0310\t\x10" + + "\x02\x02\u0310\x9F\x03\x02\x02\x02\u0311\u0312\x07j\x02\x02\u0312\u0317" + + "\x05\x8EH\x02\u0313\u0314\x07[\x02\x02\u0314\u0316\x05\x8EH\x02\u0315" + + "\u0313\x03\x02\x02\x02\u0316\u0319\x03\x02\x02\x02\u0317\u0315\x03\x02" + + "\x02\x02\u0317\u0318\x03\x02\x02\x02\u0318\u031A\x03\x02\x02\x02\u0319" + + "\u0317\x03\x02\x02\x02\u031A\u031B\x07k\x02\x02\u031B\xA1\x03\x02\x02" + + "\x02\u031C\u0321\x05\xA6T\x02\u031D\u031E\x07\\\x02\x02\u031E\u0320\x05" + + "\xA6T\x02\u031F\u031D\x03\x02\x02\x02\u0320\u0323\x03\x02\x02\x02\u0321" + + "\u031F\x03\x02\x02\x02\u0321\u0322\x03\x02\x02\x02\u0322\xA3\x03\x02\x02" + + "\x02\u0323\u0321\x03\x02\x02\x02\u0324\u0329\x05\xA8U\x02\u0325\u0326" + + "\x07\\\x02\x02\u0326\u0328\x05\xA8U\x02\u0327\u0325\x03\x02\x02\x02\u0328" + + "\u032B\x03\x02\x02\x02\u0329\u0327\x03\x02\x02\x02\u0329\u032A\x03\x02" + + "\x02\x02\u032A\xA5\x03\x02\x02\x02\u032B\u0329\x03\x02\x02\x02\u032C\u032E" + + "\x07\\\x02\x02\u032D\u032C\x03\x02\x02\x02\u032D\u032E\x03\x02\x02\x02" + + "\u032E\u032F\x03\x02\x02\x02\u032F\u0337\x07\u0108\x02\x02\u0330\u0331" + + "\x07p\x02\x02\u0331\u0332\x05\xA6T\x02\u0332\u0333\x07p\x02\x02\u0333" + + "\u0337\x03\x02\x02\x02\u0334\u0337\x07\u010E\x02\x02\u0335\u0337\x05\xAA" + + "V\x02\u0336\u032D\x03\x02\x02\x02\u0336\u0330\x03\x02\x02\x02\u0336\u0334" + + "\x03\x02\x02\x02\u0336\u0335\x03\x02\x02\x02\u0337\xA7\x03\x02\x02\x02" + + "\u0338\u033D\x05\xA6T\x02\u0339\u033A\x07g\x02\x02\u033A\u033C\x05\xA6" + + "T\x02\u033B\u0339\x03\x02\x02\x02\u033C\u033F\x03\x02\x02\x02\u033D\u033B" + + "\x03\x02\x02\x02\u033D\u033E\x03\x02\x02\x02\u033E\u0341\x03\x02\x02\x02" + + "\u033F\u033D\x03\x02\x02\x02\u0340\u0342\x07g\x02\x02\u0341\u0340\x03" + + "\x02\x02\x02\u0341\u0342\x03\x02\x02\x02\u0342\u0350\x03\x02\x02\x02\u0343" + + "\u0344\x07n\x02\x02\u0344\u0345\x05\xA8U\x02\u0345\u0346\x07n\x02\x02" + + "\u0346\u0350\x03\x02\x02\x02\u0347\u0348\x07o\x02\x02\u0348\u0349\x05" + + "\xA8U\x02\u0349\u034A\x07o\x02\x02\u034A\u0350\x03\x02\x02\x02\u034B\u034C" + + "\x07p\x02\x02\u034C\u034D\x05\xA8U\x02\u034D\u034E\x07p\x02\x02\u034E" + + "\u0350\x03\x02\x02\x02\u034F\u0338\x03\x02\x02\x02\u034F\u0343\x03\x02" + + "\x02\x02\u034F\u0347\x03\x02\x02\x02\u034F\u034B\x03\x02\x02\x02\u0350" + + "\xA9\x03\x02\x02\x02\u0351\u035B\x07\x16\x02\x02\u0352\u035B\x05<\x1F" + + "\x02\u0353\u035B\x07\xC4\x02\x02\u0354\u035B\x07\xB8\x02\x02\u0355\u035B" + + "\x07\xC2\x02\x02\u0356\u035B\x07\x88\x02\x02\u0357\u035B\x07\x89\x02\x02" + + "\u0358\u035B\x05\x9EP\x02\u0359\u035B\x07\u0100\x02\x02\u035A\u0351\x03" + + "\x02\x02\x02\u035A\u0352\x03\x02\x02\x02\u035A\u0353\x03\x02\x02\x02\u035A" + + "\u0354\x03\x02\x02\x02\u035A\u0355\x03\x02\x02\x02\u035A\u0356\x03\x02" + + "\x02\x02\u035A\u0357\x03\x02\x02\x02\u035A\u0358\x03\x02\x02\x02\u035A" + + "\u0359\x03\x02\x02\x02\u035B\xAB\x03\x02\x02\x02N\xAD\xB6\xC6\xC9\xCD" + + "\xD3\xD8\xDF\xE9\xF0\xF5\xFA\u0101\u0105\u010A\u010E\u0114\u0119\u0124" + + "\u0129\u012D\u0131\u0135\u013A\u0144\u0150\u0156\u017A\u0183\u018D\u0190" + + "\u01A2\u01A7\u01AF\u01B8\u01C2\u01D2\u01E1\u01E9\u01F0\u01F6\u01F8\u0203" + + "\u020D\u0215\u021C\u0222\u022D\u023A\u0244\u024B\u0252\u025A\u025E\u0277" + + "\u0298\u029E\u02A5\u02A8\u02BA\u02BE\u02C2\u02C8\u02E0\u02F7\u0300\u0305" + + "\u0317\u0321\u0329\u032D\u0336\u033D\u0341\u034F\u035A"; + public static readonly _serializedATN: string = Utils.join( + [ + OpenSearchPPLParser._serializedATNSegment0, + OpenSearchPPLParser._serializedATNSegment1, + ], + "", + ); + public static __ATN: ATN; + public static get _ATN(): ATN { + if (!OpenSearchPPLParser.__ATN) { + OpenSearchPPLParser.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLParser._serializedATN)); + } + + return OpenSearchPPLParser.__ATN; + } + +} + +export class RootContext extends ParserRuleContext { + public EOF(): TerminalNode { return this.getToken(OpenSearchPPLParser.EOF, 0); } + public pplStatement(): PplStatementContext | undefined { + return this.tryGetRuleContext(0, PplStatementContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_root; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRoot) { + listener.enterRoot(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRoot) { + listener.exitRoot(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRoot) { + return visitor.visitRoot(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PplStatementContext extends ParserRuleContext { + public searchCommand(): SearchCommandContext { + return this.getRuleContext(0, SearchCommandContext); + } + public PIPE(): TerminalNode[]; + public PIPE(i: number): TerminalNode; + public PIPE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.PIPE); + } else { + return this.getToken(OpenSearchPPLParser.PIPE, i); + } + } + public commands(): CommandsContext[]; + public commands(i: number): CommandsContext; + public commands(i?: number): CommandsContext | CommandsContext[] { + if (i === undefined) { + return this.getRuleContexts(CommandsContext); + } else { + return this.getRuleContext(i, CommandsContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pplStatement; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPplStatement) { + listener.enterPplStatement(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPplStatement) { + listener.exitPplStatement(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPplStatement) { + return visitor.visitPplStatement(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class CommandsContext extends ParserRuleContext { + public whereCommand(): WhereCommandContext | undefined { + return this.tryGetRuleContext(0, WhereCommandContext); + } + public fieldsCommand(): FieldsCommandContext | undefined { + return this.tryGetRuleContext(0, FieldsCommandContext); + } + public renameCommand(): RenameCommandContext | undefined { + return this.tryGetRuleContext(0, RenameCommandContext); + } + public statsCommand(): StatsCommandContext | undefined { + return this.tryGetRuleContext(0, StatsCommandContext); + } + public dedupCommand(): DedupCommandContext | undefined { + return this.tryGetRuleContext(0, DedupCommandContext); + } + public sortCommand(): SortCommandContext | undefined { + return this.tryGetRuleContext(0, SortCommandContext); + } + public evalCommand(): EvalCommandContext | undefined { + return this.tryGetRuleContext(0, EvalCommandContext); + } + public headCommand(): HeadCommandContext | undefined { + return this.tryGetRuleContext(0, HeadCommandContext); + } + public topCommand(): TopCommandContext | undefined { + return this.tryGetRuleContext(0, TopCommandContext); + } + public rareCommand(): RareCommandContext | undefined { + return this.tryGetRuleContext(0, RareCommandContext); + } + public parseCommand(): ParseCommandContext | undefined { + return this.tryGetRuleContext(0, ParseCommandContext); + } + public kmeansCommand(): KmeansCommandContext | undefined { + return this.tryGetRuleContext(0, KmeansCommandContext); + } + public adCommand(): AdCommandContext | undefined { + return this.tryGetRuleContext(0, AdCommandContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_commands; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterCommands) { + listener.enterCommands(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitCommands) { + listener.exitCommands(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitCommands) { + return visitor.visitCommands(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SearchCommandContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_searchCommand; } + public copyFrom(ctx: SearchCommandContext): void { + super.copyFrom(ctx); + } +} +export class SearchFromContext extends SearchCommandContext { + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext); + } + public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } + constructor(ctx: SearchCommandContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSearchFrom) { + listener.enterSearchFrom(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSearchFrom) { + listener.exitSearchFrom(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSearchFrom) { + return visitor.visitSearchFrom(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SearchFromFilterContext extends SearchCommandContext { + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext); + } + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } + constructor(ctx: SearchCommandContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSearchFromFilter) { + listener.enterSearchFromFilter(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSearchFromFilter) { + listener.exitSearchFromFilter(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSearchFromFilter) { + return visitor.visitSearchFromFilter(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SearchFilterFromContext extends SearchCommandContext { + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + public fromClause(): FromClauseContext { + return this.getRuleContext(0, FromClauseContext); + } + public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } + constructor(ctx: SearchCommandContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSearchFilterFrom) { + listener.enterSearchFilterFrom(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSearchFilterFrom) { + listener.exitSearchFilterFrom(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSearchFilterFrom) { + return visitor.visitSearchFilterFrom(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WhereCommandContext extends ParserRuleContext { + public WHERE(): TerminalNode { return this.getToken(OpenSearchPPLParser.WHERE, 0); } + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_whereCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWhereCommand) { + listener.enterWhereCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWhereCommand) { + listener.exitWhereCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWhereCommand) { + return visitor.visitWhereCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FieldsCommandContext extends ParserRuleContext { + public FIELDS(): TerminalNode { return this.getToken(OpenSearchPPLParser.FIELDS, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldsCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFieldsCommand) { + listener.enterFieldsCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFieldsCommand) { + listener.exitFieldsCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFieldsCommand) { + return visitor.visitFieldsCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RenameCommandContext extends ParserRuleContext { + public RENAME(): TerminalNode { return this.getToken(OpenSearchPPLParser.RENAME, 0); } + public renameClasue(): RenameClasueContext[]; + public renameClasue(i: number): RenameClasueContext; + public renameClasue(i?: number): RenameClasueContext | RenameClasueContext[] { + if (i === undefined) { + return this.getRuleContexts(RenameClasueContext); + } else { + return this.getRuleContext(i, RenameClasueContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRenameCommand) { + listener.enterRenameCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRenameCommand) { + listener.exitRenameCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRenameCommand) { + return visitor.visitRenameCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsCommandContext extends ParserRuleContext { + public _partitions!: IntegerLiteralContext; + public _allnum!: BooleanLiteralContext; + public _delim!: StringLiteralContext; + public _dedupsplit!: BooleanLiteralContext; + public STATS(): TerminalNode { return this.getToken(OpenSearchPPLParser.STATS, 0); } + public statsAggTerm(): StatsAggTermContext[]; + public statsAggTerm(i: number): StatsAggTermContext; + public statsAggTerm(i?: number): StatsAggTermContext | StatsAggTermContext[] { + if (i === undefined) { + return this.getRuleContexts(StatsAggTermContext); + } else { + return this.getRuleContext(i, StatsAggTermContext); + } + } + public PARTITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PARTITIONS, 0); } + public EQUAL(): TerminalNode[]; + public EQUAL(i: number): TerminalNode; + public EQUAL(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.EQUAL); + } else { + return this.getToken(OpenSearchPPLParser.EQUAL, i); + } + } + public ALLNUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLNUM, 0); } + public DELIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DELIM, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public statsByClause(): StatsByClauseContext | undefined { + return this.tryGetRuleContext(0, StatsByClauseContext); + } + public DEDUP_SPLITVALUES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public booleanLiteral(): BooleanLiteralContext[]; + public booleanLiteral(i: number): BooleanLiteralContext; + public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { + if (i === undefined) { + return this.getRuleContexts(BooleanLiteralContext); + } else { + return this.getRuleContext(i, BooleanLiteralContext); + } + } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsCommand) { + listener.enterStatsCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsCommand) { + listener.exitStatsCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsCommand) { + return visitor.visitStatsCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DedupCommandContext extends ParserRuleContext { + public _number!: IntegerLiteralContext; + public _keepempty!: BooleanLiteralContext; + public _consecutive!: BooleanLiteralContext; + public DEDUP(): TerminalNode { return this.getToken(OpenSearchPPLParser.DEDUP, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public KEEPEMPTY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.KEEPEMPTY, 0); } + public EQUAL(): TerminalNode[]; + public EQUAL(i: number): TerminalNode; + public EQUAL(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.EQUAL); + } else { + return this.getToken(OpenSearchPPLParser.EQUAL, i); + } + } + public CONSECUTIVE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONSECUTIVE, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public booleanLiteral(): BooleanLiteralContext[]; + public booleanLiteral(i: number): BooleanLiteralContext; + public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { + if (i === undefined) { + return this.getRuleContexts(BooleanLiteralContext); + } else { + return this.getRuleContext(i, BooleanLiteralContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dedupCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDedupCommand) { + listener.enterDedupCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDedupCommand) { + listener.exitDedupCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDedupCommand) { + return visitor.visitDedupCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortCommandContext extends ParserRuleContext { + public SORT(): TerminalNode { return this.getToken(OpenSearchPPLParser.SORT, 0); } + public sortbyClause(): SortbyClauseContext { + return this.getRuleContext(0, SortbyClauseContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortCommand) { + listener.enterSortCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortCommand) { + listener.exitSortCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortCommand) { + return visitor.visitSortCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalCommandContext extends ParserRuleContext { + public EVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EVAL, 0); } + public evalClause(): EvalClauseContext[]; + public evalClause(i: number): EvalClauseContext; + public evalClause(i?: number): EvalClauseContext | EvalClauseContext[] { + if (i === undefined) { + return this.getRuleContexts(EvalClauseContext); + } else { + return this.getRuleContext(i, EvalClauseContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalCommand) { + listener.enterEvalCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalCommand) { + listener.exitEvalCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalCommand) { + return visitor.visitEvalCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class HeadCommandContext extends ParserRuleContext { + public _number!: IntegerLiteralContext; + public _from!: IntegerLiteralContext; + public HEAD(): TerminalNode { return this.getToken(OpenSearchPPLParser.HEAD, 0); } + public FROM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM, 0); } + public integerLiteral(): IntegerLiteralContext[]; + public integerLiteral(i: number): IntegerLiteralContext; + public integerLiteral(i?: number): IntegerLiteralContext | IntegerLiteralContext[] { + if (i === undefined) { + return this.getRuleContexts(IntegerLiteralContext); + } else { + return this.getRuleContext(i, IntegerLiteralContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_headCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterHeadCommand) { + listener.enterHeadCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitHeadCommand) { + listener.exitHeadCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitHeadCommand) { + return visitor.visitHeadCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TopCommandContext extends ParserRuleContext { + public _number!: IntegerLiteralContext; + public TOP(): TerminalNode { return this.getToken(OpenSearchPPLParser.TOP, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public byClause(): ByClauseContext | undefined { + return this.tryGetRuleContext(0, ByClauseContext); + } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_topCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTopCommand) { + listener.enterTopCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTopCommand) { + listener.exitTopCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTopCommand) { + return visitor.visitTopCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RareCommandContext extends ParserRuleContext { + public RARE(): TerminalNode { return this.getToken(OpenSearchPPLParser.RARE, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + public byClause(): ByClauseContext | undefined { + return this.tryGetRuleContext(0, ByClauseContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_rareCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRareCommand) { + listener.enterRareCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRareCommand) { + listener.exitRareCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRareCommand) { + return visitor.visitRareCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ParseCommandContext extends ParserRuleContext { + public PARSE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PARSE, 0); } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext); + } + public pattern(): PatternContext { + return this.getRuleContext(0, PatternContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_parseCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterParseCommand) { + listener.enterParseCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitParseCommand) { + listener.exitParseCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitParseCommand) { + return visitor.visitParseCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class KmeansCommandContext extends ParserRuleContext { + public KMEANS(): TerminalNode { return this.getToken(OpenSearchPPLParser.KMEANS, 0); } + public kmeansParameter(): KmeansParameterContext[]; + public kmeansParameter(i: number): KmeansParameterContext; + public kmeansParameter(i?: number): KmeansParameterContext | KmeansParameterContext[] { + if (i === undefined) { + return this.getRuleContexts(KmeansParameterContext); + } else { + return this.getRuleContext(i, KmeansParameterContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterKmeansCommand) { + listener.enterKmeansCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitKmeansCommand) { + listener.exitKmeansCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitKmeansCommand) { + return visitor.visitKmeansCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class KmeansParameterContext extends ParserRuleContext { + public _centroids!: IntegerLiteralContext; + public _iterations!: IntegerLiteralContext; + public _distance_type!: StringLiteralContext; + public CENTROIDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CENTROIDS, 0); } + public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public ITERATIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ITERATIONS, 0); } + public DISTANCE_TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansParameter; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterKmeansParameter) { + listener.enterKmeansParameter(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitKmeansParameter) { + listener.exitKmeansParameter(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitKmeansParameter) { + return visitor.visitKmeansParameter(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AdCommandContext extends ParserRuleContext { + public AD(): TerminalNode { return this.getToken(OpenSearchPPLParser.AD, 0); } + public adParameter(): AdParameterContext[]; + public adParameter(i: number): AdParameterContext; + public adParameter(i?: number): AdParameterContext | AdParameterContext[] { + if (i === undefined) { + return this.getRuleContexts(AdParameterContext); + } else { + return this.getRuleContext(i, AdParameterContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adCommand; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterAdCommand) { + listener.enterAdCommand(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitAdCommand) { + listener.exitAdCommand(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitAdCommand) { + return visitor.visitAdCommand(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AdParameterContext extends ParserRuleContext { + public _number_of_trees!: IntegerLiteralContext; + public _shingle_size!: IntegerLiteralContext; + public _sample_size!: IntegerLiteralContext; + public _output_after!: IntegerLiteralContext; + public _time_decay!: DecimalLiteralContext; + public _anomaly_rate!: DecimalLiteralContext; + public _time_field!: StringLiteralContext; + public _date_format!: StringLiteralContext; + public _time_zone!: StringLiteralContext; + public _training_data_size!: IntegerLiteralContext; + public _anomaly_score_threshold!: DecimalLiteralContext; + public NUMBER_OF_TREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } + public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public SHINGLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } + public SAMPLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } + public OUTPUT_AFTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } + public TIME_DECAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_DECAY, 0); } + public decimalLiteral(): DecimalLiteralContext | undefined { + return this.tryGetRuleContext(0, DecimalLiteralContext); + } + public ANOMALY_RATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } + public TIME_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_FIELD, 0); } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TRAINING_DATA_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } + public ANOMALY_SCORE_THRESHOLD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adParameter; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterAdParameter) { + listener.enterAdParameter(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitAdParameter) { + listener.exitAdParameter(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitAdParameter) { + return visitor.visitAdParameter(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FromClauseContext extends ParserRuleContext { + public SOURCE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SOURCE, 0); } + public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } + public tableSource(): TableSourceContext[]; + public tableSource(i: number): TableSourceContext; + public tableSource(i?: number): TableSourceContext | TableSourceContext[] { + if (i === undefined) { + return this.getRuleContexts(TableSourceContext); + } else { + return this.getRuleContext(i, TableSourceContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public INDEX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INDEX, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fromClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFromClause) { + listener.enterFromClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFromClause) { + listener.exitFromClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFromClause) { + return visitor.visitFromClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RenameClasueContext extends ParserRuleContext { + public _orignalField!: WcFieldExpressionContext; + public _renamedField!: WcFieldExpressionContext; + public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } + public wcFieldExpression(): WcFieldExpressionContext[]; + public wcFieldExpression(i: number): WcFieldExpressionContext; + public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(WcFieldExpressionContext); + } else { + return this.getRuleContext(i, WcFieldExpressionContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameClasue; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRenameClasue) { + listener.enterRenameClasue(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRenameClasue) { + listener.exitRenameClasue(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRenameClasue) { + return visitor.visitRenameClasue(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ByClauseContext extends ParserRuleContext { + public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } + public fieldList(): FieldListContext { + return this.getRuleContext(0, FieldListContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_byClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterByClause) { + listener.enterByClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitByClause) { + listener.exitByClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitByClause) { + return visitor.visitByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsByClauseContext extends ParserRuleContext { + public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } + public fieldList(): FieldListContext | undefined { + return this.tryGetRuleContext(0, FieldListContext); + } + public bySpanClause(): BySpanClauseContext | undefined { + return this.tryGetRuleContext(0, BySpanClauseContext); + } + public COMMA(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COMMA, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsByClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsByClause) { + listener.enterStatsByClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsByClause) { + listener.exitStatsByClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsByClause) { + return visitor.visitStatsByClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BySpanClauseContext extends ParserRuleContext { + public _alias!: QualifiedNameContext; + public spanClause(): SpanClauseContext { + return this.getRuleContext(0, SpanClauseContext); + } + public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_bySpanClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBySpanClause) { + listener.enterBySpanClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBySpanClause) { + listener.exitBySpanClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBySpanClause) { + return visitor.visitBySpanClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SpanClauseContext extends ParserRuleContext { + public _value!: LiteralValueContext; + public _unit!: TimespanUnitContext; + public SPAN(): TerminalNode { return this.getToken(OpenSearchPPLParser.SPAN, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + public COMMA(): TerminalNode { return this.getToken(OpenSearchPPLParser.COMMA, 0); } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public literalValue(): LiteralValueContext { + return this.getRuleContext(0, LiteralValueContext); + } + public timespanUnit(): TimespanUnitContext | undefined { + return this.tryGetRuleContext(0, TimespanUnitContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_spanClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSpanClause) { + listener.enterSpanClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSpanClause) { + listener.exitSpanClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSpanClause) { + return visitor.visitSpanClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortbyClauseContext extends ParserRuleContext { + public sortField(): SortFieldContext[]; + public sortField(i: number): SortFieldContext; + public sortField(i?: number): SortFieldContext | SortFieldContext[] { + if (i === undefined) { + return this.getRuleContexts(SortFieldContext); + } else { + return this.getRuleContext(i, SortFieldContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortbyClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortbyClause) { + listener.enterSortbyClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortbyClause) { + listener.exitSortbyClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortbyClause) { + return visitor.visitSortbyClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalClauseContext extends ParserRuleContext { + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalClause; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalClause) { + listener.enterEvalClause(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalClause) { + listener.exitEvalClause(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalClause) { + return visitor.visitEvalClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsAggTermContext extends ParserRuleContext { + public _alias!: WcFieldExpressionContext; + public statsFunction(): StatsFunctionContext { + return this.getRuleContext(0, StatsFunctionContext); + } + public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } + public wcFieldExpression(): WcFieldExpressionContext | undefined { + return this.tryGetRuleContext(0, WcFieldExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsAggTerm; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsAggTerm) { + listener.enterStatsAggTerm(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsAggTerm) { + listener.exitStatsAggTerm(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsAggTerm) { + return visitor.visitStatsAggTerm(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsFunctionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunction; } + public copyFrom(ctx: StatsFunctionContext): void { + super.copyFrom(ctx); + } +} +export class StatsFunctionCallContext extends StatsFunctionContext { + public statsFunctionName(): StatsFunctionNameContext { + return this.getRuleContext(0, StatsFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsFunctionCall) { + listener.enterStatsFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsFunctionCall) { + listener.exitStatsFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsFunctionCall) { + return visitor.visitStatsFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class CountAllFunctionCallContext extends StatsFunctionContext { + public COUNT(): TerminalNode { return this.getToken(OpenSearchPPLParser.COUNT, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterCountAllFunctionCall) { + listener.enterCountAllFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitCountAllFunctionCall) { + listener.exitCountAllFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitCountAllFunctionCall) { + return visitor.visitCountAllFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class DistinctCountFunctionCallContext extends StatsFunctionContext { + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public DISTINCT_COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } + public DC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DC, 0); } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDistinctCountFunctionCall) { + listener.enterDistinctCountFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDistinctCountFunctionCall) { + listener.exitDistinctCountFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDistinctCountFunctionCall) { + return visitor.visitDistinctCountFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class PercentileAggFunctionCallContext extends StatsFunctionContext { + public percentileAggFunction(): PercentileAggFunctionContext { + return this.getRuleContext(0, PercentileAggFunctionContext); + } + constructor(ctx: StatsFunctionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPercentileAggFunctionCall) { + listener.enterPercentileAggFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPercentileAggFunctionCall) { + listener.exitPercentileAggFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPercentileAggFunctionCall) { + return visitor.visitPercentileAggFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StatsFunctionNameContext extends ParserRuleContext { + public AVG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AVG, 0); } + public COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COUNT, 0); } + public SUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUM, 0); } + public MIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MIN, 0); } + public MAX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX, 0); } + public VAR_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_SAMP, 0); } + public VAR_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_POP, 0); } + public STDDEV_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } + public STDDEV_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_POP, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStatsFunctionName) { + listener.enterStatsFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStatsFunctionName) { + listener.exitStatsFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStatsFunctionName) { + return visitor.visitStatsFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PercentileAggFunctionContext extends ParserRuleContext { + public _value!: IntegerLiteralContext; + public _aggField!: FieldExpressionContext; + public PERCENTILE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PERCENTILE, 0); } + public LESS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LESS, 0); } + public GREATER(): TerminalNode { return this.getToken(OpenSearchPPLParser.GREATER, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public integerLiteral(): IntegerLiteralContext { + return this.getRuleContext(0, IntegerLiteralContext); + } + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_percentileAggFunction; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPercentileAggFunction) { + listener.enterPercentileAggFunction(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPercentileAggFunction) { + listener.exitPercentileAggFunction(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPercentileAggFunction) { + return visitor.visitPercentileAggFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ExpressionContext extends ParserRuleContext { + public logicalExpression(): LogicalExpressionContext | undefined { + return this.tryGetRuleContext(0, LogicalExpressionContext); + } + public comparisonExpression(): ComparisonExpressionContext | undefined { + return this.tryGetRuleContext(0, ComparisonExpressionContext); + } + public valueExpression(): ValueExpressionContext | undefined { + return this.tryGetRuleContext(0, ValueExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_expression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterExpression) { + listener.enterExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitExpression) { + listener.exitExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitExpression) { + return visitor.visitExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class LogicalExpressionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_logicalExpression; } + public copyFrom(ctx: LogicalExpressionContext): void { + super.copyFrom(ctx); + } +} +export class ComparsionContext extends LogicalExpressionContext { + public comparisonExpression(): ComparisonExpressionContext { + return this.getRuleContext(0, ComparisonExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterComparsion) { + listener.enterComparsion(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitComparsion) { + listener.exitComparsion(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitComparsion) { + return visitor.visitComparsion(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalNotContext extends LogicalExpressionContext { + public NOT(): TerminalNode { return this.getToken(OpenSearchPPLParser.NOT, 0); } + public logicalExpression(): LogicalExpressionContext { + return this.getRuleContext(0, LogicalExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalNot) { + listener.enterLogicalNot(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalNot) { + listener.exitLogicalNot(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalNot) { + return visitor.visitLogicalNot(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalOrContext extends LogicalExpressionContext { + public _left!: LogicalExpressionContext; + public _right!: LogicalExpressionContext; + public OR(): TerminalNode { return this.getToken(OpenSearchPPLParser.OR, 0); } + public logicalExpression(): LogicalExpressionContext[]; + public logicalExpression(i: number): LogicalExpressionContext; + public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(LogicalExpressionContext); + } else { + return this.getRuleContext(i, LogicalExpressionContext); + } + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalOr) { + listener.enterLogicalOr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalOr) { + listener.exitLogicalOr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalOr) { + return visitor.visitLogicalOr(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalAndContext extends LogicalExpressionContext { + public _left!: LogicalExpressionContext; + public _right!: LogicalExpressionContext; + public logicalExpression(): LogicalExpressionContext[]; + public logicalExpression(i: number): LogicalExpressionContext; + public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(LogicalExpressionContext); + } else { + return this.getRuleContext(i, LogicalExpressionContext); + } + } + public AND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AND, 0); } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalAnd) { + listener.enterLogicalAnd(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalAnd) { + listener.exitLogicalAnd(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalAnd) { + return visitor.visitLogicalAnd(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class LogicalXorContext extends LogicalExpressionContext { + public _left!: LogicalExpressionContext; + public _right!: LogicalExpressionContext; + public XOR(): TerminalNode { return this.getToken(OpenSearchPPLParser.XOR, 0); } + public logicalExpression(): LogicalExpressionContext[]; + public logicalExpression(i: number): LogicalExpressionContext; + public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(LogicalExpressionContext); + } else { + return this.getRuleContext(i, LogicalExpressionContext); + } + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLogicalXor) { + listener.enterLogicalXor(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLogicalXor) { + listener.exitLogicalXor(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLogicalXor) { + return visitor.visitLogicalXor(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class BooleanExprContext extends LogicalExpressionContext { + public booleanExpression(): BooleanExpressionContext { + return this.getRuleContext(0, BooleanExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanExpr) { + listener.enterBooleanExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanExpr) { + listener.exitBooleanExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanExpr) { + return visitor.visitBooleanExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class RelevanceExprContext extends LogicalExpressionContext { + public relevanceExpression(): RelevanceExpressionContext { + return this.getRuleContext(0, RelevanceExpressionContext); + } + constructor(ctx: LogicalExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceExpr) { + listener.enterRelevanceExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceExpr) { + listener.exitRelevanceExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceExpr) { + return visitor.visitRelevanceExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ComparisonExpressionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonExpression; } + public copyFrom(ctx: ComparisonExpressionContext): void { + super.copyFrom(ctx); + } +} +export class CompareExprContext extends ComparisonExpressionContext { + public _left!: ValueExpressionContext; + public _right!: ValueExpressionContext; + public comparisonOperator(): ComparisonOperatorContext { + return this.getRuleContext(0, ComparisonOperatorContext); + } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext; + public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } else { + return this.getRuleContext(i, ValueExpressionContext); + } + } + constructor(ctx: ComparisonExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterCompareExpr) { + listener.enterCompareExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitCompareExpr) { + listener.exitCompareExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitCompareExpr) { + return visitor.visitCompareExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class InExprContext extends ComparisonExpressionContext { + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public IN(): TerminalNode { return this.getToken(OpenSearchPPLParser.IN, 0); } + public valueList(): ValueListContext { + return this.getRuleContext(0, ValueListContext); + } + constructor(ctx: ComparisonExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterInExpr) { + listener.enterInExpr(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitInExpr) { + listener.exitInExpr(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitInExpr) { + return visitor.visitInExpr(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ValueExpressionContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueExpression; } + public copyFrom(ctx: ValueExpressionContext): void { + super.copyFrom(ctx); + } +} +export class BinaryArithmeticContext extends ValueExpressionContext { + public _left!: ValueExpressionContext; + public _right!: ValueExpressionContext; + public binaryOperator(): BinaryOperatorContext { + return this.getRuleContext(0, BinaryOperatorContext); + } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext; + public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } else { + return this.getRuleContext(i, ValueExpressionContext); + } + } + constructor(ctx: ValueExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBinaryArithmetic) { + listener.enterBinaryArithmetic(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBinaryArithmetic) { + listener.exitBinaryArithmetic(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBinaryArithmetic) { + return visitor.visitBinaryArithmetic(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ParentheticBinaryArithmeticContext extends ValueExpressionContext { + public _left!: ValueExpressionContext; + public _right!: ValueExpressionContext; + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public binaryOperator(): BinaryOperatorContext { + return this.getRuleContext(0, BinaryOperatorContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext; + public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } else { + return this.getRuleContext(i, ValueExpressionContext); + } + } + constructor(ctx: ValueExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterParentheticBinaryArithmetic) { + listener.enterParentheticBinaryArithmetic(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitParentheticBinaryArithmetic) { + listener.exitParentheticBinaryArithmetic(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitParentheticBinaryArithmetic) { + return visitor.visitParentheticBinaryArithmetic(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ValueExpressionDefaultContext extends ValueExpressionContext { + public primaryExpression(): PrimaryExpressionContext { + return this.getRuleContext(0, PrimaryExpressionContext); + } + constructor(ctx: ValueExpressionContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterValueExpressionDefault) { + listener.enterValueExpressionDefault(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitValueExpressionDefault) { + listener.exitValueExpressionDefault(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitValueExpressionDefault) { + return visitor.visitValueExpressionDefault(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PrimaryExpressionContext extends ParserRuleContext { + public evalFunctionCall(): EvalFunctionCallContext | undefined { + return this.tryGetRuleContext(0, EvalFunctionCallContext); + } + public dataTypeFunctionCall(): DataTypeFunctionCallContext | undefined { + return this.tryGetRuleContext(0, DataTypeFunctionCallContext); + } + public fieldExpression(): FieldExpressionContext | undefined { + return this.tryGetRuleContext(0, FieldExpressionContext); + } + public literalValue(): LiteralValueContext | undefined { + return this.tryGetRuleContext(0, LiteralValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_primaryExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPrimaryExpression) { + listener.enterPrimaryExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPrimaryExpression) { + listener.exitPrimaryExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPrimaryExpression) { + return visitor.visitPrimaryExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BooleanExpressionContext extends ParserRuleContext { + public booleanFunctionCall(): BooleanFunctionCallContext { + return this.getRuleContext(0, BooleanFunctionCallContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanExpression) { + listener.enterBooleanExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanExpression) { + listener.exitBooleanExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanExpression) { + return visitor.visitBooleanExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceExpressionContext extends ParserRuleContext { + public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext | undefined { + return this.tryGetRuleContext(0, SingleFieldRelevanceFunctionContext); + } + public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext | undefined { + return this.tryGetRuleContext(0, MultiFieldRelevanceFunctionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceExpression) { + listener.enterRelevanceExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceExpression) { + listener.exitRelevanceExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceExpression) { + return visitor.visitRelevanceExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SingleFieldRelevanceFunctionContext extends ParserRuleContext { + public _field!: RelevanceFieldContext; + public _query!: RelevanceQueryContext; + public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { + return this.getRuleContext(0, SingleFieldRelevanceFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public relevanceField(): RelevanceFieldContext { + return this.getRuleContext(0, RelevanceFieldContext); + } + public relevanceQuery(): RelevanceQueryContext { + return this.getRuleContext(0, RelevanceQueryContext); + } + public relevanceArg(): RelevanceArgContext[]; + public relevanceArg(i: number): RelevanceArgContext; + public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { + if (i === undefined) { + return this.getRuleContexts(RelevanceArgContext); + } else { + return this.getRuleContext(i, RelevanceArgContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunction; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSingleFieldRelevanceFunction) { + listener.enterSingleFieldRelevanceFunction(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSingleFieldRelevanceFunction) { + listener.exitSingleFieldRelevanceFunction(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSingleFieldRelevanceFunction) { + return visitor.visitSingleFieldRelevanceFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class MultiFieldRelevanceFunctionContext extends ParserRuleContext { + public _field!: RelevanceFieldAndWeightContext; + public _query!: RelevanceQueryContext; + public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { + return this.getRuleContext(0, MultiFieldRelevanceFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public LT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } + public RT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext[]; + public relevanceFieldAndWeight(i: number): RelevanceFieldAndWeightContext; + public relevanceFieldAndWeight(i?: number): RelevanceFieldAndWeightContext | RelevanceFieldAndWeightContext[] { + if (i === undefined) { + return this.getRuleContexts(RelevanceFieldAndWeightContext); + } else { + return this.getRuleContext(i, RelevanceFieldAndWeightContext); + } + } + public relevanceQuery(): RelevanceQueryContext { + return this.getRuleContext(0, RelevanceQueryContext); + } + public relevanceArg(): RelevanceArgContext[]; + public relevanceArg(i: number): RelevanceArgContext; + public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { + if (i === undefined) { + return this.getRuleContexts(RelevanceArgContext); + } else { + return this.getRuleContext(i, RelevanceArgContext); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunction; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterMultiFieldRelevanceFunction) { + listener.enterMultiFieldRelevanceFunction(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitMultiFieldRelevanceFunction) { + listener.exitMultiFieldRelevanceFunction(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitMultiFieldRelevanceFunction) { + return visitor.visitMultiFieldRelevanceFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableSourceContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + public ID_DATE_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_tableSource; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTableSource) { + listener.enterTableSource(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTableSource) { + listener.exitTableSource(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTableSource) { + return visitor.visitTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FieldListContext extends ParserRuleContext { + public fieldExpression(): FieldExpressionContext[]; + public fieldExpression(i: number): FieldExpressionContext; + public fieldExpression(i?: number): FieldExpressionContext | FieldExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(FieldExpressionContext); + } else { + return this.getRuleContext(i, FieldExpressionContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldList; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFieldList) { + listener.enterFieldList(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFieldList) { + listener.exitFieldList(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFieldList) { + return visitor.visitFieldList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WcFieldListContext extends ParserRuleContext { + public wcFieldExpression(): WcFieldExpressionContext[]; + public wcFieldExpression(i: number): WcFieldExpressionContext; + public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { + if (i === undefined) { + return this.getRuleContexts(WcFieldExpressionContext); + } else { + return this.getRuleContext(i, WcFieldExpressionContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldList; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWcFieldList) { + listener.enterWcFieldList(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWcFieldList) { + listener.exitWcFieldList(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWcFieldList) { + return visitor.visitWcFieldList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortFieldContext extends ParserRuleContext { + public sortFieldExpression(): SortFieldExpressionContext { + return this.getRuleContext(0, SortFieldExpressionContext); + } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortField; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortField) { + listener.enterSortField(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortField) { + listener.exitSortField(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortField) { + return visitor.visitSortField(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SortFieldExpressionContext extends ParserRuleContext { + public fieldExpression(): FieldExpressionContext { + return this.getRuleContext(0, FieldExpressionContext); + } + public AUTO(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO, 0); } + public LT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public RT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public STR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STR, 0); } + public IP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IP, 0); } + public NUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUM, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortFieldExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSortFieldExpression) { + listener.enterSortFieldExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSortFieldExpression) { + listener.exitSortFieldExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSortFieldExpression) { + return visitor.visitSortFieldExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FieldExpressionContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext { + return this.getRuleContext(0, QualifiedNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFieldExpression) { + listener.enterFieldExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFieldExpression) { + listener.exitFieldExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFieldExpression) { + return visitor.visitFieldExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WcFieldExpressionContext extends ParserRuleContext { + public wcQualifiedName(): WcQualifiedNameContext { + return this.getRuleContext(0, WcQualifiedNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldExpression; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWcFieldExpression) { + listener.enterWcFieldExpression(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWcFieldExpression) { + listener.exitWcFieldExpression(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWcFieldExpression) { + return visitor.visitWcFieldExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalFunctionCallContext extends ParserRuleContext { + public evalFunctionName(): EvalFunctionNameContext { + return this.getRuleContext(0, EvalFunctionNameContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public functionArgs(): FunctionArgsContext { + return this.getRuleContext(0, FunctionArgsContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionCall; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalFunctionCall) { + listener.enterEvalFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalFunctionCall) { + listener.exitEvalFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalFunctionCall) { + return visitor.visitEvalFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DataTypeFunctionCallContext extends ParserRuleContext { + public CAST(): TerminalNode { return this.getToken(OpenSearchPPLParser.CAST, 0); } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext); + } + public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } + public convertedDataType(): ConvertedDataTypeContext { + return this.getRuleContext(0, ConvertedDataTypeContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dataTypeFunctionCall; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDataTypeFunctionCall) { + listener.enterDataTypeFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDataTypeFunctionCall) { + listener.exitDataTypeFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDataTypeFunctionCall) { + return visitor.visitDataTypeFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BooleanFunctionCallContext extends ParserRuleContext { + public conditionFunctionBase(): ConditionFunctionBaseContext { + return this.getRuleContext(0, ConditionFunctionBaseContext); + } + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public functionArgs(): FunctionArgsContext { + return this.getRuleContext(0, FunctionArgsContext); + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanFunctionCall; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanFunctionCall) { + listener.enterBooleanFunctionCall(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanFunctionCall) { + listener.exitBooleanFunctionCall(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanFunctionCall) { + return visitor.visitBooleanFunctionCall(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ConvertedDataTypeContext extends ParserRuleContext { + public _typeName!: Token; + public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } + public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } + public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public INT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INT, 0); } + public INTEGER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INTEGER, 0); } + public DOUBLE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOUBLE, 0); } + public LONG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LONG, 0); } + public FLOAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOAT, 0); } + public STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRING, 0); } + public BOOLEAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOLEAN, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_convertedDataType; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterConvertedDataType) { + listener.enterConvertedDataType(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitConvertedDataType) { + listener.exitConvertedDataType(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitConvertedDataType) { + return visitor.visitConvertedDataType(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class EvalFunctionNameContext extends ParserRuleContext { + public mathematicalFunctionBase(): MathematicalFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, MathematicalFunctionBaseContext); + } + public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, DateAndTimeFunctionBaseContext); + } + public textFunctionBase(): TextFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, TextFunctionBaseContext); + } + public conditionFunctionBase(): ConditionFunctionBaseContext | undefined { + return this.tryGetRuleContext(0, ConditionFunctionBaseContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterEvalFunctionName) { + listener.enterEvalFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitEvalFunctionName) { + listener.exitEvalFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitEvalFunctionName) { + return visitor.visitEvalFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FunctionArgsContext extends ParserRuleContext { + public functionArg(): FunctionArgContext[]; + public functionArg(i: number): FunctionArgContext; + public functionArg(i?: number): FunctionArgContext | FunctionArgContext[] { + if (i === undefined) { + return this.getRuleContexts(FunctionArgContext); + } else { + return this.getRuleContext(i, FunctionArgContext); + } + } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArgs; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFunctionArgs) { + listener.enterFunctionArgs(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFunctionArgs) { + listener.exitFunctionArgs(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFunctionArgs) { + return visitor.visitFunctionArgs(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FunctionArgContext extends ParserRuleContext { + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArg; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterFunctionArg) { + listener.enterFunctionArg(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitFunctionArg) { + listener.exitFunctionArg(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitFunctionArg) { + return visitor.visitFunctionArg(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceArgContext extends ParserRuleContext { + public relevanceArgName(): RelevanceArgNameContext { + return this.getRuleContext(0, RelevanceArgNameContext); + } + public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } + public relevanceArgValue(): RelevanceArgValueContext { + return this.getRuleContext(0, RelevanceArgValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArg; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceArg) { + listener.enterRelevanceArg(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceArg) { + listener.exitRelevanceArg(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceArg) { + return visitor.visitRelevanceArg(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceArgNameContext extends ParserRuleContext { + public ALLOW_LEADING_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } + public ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZER, 0); } + public ANALYZE_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } + public AUTO_GENERATE_SYNONYMS_PHRASE_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } + public BOOST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOST, 0); } + public CUTOFF_FREQUENCY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } + public DEFAULT_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } + public DEFAULT_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } + public ENABLE_POSITION_INCREMENTS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } + public FIELDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIELDS, 0); } + public FLAGS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLAGS, 0); } + public FUZZINESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZINESS, 0); } + public FUZZY_MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } + public FUZZY_PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } + public FUZZY_REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } + public FUZZY_TRANSPOSITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } + public LENIENT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENIENT, 0); } + public LOW_FREQ_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } + public MAX_DETERMINIZED_STATES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } + public MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } + public MINIMUM_SHOULD_MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } + public OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OPERATOR, 0); } + public PHRASE_SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } + public PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } + public QUOTE_ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } + public QUOTE_FIELD_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } + public REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REWRITE, 0); } + public SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SLOP, 0); } + public TIE_BREAKER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIE_BREAKER, 0); } + public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } + public TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TYPE, 0); } + public ZERO_TERMS_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceArgName) { + listener.enterRelevanceArgName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceArgName) { + listener.exitRelevanceArgName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceArgName) { + return visitor.visitRelevanceArgName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceFieldAndWeightContext extends ParserRuleContext { + public _field!: RelevanceFieldContext; + public _weight!: RelevanceFieldWeightContext; + public relevanceField(): RelevanceFieldContext { + return this.getRuleContext(0, RelevanceFieldContext); + } + public relevanceFieldWeight(): RelevanceFieldWeightContext | undefined { + return this.tryGetRuleContext(0, RelevanceFieldWeightContext); + } + public BIT_XOR_OP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldAndWeight; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceFieldAndWeight) { + listener.enterRelevanceFieldAndWeight(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceFieldAndWeight) { + listener.exitRelevanceFieldAndWeight(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceFieldAndWeight) { + return visitor.visitRelevanceFieldAndWeight(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceFieldWeightContext extends ParserRuleContext { + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public decimalLiteral(): DecimalLiteralContext | undefined { + return this.tryGetRuleContext(0, DecimalLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldWeight; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceFieldWeight) { + listener.enterRelevanceFieldWeight(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceFieldWeight) { + listener.exitRelevanceFieldWeight(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceFieldWeight) { + return visitor.visitRelevanceFieldWeight(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceFieldContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceField; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceField) { + listener.enterRelevanceField(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceField) { + listener.exitRelevanceField(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceField) { + return visitor.visitRelevanceField(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceQueryContext extends ParserRuleContext { + public relevanceArgValue(): RelevanceArgValueContext { + return this.getRuleContext(0, RelevanceArgValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceQuery; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceQuery) { + listener.enterRelevanceQuery(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceQuery) { + listener.exitRelevanceQuery(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceQuery) { + return visitor.visitRelevanceQuery(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelevanceArgValueContext extends ParserRuleContext { + public qualifiedName(): QualifiedNameContext | undefined { + return this.tryGetRuleContext(0, QualifiedNameContext); + } + public literalValue(): LiteralValueContext | undefined { + return this.tryGetRuleContext(0, LiteralValueContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgValue; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterRelevanceArgValue) { + listener.enterRelevanceArgValue(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitRelevanceArgValue) { + listener.exitRelevanceArgValue(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitRelevanceArgValue) { + return visitor.visitRelevanceArgValue(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class MathematicalFunctionBaseContext extends ParserRuleContext { + public ABS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ABS, 0); } + public CEIL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEIL, 0); } + public CEILING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEILING, 0); } + public CONV(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONV, 0); } + public CRC32(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CRC32, 0); } + public E(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.E, 0); } + public EXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EXP, 0); } + public FLOOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOOR, 0); } + public LN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LN, 0); } + public LOG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG, 0); } + public LOG10(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG10, 0); } + public LOG2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG2, 0); } + public MOD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MOD, 0); } + public PI(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PI, 0); } + public POW(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POW, 0); } + public POWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POWER, 0); } + public RAND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RAND, 0); } + public ROUND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ROUND, 0); } + public SIGN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIGN, 0); } + public SQRT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQRT, 0); } + public TRUNCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUNCATE, 0); } + public trigonometricFunctionName(): TrigonometricFunctionNameContext | undefined { + return this.tryGetRuleContext(0, TrigonometricFunctionNameContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_mathematicalFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterMathematicalFunctionBase) { + listener.enterMathematicalFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitMathematicalFunctionBase) { + listener.exitMathematicalFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitMathematicalFunctionBase) { + return visitor.visitMathematicalFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TrigonometricFunctionNameContext extends ParserRuleContext { + public ACOS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ACOS, 0); } + public ASIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASIN, 0); } + public ATAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN, 0); } + public ATAN2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN2, 0); } + public COS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COS, 0); } + public COT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COT, 0); } + public DEGREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEGREES, 0); } + public RADIANS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RADIANS, 0); } + public SIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIN, 0); } + public TAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TAN, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_trigonometricFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTrigonometricFunctionName) { + listener.enterTrigonometricFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTrigonometricFunctionName) { + listener.exitTrigonometricFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTrigonometricFunctionName) { + return visitor.visitTrigonometricFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DateAndTimeFunctionBaseContext extends ParserRuleContext { + public ADDDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ADDDATE, 0); } + public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } + public DATE_ADD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_ADD, 0); } + public DATE_SUB(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_SUB, 0); } + public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } + public DAYNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYNAME, 0); } + public DAYOFMONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFMONTH, 0); } + public DAYOFWEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFWEEK, 0); } + public DAYOFYEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFYEAR, 0); } + public FROM_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM_DAYS, 0); } + public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } + public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } + public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } + public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } + public MONTHNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTHNAME, 0); } + public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } + public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } + public SUBDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBDATE, 0); } + public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } + public TIME_TO_SEC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } + public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public TO_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TO_DAYS, 0); } + public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } + public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } + public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dateAndTimeFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDateAndTimeFunctionBase) { + listener.enterDateAndTimeFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDateAndTimeFunctionBase) { + listener.exitDateAndTimeFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDateAndTimeFunctionBase) { + return visitor.visitDateAndTimeFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ConditionFunctionBaseContext extends ParserRuleContext { + public LIKE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LIKE, 0); } + public IF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IF, 0); } + public ISNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNULL, 0); } + public ISNOTNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNOTNULL, 0); } + public IFNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IFNULL, 0); } + public NULLIF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NULLIF, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_conditionFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterConditionFunctionBase) { + listener.enterConditionFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitConditionFunctionBase) { + listener.exitConditionFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitConditionFunctionBase) { + return visitor.visitConditionFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TextFunctionBaseContext extends ParserRuleContext { + public SUBSTR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTR, 0); } + public SUBSTRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTRING, 0); } + public TRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRIM, 0); } + public LTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LTRIM, 0); } + public RTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RTRIM, 0); } + public LOWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOWER, 0); } + public UPPER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.UPPER, 0); } + public CONCAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT, 0); } + public CONCAT_WS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT_WS, 0); } + public LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENGTH, 0); } + public STRCMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRCMP, 0); } + public RIGHT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RIGHT, 0); } + public LEFT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LEFT, 0); } + public ASCII(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASCII, 0); } + public LOCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOCATE, 0); } + public REPLACE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REPLACE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_textFunctionBase; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTextFunctionBase) { + listener.enterTextFunctionBase(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTextFunctionBase) { + listener.exitTextFunctionBase(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTextFunctionBase) { + return visitor.visitTextFunctionBase(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ComparisonOperatorContext extends ParserRuleContext { + public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } + public NOT_EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_EQUAL, 0); } + public LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LESS, 0); } + public NOT_LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_LESS, 0); } + public GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.GREATER, 0); } + public NOT_GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_GREATER, 0); } + public REGEXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REGEXP, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonOperator; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterComparisonOperator) { + listener.enterComparisonOperator(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitComparisonOperator) { + listener.exitComparisonOperator(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitComparisonOperator) { + return visitor.visitComparisonOperator(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BinaryOperatorContext extends ParserRuleContext { + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + public STAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STAR, 0); } + public DIVIDE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DIVIDE, 0); } + public MODULE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MODULE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_binaryOperator; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBinaryOperator) { + listener.enterBinaryOperator(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBinaryOperator) { + listener.exitBinaryOperator(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBinaryOperator) { + return visitor.visitBinaryOperator(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { + public MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH, 0); } + public MATCH_PHRASE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterSingleFieldRelevanceFunctionName) { + listener.enterSingleFieldRelevanceFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitSingleFieldRelevanceFunctionName) { + listener.exitSingleFieldRelevanceFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitSingleFieldRelevanceFunctionName) { + return visitor.visitSingleFieldRelevanceFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { + public SIMPLE_QUERY_STRING(): TerminalNode { return this.getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterMultiFieldRelevanceFunctionName) { + listener.enterMultiFieldRelevanceFunctionName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitMultiFieldRelevanceFunctionName) { + listener.exitMultiFieldRelevanceFunctionName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitMultiFieldRelevanceFunctionName) { + return visitor.visitMultiFieldRelevanceFunctionName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class LiteralValueContext extends ParserRuleContext { + public intervalLiteral(): IntervalLiteralContext | undefined { + return this.tryGetRuleContext(0, IntervalLiteralContext); + } + public stringLiteral(): StringLiteralContext | undefined { + return this.tryGetRuleContext(0, StringLiteralContext); + } + public integerLiteral(): IntegerLiteralContext | undefined { + return this.tryGetRuleContext(0, IntegerLiteralContext); + } + public decimalLiteral(): DecimalLiteralContext | undefined { + return this.tryGetRuleContext(0, DecimalLiteralContext); + } + public booleanLiteral(): BooleanLiteralContext | undefined { + return this.tryGetRuleContext(0, BooleanLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_literalValue; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterLiteralValue) { + listener.enterLiteralValue(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitLiteralValue) { + listener.exitLiteralValue(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitLiteralValue) { + return visitor.visitLiteralValue(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IntervalLiteralContext extends ParserRuleContext { + public INTERVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTERVAL, 0); } + public valueExpression(): ValueExpressionContext { + return this.getRuleContext(0, ValueExpressionContext); + } + public intervalUnit(): IntervalUnitContext { + return this.getRuleContext(0, IntervalUnitContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIntervalLiteral) { + listener.enterIntervalLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIntervalLiteral) { + listener.exitIntervalLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIntervalLiteral) { + return visitor.visitIntervalLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class StringLiteralContext extends ParserRuleContext { + public DQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } + public SQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_stringLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterStringLiteral) { + listener.enterStringLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitStringLiteral) { + listener.exitStringLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitStringLiteral) { + return visitor.visitStringLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IntegerLiteralContext extends ParserRuleContext { + public INTEGER_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_integerLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIntegerLiteral) { + listener.enterIntegerLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIntegerLiteral) { + listener.exitIntegerLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIntegerLiteral) { + return visitor.visitIntegerLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class DecimalLiteralContext extends ParserRuleContext { + public DECIMAL_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } + public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } + public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_decimalLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterDecimalLiteral) { + listener.enterDecimalLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitDecimalLiteral) { + listener.exitDecimalLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitDecimalLiteral) { + return visitor.visitDecimalLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class BooleanLiteralContext extends ParserRuleContext { + public TRUE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUE, 0); } + public FALSE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FALSE, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanLiteral; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterBooleanLiteral) { + listener.enterBooleanLiteral(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitBooleanLiteral) { + listener.exitBooleanLiteral(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitBooleanLiteral) { + return visitor.visitBooleanLiteral(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class PatternContext extends ParserRuleContext { + public stringLiteral(): StringLiteralContext { + return this.getRuleContext(0, StringLiteralContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pattern; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterPattern) { + listener.enterPattern(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitPattern) { + listener.exitPattern(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitPattern) { + return visitor.visitPattern(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IntervalUnitContext extends ParserRuleContext { + public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } + public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } + public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } + public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } + public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } + public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } + public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } + public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } + public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } + public SECOND_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } + public MINUTE_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } + public MINUTE_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } + public HOUR_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } + public HOUR_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_SECOND, 0); } + public HOUR_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } + public DAY_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } + public DAY_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_SECOND, 0); } + public DAY_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MINUTE, 0); } + public DAY_HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_HOUR, 0); } + public YEAR_MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR_MONTH, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalUnit; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIntervalUnit) { + listener.enterIntervalUnit(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIntervalUnit) { + listener.exitIntervalUnit(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIntervalUnit) { + return visitor.visitIntervalUnit(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TimespanUnitContext extends ParserRuleContext { + public MS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MS, 0); } + public S(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.S, 0); } + public M(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.M, 0); } + public H(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.H, 0); } + public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } + public W(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.W, 0); } + public Q(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Q, 0); } + public Y(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Y, 0); } + public MILLISECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MILLISECOND, 0); } + public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } + public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } + public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } + public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } + public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } + public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } + public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } + public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_timespanUnit; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterTimespanUnit) { + listener.enterTimespanUnit(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitTimespanUnit) { + listener.exitTimespanUnit(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitTimespanUnit) { + return visitor.visitTimespanUnit(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ValueListContext extends ParserRuleContext { + public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } + public literalValue(): LiteralValueContext[]; + public literalValue(i: number): LiteralValueContext; + public literalValue(i?: number): LiteralValueContext | LiteralValueContext[] { + if (i === undefined) { + return this.getRuleContexts(LiteralValueContext); + } else { + return this.getRuleContext(i, LiteralValueContext); + } + } + public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } + public COMMA(): TerminalNode[]; + public COMMA(i: number): TerminalNode; + public COMMA(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.COMMA); + } else { + return this.getToken(OpenSearchPPLParser.COMMA, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueList; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterValueList) { + listener.enterValueList(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitValueList) { + listener.exitValueList(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitValueList) { + return visitor.visitValueList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class QualifiedNameContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_qualifiedName; } + public copyFrom(ctx: QualifiedNameContext): void { + super.copyFrom(ctx); + } +} +export class IdentsAsQualifiedNameContext extends QualifiedNameContext { + public ident(): IdentContext[]; + public ident(i: number): IdentContext; + public ident(i?: number): IdentContext | IdentContext[] { + if (i === undefined) { + return this.getRuleContexts(IdentContext); + } else { + return this.getRuleContext(i, IdentContext); + } + } + public DOT(): TerminalNode[]; + public DOT(i: number): TerminalNode; + public DOT(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.DOT); + } else { + return this.getToken(OpenSearchPPLParser.DOT, i); + } + } + constructor(ctx: QualifiedNameContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIdentsAsQualifiedName) { + listener.enterIdentsAsQualifiedName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIdentsAsQualifiedName) { + listener.exitIdentsAsQualifiedName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIdentsAsQualifiedName) { + return visitor.visitIdentsAsQualifiedName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WcQualifiedNameContext extends ParserRuleContext { + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcQualifiedName; } + public copyFrom(ctx: WcQualifiedNameContext): void { + super.copyFrom(ctx); + } +} +export class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { + public wildcard(): WildcardContext[]; + public wildcard(i: number): WildcardContext; + public wildcard(i?: number): WildcardContext | WildcardContext[] { + if (i === undefined) { + return this.getRuleContexts(WildcardContext); + } else { + return this.getRuleContext(i, WildcardContext); + } + } + public DOT(): TerminalNode[]; + public DOT(i: number): TerminalNode; + public DOT(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.DOT); + } else { + return this.getToken(OpenSearchPPLParser.DOT, i); + } + } + constructor(ctx: WcQualifiedNameContext) { + super(ctx.parent, ctx.invokingState); + this.copyFrom(ctx); + } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIdentsAsWildcardQualifiedName) { + listener.enterIdentsAsWildcardQualifiedName(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIdentsAsWildcardQualifiedName) { + listener.exitIdentsAsWildcardQualifiedName(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIdentsAsWildcardQualifiedName) { + return visitor.visitIdentsAsWildcardQualifiedName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IdentContext extends ParserRuleContext { + public ID(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID, 0); } + public DOT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOT, 0); } + public BACKTICK(): TerminalNode[]; + public BACKTICK(i: number): TerminalNode; + public BACKTICK(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.BACKTICK); + } else { + return this.getToken(OpenSearchPPLParser.BACKTICK, i); + } + } + public ident(): IdentContext | undefined { + return this.tryGetRuleContext(0, IdentContext); + } + public BQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } + public keywordsCanBeId(): KeywordsCanBeIdContext | undefined { + return this.tryGetRuleContext(0, KeywordsCanBeIdContext); + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_ident; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterIdent) { + listener.enterIdent(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitIdent) { + listener.exitIdent(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitIdent) { + return visitor.visitIdent(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WildcardContext extends ParserRuleContext { + public ident(): IdentContext[]; + public ident(i: number): IdentContext; + public ident(i?: number): IdentContext | IdentContext[] { + if (i === undefined) { + return this.getRuleContexts(IdentContext); + } else { + return this.getRuleContext(i, IdentContext); + } + } + public MODULE(): TerminalNode[]; + public MODULE(i: number): TerminalNode; + public MODULE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.MODULE); + } else { + return this.getToken(OpenSearchPPLParser.MODULE, i); + } + } + public SINGLE_QUOTE(): TerminalNode[]; + public SINGLE_QUOTE(i: number): TerminalNode; + public SINGLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.SINGLE_QUOTE); + } else { + return this.getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); + } + } + public wildcard(): WildcardContext | undefined { + return this.tryGetRuleContext(0, WildcardContext); + } + public DOUBLE_QUOTE(): TerminalNode[]; + public DOUBLE_QUOTE(i: number): TerminalNode; + public DOUBLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); + } else { + return this.getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); + } + } + public BACKTICK(): TerminalNode[]; + public BACKTICK(i: number): TerminalNode; + public BACKTICK(i?: number): TerminalNode | TerminalNode[] { + if (i === undefined) { + return this.getTokens(OpenSearchPPLParser.BACKTICK); + } else { + return this.getToken(OpenSearchPPLParser.BACKTICK, i); + } + } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wildcard; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterWildcard) { + listener.enterWildcard(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitWildcard) { + listener.exitWildcard(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitWildcard) { + return visitor.visitWildcard(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class KeywordsCanBeIdContext extends ParserRuleContext { + public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } + public statsFunctionName(): StatsFunctionNameContext | undefined { + return this.tryGetRuleContext(0, StatsFunctionNameContext); + } + public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } + public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } + public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } + public FIRST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIRST, 0); } + public LAST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LAST, 0); } + public timespanUnit(): TimespanUnitContext | undefined { + return this.tryGetRuleContext(0, TimespanUnitContext); + } + public SPAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SPAN, 0); } + constructor(parent: ParserRuleContext | undefined, invokingState: number) { + super(parent, invokingState); + } + // @Override + public get ruleIndex(): number { return OpenSearchPPLParser.RULE_keywordsCanBeId; } + // @Override + public enterRule(listener: OpenSearchPPLParserListener): void { + if (listener.enterKeywordsCanBeId) { + listener.enterKeywordsCanBeId(this); + } + } + // @Override + public exitRule(listener: OpenSearchPPLParserListener): void { + if (listener.exitKeywordsCanBeId) { + listener.exitKeywordsCanBeId(this); + } + } + // @Override + public accept(visitor: OpenSearchPPLParserVisitor): Result { + if (visitor.visitKeywordsCanBeId) { + return visitor.visitKeywordsCanBeId(this); + } else { + return visitor.visitChildren(this); + } + } +} + + diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts new file mode 100644 index 000000000..c3bb1f4bc --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts @@ -0,0 +1,1327 @@ +// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; + +import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; +import { SearchFromContext } from "./OpenSearchPPLParser"; +import { SearchFromFilterContext } from "./OpenSearchPPLParser"; +import { SearchFilterFromContext } from "./OpenSearchPPLParser"; +import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; +import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; +import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; +import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; +import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; +import { CompareExprContext } from "./OpenSearchPPLParser"; +import { InExprContext } from "./OpenSearchPPLParser"; +import { ComparsionContext } from "./OpenSearchPPLParser"; +import { LogicalNotContext } from "./OpenSearchPPLParser"; +import { LogicalOrContext } from "./OpenSearchPPLParser"; +import { LogicalAndContext } from "./OpenSearchPPLParser"; +import { LogicalXorContext } from "./OpenSearchPPLParser"; +import { BooleanExprContext } from "./OpenSearchPPLParser"; +import { RelevanceExprContext } from "./OpenSearchPPLParser"; +import { RootContext } from "./OpenSearchPPLParser"; +import { PplStatementContext } from "./OpenSearchPPLParser"; +import { CommandsContext } from "./OpenSearchPPLParser"; +import { SearchCommandContext } from "./OpenSearchPPLParser"; +import { WhereCommandContext } from "./OpenSearchPPLParser"; +import { FieldsCommandContext } from "./OpenSearchPPLParser"; +import { RenameCommandContext } from "./OpenSearchPPLParser"; +import { StatsCommandContext } from "./OpenSearchPPLParser"; +import { DedupCommandContext } from "./OpenSearchPPLParser"; +import { SortCommandContext } from "./OpenSearchPPLParser"; +import { EvalCommandContext } from "./OpenSearchPPLParser"; +import { HeadCommandContext } from "./OpenSearchPPLParser"; +import { TopCommandContext } from "./OpenSearchPPLParser"; +import { RareCommandContext } from "./OpenSearchPPLParser"; +import { ParseCommandContext } from "./OpenSearchPPLParser"; +import { KmeansCommandContext } from "./OpenSearchPPLParser"; +import { KmeansParameterContext } from "./OpenSearchPPLParser"; +import { AdCommandContext } from "./OpenSearchPPLParser"; +import { AdParameterContext } from "./OpenSearchPPLParser"; +import { FromClauseContext } from "./OpenSearchPPLParser"; +import { RenameClasueContext } from "./OpenSearchPPLParser"; +import { ByClauseContext } from "./OpenSearchPPLParser"; +import { StatsByClauseContext } from "./OpenSearchPPLParser"; +import { BySpanClauseContext } from "./OpenSearchPPLParser"; +import { SpanClauseContext } from "./OpenSearchPPLParser"; +import { SortbyClauseContext } from "./OpenSearchPPLParser"; +import { EvalClauseContext } from "./OpenSearchPPLParser"; +import { StatsAggTermContext } from "./OpenSearchPPLParser"; +import { StatsFunctionContext } from "./OpenSearchPPLParser"; +import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; +import { ExpressionContext } from "./OpenSearchPPLParser"; +import { LogicalExpressionContext } from "./OpenSearchPPLParser"; +import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; +import { ValueExpressionContext } from "./OpenSearchPPLParser"; +import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; +import { BooleanExpressionContext } from "./OpenSearchPPLParser"; +import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { TableSourceContext } from "./OpenSearchPPLParser"; +import { FieldListContext } from "./OpenSearchPPLParser"; +import { WcFieldListContext } from "./OpenSearchPPLParser"; +import { SortFieldContext } from "./OpenSearchPPLParser"; +import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; +import { FieldExpressionContext } from "./OpenSearchPPLParser"; +import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; +import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; +import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; +import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; +import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; +import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; +import { FunctionArgsContext } from "./OpenSearchPPLParser"; +import { FunctionArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldContext } from "./OpenSearchPPLParser"; +import { RelevanceQueryContext } from "./OpenSearchPPLParser"; +import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; +import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; +import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; +import { BinaryOperatorContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { LiteralValueContext } from "./OpenSearchPPLParser"; +import { IntervalLiteralContext } from "./OpenSearchPPLParser"; +import { StringLiteralContext } from "./OpenSearchPPLParser"; +import { IntegerLiteralContext } from "./OpenSearchPPLParser"; +import { DecimalLiteralContext } from "./OpenSearchPPLParser"; +import { BooleanLiteralContext } from "./OpenSearchPPLParser"; +import { PatternContext } from "./OpenSearchPPLParser"; +import { IntervalUnitContext } from "./OpenSearchPPLParser"; +import { TimespanUnitContext } from "./OpenSearchPPLParser"; +import { ValueListContext } from "./OpenSearchPPLParser"; +import { QualifiedNameContext } from "./OpenSearchPPLParser"; +import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; +import { IdentContext } from "./OpenSearchPPLParser"; +import { WildcardContext } from "./OpenSearchPPLParser"; +import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; + + +/** + * This interface defines a complete listener for a parse tree produced by + * `OpenSearchPPLParser`. + */ +export interface OpenSearchPPLParserListener extends ParseTreeListener { + /** + * Enter a parse tree produced by the `identsAsWildcardQualifiedName` + * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + enterIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; + /** + * Exit a parse tree produced by the `identsAsWildcardQualifiedName` + * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + exitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; + + /** + * Enter a parse tree produced by the `searchFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchFrom?: (ctx: SearchFromContext) => void; + /** + * Exit a parse tree produced by the `searchFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchFrom?: (ctx: SearchFromContext) => void; + + /** + * Enter a parse tree produced by the `searchFromFilter` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchFromFilter?: (ctx: SearchFromFilterContext) => void; + /** + * Exit a parse tree produced by the `searchFromFilter` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchFromFilter?: (ctx: SearchFromFilterContext) => void; + + /** + * Enter a parse tree produced by the `searchFilterFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; + /** + * Exit a parse tree produced by the `searchFilterFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; + + /** + * Enter a parse tree produced by the `statsFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `statsFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `countAllFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `countAllFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `distinctCountFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `distinctCountFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `percentileAggFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; + /** + * Exit a parse tree produced by the `percentileAggFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; + + /** + * Enter a parse tree produced by the `identsAsQualifiedName` + * labeled alternative in `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + enterIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; + /** + * Exit a parse tree produced by the `identsAsQualifiedName` + * labeled alternative in `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + exitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; + + /** + * Enter a parse tree produced by the `binaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; + /** + * Exit a parse tree produced by the `binaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; + + /** + * Enter a parse tree produced by the `parentheticBinaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; + /** + * Exit a parse tree produced by the `parentheticBinaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; + + /** + * Enter a parse tree produced by the `valueExpressionDefault` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; + /** + * Exit a parse tree produced by the `valueExpressionDefault` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; + + /** + * Enter a parse tree produced by the `compareExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + enterCompareExpr?: (ctx: CompareExprContext) => void; + /** + * Exit a parse tree produced by the `compareExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + exitCompareExpr?: (ctx: CompareExprContext) => void; + + /** + * Enter a parse tree produced by the `inExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + enterInExpr?: (ctx: InExprContext) => void; + /** + * Exit a parse tree produced by the `inExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + exitInExpr?: (ctx: InExprContext) => void; + + /** + * Enter a parse tree produced by the `comparsion` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterComparsion?: (ctx: ComparsionContext) => void; + /** + * Exit a parse tree produced by the `comparsion` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitComparsion?: (ctx: ComparsionContext) => void; + + /** + * Enter a parse tree produced by the `logicalNot` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalNot?: (ctx: LogicalNotContext) => void; + /** + * Exit a parse tree produced by the `logicalNot` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalNot?: (ctx: LogicalNotContext) => void; + + /** + * Enter a parse tree produced by the `logicalOr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalOr?: (ctx: LogicalOrContext) => void; + /** + * Exit a parse tree produced by the `logicalOr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalOr?: (ctx: LogicalOrContext) => void; + + /** + * Enter a parse tree produced by the `logicalAnd` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalAnd?: (ctx: LogicalAndContext) => void; + /** + * Exit a parse tree produced by the `logicalAnd` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalAnd?: (ctx: LogicalAndContext) => void; + + /** + * Enter a parse tree produced by the `logicalXor` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalXor?: (ctx: LogicalXorContext) => void; + /** + * Exit a parse tree produced by the `logicalXor` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalXor?: (ctx: LogicalXorContext) => void; + + /** + * Enter a parse tree produced by the `booleanExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterBooleanExpr?: (ctx: BooleanExprContext) => void; + /** + * Exit a parse tree produced by the `booleanExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitBooleanExpr?: (ctx: BooleanExprContext) => void; + + /** + * Enter a parse tree produced by the `relevanceExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterRelevanceExpr?: (ctx: RelevanceExprContext) => void; + /** + * Exit a parse tree produced by the `relevanceExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitRelevanceExpr?: (ctx: RelevanceExprContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.root`. + * @param ctx the parse tree + */ + enterRoot?: (ctx: RootContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.root`. + * @param ctx the parse tree + */ + exitRoot?: (ctx: RootContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.pplStatement`. + * @param ctx the parse tree + */ + enterPplStatement?: (ctx: PplStatementContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.pplStatement`. + * @param ctx the parse tree + */ + exitPplStatement?: (ctx: PplStatementContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.commands`. + * @param ctx the parse tree + */ + enterCommands?: (ctx: CommandsContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.commands`. + * @param ctx the parse tree + */ + exitCommands?: (ctx: CommandsContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + enterSearchCommand?: (ctx: SearchCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + */ + exitSearchCommand?: (ctx: SearchCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.whereCommand`. + * @param ctx the parse tree + */ + enterWhereCommand?: (ctx: WhereCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.whereCommand`. + * @param ctx the parse tree + */ + exitWhereCommand?: (ctx: WhereCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. + * @param ctx the parse tree + */ + enterFieldsCommand?: (ctx: FieldsCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. + * @param ctx the parse tree + */ + exitFieldsCommand?: (ctx: FieldsCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.renameCommand`. + * @param ctx the parse tree + */ + enterRenameCommand?: (ctx: RenameCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.renameCommand`. + * @param ctx the parse tree + */ + exitRenameCommand?: (ctx: RenameCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsCommand`. + * @param ctx the parse tree + */ + enterStatsCommand?: (ctx: StatsCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsCommand`. + * @param ctx the parse tree + */ + exitStatsCommand?: (ctx: StatsCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.dedupCommand`. + * @param ctx the parse tree + */ + enterDedupCommand?: (ctx: DedupCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. + * @param ctx the parse tree + */ + exitDedupCommand?: (ctx: DedupCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortCommand`. + * @param ctx the parse tree + */ + enterSortCommand?: (ctx: SortCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortCommand`. + * @param ctx the parse tree + */ + exitSortCommand?: (ctx: SortCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalCommand`. + * @param ctx the parse tree + */ + enterEvalCommand?: (ctx: EvalCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalCommand`. + * @param ctx the parse tree + */ + exitEvalCommand?: (ctx: EvalCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.headCommand`. + * @param ctx the parse tree + */ + enterHeadCommand?: (ctx: HeadCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.headCommand`. + * @param ctx the parse tree + */ + exitHeadCommand?: (ctx: HeadCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.topCommand`. + * @param ctx the parse tree + */ + enterTopCommand?: (ctx: TopCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.topCommand`. + * @param ctx the parse tree + */ + exitTopCommand?: (ctx: TopCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.rareCommand`. + * @param ctx the parse tree + */ + enterRareCommand?: (ctx: RareCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.rareCommand`. + * @param ctx the parse tree + */ + exitRareCommand?: (ctx: RareCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.parseCommand`. + * @param ctx the parse tree + */ + enterParseCommand?: (ctx: ParseCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.parseCommand`. + * @param ctx the parse tree + */ + exitParseCommand?: (ctx: ParseCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. + * @param ctx the parse tree + */ + enterKmeansCommand?: (ctx: KmeansCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. + * @param ctx the parse tree + */ + exitKmeansCommand?: (ctx: KmeansCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. + * @param ctx the parse tree + */ + enterKmeansParameter?: (ctx: KmeansParameterContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. + * @param ctx the parse tree + */ + exitKmeansParameter?: (ctx: KmeansParameterContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.adCommand`. + * @param ctx the parse tree + */ + enterAdCommand?: (ctx: AdCommandContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.adCommand`. + * @param ctx the parse tree + */ + exitAdCommand?: (ctx: AdCommandContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.adParameter`. + * @param ctx the parse tree + */ + enterAdParameter?: (ctx: AdParameterContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.adParameter`. + * @param ctx the parse tree + */ + exitAdParameter?: (ctx: AdParameterContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fromClause`. + * @param ctx the parse tree + */ + enterFromClause?: (ctx: FromClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fromClause`. + * @param ctx the parse tree + */ + exitFromClause?: (ctx: FromClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.renameClasue`. + * @param ctx the parse tree + */ + enterRenameClasue?: (ctx: RenameClasueContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.renameClasue`. + * @param ctx the parse tree + */ + exitRenameClasue?: (ctx: RenameClasueContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.byClause`. + * @param ctx the parse tree + */ + enterByClause?: (ctx: ByClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.byClause`. + * @param ctx the parse tree + */ + exitByClause?: (ctx: ByClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsByClause`. + * @param ctx the parse tree + */ + enterStatsByClause?: (ctx: StatsByClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsByClause`. + * @param ctx the parse tree + */ + exitStatsByClause?: (ctx: StatsByClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.bySpanClause`. + * @param ctx the parse tree + */ + enterBySpanClause?: (ctx: BySpanClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. + * @param ctx the parse tree + */ + exitBySpanClause?: (ctx: BySpanClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.spanClause`. + * @param ctx the parse tree + */ + enterSpanClause?: (ctx: SpanClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.spanClause`. + * @param ctx the parse tree + */ + exitSpanClause?: (ctx: SpanClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortbyClause`. + * @param ctx the parse tree + */ + enterSortbyClause?: (ctx: SortbyClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. + * @param ctx the parse tree + */ + exitSortbyClause?: (ctx: SortbyClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalClause`. + * @param ctx the parse tree + */ + enterEvalClause?: (ctx: EvalClauseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalClause`. + * @param ctx the parse tree + */ + exitEvalClause?: (ctx: EvalClauseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. + * @param ctx the parse tree + */ + enterStatsAggTerm?: (ctx: StatsAggTermContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. + * @param ctx the parse tree + */ + exitStatsAggTerm?: (ctx: StatsAggTermContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + enterStatsFunction?: (ctx: StatsFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + */ + exitStatsFunction?: (ctx: StatsFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. + * @param ctx the parse tree + */ + enterStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. + * @param ctx the parse tree + */ + exitStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. + * @param ctx the parse tree + */ + enterPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. + * @param ctx the parse tree + */ + exitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.expression`. + * @param ctx the parse tree + */ + enterExpression?: (ctx: ExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.expression`. + * @param ctx the parse tree + */ + exitExpression?: (ctx: ExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + enterLogicalExpression?: (ctx: LogicalExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + */ + exitLogicalExpression?: (ctx: LogicalExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + enterComparisonExpression?: (ctx: ComparisonExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + */ + exitComparisonExpression?: (ctx: ComparisonExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + enterValueExpression?: (ctx: ValueExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + */ + exitValueExpression?: (ctx: ValueExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.primaryExpression`. + * @param ctx the parse tree + */ + enterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. + * @param ctx the parse tree + */ + exitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.booleanExpression`. + * @param ctx the parse tree + */ + enterBooleanExpression?: (ctx: BooleanExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. + * @param ctx the parse tree + */ + exitBooleanExpression?: (ctx: BooleanExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. + * @param ctx the parse tree + */ + enterRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. + * @param ctx the parse tree + */ + exitRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. + * @param ctx the parse tree + */ + enterSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. + * @param ctx the parse tree + */ + exitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. + * @param ctx the parse tree + */ + enterMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. + * @param ctx the parse tree + */ + exitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.tableSource`. + * @param ctx the parse tree + */ + enterTableSource?: (ctx: TableSourceContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.tableSource`. + * @param ctx the parse tree + */ + exitTableSource?: (ctx: TableSourceContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fieldList`. + * @param ctx the parse tree + */ + enterFieldList?: (ctx: FieldListContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fieldList`. + * @param ctx the parse tree + */ + exitFieldList?: (ctx: FieldListContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldList`. + * @param ctx the parse tree + */ + enterWcFieldList?: (ctx: WcFieldListContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. + * @param ctx the parse tree + */ + exitWcFieldList?: (ctx: WcFieldListContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortField`. + * @param ctx the parse tree + */ + enterSortField?: (ctx: SortFieldContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortField`. + * @param ctx the parse tree + */ + exitSortField?: (ctx: SortFieldContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. + * @param ctx the parse tree + */ + enterSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. + * @param ctx the parse tree + */ + exitSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.fieldExpression`. + * @param ctx the parse tree + */ + enterFieldExpression?: (ctx: FieldExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. + * @param ctx the parse tree + */ + exitFieldExpression?: (ctx: FieldExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. + * @param ctx the parse tree + */ + enterWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. + * @param ctx the parse tree + */ + exitWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. + * @param ctx the parse tree + */ + enterEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. + * @param ctx the parse tree + */ + exitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. + * @param ctx the parse tree + */ + enterDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. + * @param ctx the parse tree + */ + exitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. + * @param ctx the parse tree + */ + enterBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. + * @param ctx the parse tree + */ + exitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.convertedDataType`. + * @param ctx the parse tree + */ + enterConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. + * @param ctx the parse tree + */ + exitConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. + * @param ctx the parse tree + */ + enterEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. + * @param ctx the parse tree + */ + exitEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.functionArgs`. + * @param ctx the parse tree + */ + enterFunctionArgs?: (ctx: FunctionArgsContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.functionArgs`. + * @param ctx the parse tree + */ + exitFunctionArgs?: (ctx: FunctionArgsContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.functionArg`. + * @param ctx the parse tree + */ + enterFunctionArg?: (ctx: FunctionArgContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.functionArg`. + * @param ctx the parse tree + */ + exitFunctionArg?: (ctx: FunctionArgContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArg`. + * @param ctx the parse tree + */ + enterRelevanceArg?: (ctx: RelevanceArgContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. + * @param ctx the parse tree + */ + exitRelevanceArg?: (ctx: RelevanceArgContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. + * @param ctx the parse tree + */ + enterRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. + * @param ctx the parse tree + */ + exitRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. + * @param ctx the parse tree + */ + enterRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. + * @param ctx the parse tree + */ + exitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. + * @param ctx the parse tree + */ + enterRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. + * @param ctx the parse tree + */ + exitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceField`. + * @param ctx the parse tree + */ + enterRelevanceField?: (ctx: RelevanceFieldContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceField`. + * @param ctx the parse tree + */ + exitRelevanceField?: (ctx: RelevanceFieldContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. + * @param ctx the parse tree + */ + enterRelevanceQuery?: (ctx: RelevanceQueryContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. + * @param ctx the parse tree + */ + exitRelevanceQuery?: (ctx: RelevanceQueryContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. + * @param ctx the parse tree + */ + enterRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. + * @param ctx the parse tree + */ + exitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. + * @param ctx the parse tree + */ + enterMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. + * @param ctx the parse tree + */ + exitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. + * @param ctx the parse tree + */ + enterTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. + * @param ctx the parse tree + */ + exitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. + * @param ctx the parse tree + */ + enterDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. + * @param ctx the parse tree + */ + exitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. + * @param ctx the parse tree + */ + enterConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. + * @param ctx the parse tree + */ + exitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. + * @param ctx the parse tree + */ + enterTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. + * @param ctx the parse tree + */ + exitTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. + * @param ctx the parse tree + */ + enterComparisonOperator?: (ctx: ComparisonOperatorContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. + * @param ctx the parse tree + */ + exitComparisonOperator?: (ctx: ComparisonOperatorContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.binaryOperator`. + * @param ctx the parse tree + */ + enterBinaryOperator?: (ctx: BinaryOperatorContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. + * @param ctx the parse tree + */ + exitBinaryOperator?: (ctx: BinaryOperatorContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + enterSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + exitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + enterMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. + * @param ctx the parse tree + */ + exitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.literalValue`. + * @param ctx the parse tree + */ + enterLiteralValue?: (ctx: LiteralValueContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.literalValue`. + * @param ctx the parse tree + */ + exitLiteralValue?: (ctx: LiteralValueContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. + * @param ctx the parse tree + */ + enterIntervalLiteral?: (ctx: IntervalLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. + * @param ctx the parse tree + */ + exitIntervalLiteral?: (ctx: IntervalLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.stringLiteral`. + * @param ctx the parse tree + */ + enterStringLiteral?: (ctx: StringLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. + * @param ctx the parse tree + */ + exitStringLiteral?: (ctx: StringLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.integerLiteral`. + * @param ctx the parse tree + */ + enterIntegerLiteral?: (ctx: IntegerLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. + * @param ctx the parse tree + */ + exitIntegerLiteral?: (ctx: IntegerLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. + * @param ctx the parse tree + */ + enterDecimalLiteral?: (ctx: DecimalLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. + * @param ctx the parse tree + */ + exitDecimalLiteral?: (ctx: DecimalLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. + * @param ctx the parse tree + */ + enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. + * @param ctx the parse tree + */ + exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.pattern`. + * @param ctx the parse tree + */ + enterPattern?: (ctx: PatternContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.pattern`. + * @param ctx the parse tree + */ + exitPattern?: (ctx: PatternContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.intervalUnit`. + * @param ctx the parse tree + */ + enterIntervalUnit?: (ctx: IntervalUnitContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. + * @param ctx the parse tree + */ + exitIntervalUnit?: (ctx: IntervalUnitContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.timespanUnit`. + * @param ctx the parse tree + */ + enterTimespanUnit?: (ctx: TimespanUnitContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. + * @param ctx the parse tree + */ + exitTimespanUnit?: (ctx: TimespanUnitContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.valueList`. + * @param ctx the parse tree + */ + enterValueList?: (ctx: ValueListContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.valueList`. + * @param ctx the parse tree + */ + exitValueList?: (ctx: ValueListContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + enterQualifiedName?: (ctx: QualifiedNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + */ + exitQualifiedName?: (ctx: QualifiedNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + enterWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + */ + exitWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.ident`. + * @param ctx the parse tree + */ + enterIdent?: (ctx: IdentContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.ident`. + * @param ctx the parse tree + */ + exitIdent?: (ctx: IdentContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.wildcard`. + * @param ctx the parse tree + */ + enterWildcard?: (ctx: WildcardContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.wildcard`. + * @param ctx the parse tree + */ + exitWildcard?: (ctx: WildcardContext) => void; + + /** + * Enter a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. + * @param ctx the parse tree + */ + enterKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; + /** + * Exit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. + * @param ctx the parse tree + */ + exitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; +} + diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts new file mode 100644 index 000000000..594622c97 --- /dev/null +++ b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts @@ -0,0 +1,885 @@ +// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT + + +import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; + +import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; +import { SearchFromContext } from "./OpenSearchPPLParser"; +import { SearchFromFilterContext } from "./OpenSearchPPLParser"; +import { SearchFilterFromContext } from "./OpenSearchPPLParser"; +import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; +import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; +import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; +import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; +import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; +import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; +import { CompareExprContext } from "./OpenSearchPPLParser"; +import { InExprContext } from "./OpenSearchPPLParser"; +import { ComparsionContext } from "./OpenSearchPPLParser"; +import { LogicalNotContext } from "./OpenSearchPPLParser"; +import { LogicalOrContext } from "./OpenSearchPPLParser"; +import { LogicalAndContext } from "./OpenSearchPPLParser"; +import { LogicalXorContext } from "./OpenSearchPPLParser"; +import { BooleanExprContext } from "./OpenSearchPPLParser"; +import { RelevanceExprContext } from "./OpenSearchPPLParser"; +import { RootContext } from "./OpenSearchPPLParser"; +import { PplStatementContext } from "./OpenSearchPPLParser"; +import { CommandsContext } from "./OpenSearchPPLParser"; +import { SearchCommandContext } from "./OpenSearchPPLParser"; +import { WhereCommandContext } from "./OpenSearchPPLParser"; +import { FieldsCommandContext } from "./OpenSearchPPLParser"; +import { RenameCommandContext } from "./OpenSearchPPLParser"; +import { StatsCommandContext } from "./OpenSearchPPLParser"; +import { DedupCommandContext } from "./OpenSearchPPLParser"; +import { SortCommandContext } from "./OpenSearchPPLParser"; +import { EvalCommandContext } from "./OpenSearchPPLParser"; +import { HeadCommandContext } from "./OpenSearchPPLParser"; +import { TopCommandContext } from "./OpenSearchPPLParser"; +import { RareCommandContext } from "./OpenSearchPPLParser"; +import { ParseCommandContext } from "./OpenSearchPPLParser"; +import { KmeansCommandContext } from "./OpenSearchPPLParser"; +import { KmeansParameterContext } from "./OpenSearchPPLParser"; +import { AdCommandContext } from "./OpenSearchPPLParser"; +import { AdParameterContext } from "./OpenSearchPPLParser"; +import { FromClauseContext } from "./OpenSearchPPLParser"; +import { RenameClasueContext } from "./OpenSearchPPLParser"; +import { ByClauseContext } from "./OpenSearchPPLParser"; +import { StatsByClauseContext } from "./OpenSearchPPLParser"; +import { BySpanClauseContext } from "./OpenSearchPPLParser"; +import { SpanClauseContext } from "./OpenSearchPPLParser"; +import { SortbyClauseContext } from "./OpenSearchPPLParser"; +import { EvalClauseContext } from "./OpenSearchPPLParser"; +import { StatsAggTermContext } from "./OpenSearchPPLParser"; +import { StatsFunctionContext } from "./OpenSearchPPLParser"; +import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; +import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; +import { ExpressionContext } from "./OpenSearchPPLParser"; +import { LogicalExpressionContext } from "./OpenSearchPPLParser"; +import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; +import { ValueExpressionContext } from "./OpenSearchPPLParser"; +import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; +import { BooleanExpressionContext } from "./OpenSearchPPLParser"; +import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; +import { TableSourceContext } from "./OpenSearchPPLParser"; +import { FieldListContext } from "./OpenSearchPPLParser"; +import { WcFieldListContext } from "./OpenSearchPPLParser"; +import { SortFieldContext } from "./OpenSearchPPLParser"; +import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; +import { FieldExpressionContext } from "./OpenSearchPPLParser"; +import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; +import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; +import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; +import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; +import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; +import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; +import { FunctionArgsContext } from "./OpenSearchPPLParser"; +import { FunctionArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgContext } from "./OpenSearchPPLParser"; +import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; +import { RelevanceFieldContext } from "./OpenSearchPPLParser"; +import { RelevanceQueryContext } from "./OpenSearchPPLParser"; +import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; +import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; +import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; +import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; +import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; +import { BinaryOperatorContext } from "./OpenSearchPPLParser"; +import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; +import { LiteralValueContext } from "./OpenSearchPPLParser"; +import { IntervalLiteralContext } from "./OpenSearchPPLParser"; +import { StringLiteralContext } from "./OpenSearchPPLParser"; +import { IntegerLiteralContext } from "./OpenSearchPPLParser"; +import { DecimalLiteralContext } from "./OpenSearchPPLParser"; +import { BooleanLiteralContext } from "./OpenSearchPPLParser"; +import { PatternContext } from "./OpenSearchPPLParser"; +import { IntervalUnitContext } from "./OpenSearchPPLParser"; +import { TimespanUnitContext } from "./OpenSearchPPLParser"; +import { ValueListContext } from "./OpenSearchPPLParser"; +import { QualifiedNameContext } from "./OpenSearchPPLParser"; +import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; +import { IdentContext } from "./OpenSearchPPLParser"; +import { WildcardContext } from "./OpenSearchPPLParser"; +import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; + + +/** + * This interface defines a complete generic visitor for a parse tree produced + * by `OpenSearchPPLParser`. + * + * @param The return type of the visit operation. Use `void` for + * operations with no return type. + */ +export interface OpenSearchPPLParserVisitor extends ParseTreeVisitor { + /** + * Visit a parse tree produced by the `identsAsWildcardQualifiedName` + * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by the `searchFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchFrom?: (ctx: SearchFromContext) => Result; + + /** + * Visit a parse tree produced by the `searchFromFilter` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchFromFilter?: (ctx: SearchFromFilterContext) => Result; + + /** + * Visit a parse tree produced by the `searchFilterFrom` + * labeled alternative in `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchFilterFrom?: (ctx: SearchFilterFromContext) => Result; + + /** + * Visit a parse tree produced by the `statsFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `countAllFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `distinctCountFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `percentileAggFunctionCall` + * labeled alternative in `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by the `identsAsQualifiedName` + * labeled alternative in `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by the `binaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => Result; + + /** + * Visit a parse tree produced by the `parentheticBinaryArithmetic` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => Result; + + /** + * Visit a parse tree produced by the `valueExpressionDefault` + * labeled alternative in `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => Result; + + /** + * Visit a parse tree produced by the `compareExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCompareExpr?: (ctx: CompareExprContext) => Result; + + /** + * Visit a parse tree produced by the `inExpr` + * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitInExpr?: (ctx: InExprContext) => Result; + + /** + * Visit a parse tree produced by the `comparsion` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitComparsion?: (ctx: ComparsionContext) => Result; + + /** + * Visit a parse tree produced by the `logicalNot` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalNot?: (ctx: LogicalNotContext) => Result; + + /** + * Visit a parse tree produced by the `logicalOr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalOr?: (ctx: LogicalOrContext) => Result; + + /** + * Visit a parse tree produced by the `logicalAnd` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalAnd?: (ctx: LogicalAndContext) => Result; + + /** + * Visit a parse tree produced by the `logicalXor` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalXor?: (ctx: LogicalXorContext) => Result; + + /** + * Visit a parse tree produced by the `booleanExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanExpr?: (ctx: BooleanExprContext) => Result; + + /** + * Visit a parse tree produced by the `relevanceExpr` + * labeled alternative in `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceExpr?: (ctx: RelevanceExprContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.root`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRoot?: (ctx: RootContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.pplStatement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPplStatement?: (ctx: PplStatementContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.commands`. + * @param ctx the parse tree + * @return the visitor result + */ + visitCommands?: (ctx: CommandsContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.searchCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSearchCommand?: (ctx: SearchCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.whereCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWhereCommand?: (ctx: WhereCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFieldsCommand?: (ctx: FieldsCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.renameCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRenameCommand?: (ctx: RenameCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsCommand?: (ctx: StatsCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDedupCommand?: (ctx: DedupCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortCommand?: (ctx: SortCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalCommand?: (ctx: EvalCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.headCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitHeadCommand?: (ctx: HeadCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.topCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTopCommand?: (ctx: TopCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.rareCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRareCommand?: (ctx: RareCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.parseCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitParseCommand?: (ctx: ParseCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitKmeansCommand?: (ctx: KmeansCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. + * @param ctx the parse tree + * @return the visitor result + */ + visitKmeansParameter?: (ctx: KmeansParameterContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.adCommand`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAdCommand?: (ctx: AdCommandContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.adParameter`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAdParameter?: (ctx: AdParameterContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fromClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFromClause?: (ctx: FromClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.renameClasue`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRenameClasue?: (ctx: RenameClasueContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.byClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitByClause?: (ctx: ByClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsByClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsByClause?: (ctx: StatsByClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBySpanClause?: (ctx: BySpanClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.spanClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSpanClause?: (ctx: SpanClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortbyClause?: (ctx: SortbyClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalClause?: (ctx: EvalClauseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsAggTerm?: (ctx: StatsAggTermContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsFunction?: (ctx: StatsFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStatsFunctionName?: (ctx: StatsFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.expression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExpression?: (ctx: ExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLogicalExpression?: (ctx: LogicalExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitComparisonExpression?: (ctx: ComparisonExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.valueExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitValueExpression?: (ctx: ValueExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPrimaryExpression?: (ctx: PrimaryExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanExpression?: (ctx: BooleanExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceExpression?: (ctx: RelevanceExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.tableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableSource?: (ctx: TableSourceContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fieldList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFieldList?: (ctx: FieldListContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWcFieldList?: (ctx: WcFieldListContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortField`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortField?: (ctx: SortFieldContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSortFieldExpression?: (ctx: SortFieldExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFieldExpression?: (ctx: FieldExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWcFieldExpression?: (ctx: WcFieldExpressionContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. + * @param ctx the parse tree + * @return the visitor result + */ + visitConvertedDataType?: (ctx: ConvertedDataTypeContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEvalFunctionName?: (ctx: EvalFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.functionArgs`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionArgs?: (ctx: FunctionArgsContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.functionArg`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionArg?: (ctx: FunctionArgContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceArg?: (ctx: RelevanceArgContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceArgName?: (ctx: RelevanceArgNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceField`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceField?: (ctx: RelevanceFieldContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceQuery?: (ctx: RelevanceQueryContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. + * @param ctx the parse tree + * @return the visitor result + */ + visitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTextFunctionBase?: (ctx: TextFunctionBaseContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. + * @param ctx the parse tree + * @return the visitor result + */ + visitComparisonOperator?: (ctx: ComparisonOperatorContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBinaryOperator?: (ctx: BinaryOperatorContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.literalValue`. + * @param ctx the parse tree + * @return the visitor result + */ + visitLiteralValue?: (ctx: LiteralValueContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIntervalLiteral?: (ctx: IntervalLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitStringLiteral?: (ctx: StringLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIntegerLiteral?: (ctx: IntegerLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDecimalLiteral?: (ctx: DecimalLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. + * @param ctx the parse tree + * @return the visitor result + */ + visitBooleanLiteral?: (ctx: BooleanLiteralContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.pattern`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPattern?: (ctx: PatternContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIntervalUnit?: (ctx: IntervalUnitContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTimespanUnit?: (ctx: TimespanUnitContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.valueList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitValueList?: (ctx: ValueListContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitQualifiedName?: (ctx: QualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWcQualifiedName?: (ctx: WcQualifiedNameContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.ident`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIdent?: (ctx: IdentContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.wildcard`. + * @param ctx the parse tree + * @return the visitor result + */ + visitWildcard?: (ctx: WildcardContext) => Result; + + /** + * Visit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. + * @param ctx the parse tree + * @return the visitor result + */ + visitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => Result; +} + diff --git a/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts b/dashboards-observability/common/query_manager/antlr/ppl_syntax_parser.ts similarity index 70% rename from dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts rename to dashboards-observability/common/query_manager/antlr/ppl_syntax_parser.ts index 959fe4d27..6f62bce1c 100644 --- a/dashboards-observability/query_manager/antlr/ppl_syntax_parser.ts +++ b/dashboards-observability/common/query_manager/antlr/ppl_syntax_parser.ts @@ -4,9 +4,9 @@ */ import { CharStreams, CommonTokenStream } from 'antlr4ts'; -import { CaseInsensitiveCharStream } from '../antlr/adaptors/case_insensitive_char_stream'; -import { OpenSearchPPLLexer } from '../antlr/output/OpenSearchPPLLexer'; -import { OpenSearchPPLParser } from '../antlr/output/OpenSearchPPLParser'; +import { CaseInsensitiveCharStream } from './adaptors/case_insensitive_char_stream'; +import { OpenSearchPPLLexer } from './output/OpenSearchPPLLexer'; +import { OpenSearchPPLParser } from './output/OpenSearchPPLParser'; /** * PPL Syntax Parser. diff --git a/dashboards-observability/query_manager/ast/builder/query_builder.ts b/dashboards-observability/common/query_manager/ast/builder/query_builder.ts similarity index 100% rename from dashboards-observability/query_manager/ast/builder/query_builder.ts rename to dashboards-observability/common/query_manager/ast/builder/query_builder.ts diff --git a/dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts b/dashboards-observability/common/query_manager/ast/builder/stats_ast_builder.ts similarity index 100% rename from dashboards-observability/query_manager/ast/builder/stats_ast_builder.ts rename to dashboards-observability/common/query_manager/ast/builder/stats_ast_builder.ts diff --git a/dashboards-observability/query_manager/ast/builder/stats_builder.ts b/dashboards-observability/common/query_manager/ast/builder/stats_builder.ts similarity index 100% rename from dashboards-observability/query_manager/ast/builder/stats_builder.ts rename to dashboards-observability/common/query_manager/ast/builder/stats_builder.ts diff --git a/dashboards-observability/query_manager/ast/expression/AggregateFunction.ts b/dashboards-observability/common/query_manager/ast/expression/AggregateFunction.ts similarity index 100% rename from dashboards-observability/query_manager/ast/expression/AggregateFunction.ts rename to dashboards-observability/common/query_manager/ast/expression/AggregateFunction.ts diff --git a/dashboards-observability/query_manager/ast/expression/AggregateTerm.ts b/dashboards-observability/common/query_manager/ast/expression/AggregateTerm.ts similarity index 100% rename from dashboards-observability/query_manager/ast/expression/AggregateTerm.ts rename to dashboards-observability/common/query_manager/ast/expression/AggregateTerm.ts diff --git a/dashboards-observability/query_manager/ast/expression/field.ts b/dashboards-observability/common/query_manager/ast/expression/field.ts similarity index 100% rename from dashboards-observability/query_manager/ast/expression/field.ts rename to dashboards-observability/common/query_manager/ast/expression/field.ts diff --git a/dashboards-observability/query_manager/ast/expression/group_by.ts b/dashboards-observability/common/query_manager/ast/expression/group_by.ts similarity index 100% rename from dashboards-observability/query_manager/ast/expression/group_by.ts rename to dashboards-observability/common/query_manager/ast/expression/group_by.ts diff --git a/dashboards-observability/query_manager/ast/expression/index.ts b/dashboards-observability/common/query_manager/ast/expression/index.ts similarity index 100% rename from dashboards-observability/query_manager/ast/expression/index.ts rename to dashboards-observability/common/query_manager/ast/expression/index.ts diff --git a/dashboards-observability/query_manager/ast/expression/span.ts b/dashboards-observability/common/query_manager/ast/expression/span.ts similarity index 100% rename from dashboards-observability/query_manager/ast/expression/span.ts rename to dashboards-observability/common/query_manager/ast/expression/span.ts diff --git a/dashboards-observability/query_manager/ast/expression/spanExpression.ts b/dashboards-observability/common/query_manager/ast/expression/spanExpression.ts similarity index 100% rename from dashboards-observability/query_manager/ast/expression/spanExpression.ts rename to dashboards-observability/common/query_manager/ast/expression/spanExpression.ts diff --git a/dashboards-observability/query_manager/ast/index.ts b/dashboards-observability/common/query_manager/ast/index.ts similarity index 100% rename from dashboards-observability/query_manager/ast/index.ts rename to dashboards-observability/common/query_manager/ast/index.ts diff --git a/dashboards-observability/query_manager/ast/node.ts b/dashboards-observability/common/query_manager/ast/node.ts similarity index 100% rename from dashboards-observability/query_manager/ast/node.ts rename to dashboards-observability/common/query_manager/ast/node.ts diff --git a/dashboards-observability/query_manager/ast/tree/aggragations.ts b/dashboards-observability/common/query_manager/ast/tree/aggragations.ts similarity index 100% rename from dashboards-observability/query_manager/ast/tree/aggragations.ts rename to dashboards-observability/common/query_manager/ast/tree/aggragations.ts diff --git a/dashboards-observability/query_manager/ast/types/index.ts b/dashboards-observability/common/query_manager/ast/types/index.ts similarity index 100% rename from dashboards-observability/query_manager/ast/types/index.ts rename to dashboards-observability/common/query_manager/ast/types/index.ts diff --git a/dashboards-observability/query_manager/ast/types/stats.ts b/dashboards-observability/common/query_manager/ast/types/stats.ts similarity index 100% rename from dashboards-observability/query_manager/ast/types/stats.ts rename to dashboards-observability/common/query_manager/ast/types/stats.ts diff --git a/dashboards-observability/query_manager/index.ts b/dashboards-observability/common/query_manager/index.ts similarity index 100% rename from dashboards-observability/query_manager/index.ts rename to dashboards-observability/common/query_manager/index.ts diff --git a/dashboards-observability/query_manager/ppl_query_manager.ts b/dashboards-observability/common/query_manager/ppl_query_manager.ts similarity index 100% rename from dashboards-observability/query_manager/ppl_query_manager.ts rename to dashboards-observability/common/query_manager/ppl_query_manager.ts diff --git a/dashboards-observability/query_manager/query_builder/index.ts b/dashboards-observability/common/query_manager/query_builder/index.ts similarity index 100% rename from dashboards-observability/query_manager/query_builder/index.ts rename to dashboards-observability/common/query_manager/query_builder/index.ts diff --git a/dashboards-observability/query_manager/query_builder/ppl_query_builder.ts b/dashboards-observability/common/query_manager/query_builder/ppl_query_builder.ts similarity index 100% rename from dashboards-observability/query_manager/query_builder/ppl_query_builder.ts rename to dashboards-observability/common/query_manager/query_builder/ppl_query_builder.ts diff --git a/dashboards-observability/query_manager/query_parser/index.ts b/dashboards-observability/common/query_manager/query_parser/index.ts similarity index 100% rename from dashboards-observability/query_manager/query_parser/index.ts rename to dashboards-observability/common/query_manager/query_parser/index.ts diff --git a/dashboards-observability/query_manager/query_parser/ppl_query_parser.ts b/dashboards-observability/common/query_manager/query_parser/ppl_query_parser.ts similarity index 100% rename from dashboards-observability/query_manager/query_parser/ppl_query_parser.ts rename to dashboards-observability/common/query_manager/query_parser/ppl_query_parser.ts diff --git a/dashboards-observability/query_manager/utils/index.ts b/dashboards-observability/common/query_manager/utils/index.ts similarity index 100% rename from dashboards-observability/query_manager/utils/index.ts rename to dashboards-observability/common/query_manager/utils/index.ts diff --git a/dashboards-observability/package.json b/dashboards-observability/package.json index 783766709..d5f1d540f 100644 --- a/dashboards-observability/package.json +++ b/dashboards-observability/package.json @@ -10,7 +10,7 @@ "cypress:run": "TZ=America/Los_Angeles cypress run", "cypress:open": "TZ=America/Los_Angeles cypress open", "plugin_helpers": "node ../../scripts/plugin_helpers", - "postinstall": "antlr4ts -visitor ./query_manager/antlr/grammar/OpenSearchPPLLexer.g4 -Xexact-output-dir -o ./query_manager/antlr/output && antlr4ts -visitor ./query_manager/antlr/grammar/OpenSearchPPLParser.g4 -Xexact-output-dir -o ./query_manager/antlr/output" + "postinstall": "antlr4ts -visitor ./common/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 -Xexact-output-dir -o ./common/query_manager/antlr/output && antlr4ts -visitor ./common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 -Xexact-output-dir -o ./common/query_manager/antlr/output" }, "dependencies": { "@algolia/autocomplete-core": "^1.4.1", diff --git a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx index 651e91257..5e296b499 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx @@ -78,7 +78,7 @@ import { getVizContainerProps } from '../../visualizations/charts/helpers'; import { parseGetSuggestions, onItemSelect } from '../../common/search/autocomplete_logic'; import { formatError } from '../utils'; import { sleep } from '../../common/live_tail/live_tail_button'; -import { QueryManager } from '../../../../query_manager/ppl_query_manager'; +import { QueryManager } from '../../../../common/query_manager/ppl_query_manager'; const TYPE_TAB_MAPPING = { [SAVED_QUERY]: TAB_EVENT_ID, diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx index 462db551b..da886ebd2 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx @@ -39,8 +39,8 @@ import { ButtonGroupItem } from './config_button_group'; import { visChartTypes } from '../../../../../../../../common/constants/shared'; import { ConfigList } from '../../../../../../../../common/types/explorer'; import { TabContext } from '../../../../../hooks'; -import { QueryManager } from '../../../../../../../../query_manager'; -import { composeAggregations } from '../../../../../../../../query_manager/utils'; +import { QueryManager } from '../../../../../../../../common/query_manager'; +import { composeAggregations } from '../../../../../../../../common/query_manager/utils'; const initialConfigEntry = { label: '', From 4a0a1f3d1c122166dda22de8a3025aa31674d064 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Tue, 6 Sep 2022 21:07:30 -0700 Subject: [PATCH 16/29] remove output files Signed-off-by: Eric Wei --- dashboards-observability/.gitignore | 2 +- .../antlr/output/OpenSearchPPLLexer.interp | 831 -- .../antlr/output/OpenSearchPPLLexer.tokens | 527 - .../antlr/output/OpenSearchPPLLexer.ts | 1768 --- .../antlr/output/OpenSearchPPLParser.interp | 634 -- .../antlr/output/OpenSearchPPLParser.tokens | 527 - .../antlr/output/OpenSearchPPLParser.ts | 9805 ----------------- .../output/OpenSearchPPLParserListener.ts | 1327 --- .../output/OpenSearchPPLParserVisitor.ts | 885 -- 9 files changed, 1 insertion(+), 16305 deletions(-) delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts delete mode 100644 dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts diff --git a/dashboards-observability/.gitignore b/dashboards-observability/.gitignore index a88d66536..bf5586d64 100644 --- a/dashboards-observability/.gitignore +++ b/dashboards-observability/.gitignore @@ -4,4 +4,4 @@ build/ coverage/ .cypress/screenshots .cypress/videos -query_manager/antlr/output +common/query_manager/antlr/output diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp deleted file mode 100644 index 635beec9a..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.interp +++ /dev/null @@ -1,831 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -DATE_SUFFIX -ID_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -DEC_DIGIT -ERROR_RECOGNITION - -channel names: -DEFAULT_TOKEN_CHANNEL -HIDDEN -null -null -WHITESPACE -ERRORCHANNEL - -mode names: -DEFAULT_MODE - -atn: -[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 2, 271, 2671, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 99, 3, 99, 3, 100, 3, 100, 3, 101, 3, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 258, 3, 258, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 263, 3, 263, 3, 264, 6, 264, 2585, 10, 264, 13, 264, 14, 264, 2586, 3, 265, 6, 265, 2590, 10, 265, 13, 265, 14, 265, 2591, 5, 265, 2594, 10, 265, 3, 265, 3, 265, 6, 265, 2598, 10, 265, 13, 265, 14, 265, 2599, 3, 266, 3, 266, 6, 266, 2604, 10, 266, 13, 266, 14, 266, 2605, 7, 266, 2608, 10, 266, 12, 266, 14, 266, 2611, 11, 266, 3, 267, 6, 267, 2614, 10, 267, 13, 267, 14, 267, 2615, 3, 267, 7, 267, 2619, 10, 267, 12, 267, 14, 267, 2622, 11, 267, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 7, 269, 2633, 10, 269, 12, 269, 14, 269, 2636, 11, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 7, 270, 2646, 10, 270, 12, 270, 14, 270, 2649, 11, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 7, 271, 2659, 10, 271, 12, 271, 14, 271, 2662, 11, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 2615, 2, 2, 274, 3, 2, 3, 5, 2, 4, 7, 2, 5, 9, 2, 6, 11, 2, 7, 13, 2, 8, 15, 2, 9, 17, 2, 10, 19, 2, 11, 21, 2, 12, 23, 2, 13, 25, 2, 14, 27, 2, 15, 29, 2, 16, 31, 2, 17, 33, 2, 18, 35, 2, 19, 37, 2, 20, 39, 2, 21, 41, 2, 22, 43, 2, 23, 45, 2, 24, 47, 2, 25, 49, 2, 26, 51, 2, 27, 53, 2, 28, 55, 2, 29, 57, 2, 30, 59, 2, 31, 61, 2, 32, 63, 2, 33, 65, 2, 34, 67, 2, 35, 69, 2, 36, 71, 2, 37, 73, 2, 38, 75, 2, 39, 77, 2, 40, 79, 2, 41, 81, 2, 42, 83, 2, 43, 85, 2, 44, 87, 2, 45, 89, 2, 46, 91, 2, 47, 93, 2, 48, 95, 2, 49, 97, 2, 50, 99, 2, 51, 101, 2, 52, 103, 2, 53, 105, 2, 54, 107, 2, 55, 109, 2, 56, 111, 2, 57, 113, 2, 58, 115, 2, 59, 117, 2, 60, 119, 2, 61, 121, 2, 62, 123, 2, 63, 125, 2, 64, 127, 2, 65, 129, 2, 66, 131, 2, 67, 133, 2, 68, 135, 2, 69, 137, 2, 70, 139, 2, 71, 141, 2, 72, 143, 2, 73, 145, 2, 74, 147, 2, 75, 149, 2, 76, 151, 2, 77, 153, 2, 78, 155, 2, 79, 157, 2, 80, 159, 2, 81, 161, 2, 82, 163, 2, 83, 165, 2, 84, 167, 2, 85, 169, 2, 86, 171, 2, 87, 173, 2, 88, 175, 2, 89, 177, 2, 90, 179, 2, 91, 181, 2, 92, 183, 2, 93, 185, 2, 94, 187, 2, 95, 189, 2, 96, 191, 2, 97, 193, 2, 98, 195, 2, 99, 197, 2, 100, 199, 2, 101, 201, 2, 102, 203, 2, 103, 205, 2, 104, 207, 2, 105, 209, 2, 106, 211, 2, 107, 213, 2, 108, 215, 2, 109, 217, 2, 110, 219, 2, 111, 221, 2, 112, 223, 2, 113, 225, 2, 114, 227, 2, 115, 229, 2, 116, 231, 2, 117, 233, 2, 118, 235, 2, 119, 237, 2, 120, 239, 2, 121, 241, 2, 122, 243, 2, 123, 245, 2, 124, 247, 2, 125, 249, 2, 126, 251, 2, 127, 253, 2, 128, 255, 2, 129, 257, 2, 130, 259, 2, 131, 261, 2, 132, 263, 2, 133, 265, 2, 134, 267, 2, 135, 269, 2, 136, 271, 2, 137, 273, 2, 138, 275, 2, 139, 277, 2, 140, 279, 2, 141, 281, 2, 142, 283, 2, 143, 285, 2, 144, 287, 2, 145, 289, 2, 146, 291, 2, 147, 293, 2, 148, 295, 2, 149, 297, 2, 150, 299, 2, 151, 301, 2, 152, 303, 2, 153, 305, 2, 154, 307, 2, 155, 309, 2, 156, 311, 2, 157, 313, 2, 158, 315, 2, 159, 317, 2, 160, 319, 2, 161, 321, 2, 162, 323, 2, 163, 325, 2, 164, 327, 2, 165, 329, 2, 166, 331, 2, 167, 333, 2, 168, 335, 2, 169, 337, 2, 170, 339, 2, 171, 341, 2, 172, 343, 2, 173, 345, 2, 174, 347, 2, 175, 349, 2, 176, 351, 2, 177, 353, 2, 178, 355, 2, 179, 357, 2, 180, 359, 2, 181, 361, 2, 182, 363, 2, 183, 365, 2, 184, 367, 2, 185, 369, 2, 186, 371, 2, 187, 373, 2, 188, 375, 2, 189, 377, 2, 190, 379, 2, 191, 381, 2, 192, 383, 2, 193, 385, 2, 194, 387, 2, 195, 389, 2, 196, 391, 2, 197, 393, 2, 198, 395, 2, 199, 397, 2, 200, 399, 2, 201, 401, 2, 202, 403, 2, 203, 405, 2, 204, 407, 2, 205, 409, 2, 206, 411, 2, 207, 413, 2, 208, 415, 2, 209, 417, 2, 210, 419, 2, 211, 421, 2, 212, 423, 2, 213, 425, 2, 214, 427, 2, 215, 429, 2, 216, 431, 2, 217, 433, 2, 218, 435, 2, 219, 437, 2, 220, 439, 2, 221, 441, 2, 222, 443, 2, 223, 445, 2, 224, 447, 2, 225, 449, 2, 226, 451, 2, 227, 453, 2, 228, 455, 2, 229, 457, 2, 230, 459, 2, 231, 461, 2, 232, 463, 2, 233, 465, 2, 234, 467, 2, 235, 469, 2, 236, 471, 2, 237, 473, 2, 238, 475, 2, 239, 477, 2, 240, 479, 2, 241, 481, 2, 242, 483, 2, 243, 485, 2, 244, 487, 2, 245, 489, 2, 246, 491, 2, 247, 493, 2, 248, 495, 2, 249, 497, 2, 250, 499, 2, 251, 501, 2, 252, 503, 2, 253, 505, 2, 254, 507, 2, 255, 509, 2, 256, 511, 2, 257, 513, 2, 258, 515, 2, 259, 517, 2, 260, 519, 2, 261, 521, 2, 262, 523, 2, 263, 525, 2, 264, 527, 2, 265, 529, 2, 266, 531, 2, 2, 533, 2, 2, 535, 2, 267, 537, 2, 268, 539, 2, 269, 541, 2, 270, 543, 2, 2, 545, 2, 271, 3, 2, 10, 3, 2, 47, 48, 4, 2, 44, 44, 50, 59, 4, 2, 44, 44, 66, 92, 7, 2, 44, 44, 47, 47, 50, 59, 67, 92, 97, 97, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 4, 2, 94, 94, 98, 98, 3, 2, 50, 59, 2, 2684, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 3, 547, 3, 2, 2, 2, 5, 554, 3, 2, 2, 2, 7, 559, 3, 2, 2, 2, 9, 565, 3, 2, 2, 2, 11, 572, 3, 2, 2, 2, 13, 579, 3, 2, 2, 2, 15, 585, 3, 2, 2, 2, 17, 591, 3, 2, 2, 2, 19, 596, 3, 2, 2, 2, 21, 601, 3, 2, 2, 2, 23, 606, 3, 2, 2, 2, 25, 610, 3, 2, 2, 2, 27, 615, 3, 2, 2, 2, 29, 621, 3, 2, 2, 2, 31, 628, 3, 2, 2, 2, 33, 631, 3, 2, 2, 2, 35, 634, 3, 2, 2, 2, 37, 637, 3, 2, 2, 2, 39, 644, 3, 2, 2, 2, 41, 650, 3, 2, 2, 2, 43, 652, 3, 2, 2, 2, 45, 657, 3, 2, 2, 2, 47, 664, 3, 2, 2, 2, 49, 669, 3, 2, 2, 2, 51, 673, 3, 2, 2, 2, 53, 676, 3, 2, 2, 2, 55, 680, 3, 2, 2, 2, 57, 690, 3, 2, 2, 2, 59, 702, 3, 2, 2, 2, 61, 720, 3, 2, 2, 2, 63, 731, 3, 2, 2, 2, 65, 738, 3, 2, 2, 2, 67, 744, 3, 2, 2, 2, 69, 754, 3, 2, 2, 2, 71, 765, 3, 2, 2, 2, 73, 779, 3, 2, 2, 2, 75, 795, 3, 2, 2, 2, 77, 808, 3, 2, 2, 2, 79, 820, 3, 2, 2, 2, 81, 833, 3, 2, 2, 2, 83, 844, 3, 2, 2, 2, 85, 857, 3, 2, 2, 2, 87, 868, 3, 2, 2, 2, 89, 878, 3, 2, 2, 2, 91, 897, 3, 2, 2, 2, 93, 921, 3, 2, 2, 2, 95, 926, 3, 2, 2, 2, 97, 929, 3, 2, 2, 2, 99, 933, 3, 2, 2, 2, 101, 936, 3, 2, 2, 2, 103, 940, 3, 2, 2, 2, 105, 944, 3, 2, 2, 2, 107, 949, 3, 2, 2, 2, 109, 955, 3, 2, 2, 2, 111, 962, 3, 2, 2, 2, 113, 971, 3, 2, 2, 2, 115, 980, 3, 2, 2, 2, 117, 992, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1011, 3, 2, 2, 2, 123, 1018, 3, 2, 2, 2, 125, 1023, 3, 2, 2, 2, 127, 1027, 3, 2, 2, 2, 129, 1032, 3, 2, 2, 2, 131, 1038, 3, 2, 2, 2, 133, 1046, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1089, 3, 2, 2, 2, 141, 1103, 3, 2, 2, 2, 143, 1120, 3, 2, 2, 2, 145, 1132, 3, 2, 2, 2, 147, 1144, 3, 2, 2, 2, 149, 1160, 3, 2, 2, 2, 151, 1171, 3, 2, 2, 2, 153, 1182, 3, 2, 2, 2, 155, 1191, 3, 2, 2, 2, 157, 1202, 3, 2, 2, 2, 159, 1212, 3, 2, 2, 2, 161, 1219, 3, 2, 2, 2, 163, 1231, 3, 2, 2, 2, 165, 1235, 3, 2, 2, 2, 167, 1243, 3, 2, 2, 2, 169, 1250, 3, 2, 2, 2, 171, 1255, 3, 2, 2, 2, 173, 1261, 3, 2, 2, 2, 175, 1268, 3, 2, 2, 2, 177, 1276, 3, 2, 2, 2, 179, 1278, 3, 2, 2, 2, 181, 1280, 3, 2, 2, 2, 183, 1282, 3, 2, 2, 2, 185, 1284, 3, 2, 2, 2, 187, 1286, 3, 2, 2, 2, 189, 1288, 3, 2, 2, 2, 191, 1291, 3, 2, 2, 2, 193, 1294, 3, 2, 2, 2, 195, 1297, 3, 2, 2, 2, 197, 1299, 3, 2, 2, 2, 199, 1301, 3, 2, 2, 2, 201, 1303, 3, 2, 2, 2, 203, 1305, 3, 2, 2, 2, 205, 1307, 3, 2, 2, 2, 207, 1309, 3, 2, 2, 2, 209, 1311, 3, 2, 2, 2, 211, 1313, 3, 2, 2, 2, 213, 1315, 3, 2, 2, 2, 215, 1317, 3, 2, 2, 2, 217, 1319, 3, 2, 2, 2, 219, 1321, 3, 2, 2, 2, 221, 1323, 3, 2, 2, 2, 223, 1325, 3, 2, 2, 2, 225, 1327, 3, 2, 2, 2, 227, 1329, 3, 2, 2, 2, 229, 1331, 3, 2, 2, 2, 231, 1335, 3, 2, 2, 2, 233, 1341, 3, 2, 2, 2, 235, 1356, 3, 2, 2, 2, 237, 1362, 3, 2, 2, 2, 239, 1374, 3, 2, 2, 2, 241, 1378, 3, 2, 2, 2, 243, 1383, 3, 2, 2, 2, 245, 1390, 3, 2, 2, 2, 247, 1394, 3, 2, 2, 2, 249, 1399, 3, 2, 2, 2, 251, 1405, 3, 2, 2, 2, 253, 1411, 3, 2, 2, 2, 255, 1418, 3, 2, 2, 2, 257, 1422, 3, 2, 2, 2, 259, 1428, 3, 2, 2, 2, 261, 1437, 3, 2, 2, 2, 263, 1445, 3, 2, 2, 2, 265, 1457, 3, 2, 2, 2, 267, 1468, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1490, 3, 2, 2, 2, 275, 1495, 3, 2, 2, 2, 277, 1502, 3, 2, 2, 2, 279, 1511, 3, 2, 2, 2, 281, 1525, 3, 2, 2, 2, 283, 1532, 3, 2, 2, 2, 285, 1544, 3, 2, 2, 2, 287, 1552, 3, 2, 2, 2, 289, 1561, 3, 2, 2, 2, 291, 1572, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1588, 3, 2, 2, 2, 297, 1598, 3, 2, 2, 2, 299, 1600, 3, 2, 2, 2, 301, 1603, 3, 2, 2, 2, 303, 1607, 3, 2, 2, 2, 305, 1612, 3, 2, 2, 2, 307, 1620, 3, 2, 2, 2, 309, 1625, 3, 2, 2, 2, 311, 1631, 3, 2, 2, 2, 313, 1633, 3, 2, 2, 2, 315, 1637, 3, 2, 2, 2, 317, 1643, 3, 2, 2, 2, 319, 1646, 3, 2, 2, 2, 321, 1650, 3, 2, 2, 2, 323, 1656, 3, 2, 2, 2, 325, 1661, 3, 2, 2, 2, 327, 1665, 3, 2, 2, 2, 329, 1668, 3, 2, 2, 2, 331, 1672, 3, 2, 2, 2, 333, 1678, 3, 2, 2, 2, 335, 1683, 3, 2, 2, 2, 337, 1689, 3, 2, 2, 2, 339, 1694, 3, 2, 2, 2, 341, 1699, 3, 2, 2, 2, 343, 1708, 3, 2, 2, 2, 345, 1713, 3, 2, 2, 2, 347, 1718, 3, 2, 2, 2, 349, 1723, 3, 2, 2, 2, 351, 1729, 3, 2, 2, 2, 353, 1733, 3, 2, 2, 2, 355, 1737, 3, 2, 2, 2, 357, 1745, 3, 2, 2, 2, 359, 1753, 3, 2, 2, 2, 361, 1757, 3, 2, 2, 2, 363, 1761, 3, 2, 2, 2, 365, 1769, 3, 2, 2, 2, 367, 1774, 3, 2, 2, 2, 369, 1783, 3, 2, 2, 2, 371, 1792, 3, 2, 2, 2, 373, 1803, 3, 2, 2, 2, 375, 1813, 3, 2, 2, 2, 377, 1823, 3, 2, 2, 2, 379, 1831, 3, 2, 2, 2, 381, 1841, 3, 2, 2, 2, 383, 1851, 3, 2, 2, 2, 385, 1859, 3, 2, 2, 2, 387, 1864, 3, 2, 2, 2, 389, 1876, 3, 2, 2, 2, 391, 1886, 3, 2, 2, 2, 393, 1898, 3, 2, 2, 2, 395, 1906, 3, 2, 2, 2, 397, 1913, 3, 2, 2, 2, 399, 1923, 3, 2, 2, 2, 401, 1929, 3, 2, 2, 2, 403, 1935, 3, 2, 2, 2, 405, 1940, 3, 2, 2, 2, 407, 1943, 3, 2, 2, 2, 409, 1949, 3, 2, 2, 2, 411, 1955, 3, 2, 2, 2, 413, 1962, 3, 2, 2, 2, 415, 1972, 3, 2, 2, 2, 417, 1979, 3, 2, 2, 2, 419, 1986, 3, 2, 2, 2, 421, 1992, 3, 2, 2, 2, 423, 1997, 3, 2, 2, 2, 425, 2003, 3, 2, 2, 2, 427, 2010, 3, 2, 2, 2, 429, 2018, 3, 2, 2, 2, 431, 2023, 3, 2, 2, 2, 433, 2028, 3, 2, 2, 2, 435, 2035, 3, 2, 2, 2, 437, 2045, 3, 2, 2, 2, 439, 2052, 3, 2, 2, 2, 441, 2059, 3, 2, 2, 2, 443, 2062, 3, 2, 2, 2, 445, 2068, 3, 2, 2, 2, 447, 2081, 3, 2, 2, 2, 449, 2101, 3, 2, 2, 2, 451, 2124, 3, 2, 2, 2, 453, 2141, 3, 2, 2, 2, 455, 2150, 3, 2, 2, 2, 457, 2186, 3, 2, 2, 2, 459, 2192, 3, 2, 2, 2, 461, 2209, 3, 2, 2, 2, 463, 2223, 3, 2, 2, 2, 465, 2240, 3, 2, 2, 2, 467, 2267, 3, 2, 2, 2, 469, 2273, 3, 2, 2, 2, 471, 2294, 3, 2, 2, 2, 473, 2314, 3, 2, 2, 2, 475, 2335, 3, 2, 2, 2, 477, 2349, 3, 2, 2, 2, 479, 2359, 3, 2, 2, 2, 481, 2367, 3, 2, 2, 2, 483, 2385, 3, 2, 2, 2, 485, 2409, 3, 2, 2, 2, 487, 2424, 3, 2, 2, 2, 489, 2445, 3, 2, 2, 2, 491, 2454, 3, 2, 2, 2, 493, 2466, 3, 2, 2, 2, 495, 2480, 3, 2, 2, 2, 497, 2495, 3, 2, 2, 2, 499, 2514, 3, 2, 2, 2, 501, 2522, 3, 2, 2, 2, 503, 2527, 3, 2, 2, 2, 505, 2539, 3, 2, 2, 2, 507, 2544, 3, 2, 2, 2, 509, 2561, 3, 2, 2, 2, 511, 2566, 3, 2, 2, 2, 513, 2569, 3, 2, 2, 2, 515, 2571, 3, 2, 2, 2, 517, 2573, 3, 2, 2, 2, 519, 2575, 3, 2, 2, 2, 521, 2577, 3, 2, 2, 2, 523, 2579, 3, 2, 2, 2, 525, 2581, 3, 2, 2, 2, 527, 2584, 3, 2, 2, 2, 529, 2593, 3, 2, 2, 2, 531, 2609, 3, 2, 2, 2, 533, 2613, 3, 2, 2, 2, 535, 2623, 3, 2, 2, 2, 537, 2626, 3, 2, 2, 2, 539, 2639, 3, 2, 2, 2, 541, 2652, 3, 2, 2, 2, 543, 2665, 3, 2, 2, 2, 545, 2667, 3, 2, 2, 2, 547, 548, 7, 85, 2, 2, 548, 549, 7, 71, 2, 2, 549, 550, 7, 67, 2, 2, 550, 551, 7, 84, 2, 2, 551, 552, 7, 69, 2, 2, 552, 553, 7, 74, 2, 2, 553, 4, 3, 2, 2, 2, 554, 555, 7, 72, 2, 2, 555, 556, 7, 84, 2, 2, 556, 557, 7, 81, 2, 2, 557, 558, 7, 79, 2, 2, 558, 6, 3, 2, 2, 2, 559, 560, 7, 89, 2, 2, 560, 561, 7, 74, 2, 2, 561, 562, 7, 71, 2, 2, 562, 563, 7, 84, 2, 2, 563, 564, 7, 71, 2, 2, 564, 8, 3, 2, 2, 2, 565, 566, 7, 72, 2, 2, 566, 567, 7, 75, 2, 2, 567, 568, 7, 71, 2, 2, 568, 569, 7, 78, 2, 2, 569, 570, 7, 70, 2, 2, 570, 571, 7, 85, 2, 2, 571, 10, 3, 2, 2, 2, 572, 573, 7, 84, 2, 2, 573, 574, 7, 71, 2, 2, 574, 575, 7, 80, 2, 2, 575, 576, 7, 67, 2, 2, 576, 577, 7, 79, 2, 2, 577, 578, 7, 71, 2, 2, 578, 12, 3, 2, 2, 2, 579, 580, 7, 85, 2, 2, 580, 581, 7, 86, 2, 2, 581, 582, 7, 67, 2, 2, 582, 583, 7, 86, 2, 2, 583, 584, 7, 85, 2, 2, 584, 14, 3, 2, 2, 2, 585, 586, 7, 70, 2, 2, 586, 587, 7, 71, 2, 2, 587, 588, 7, 70, 2, 2, 588, 589, 7, 87, 2, 2, 589, 590, 7, 82, 2, 2, 590, 16, 3, 2, 2, 2, 591, 592, 7, 85, 2, 2, 592, 593, 7, 81, 2, 2, 593, 594, 7, 84, 2, 2, 594, 595, 7, 86, 2, 2, 595, 18, 3, 2, 2, 2, 596, 597, 7, 71, 2, 2, 597, 598, 7, 88, 2, 2, 598, 599, 7, 67, 2, 2, 599, 600, 7, 78, 2, 2, 600, 20, 3, 2, 2, 2, 601, 602, 7, 74, 2, 2, 602, 603, 7, 71, 2, 2, 603, 604, 7, 67, 2, 2, 604, 605, 7, 70, 2, 2, 605, 22, 3, 2, 2, 2, 606, 607, 7, 86, 2, 2, 607, 608, 7, 81, 2, 2, 608, 609, 7, 82, 2, 2, 609, 24, 3, 2, 2, 2, 610, 611, 7, 84, 2, 2, 611, 612, 7, 67, 2, 2, 612, 613, 7, 84, 2, 2, 613, 614, 7, 71, 2, 2, 614, 26, 3, 2, 2, 2, 615, 616, 7, 82, 2, 2, 616, 617, 7, 67, 2, 2, 617, 618, 7, 84, 2, 2, 618, 619, 7, 85, 2, 2, 619, 620, 7, 71, 2, 2, 620, 28, 3, 2, 2, 2, 621, 622, 7, 77, 2, 2, 622, 623, 7, 79, 2, 2, 623, 624, 7, 71, 2, 2, 624, 625, 7, 67, 2, 2, 625, 626, 7, 80, 2, 2, 626, 627, 7, 85, 2, 2, 627, 30, 3, 2, 2, 2, 628, 629, 7, 67, 2, 2, 629, 630, 7, 70, 2, 2, 630, 32, 3, 2, 2, 2, 631, 632, 7, 67, 2, 2, 632, 633, 7, 85, 2, 2, 633, 34, 3, 2, 2, 2, 634, 635, 7, 68, 2, 2, 635, 636, 7, 91, 2, 2, 636, 36, 3, 2, 2, 2, 637, 638, 7, 85, 2, 2, 638, 639, 7, 81, 2, 2, 639, 640, 7, 87, 2, 2, 640, 641, 7, 84, 2, 2, 641, 642, 7, 69, 2, 2, 642, 643, 7, 71, 2, 2, 643, 38, 3, 2, 2, 2, 644, 645, 7, 75, 2, 2, 645, 646, 7, 80, 2, 2, 646, 647, 7, 70, 2, 2, 647, 648, 7, 71, 2, 2, 648, 649, 7, 90, 2, 2, 649, 40, 3, 2, 2, 2, 650, 651, 7, 70, 2, 2, 651, 42, 3, 2, 2, 2, 652, 653, 7, 70, 2, 2, 653, 654, 7, 71, 2, 2, 654, 655, 7, 85, 2, 2, 655, 656, 7, 69, 2, 2, 656, 44, 3, 2, 2, 2, 657, 658, 7, 85, 2, 2, 658, 659, 7, 81, 2, 2, 659, 660, 7, 84, 2, 2, 660, 661, 7, 86, 2, 2, 661, 662, 7, 68, 2, 2, 662, 663, 7, 91, 2, 2, 663, 46, 3, 2, 2, 2, 664, 665, 7, 67, 2, 2, 665, 666, 7, 87, 2, 2, 666, 667, 7, 86, 2, 2, 667, 668, 7, 81, 2, 2, 668, 48, 3, 2, 2, 2, 669, 670, 7, 85, 2, 2, 670, 671, 7, 86, 2, 2, 671, 672, 7, 84, 2, 2, 672, 50, 3, 2, 2, 2, 673, 674, 7, 75, 2, 2, 674, 675, 7, 82, 2, 2, 675, 52, 3, 2, 2, 2, 676, 677, 7, 80, 2, 2, 677, 678, 7, 87, 2, 2, 678, 679, 7, 79, 2, 2, 679, 54, 3, 2, 2, 2, 680, 681, 7, 77, 2, 2, 681, 682, 7, 71, 2, 2, 682, 683, 7, 71, 2, 2, 683, 684, 7, 82, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 79, 2, 2, 686, 687, 7, 82, 2, 2, 687, 688, 7, 86, 2, 2, 688, 689, 7, 91, 2, 2, 689, 56, 3, 2, 2, 2, 690, 691, 7, 69, 2, 2, 691, 692, 7, 81, 2, 2, 692, 693, 7, 80, 2, 2, 693, 694, 7, 85, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 87, 2, 2, 697, 698, 7, 86, 2, 2, 698, 699, 7, 75, 2, 2, 699, 700, 7, 88, 2, 2, 700, 701, 7, 71, 2, 2, 701, 58, 3, 2, 2, 2, 702, 703, 7, 70, 2, 2, 703, 704, 7, 71, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 87, 2, 2, 706, 707, 7, 82, 2, 2, 707, 708, 7, 97, 2, 2, 708, 709, 7, 85, 2, 2, 709, 710, 7, 82, 2, 2, 710, 711, 7, 78, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 86, 2, 2, 713, 714, 7, 88, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 78, 2, 2, 716, 717, 7, 87, 2, 2, 717, 718, 7, 71, 2, 2, 718, 719, 7, 85, 2, 2, 719, 60, 3, 2, 2, 2, 720, 721, 7, 82, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 86, 2, 2, 724, 725, 7, 75, 2, 2, 725, 726, 7, 86, 2, 2, 726, 727, 7, 75, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 80, 2, 2, 729, 730, 7, 85, 2, 2, 730, 62, 3, 2, 2, 2, 731, 732, 7, 67, 2, 2, 732, 733, 7, 78, 2, 2, 733, 734, 7, 78, 2, 2, 734, 735, 7, 80, 2, 2, 735, 736, 7, 87, 2, 2, 736, 737, 7, 79, 2, 2, 737, 64, 3, 2, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 71, 2, 2, 740, 741, 7, 78, 2, 2, 741, 742, 7, 75, 2, 2, 742, 743, 7, 79, 2, 2, 743, 66, 3, 2, 2, 2, 744, 745, 7, 69, 2, 2, 745, 746, 7, 71, 2, 2, 746, 747, 7, 80, 2, 2, 747, 748, 7, 86, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 75, 2, 2, 751, 752, 7, 70, 2, 2, 752, 753, 7, 85, 2, 2, 753, 68, 3, 2, 2, 2, 754, 755, 7, 75, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 71, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 67, 2, 2, 759, 760, 7, 86, 2, 2, 760, 761, 7, 75, 2, 2, 761, 762, 7, 81, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 85, 2, 2, 764, 70, 3, 2, 2, 2, 765, 766, 7, 70, 2, 2, 766, 767, 7, 75, 2, 2, 767, 768, 7, 85, 2, 2, 768, 769, 7, 86, 2, 2, 769, 770, 7, 67, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 69, 2, 2, 772, 773, 7, 71, 2, 2, 773, 774, 7, 97, 2, 2, 774, 775, 7, 86, 2, 2, 775, 776, 7, 91, 2, 2, 776, 777, 7, 82, 2, 2, 777, 778, 7, 71, 2, 2, 778, 72, 3, 2, 2, 2, 779, 780, 7, 80, 2, 2, 780, 781, 7, 87, 2, 2, 781, 782, 7, 79, 2, 2, 782, 783, 7, 68, 2, 2, 783, 784, 7, 71, 2, 2, 784, 785, 7, 84, 2, 2, 785, 786, 7, 97, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 72, 2, 2, 788, 789, 7, 97, 2, 2, 789, 790, 7, 86, 2, 2, 790, 791, 7, 84, 2, 2, 791, 792, 7, 71, 2, 2, 792, 793, 7, 71, 2, 2, 793, 794, 7, 85, 2, 2, 794, 74, 3, 2, 2, 2, 795, 796, 7, 85, 2, 2, 796, 797, 7, 74, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 800, 7, 73, 2, 2, 800, 801, 7, 78, 2, 2, 801, 802, 7, 71, 2, 2, 802, 803, 7, 97, 2, 2, 803, 804, 7, 85, 2, 2, 804, 805, 7, 75, 2, 2, 805, 806, 7, 92, 2, 2, 806, 807, 7, 71, 2, 2, 807, 76, 3, 2, 2, 2, 808, 809, 7, 85, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 79, 2, 2, 811, 812, 7, 82, 2, 2, 812, 813, 7, 78, 2, 2, 813, 814, 7, 71, 2, 2, 814, 815, 7, 97, 2, 2, 815, 816, 7, 85, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 92, 2, 2, 818, 819, 7, 71, 2, 2, 819, 78, 3, 2, 2, 2, 820, 821, 7, 81, 2, 2, 821, 822, 7, 87, 2, 2, 822, 823, 7, 86, 2, 2, 823, 824, 7, 82, 2, 2, 824, 825, 7, 87, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 97, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 72, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 71, 2, 2, 831, 832, 7, 84, 2, 2, 832, 80, 3, 2, 2, 2, 833, 834, 7, 86, 2, 2, 834, 835, 7, 75, 2, 2, 835, 836, 7, 79, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 97, 2, 2, 838, 839, 7, 70, 2, 2, 839, 840, 7, 71, 2, 2, 840, 841, 7, 69, 2, 2, 841, 842, 7, 67, 2, 2, 842, 843, 7, 91, 2, 2, 843, 82, 3, 2, 2, 2, 844, 845, 7, 67, 2, 2, 845, 846, 7, 80, 2, 2, 846, 847, 7, 81, 2, 2, 847, 848, 7, 79, 2, 2, 848, 849, 7, 67, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 91, 2, 2, 851, 852, 7, 97, 2, 2, 852, 853, 7, 84, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 71, 2, 2, 856, 84, 3, 2, 2, 2, 857, 858, 7, 86, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 79, 2, 2, 860, 861, 7, 71, 2, 2, 861, 862, 7, 97, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 71, 2, 2, 865, 866, 7, 78, 2, 2, 866, 867, 7, 70, 2, 2, 867, 86, 3, 2, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 75, 2, 2, 870, 871, 7, 79, 2, 2, 871, 872, 7, 71, 2, 2, 872, 873, 7, 97, 2, 2, 873, 874, 7, 92, 2, 2, 874, 875, 7, 81, 2, 2, 875, 876, 7, 80, 2, 2, 876, 877, 7, 71, 2, 2, 877, 88, 3, 2, 2, 2, 878, 879, 7, 86, 2, 2, 879, 880, 7, 84, 2, 2, 880, 881, 7, 67, 2, 2, 881, 882, 7, 75, 2, 2, 882, 883, 7, 80, 2, 2, 883, 884, 7, 75, 2, 2, 884, 885, 7, 80, 2, 2, 885, 886, 7, 73, 2, 2, 886, 887, 7, 97, 2, 2, 887, 888, 7, 70, 2, 2, 888, 889, 7, 67, 2, 2, 889, 890, 7, 86, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 97, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 92, 2, 2, 895, 896, 7, 71, 2, 2, 896, 90, 3, 2, 2, 2, 897, 898, 7, 67, 2, 2, 898, 899, 7, 80, 2, 2, 899, 900, 7, 81, 2, 2, 900, 901, 7, 79, 2, 2, 901, 902, 7, 67, 2, 2, 902, 903, 7, 78, 2, 2, 903, 904, 7, 91, 2, 2, 904, 905, 7, 97, 2, 2, 905, 906, 7, 85, 2, 2, 906, 907, 7, 69, 2, 2, 907, 908, 7, 81, 2, 2, 908, 909, 7, 84, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 97, 2, 2, 911, 912, 7, 86, 2, 2, 912, 913, 7, 74, 2, 2, 913, 914, 7, 84, 2, 2, 914, 915, 7, 71, 2, 2, 915, 916, 7, 85, 2, 2, 916, 917, 7, 74, 2, 2, 917, 918, 7, 81, 2, 2, 918, 919, 7, 78, 2, 2, 919, 920, 7, 70, 2, 2, 920, 92, 3, 2, 2, 2, 921, 922, 7, 69, 2, 2, 922, 923, 7, 67, 2, 2, 923, 924, 7, 85, 2, 2, 924, 925, 7, 71, 2, 2, 925, 94, 3, 2, 2, 2, 926, 927, 7, 75, 2, 2, 927, 928, 7, 80, 2, 2, 928, 96, 3, 2, 2, 2, 929, 930, 7, 80, 2, 2, 930, 931, 7, 81, 2, 2, 931, 932, 7, 86, 2, 2, 932, 98, 3, 2, 2, 2, 933, 934, 7, 81, 2, 2, 934, 935, 7, 84, 2, 2, 935, 100, 3, 2, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 80, 2, 2, 938, 939, 7, 70, 2, 2, 939, 102, 3, 2, 2, 2, 940, 941, 7, 90, 2, 2, 941, 942, 7, 81, 2, 2, 942, 943, 7, 84, 2, 2, 943, 104, 3, 2, 2, 2, 944, 945, 7, 86, 2, 2, 945, 946, 7, 84, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 71, 2, 2, 948, 106, 3, 2, 2, 2, 949, 950, 7, 72, 2, 2, 950, 951, 7, 67, 2, 2, 951, 952, 7, 78, 2, 2, 952, 953, 7, 85, 2, 2, 953, 954, 7, 71, 2, 2, 954, 108, 3, 2, 2, 2, 955, 956, 7, 84, 2, 2, 956, 957, 7, 71, 2, 2, 957, 958, 7, 73, 2, 2, 958, 959, 7, 71, 2, 2, 959, 960, 7, 90, 2, 2, 960, 961, 7, 82, 2, 2, 961, 110, 3, 2, 2, 2, 962, 963, 7, 70, 2, 2, 963, 964, 7, 67, 2, 2, 964, 965, 7, 86, 2, 2, 965, 966, 7, 71, 2, 2, 966, 967, 7, 86, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 79, 2, 2, 969, 970, 7, 71, 2, 2, 970, 112, 3, 2, 2, 2, 971, 972, 7, 75, 2, 2, 972, 973, 7, 80, 2, 2, 973, 974, 7, 86, 2, 2, 974, 975, 7, 71, 2, 2, 975, 976, 7, 84, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 67, 2, 2, 978, 979, 7, 78, 2, 2, 979, 114, 3, 2, 2, 2, 980, 981, 7, 79, 2, 2, 981, 982, 7, 75, 2, 2, 982, 983, 7, 69, 2, 2, 983, 984, 7, 84, 2, 2, 984, 985, 7, 81, 2, 2, 985, 986, 7, 85, 2, 2, 986, 987, 7, 71, 2, 2, 987, 988, 7, 69, 2, 2, 988, 989, 7, 81, 2, 2, 989, 990, 7, 80, 2, 2, 990, 991, 7, 70, 2, 2, 991, 116, 3, 2, 2, 2, 992, 993, 7, 79, 2, 2, 993, 994, 7, 75, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 78, 2, 2, 996, 997, 7, 75, 2, 2, 997, 998, 7, 85, 2, 2, 998, 999, 7, 71, 2, 2, 999, 1000, 7, 69, 2, 2, 1000, 1001, 7, 81, 2, 2, 1001, 1002, 7, 80, 2, 2, 1002, 1003, 7, 70, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 85, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 81, 2, 2, 1008, 1009, 7, 80, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 120, 3, 2, 2, 2, 1011, 1012, 7, 79, 2, 2, 1012, 1013, 7, 75, 2, 2, 1013, 1014, 7, 80, 2, 2, 1014, 1015, 7, 87, 2, 2, 1015, 1016, 7, 86, 2, 2, 1016, 1017, 7, 71, 2, 2, 1017, 122, 3, 2, 2, 2, 1018, 1019, 7, 74, 2, 2, 1019, 1020, 7, 81, 2, 2, 1020, 1021, 7, 87, 2, 2, 1021, 1022, 7, 84, 2, 2, 1022, 124, 3, 2, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 1025, 7, 67, 2, 2, 1025, 1026, 7, 91, 2, 2, 1026, 126, 3, 2, 2, 2, 1027, 1028, 7, 89, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 77, 2, 2, 1031, 128, 3, 2, 2, 2, 1032, 1033, 7, 79, 2, 2, 1033, 1034, 7, 81, 2, 2, 1034, 1035, 7, 80, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 1037, 7, 74, 2, 2, 1037, 130, 3, 2, 2, 2, 1038, 1039, 7, 83, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 67, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 86, 2, 2, 1043, 1044, 7, 71, 2, 2, 1044, 1045, 7, 84, 2, 2, 1045, 132, 3, 2, 2, 2, 1046, 1047, 7, 91, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 67, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 85, 2, 2, 1052, 1053, 7, 71, 2, 2, 1053, 1054, 7, 69, 2, 2, 1054, 1055, 7, 81, 2, 2, 1055, 1056, 7, 80, 2, 2, 1056, 1057, 7, 70, 2, 2, 1057, 1058, 7, 97, 2, 2, 1058, 1059, 7, 79, 2, 2, 1059, 1060, 7, 75, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 81, 2, 2, 1063, 1064, 7, 85, 2, 2, 1064, 1065, 7, 71, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 81, 2, 2, 1067, 1068, 7, 80, 2, 2, 1068, 1069, 7, 70, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 79, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 80, 2, 2, 1073, 1074, 7, 87, 2, 2, 1074, 1075, 7, 86, 2, 2, 1075, 1076, 7, 71, 2, 2, 1076, 1077, 7, 97, 2, 2, 1077, 1078, 7, 79, 2, 2, 1078, 1079, 7, 75, 2, 2, 1079, 1080, 7, 69, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 81, 2, 2, 1082, 1083, 7, 85, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 69, 2, 2, 1085, 1086, 7, 81, 2, 2, 1086, 1087, 7, 80, 2, 2, 1087, 1088, 7, 70, 2, 2, 1088, 138, 3, 2, 2, 2, 1089, 1090, 7, 79, 2, 2, 1090, 1091, 7, 75, 2, 2, 1091, 1092, 7, 80, 2, 2, 1092, 1093, 7, 87, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 1096, 7, 97, 2, 2, 1096, 1097, 7, 85, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 69, 2, 2, 1099, 1100, 7, 81, 2, 2, 1100, 1101, 7, 80, 2, 2, 1101, 1102, 7, 70, 2, 2, 1102, 140, 3, 2, 2, 2, 1103, 1104, 7, 74, 2, 2, 1104, 1105, 7, 81, 2, 2, 1105, 1106, 7, 87, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 97, 2, 2, 1108, 1109, 7, 79, 2, 2, 1109, 1110, 7, 75, 2, 2, 1110, 1111, 7, 69, 2, 2, 1111, 1112, 7, 84, 2, 2, 1112, 1113, 7, 81, 2, 2, 1113, 1114, 7, 85, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 81, 2, 2, 1117, 1118, 7, 80, 2, 2, 1118, 1119, 7, 70, 2, 2, 1119, 142, 3, 2, 2, 2, 1120, 1121, 7, 74, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 87, 2, 2, 1123, 1124, 7, 84, 2, 2, 1124, 1125, 7, 97, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 69, 2, 2, 1128, 1129, 7, 81, 2, 2, 1129, 1130, 7, 80, 2, 2, 1130, 1131, 7, 70, 2, 2, 1131, 144, 3, 2, 2, 2, 1132, 1133, 7, 74, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 87, 2, 2, 1135, 1136, 7, 84, 2, 2, 1136, 1137, 7, 97, 2, 2, 1137, 1138, 7, 79, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 87, 2, 2, 1141, 1142, 7, 86, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 146, 3, 2, 2, 2, 1144, 1145, 7, 70, 2, 2, 1145, 1146, 7, 67, 2, 2, 1146, 1147, 7, 91, 2, 2, 1147, 1148, 7, 97, 2, 2, 1148, 1149, 7, 79, 2, 2, 1149, 1150, 7, 75, 2, 2, 1150, 1151, 7, 69, 2, 2, 1151, 1152, 7, 84, 2, 2, 1152, 1153, 7, 81, 2, 2, 1153, 1154, 7, 85, 2, 2, 1154, 1155, 7, 71, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 80, 2, 2, 1158, 1159, 7, 70, 2, 2, 1159, 148, 3, 2, 2, 2, 1160, 1161, 7, 70, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 91, 2, 2, 1163, 1164, 7, 97, 2, 2, 1164, 1165, 7, 85, 2, 2, 1165, 1166, 7, 71, 2, 2, 1166, 1167, 7, 69, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 80, 2, 2, 1169, 1170, 7, 70, 2, 2, 1170, 150, 3, 2, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 67, 2, 2, 1173, 1174, 7, 91, 2, 2, 1174, 1175, 7, 97, 2, 2, 1175, 1176, 7, 79, 2, 2, 1176, 1177, 7, 75, 2, 2, 1177, 1178, 7, 80, 2, 2, 1178, 1179, 7, 87, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 1181, 7, 71, 2, 2, 1181, 152, 3, 2, 2, 2, 1182, 1183, 7, 70, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 91, 2, 2, 1185, 1186, 7, 97, 2, 2, 1186, 1187, 7, 74, 2, 2, 1187, 1188, 7, 81, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 84, 2, 2, 1190, 154, 3, 2, 2, 2, 1191, 1192, 7, 91, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 84, 2, 2, 1195, 1196, 7, 97, 2, 2, 1196, 1197, 7, 79, 2, 2, 1197, 1198, 7, 81, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 74, 2, 2, 1201, 156, 3, 2, 2, 2, 1202, 1203, 7, 70, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 86, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 79, 2, 2, 1207, 1208, 7, 81, 2, 2, 1208, 1209, 7, 70, 2, 2, 1209, 1210, 7, 71, 2, 2, 1210, 1211, 7, 78, 2, 2, 1211, 158, 3, 2, 2, 2, 1212, 1213, 7, 78, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 81, 2, 2, 1215, 1216, 7, 77, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 82, 2, 2, 1218, 160, 3, 2, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 67, 2, 2, 1221, 1222, 7, 88, 2, 2, 1222, 1223, 7, 71, 2, 2, 1223, 1224, 7, 70, 2, 2, 1224, 1225, 7, 85, 2, 2, 1225, 1226, 7, 71, 2, 2, 1226, 1227, 7, 67, 2, 2, 1227, 1228, 7, 84, 2, 2, 1228, 1229, 7, 69, 2, 2, 1229, 1230, 7, 74, 2, 2, 1230, 162, 3, 2, 2, 2, 1231, 1232, 7, 75, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 164, 3, 2, 2, 2, 1235, 1236, 7, 75, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 71, 2, 2, 1239, 1240, 7, 73, 2, 2, 1240, 1241, 7, 71, 2, 2, 1241, 1242, 7, 84, 2, 2, 1242, 166, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 81, 2, 2, 1245, 1246, 7, 87, 2, 2, 1246, 1247, 7, 68, 2, 2, 1247, 1248, 7, 78, 2, 2, 1248, 1249, 7, 71, 2, 2, 1249, 168, 3, 2, 2, 2, 1250, 1251, 7, 78, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 1254, 7, 73, 2, 2, 1254, 170, 3, 2, 2, 2, 1255, 1256, 7, 72, 2, 2, 1256, 1257, 7, 78, 2, 2, 1257, 1258, 7, 81, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 172, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 84, 2, 2, 1264, 1265, 7, 75, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 73, 2, 2, 1267, 174, 3, 2, 2, 2, 1268, 1269, 7, 68, 2, 2, 1269, 1270, 7, 81, 2, 2, 1270, 1271, 7, 81, 2, 2, 1271, 1272, 7, 78, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 67, 2, 2, 1274, 1275, 7, 80, 2, 2, 1275, 176, 3, 2, 2, 2, 1276, 1277, 7, 126, 2, 2, 1277, 178, 3, 2, 2, 2, 1278, 1279, 7, 46, 2, 2, 1279, 180, 3, 2, 2, 2, 1280, 1281, 7, 48, 2, 2, 1281, 182, 3, 2, 2, 2, 1282, 1283, 7, 63, 2, 2, 1283, 184, 3, 2, 2, 2, 1284, 1285, 7, 64, 2, 2, 1285, 186, 3, 2, 2, 2, 1286, 1287, 7, 62, 2, 2, 1287, 188, 3, 2, 2, 2, 1288, 1289, 7, 62, 2, 2, 1289, 1290, 7, 63, 2, 2, 1290, 190, 3, 2, 2, 2, 1291, 1292, 7, 64, 2, 2, 1292, 1293, 7, 63, 2, 2, 1293, 192, 3, 2, 2, 2, 1294, 1295, 7, 35, 2, 2, 1295, 1296, 7, 63, 2, 2, 1296, 194, 3, 2, 2, 2, 1297, 1298, 7, 45, 2, 2, 1298, 196, 3, 2, 2, 2, 1299, 1300, 7, 47, 2, 2, 1300, 198, 3, 2, 2, 2, 1301, 1302, 7, 44, 2, 2, 1302, 200, 3, 2, 2, 2, 1303, 1304, 7, 49, 2, 2, 1304, 202, 3, 2, 2, 2, 1305, 1306, 7, 39, 2, 2, 1306, 204, 3, 2, 2, 2, 1307, 1308, 7, 35, 2, 2, 1308, 206, 3, 2, 2, 2, 1309, 1310, 7, 60, 2, 2, 1310, 208, 3, 2, 2, 2, 1311, 1312, 7, 42, 2, 2, 1312, 210, 3, 2, 2, 2, 1313, 1314, 7, 43, 2, 2, 1314, 212, 3, 2, 2, 2, 1315, 1316, 7, 93, 2, 2, 1316, 214, 3, 2, 2, 2, 1317, 1318, 7, 95, 2, 2, 1318, 216, 3, 2, 2, 2, 1319, 1320, 7, 41, 2, 2, 1320, 218, 3, 2, 2, 2, 1321, 1322, 7, 36, 2, 2, 1322, 220, 3, 2, 2, 2, 1323, 1324, 7, 98, 2, 2, 1324, 222, 3, 2, 2, 2, 1325, 1326, 7, 128, 2, 2, 1326, 224, 3, 2, 2, 2, 1327, 1328, 7, 40, 2, 2, 1328, 226, 3, 2, 2, 2, 1329, 1330, 7, 96, 2, 2, 1330, 228, 3, 2, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 88, 2, 2, 1333, 1334, 7, 73, 2, 2, 1334, 230, 3, 2, 2, 2, 1335, 1336, 7, 69, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 87, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 86, 2, 2, 1340, 232, 3, 2, 2, 2, 1341, 1342, 7, 70, 2, 2, 1342, 1343, 7, 75, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 75, 2, 2, 1346, 1347, 7, 80, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 97, 2, 2, 1350, 1351, 7, 69, 2, 2, 1351, 1352, 7, 81, 2, 2, 1352, 1353, 7, 87, 2, 2, 1353, 1354, 7, 80, 2, 2, 1354, 1355, 7, 86, 2, 2, 1355, 234, 3, 2, 2, 2, 1356, 1357, 7, 71, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 86, 2, 2, 1359, 1360, 7, 70, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 236, 3, 2, 2, 2, 1362, 1363, 7, 71, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 70, 2, 2, 1366, 1367, 7, 69, 2, 2, 1367, 1368, 7, 97, 2, 2, 1368, 1369, 7, 71, 2, 2, 1369, 1370, 7, 84, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 81, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 238, 3, 2, 2, 2, 1374, 1375, 7, 79, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 90, 2, 2, 1377, 240, 3, 2, 2, 2, 1378, 1379, 7, 79, 2, 2, 1379, 1380, 7, 71, 2, 2, 1380, 1381, 7, 67, 2, 2, 1381, 1382, 7, 80, 2, 2, 1382, 242, 3, 2, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 71, 2, 2, 1385, 1386, 7, 70, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 67, 2, 2, 1388, 1389, 7, 80, 2, 2, 1389, 244, 3, 2, 2, 2, 1390, 1391, 7, 79, 2, 2, 1391, 1392, 7, 75, 2, 2, 1392, 1393, 7, 80, 2, 2, 1393, 246, 3, 2, 2, 2, 1394, 1395, 7, 79, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 70, 2, 2, 1397, 1398, 7, 71, 2, 2, 1398, 248, 3, 2, 2, 2, 1399, 1400, 7, 84, 2, 2, 1400, 1401, 7, 67, 2, 2, 1401, 1402, 7, 80, 2, 2, 1402, 1403, 7, 73, 2, 2, 1403, 1404, 7, 71, 2, 2, 1404, 250, 3, 2, 2, 2, 1405, 1406, 7, 85, 2, 2, 1406, 1407, 7, 86, 2, 2, 1407, 1408, 7, 70, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 1410, 7, 88, 2, 2, 1410, 252, 3, 2, 2, 2, 1411, 1412, 7, 85, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 70, 2, 2, 1414, 1415, 7, 71, 2, 2, 1415, 1416, 7, 88, 2, 2, 1416, 1417, 7, 82, 2, 2, 1417, 254, 3, 2, 2, 2, 1418, 1419, 7, 85, 2, 2, 1419, 1420, 7, 87, 2, 2, 1420, 1421, 7, 79, 2, 2, 1421, 256, 3, 2, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 87, 2, 2, 1424, 1425, 7, 79, 2, 2, 1425, 1426, 7, 85, 2, 2, 1426, 1427, 7, 83, 2, 2, 1427, 258, 3, 2, 2, 2, 1428, 1429, 7, 88, 2, 2, 1429, 1430, 7, 67, 2, 2, 1430, 1431, 7, 84, 2, 2, 1431, 1432, 7, 97, 2, 2, 1432, 1433, 7, 85, 2, 2, 1433, 1434, 7, 67, 2, 2, 1434, 1435, 7, 79, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 260, 3, 2, 2, 2, 1437, 1438, 7, 88, 2, 2, 1438, 1439, 7, 67, 2, 2, 1439, 1440, 7, 84, 2, 2, 1440, 1441, 7, 97, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 81, 2, 2, 1443, 1444, 7, 82, 2, 2, 1444, 262, 3, 2, 2, 2, 1445, 1446, 7, 85, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 70, 2, 2, 1448, 1449, 7, 70, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 88, 2, 2, 1451, 1452, 7, 97, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 1454, 7, 67, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 82, 2, 2, 1456, 264, 3, 2, 2, 2, 1457, 1458, 7, 85, 2, 2, 1458, 1459, 7, 86, 2, 2, 1459, 1460, 7, 70, 2, 2, 1460, 1461, 7, 70, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 88, 2, 2, 1463, 1464, 7, 97, 2, 2, 1464, 1465, 7, 82, 2, 2, 1465, 1466, 7, 81, 2, 2, 1466, 1467, 7, 82, 2, 2, 1467, 266, 3, 2, 2, 2, 1468, 1469, 7, 82, 2, 2, 1469, 1470, 7, 71, 2, 2, 1470, 1471, 7, 84, 2, 2, 1471, 1472, 7, 69, 2, 2, 1472, 1473, 7, 71, 2, 2, 1473, 1474, 7, 80, 2, 2, 1474, 1475, 7, 86, 2, 2, 1475, 1476, 7, 75, 2, 2, 1476, 1477, 7, 78, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 72, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 84, 2, 2, 1482, 1483, 7, 85, 2, 2, 1483, 1484, 7, 86, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 78, 2, 2, 1486, 1487, 7, 67, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 86, 2, 2, 1489, 272, 3, 2, 2, 2, 1490, 1491, 7, 78, 2, 2, 1491, 1492, 7, 75, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 1494, 7, 86, 2, 2, 1494, 274, 3, 2, 2, 2, 1495, 1496, 7, 88, 2, 2, 1496, 1497, 7, 67, 2, 2, 1497, 1498, 7, 78, 2, 2, 1498, 1499, 7, 87, 2, 2, 1499, 1500, 7, 71, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 276, 3, 2, 2, 2, 1502, 1503, 7, 71, 2, 2, 1503, 1504, 7, 67, 2, 2, 1504, 1505, 7, 84, 2, 2, 1505, 1506, 7, 78, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 71, 2, 2, 1508, 1509, 7, 85, 2, 2, 1509, 1510, 7, 86, 2, 2, 1510, 278, 3, 2, 2, 2, 1511, 1512, 7, 71, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 84, 2, 2, 1514, 1515, 7, 78, 2, 2, 1515, 1516, 7, 75, 2, 2, 1516, 1517, 7, 71, 2, 2, 1517, 1518, 7, 85, 2, 2, 1518, 1519, 7, 86, 2, 2, 1519, 1520, 7, 97, 2, 2, 1520, 1521, 7, 86, 2, 2, 1521, 1522, 7, 75, 2, 2, 1522, 1523, 7, 79, 2, 2, 1523, 1524, 7, 71, 2, 2, 1524, 280, 3, 2, 2, 2, 1525, 1526, 7, 78, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 85, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 282, 3, 2, 2, 2, 1532, 1533, 7, 78, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 86, 2, 2, 1535, 1536, 7, 71, 2, 2, 1536, 1537, 7, 85, 2, 2, 1537, 1538, 7, 86, 2, 2, 1538, 1539, 7, 97, 2, 2, 1539, 1540, 7, 86, 2, 2, 1540, 1541, 7, 75, 2, 2, 1541, 1542, 7, 79, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 284, 3, 2, 2, 2, 1544, 1545, 7, 82, 2, 2, 1545, 1546, 7, 71, 2, 2, 1546, 1547, 7, 84, 2, 2, 1547, 1548, 7, 97, 2, 2, 1548, 1549, 7, 70, 2, 2, 1549, 1550, 7, 67, 2, 2, 1550, 1551, 7, 91, 2, 2, 1551, 286, 3, 2, 2, 2, 1552, 1553, 7, 82, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 84, 2, 2, 1555, 1556, 7, 97, 2, 2, 1556, 1557, 7, 74, 2, 2, 1557, 1558, 7, 81, 2, 2, 1558, 1559, 7, 87, 2, 2, 1559, 1560, 7, 84, 2, 2, 1560, 288, 3, 2, 2, 2, 1561, 1562, 7, 82, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 84, 2, 2, 1564, 1565, 7, 97, 2, 2, 1565, 1566, 7, 79, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 80, 2, 2, 1568, 1569, 7, 87, 2, 2, 1569, 1570, 7, 86, 2, 2, 1570, 1571, 7, 71, 2, 2, 1571, 290, 3, 2, 2, 2, 1572, 1573, 7, 82, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 1576, 7, 97, 2, 2, 1576, 1577, 7, 85, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 69, 2, 2, 1579, 1580, 7, 81, 2, 2, 1580, 1581, 7, 80, 2, 2, 1581, 1582, 7, 70, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 84, 2, 2, 1584, 1585, 7, 67, 2, 2, 1585, 1586, 7, 86, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 294, 3, 2, 2, 2, 1588, 1589, 7, 85, 2, 2, 1589, 1590, 7, 82, 2, 2, 1590, 1591, 7, 67, 2, 2, 1591, 1592, 7, 84, 2, 2, 1592, 1593, 7, 77, 2, 2, 1593, 1594, 7, 78, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 71, 2, 2, 1597, 296, 3, 2, 2, 2, 1598, 1599, 7, 69, 2, 2, 1599, 298, 3, 2, 2, 2, 1600, 1601, 7, 70, 2, 2, 1601, 1602, 7, 69, 2, 2, 1602, 300, 3, 2, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 68, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 302, 3, 2, 2, 2, 1607, 1608, 7, 69, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 75, 2, 2, 1610, 1611, 7, 78, 2, 2, 1611, 304, 3, 2, 2, 2, 1612, 1613, 7, 69, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 75, 2, 2, 1615, 1616, 7, 78, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 306, 3, 2, 2, 2, 1620, 1621, 7, 69, 2, 2, 1621, 1622, 7, 81, 2, 2, 1622, 1623, 7, 80, 2, 2, 1623, 1624, 7, 88, 2, 2, 1624, 308, 3, 2, 2, 2, 1625, 1626, 7, 69, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 69, 2, 2, 1628, 1629, 7, 53, 2, 2, 1629, 1630, 7, 52, 2, 2, 1630, 310, 3, 2, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 312, 3, 2, 2, 2, 1633, 1634, 7, 71, 2, 2, 1634, 1635, 7, 90, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 314, 3, 2, 2, 2, 1637, 1638, 7, 72, 2, 2, 1638, 1639, 7, 78, 2, 2, 1639, 1640, 7, 81, 2, 2, 1640, 1641, 7, 81, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 316, 3, 2, 2, 2, 1643, 1644, 7, 78, 2, 2, 1644, 1645, 7, 80, 2, 2, 1645, 318, 3, 2, 2, 2, 1646, 1647, 7, 78, 2, 2, 1647, 1648, 7, 81, 2, 2, 1648, 1649, 7, 73, 2, 2, 1649, 320, 3, 2, 2, 2, 1650, 1651, 7, 78, 2, 2, 1651, 1652, 7, 81, 2, 2, 1652, 1653, 7, 73, 2, 2, 1653, 1654, 7, 51, 2, 2, 1654, 1655, 7, 50, 2, 2, 1655, 322, 3, 2, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 81, 2, 2, 1658, 1659, 7, 73, 2, 2, 1659, 1660, 7, 52, 2, 2, 1660, 324, 3, 2, 2, 2, 1661, 1662, 7, 79, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 70, 2, 2, 1664, 326, 3, 2, 2, 2, 1665, 1666, 7, 82, 2, 2, 1666, 1667, 7, 75, 2, 2, 1667, 328, 3, 2, 2, 2, 1668, 1669, 7, 82, 2, 2, 1669, 1670, 7, 81, 2, 2, 1670, 1671, 7, 89, 2, 2, 1671, 330, 3, 2, 2, 2, 1672, 1673, 7, 82, 2, 2, 1673, 1674, 7, 81, 2, 2, 1674, 1675, 7, 89, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 84, 2, 2, 1677, 332, 3, 2, 2, 2, 1678, 1679, 7, 84, 2, 2, 1679, 1680, 7, 67, 2, 2, 1680, 1681, 7, 80, 2, 2, 1681, 1682, 7, 70, 2, 2, 1682, 334, 3, 2, 2, 2, 1683, 1684, 7, 84, 2, 2, 1684, 1685, 7, 81, 2, 2, 1685, 1686, 7, 87, 2, 2, 1686, 1687, 7, 80, 2, 2, 1687, 1688, 7, 70, 2, 2, 1688, 336, 3, 2, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 1691, 7, 75, 2, 2, 1691, 1692, 7, 73, 2, 2, 1692, 1693, 7, 80, 2, 2, 1693, 338, 3, 2, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 1696, 7, 83, 2, 2, 1696, 1697, 7, 84, 2, 2, 1697, 1698, 7, 86, 2, 2, 1698, 340, 3, 2, 2, 2, 1699, 1700, 7, 86, 2, 2, 1700, 1701, 7, 84, 2, 2, 1701, 1702, 7, 87, 2, 2, 1702, 1703, 7, 80, 2, 2, 1703, 1704, 7, 69, 2, 2, 1704, 1705, 7, 67, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 342, 3, 2, 2, 2, 1708, 1709, 7, 67, 2, 2, 1709, 1710, 7, 69, 2, 2, 1710, 1711, 7, 81, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 344, 3, 2, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 85, 2, 2, 1715, 1716, 7, 75, 2, 2, 1716, 1717, 7, 80, 2, 2, 1717, 346, 3, 2, 2, 2, 1718, 1719, 7, 67, 2, 2, 1719, 1720, 7, 86, 2, 2, 1720, 1721, 7, 67, 2, 2, 1721, 1722, 7, 80, 2, 2, 1722, 348, 3, 2, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 80, 2, 2, 1727, 1728, 7, 52, 2, 2, 1728, 350, 3, 2, 2, 2, 1729, 1730, 7, 69, 2, 2, 1730, 1731, 7, 81, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 352, 3, 2, 2, 2, 1733, 1734, 7, 69, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 86, 2, 2, 1736, 354, 3, 2, 2, 2, 1737, 1738, 7, 70, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 73, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 71, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 356, 3, 2, 2, 2, 1745, 1746, 7, 84, 2, 2, 1746, 1747, 7, 67, 2, 2, 1747, 1748, 7, 70, 2, 2, 1748, 1749, 7, 75, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 80, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 358, 3, 2, 2, 2, 1753, 1754, 7, 85, 2, 2, 1754, 1755, 7, 75, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 360, 3, 2, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 67, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 362, 3, 2, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 1764, 7, 70, 2, 2, 1764, 1765, 7, 70, 2, 2, 1765, 1766, 7, 67, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 71, 2, 2, 1768, 364, 3, 2, 2, 2, 1769, 1770, 7, 70, 2, 2, 1770, 1771, 7, 67, 2, 2, 1771, 1772, 7, 86, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 366, 3, 2, 2, 2, 1774, 1775, 7, 70, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 97, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 70, 2, 2, 1781, 1782, 7, 70, 2, 2, 1782, 368, 3, 2, 2, 2, 1783, 1784, 7, 70, 2, 2, 1784, 1785, 7, 67, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 97, 2, 2, 1788, 1789, 7, 85, 2, 2, 1789, 1790, 7, 87, 2, 2, 1790, 1791, 7, 68, 2, 2, 1791, 370, 3, 2, 2, 2, 1792, 1793, 7, 70, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 91, 2, 2, 1795, 1796, 7, 81, 2, 2, 1796, 1797, 7, 72, 2, 2, 1797, 1798, 7, 79, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 80, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 74, 2, 2, 1802, 372, 3, 2, 2, 2, 1803, 1804, 7, 70, 2, 2, 1804, 1805, 7, 67, 2, 2, 1805, 1806, 7, 91, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 72, 2, 2, 1808, 1809, 7, 89, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 71, 2, 2, 1811, 1812, 7, 77, 2, 2, 1812, 374, 3, 2, 2, 2, 1813, 1814, 7, 70, 2, 2, 1814, 1815, 7, 67, 2, 2, 1815, 1816, 7, 91, 2, 2, 1816, 1817, 7, 81, 2, 2, 1817, 1818, 7, 72, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 376, 3, 2, 2, 2, 1823, 1824, 7, 70, 2, 2, 1824, 1825, 7, 67, 2, 2, 1825, 1826, 7, 91, 2, 2, 1826, 1827, 7, 80, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 79, 2, 2, 1829, 1830, 7, 71, 2, 2, 1830, 378, 3, 2, 2, 2, 1831, 1832, 7, 72, 2, 2, 1832, 1833, 7, 84, 2, 2, 1833, 1834, 7, 81, 2, 2, 1834, 1835, 7, 79, 2, 2, 1835, 1836, 7, 97, 2, 2, 1836, 1837, 7, 70, 2, 2, 1837, 1838, 7, 67, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 1840, 7, 85, 2, 2, 1840, 380, 3, 2, 2, 2, 1841, 1842, 7, 79, 2, 2, 1842, 1843, 7, 81, 2, 2, 1843, 1844, 7, 80, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 74, 2, 2, 1846, 1847, 7, 80, 2, 2, 1847, 1848, 7, 67, 2, 2, 1848, 1849, 7, 79, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 382, 3, 2, 2, 2, 1851, 1852, 7, 85, 2, 2, 1852, 1853, 7, 87, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 70, 2, 2, 1855, 1856, 7, 67, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 384, 3, 2, 2, 2, 1859, 1860, 7, 86, 2, 2, 1860, 1861, 7, 75, 2, 2, 1861, 1862, 7, 79, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 386, 3, 2, 2, 2, 1864, 1865, 7, 86, 2, 2, 1865, 1866, 7, 75, 2, 2, 1866, 1867, 7, 79, 2, 2, 1867, 1868, 7, 71, 2, 2, 1868, 1869, 7, 97, 2, 2, 1869, 1870, 7, 86, 2, 2, 1870, 1871, 7, 81, 2, 2, 1871, 1872, 7, 97, 2, 2, 1872, 1873, 7, 85, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 69, 2, 2, 1875, 388, 3, 2, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 79, 2, 2, 1879, 1880, 7, 71, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 67, 2, 2, 1883, 1884, 7, 79, 2, 2, 1884, 1885, 7, 82, 2, 2, 1885, 390, 3, 2, 2, 2, 1886, 1887, 7, 70, 2, 2, 1887, 1888, 7, 67, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 1891, 7, 97, 2, 2, 1891, 1892, 7, 72, 2, 2, 1892, 1893, 7, 81, 2, 2, 1893, 1894, 7, 84, 2, 2, 1894, 1895, 7, 79, 2, 2, 1895, 1896, 7, 67, 2, 2, 1896, 1897, 7, 86, 2, 2, 1897, 392, 3, 2, 2, 2, 1898, 1899, 7, 86, 2, 2, 1899, 1900, 7, 81, 2, 2, 1900, 1901, 7, 97, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 91, 2, 2, 1904, 1905, 7, 85, 2, 2, 1905, 394, 3, 2, 2, 2, 1906, 1907, 7, 85, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 68, 2, 2, 1909, 1910, 7, 85, 2, 2, 1910, 1911, 7, 86, 2, 2, 1911, 1912, 7, 84, 2, 2, 1912, 396, 3, 2, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 1915, 7, 87, 2, 2, 1915, 1916, 7, 68, 2, 2, 1916, 1917, 7, 85, 2, 2, 1917, 1918, 7, 86, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 75, 2, 2, 1920, 1921, 7, 80, 2, 2, 1921, 1922, 7, 73, 2, 2, 1922, 398, 3, 2, 2, 2, 1923, 1924, 7, 78, 2, 2, 1924, 1925, 7, 86, 2, 2, 1925, 1926, 7, 84, 2, 2, 1926, 1927, 7, 75, 2, 2, 1927, 1928, 7, 79, 2, 2, 1928, 400, 3, 2, 2, 2, 1929, 1930, 7, 84, 2, 2, 1930, 1931, 7, 86, 2, 2, 1931, 1932, 7, 84, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 79, 2, 2, 1934, 402, 3, 2, 2, 2, 1935, 1936, 7, 86, 2, 2, 1936, 1937, 7, 84, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 404, 3, 2, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 1942, 7, 81, 2, 2, 1942, 406, 3, 2, 2, 2, 1943, 1944, 7, 78, 2, 2, 1944, 1945, 7, 81, 2, 2, 1945, 1946, 7, 89, 2, 2, 1946, 1947, 7, 71, 2, 2, 1947, 1948, 7, 84, 2, 2, 1948, 408, 3, 2, 2, 2, 1949, 1950, 7, 87, 2, 2, 1950, 1951, 7, 82, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 1954, 7, 84, 2, 2, 1954, 410, 3, 2, 2, 2, 1955, 1956, 7, 69, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 69, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 412, 3, 2, 2, 2, 1962, 1963, 7, 69, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 80, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 67, 2, 2, 1967, 1968, 7, 86, 2, 2, 1968, 1969, 7, 97, 2, 2, 1969, 1970, 7, 89, 2, 2, 1970, 1971, 7, 85, 2, 2, 1971, 414, 3, 2, 2, 2, 1972, 1973, 7, 78, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 1975, 7, 80, 2, 2, 1975, 1976, 7, 73, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 1978, 7, 74, 2, 2, 1978, 416, 3, 2, 2, 2, 1979, 1980, 7, 85, 2, 2, 1980, 1981, 7, 86, 2, 2, 1981, 1982, 7, 84, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 79, 2, 2, 1984, 1985, 7, 82, 2, 2, 1985, 418, 3, 2, 2, 2, 1986, 1987, 7, 84, 2, 2, 1987, 1988, 7, 75, 2, 2, 1988, 1989, 7, 73, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 420, 3, 2, 2, 2, 1992, 1993, 7, 78, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 1995, 7, 72, 2, 2, 1995, 1996, 7, 86, 2, 2, 1996, 422, 3, 2, 2, 2, 1997, 1998, 7, 67, 2, 2, 1998, 1999, 7, 85, 2, 2, 1999, 2000, 7, 69, 2, 2, 2000, 2001, 7, 75, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 424, 3, 2, 2, 2, 2003, 2004, 7, 78, 2, 2, 2004, 2005, 7, 81, 2, 2, 2005, 2006, 7, 69, 2, 2, 2006, 2007, 7, 67, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 71, 2, 2, 2009, 426, 3, 2, 2, 2, 2010, 2011, 7, 84, 2, 2, 2011, 2012, 7, 71, 2, 2, 2012, 2013, 7, 82, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 67, 2, 2, 2015, 2016, 7, 69, 2, 2, 2016, 2017, 7, 71, 2, 2, 2017, 428, 3, 2, 2, 2, 2018, 2019, 7, 69, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 85, 2, 2, 2021, 2022, 7, 86, 2, 2, 2022, 430, 3, 2, 2, 2, 2023, 2024, 7, 78, 2, 2, 2024, 2025, 7, 75, 2, 2, 2025, 2026, 7, 77, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 432, 3, 2, 2, 2, 2028, 2029, 7, 75, 2, 2, 2029, 2030, 7, 85, 2, 2, 2030, 2031, 7, 80, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 78, 2, 2, 2033, 2034, 7, 78, 2, 2, 2034, 434, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 85, 2, 2, 2037, 2038, 7, 80, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 80, 2, 2, 2041, 2042, 7, 87, 2, 2, 2042, 2043, 7, 78, 2, 2, 2043, 2044, 7, 78, 2, 2, 2044, 436, 3, 2, 2, 2, 2045, 2046, 7, 75, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 80, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 78, 2, 2, 2050, 2051, 7, 78, 2, 2, 2051, 438, 3, 2, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 87, 2, 2, 2054, 2055, 7, 78, 2, 2, 2055, 2056, 7, 78, 2, 2, 2056, 2057, 7, 75, 2, 2, 2057, 2058, 7, 72, 2, 2, 2058, 440, 3, 2, 2, 2, 2059, 2060, 7, 75, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 442, 3, 2, 2, 2, 2062, 2063, 7, 79, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 86, 2, 2, 2065, 2066, 7, 69, 2, 2, 2066, 2067, 7, 74, 2, 2, 2067, 444, 3, 2, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 86, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 74, 2, 2, 2073, 2074, 7, 97, 2, 2, 2074, 2075, 7, 82, 2, 2, 2075, 2076, 7, 74, 2, 2, 2076, 2077, 7, 84, 2, 2, 2077, 2078, 7, 67, 2, 2, 2078, 2079, 7, 85, 2, 2, 2079, 2080, 7, 71, 2, 2, 2080, 446, 3, 2, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 2083, 7, 75, 2, 2, 2083, 2084, 7, 79, 2, 2, 2084, 2085, 7, 82, 2, 2, 2085, 2086, 7, 78, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 2088, 7, 97, 2, 2, 2088, 2089, 7, 83, 2, 2, 2089, 2090, 7, 87, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 2092, 7, 84, 2, 2, 2092, 2093, 7, 91, 2, 2, 2093, 2094, 7, 97, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 84, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 73, 2, 2, 2100, 448, 3, 2, 2, 2, 2101, 2102, 7, 67, 2, 2, 2102, 2103, 7, 78, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 81, 2, 2, 2105, 2106, 7, 89, 2, 2, 2106, 2107, 7, 97, 2, 2, 2107, 2108, 7, 78, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 70, 2, 2, 2111, 2112, 7, 75, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 73, 2, 2, 2114, 2115, 7, 97, 2, 2, 2115, 2116, 7, 89, 2, 2, 2116, 2117, 7, 75, 2, 2, 2117, 2118, 7, 78, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 2120, 7, 69, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 70, 2, 2, 2123, 450, 3, 2, 2, 2, 2124, 2125, 7, 67, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 2129, 7, 91, 2, 2, 2129, 2130, 7, 92, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 97, 2, 2, 2132, 2133, 7, 89, 2, 2, 2133, 2134, 7, 75, 2, 2, 2134, 2135, 7, 78, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 2137, 7, 69, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 84, 2, 2, 2139, 2140, 7, 70, 2, 2, 2140, 452, 3, 2, 2, 2, 2141, 2142, 7, 67, 2, 2, 2142, 2143, 7, 80, 2, 2, 2143, 2144, 7, 67, 2, 2, 2144, 2145, 7, 78, 2, 2, 2145, 2146, 7, 91, 2, 2, 2146, 2147, 7, 92, 2, 2, 2147, 2148, 7, 71, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 454, 3, 2, 2, 2, 2150, 2151, 7, 67, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 86, 2, 2, 2153, 2154, 7, 81, 2, 2, 2154, 2155, 7, 97, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 80, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 2160, 7, 84, 2, 2, 2160, 2161, 7, 67, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 2163, 7, 71, 2, 2, 2163, 2164, 7, 97, 2, 2, 2164, 2165, 7, 85, 2, 2, 2165, 2166, 7, 91, 2, 2, 2166, 2167, 7, 80, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 80, 2, 2, 2169, 2170, 7, 91, 2, 2, 2170, 2171, 7, 79, 2, 2, 2171, 2172, 7, 85, 2, 2, 2172, 2173, 7, 97, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 74, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 67, 2, 2, 2177, 2178, 7, 85, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 97, 2, 2, 2180, 2181, 7, 83, 2, 2, 2181, 2182, 7, 87, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 91, 2, 2, 2185, 456, 3, 2, 2, 2, 2186, 2187, 7, 68, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 85, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 458, 3, 2, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 87, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 72, 2, 2, 2197, 2198, 7, 72, 2, 2, 2198, 2199, 7, 97, 2, 2, 2199, 2200, 7, 72, 2, 2, 2200, 2201, 7, 84, 2, 2, 2201, 2202, 7, 71, 2, 2, 2202, 2203, 7, 83, 2, 2, 2203, 2204, 7, 87, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 2206, 7, 80, 2, 2, 2206, 2207, 7, 69, 2, 2, 2207, 2208, 7, 91, 2, 2, 2208, 460, 3, 2, 2, 2, 2209, 2210, 7, 70, 2, 2, 2210, 2211, 7, 71, 2, 2, 2211, 2212, 7, 72, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 87, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 86, 2, 2, 2216, 2217, 7, 97, 2, 2, 2217, 2218, 7, 72, 2, 2, 2218, 2219, 7, 75, 2, 2, 2219, 2220, 7, 71, 2, 2, 2220, 2221, 7, 78, 2, 2, 2221, 2222, 7, 70, 2, 2, 2222, 462, 3, 2, 2, 2, 2223, 2224, 7, 70, 2, 2, 2224, 2225, 7, 71, 2, 2, 2225, 2226, 7, 72, 2, 2, 2226, 2227, 7, 67, 2, 2, 2227, 2228, 7, 87, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 97, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 82, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 84, 2, 2, 2235, 2236, 7, 67, 2, 2, 2236, 2237, 7, 86, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 84, 2, 2, 2239, 464, 3, 2, 2, 2, 2240, 2241, 7, 71, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 68, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 71, 2, 2, 2246, 2247, 7, 97, 2, 2, 2247, 2248, 7, 82, 2, 2, 2248, 2249, 7, 81, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 2254, 7, 81, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 97, 2, 2, 2256, 2257, 7, 75, 2, 2, 2257, 2258, 7, 80, 2, 2, 2258, 2259, 7, 69, 2, 2, 2259, 2260, 7, 84, 2, 2, 2260, 2261, 7, 71, 2, 2, 2261, 2262, 7, 79, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 80, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 85, 2, 2, 2266, 466, 3, 2, 2, 2, 2267, 2268, 7, 72, 2, 2, 2268, 2269, 7, 78, 2, 2, 2269, 2270, 7, 67, 2, 2, 2270, 2271, 7, 73, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 468, 3, 2, 2, 2, 2273, 2274, 7, 72, 2, 2, 2274, 2275, 7, 87, 2, 2, 2275, 2276, 7, 92, 2, 2, 2276, 2277, 7, 92, 2, 2, 2277, 2278, 7, 91, 2, 2, 2278, 2279, 7, 97, 2, 2, 2279, 2280, 7, 79, 2, 2, 2280, 2281, 7, 67, 2, 2, 2281, 2282, 7, 90, 2, 2, 2282, 2283, 7, 97, 2, 2, 2283, 2284, 7, 71, 2, 2, 2284, 2285, 7, 90, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 85, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 2291, 7, 81, 2, 2, 2291, 2292, 7, 80, 2, 2, 2292, 2293, 7, 85, 2, 2, 2293, 470, 3, 2, 2, 2, 2294, 2295, 7, 72, 2, 2, 2295, 2296, 7, 87, 2, 2, 2296, 2297, 7, 92, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 91, 2, 2, 2299, 2300, 7, 97, 2, 2, 2300, 2301, 7, 82, 2, 2, 2301, 2302, 7, 84, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 72, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 90, 2, 2, 2306, 2307, 7, 97, 2, 2, 2307, 2308, 7, 78, 2, 2, 2308, 2309, 7, 71, 2, 2, 2309, 2310, 7, 80, 2, 2, 2310, 2311, 7, 73, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 74, 2, 2, 2313, 472, 3, 2, 2, 2, 2314, 2315, 7, 72, 2, 2, 2315, 2316, 7, 87, 2, 2, 2316, 2317, 7, 92, 2, 2, 2317, 2318, 7, 92, 2, 2, 2318, 2319, 7, 91, 2, 2, 2319, 2320, 7, 97, 2, 2, 2320, 2321, 7, 86, 2, 2, 2321, 2322, 7, 84, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 80, 2, 2, 2324, 2325, 7, 85, 2, 2, 2325, 2326, 7, 82, 2, 2, 2326, 2327, 7, 81, 2, 2, 2327, 2328, 7, 85, 2, 2, 2328, 2329, 7, 75, 2, 2, 2329, 2330, 7, 86, 2, 2, 2330, 2331, 7, 75, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 474, 3, 2, 2, 2, 2335, 2336, 7, 72, 2, 2, 2336, 2337, 7, 87, 2, 2, 2337, 2338, 7, 92, 2, 2, 2338, 2339, 7, 92, 2, 2, 2339, 2340, 7, 91, 2, 2, 2340, 2341, 7, 97, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 2343, 7, 71, 2, 2, 2343, 2344, 7, 89, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 75, 2, 2, 2346, 2347, 7, 86, 2, 2, 2347, 2348, 7, 71, 2, 2, 2348, 476, 3, 2, 2, 2, 2349, 2350, 7, 72, 2, 2, 2350, 2351, 7, 87, 2, 2, 2351, 2352, 7, 92, 2, 2, 2352, 2353, 7, 92, 2, 2, 2353, 2354, 7, 75, 2, 2, 2354, 2355, 7, 80, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 85, 2, 2, 2357, 2358, 7, 85, 2, 2, 2358, 478, 3, 2, 2, 2, 2359, 2360, 7, 78, 2, 2, 2360, 2361, 7, 71, 2, 2, 2361, 2362, 7, 80, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 80, 2, 2, 2365, 2366, 7, 86, 2, 2, 2366, 480, 3, 2, 2, 2, 2367, 2368, 7, 78, 2, 2, 2368, 2369, 7, 81, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 97, 2, 2, 2371, 2372, 7, 72, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 71, 2, 2, 2374, 2375, 7, 83, 2, 2, 2375, 2376, 7, 97, 2, 2, 2376, 2377, 7, 81, 2, 2, 2377, 2378, 7, 82, 2, 2, 2378, 2379, 7, 71, 2, 2, 2379, 2380, 7, 84, 2, 2, 2380, 2381, 7, 67, 2, 2, 2381, 2382, 7, 86, 2, 2, 2382, 2383, 7, 81, 2, 2, 2383, 2384, 7, 84, 2, 2, 2384, 482, 3, 2, 2, 2, 2385, 2386, 7, 79, 2, 2, 2386, 2387, 7, 67, 2, 2, 2387, 2388, 7, 90, 2, 2, 2388, 2389, 7, 97, 2, 2, 2389, 2390, 7, 70, 2, 2, 2390, 2391, 7, 71, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 84, 2, 2, 2394, 2395, 7, 79, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 92, 2, 2, 2399, 2400, 7, 71, 2, 2, 2400, 2401, 7, 70, 2, 2, 2401, 2402, 7, 97, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 71, 2, 2, 2407, 2408, 7, 85, 2, 2, 2408, 484, 3, 2, 2, 2, 2409, 2410, 7, 79, 2, 2, 2410, 2411, 7, 67, 2, 2, 2411, 2412, 7, 90, 2, 2, 2412, 2413, 7, 97, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 90, 2, 2, 2415, 2416, 7, 82, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 81, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 85, 2, 2, 2423, 486, 3, 2, 2, 2, 2424, 2425, 7, 79, 2, 2, 2425, 2426, 7, 75, 2, 2, 2426, 2427, 7, 80, 2, 2, 2427, 2428, 7, 75, 2, 2, 2428, 2429, 7, 79, 2, 2, 2429, 2430, 7, 87, 2, 2, 2430, 2431, 7, 79, 2, 2, 2431, 2432, 7, 97, 2, 2, 2432, 2433, 7, 85, 2, 2, 2433, 2434, 7, 74, 2, 2, 2434, 2435, 7, 81, 2, 2, 2435, 2436, 7, 87, 2, 2, 2436, 2437, 7, 78, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 79, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 69, 2, 2, 2443, 2444, 7, 74, 2, 2, 2444, 488, 3, 2, 2, 2, 2445, 2446, 7, 81, 2, 2, 2446, 2447, 7, 82, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 86, 2, 2, 2451, 2452, 7, 81, 2, 2, 2452, 2453, 7, 84, 2, 2, 2453, 490, 3, 2, 2, 2, 2454, 2455, 7, 82, 2, 2, 2455, 2456, 7, 74, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 85, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 97, 2, 2, 2461, 2462, 7, 85, 2, 2, 2462, 2463, 7, 78, 2, 2, 2463, 2464, 7, 81, 2, 2, 2464, 2465, 7, 82, 2, 2, 2465, 492, 3, 2, 2, 2, 2466, 2467, 7, 82, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 72, 2, 2, 2470, 2471, 7, 75, 2, 2, 2471, 2472, 7, 90, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 78, 2, 2, 2474, 2475, 7, 71, 2, 2, 2475, 2476, 7, 80, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 86, 2, 2, 2478, 2479, 7, 74, 2, 2, 2479, 494, 3, 2, 2, 2, 2480, 2481, 7, 83, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 81, 2, 2, 2483, 2484, 7, 86, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 80, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 91, 2, 2, 2491, 2492, 7, 92, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 496, 3, 2, 2, 2, 2495, 2496, 7, 83, 2, 2, 2496, 2497, 7, 87, 2, 2, 2497, 2498, 7, 81, 2, 2, 2498, 2499, 7, 86, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 97, 2, 2, 2501, 2502, 7, 72, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 78, 2, 2, 2505, 2506, 7, 70, 2, 2, 2506, 2507, 7, 97, 2, 2, 2507, 2508, 7, 85, 2, 2, 2508, 2509, 7, 87, 2, 2, 2509, 2510, 7, 72, 2, 2, 2510, 2511, 7, 72, 2, 2, 2511, 2512, 7, 75, 2, 2, 2512, 2513, 7, 90, 2, 2, 2513, 498, 3, 2, 2, 2, 2514, 2515, 7, 84, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 89, 2, 2, 2517, 2518, 7, 84, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 71, 2, 2, 2521, 500, 3, 2, 2, 2, 2522, 2523, 7, 85, 2, 2, 2523, 2524, 7, 78, 2, 2, 2524, 2525, 7, 81, 2, 2, 2525, 2526, 7, 82, 2, 2, 2526, 502, 3, 2, 2, 2, 2527, 2528, 7, 86, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 97, 2, 2, 2531, 2532, 7, 68, 2, 2, 2532, 2533, 7, 84, 2, 2, 2533, 2534, 7, 71, 2, 2, 2534, 2535, 7, 67, 2, 2, 2535, 2536, 7, 77, 2, 2, 2536, 2537, 7, 71, 2, 2, 2537, 2538, 7, 84, 2, 2, 2538, 504, 3, 2, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 91, 2, 2, 2541, 2542, 7, 82, 2, 2, 2542, 2543, 7, 71, 2, 2, 2543, 506, 3, 2, 2, 2, 2544, 2545, 7, 92, 2, 2, 2545, 2546, 7, 71, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 81, 2, 2, 2548, 2549, 7, 97, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 84, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 85, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 83, 2, 2, 2556, 2557, 7, 87, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 84, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 508, 3, 2, 2, 2, 2561, 2562, 7, 85, 2, 2, 2562, 2563, 7, 82, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 80, 2, 2, 2565, 510, 3, 2, 2, 2, 2566, 2567, 7, 79, 2, 2, 2567, 2568, 7, 85, 2, 2, 2568, 512, 3, 2, 2, 2, 2569, 2570, 7, 85, 2, 2, 2570, 514, 3, 2, 2, 2, 2571, 2572, 7, 79, 2, 2, 2572, 516, 3, 2, 2, 2, 2573, 2574, 7, 74, 2, 2, 2574, 518, 3, 2, 2, 2, 2575, 2576, 7, 89, 2, 2, 2576, 520, 3, 2, 2, 2, 2577, 2578, 7, 83, 2, 2, 2578, 522, 3, 2, 2, 2, 2579, 2580, 7, 91, 2, 2, 2580, 524, 3, 2, 2, 2, 2581, 2582, 5, 533, 267, 2, 2582, 526, 3, 2, 2, 2, 2583, 2585, 5, 543, 272, 2, 2584, 2583, 3, 2, 2, 2, 2585, 2586, 3, 2, 2, 2, 2586, 2584, 3, 2, 2, 2, 2586, 2587, 3, 2, 2, 2, 2587, 528, 3, 2, 2, 2, 2588, 2590, 5, 543, 272, 2, 2589, 2588, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2589, 3, 2, 2, 2, 2591, 2592, 3, 2, 2, 2, 2592, 2594, 3, 2, 2, 2, 2593, 2589, 3, 2, 2, 2, 2593, 2594, 3, 2, 2, 2, 2594, 2595, 3, 2, 2, 2, 2595, 2597, 7, 48, 2, 2, 2596, 2598, 5, 543, 272, 2, 2597, 2596, 3, 2, 2, 2, 2598, 2599, 3, 2, 2, 2, 2599, 2597, 3, 2, 2, 2, 2599, 2600, 3, 2, 2, 2, 2600, 530, 3, 2, 2, 2, 2601, 2603, 9, 2, 2, 2, 2602, 2604, 9, 3, 2, 2, 2603, 2602, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2603, 3, 2, 2, 2, 2605, 2606, 3, 2, 2, 2, 2606, 2608, 3, 2, 2, 2, 2607, 2601, 3, 2, 2, 2, 2608, 2611, 3, 2, 2, 2, 2609, 2607, 3, 2, 2, 2, 2609, 2610, 3, 2, 2, 2, 2610, 532, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2612, 2614, 9, 4, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2616, 2620, 3, 2, 2, 2, 2617, 2619, 9, 5, 2, 2, 2618, 2617, 3, 2, 2, 2, 2619, 2622, 3, 2, 2, 2, 2620, 2618, 3, 2, 2, 2, 2620, 2621, 3, 2, 2, 2, 2621, 534, 3, 2, 2, 2, 2622, 2620, 3, 2, 2, 2, 2623, 2624, 5, 533, 267, 2, 2624, 2625, 5, 531, 266, 2, 2625, 536, 3, 2, 2, 2, 2626, 2634, 7, 36, 2, 2, 2627, 2628, 7, 94, 2, 2, 2628, 2633, 11, 2, 2, 2, 2629, 2630, 7, 36, 2, 2, 2630, 2633, 7, 36, 2, 2, 2631, 2633, 10, 6, 2, 2, 2632, 2627, 3, 2, 2, 2, 2632, 2629, 3, 2, 2, 2, 2632, 2631, 3, 2, 2, 2, 2633, 2636, 3, 2, 2, 2, 2634, 2632, 3, 2, 2, 2, 2634, 2635, 3, 2, 2, 2, 2635, 2637, 3, 2, 2, 2, 2636, 2634, 3, 2, 2, 2, 2637, 2638, 7, 36, 2, 2, 2638, 538, 3, 2, 2, 2, 2639, 2647, 7, 41, 2, 2, 2640, 2641, 7, 94, 2, 2, 2641, 2646, 11, 2, 2, 2, 2642, 2643, 7, 41, 2, 2, 2643, 2646, 7, 41, 2, 2, 2644, 2646, 10, 7, 2, 2, 2645, 2640, 3, 2, 2, 2, 2645, 2642, 3, 2, 2, 2, 2645, 2644, 3, 2, 2, 2, 2646, 2649, 3, 2, 2, 2, 2647, 2645, 3, 2, 2, 2, 2647, 2648, 3, 2, 2, 2, 2648, 2650, 3, 2, 2, 2, 2649, 2647, 3, 2, 2, 2, 2650, 2651, 7, 41, 2, 2, 2651, 540, 3, 2, 2, 2, 2652, 2660, 7, 98, 2, 2, 2653, 2654, 7, 94, 2, 2, 2654, 2659, 11, 2, 2, 2, 2655, 2656, 7, 98, 2, 2, 2656, 2659, 7, 98, 2, 2, 2657, 2659, 10, 8, 2, 2, 2658, 2653, 3, 2, 2, 2, 2658, 2655, 3, 2, 2, 2, 2658, 2657, 3, 2, 2, 2, 2659, 2662, 3, 2, 2, 2, 2660, 2658, 3, 2, 2, 2, 2660, 2661, 3, 2, 2, 2, 2661, 2663, 3, 2, 2, 2, 2662, 2660, 3, 2, 2, 2, 2663, 2664, 7, 98, 2, 2, 2664, 542, 3, 2, 2, 2, 2665, 2666, 9, 9, 2, 2, 2666, 544, 3, 2, 2, 2, 2667, 2668, 11, 2, 2, 2, 2668, 2669, 3, 2, 2, 2, 2669, 2670, 8, 273, 2, 2, 2670, 546, 3, 2, 2, 2, 17, 2, 2586, 2591, 2593, 2599, 2605, 2609, 2615, 2620, 2632, 2634, 2645, 2647, 2658, 2660, 3, 2, 5, 2] \ No newline at end of file diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts deleted file mode 100644 index 54e73a03f..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLLexer.ts +++ /dev/null @@ -1,1768 +0,0 @@ -// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ATN } from "antlr4ts/atn/ATN"; -import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; -import { CharStream } from "antlr4ts/CharStream"; -import { Lexer } from "antlr4ts/Lexer"; -import { LexerATNSimulator } from "antlr4ts/atn/LexerATNSimulator"; -import { NotNull } from "antlr4ts/Decorators"; -import { Override } from "antlr4ts/Decorators"; -import { RuleContext } from "antlr4ts/RuleContext"; -import { Vocabulary } from "antlr4ts/Vocabulary"; -import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; - -import * as Utils from "antlr4ts/misc/Utils"; - - -export class OpenSearchPPLLexer extends Lexer { - public static readonly SEARCH = 1; - public static readonly FROM = 2; - public static readonly WHERE = 3; - public static readonly FIELDS = 4; - public static readonly RENAME = 5; - public static readonly STATS = 6; - public static readonly DEDUP = 7; - public static readonly SORT = 8; - public static readonly EVAL = 9; - public static readonly HEAD = 10; - public static readonly TOP = 11; - public static readonly RARE = 12; - public static readonly PARSE = 13; - public static readonly KMEANS = 14; - public static readonly AD = 15; - public static readonly AS = 16; - public static readonly BY = 17; - public static readonly SOURCE = 18; - public static readonly INDEX = 19; - public static readonly D = 20; - public static readonly DESC = 21; - public static readonly SORTBY = 22; - public static readonly AUTO = 23; - public static readonly STR = 24; - public static readonly IP = 25; - public static readonly NUM = 26; - public static readonly KEEPEMPTY = 27; - public static readonly CONSECUTIVE = 28; - public static readonly DEDUP_SPLITVALUES = 29; - public static readonly PARTITIONS = 30; - public static readonly ALLNUM = 31; - public static readonly DELIM = 32; - public static readonly CENTROIDS = 33; - public static readonly ITERATIONS = 34; - public static readonly DISTANCE_TYPE = 35; - public static readonly NUMBER_OF_TREES = 36; - public static readonly SHINGLE_SIZE = 37; - public static readonly SAMPLE_SIZE = 38; - public static readonly OUTPUT_AFTER = 39; - public static readonly TIME_DECAY = 40; - public static readonly ANOMALY_RATE = 41; - public static readonly TIME_FIELD = 42; - public static readonly TIME_ZONE = 43; - public static readonly TRAINING_DATA_SIZE = 44; - public static readonly ANOMALY_SCORE_THRESHOLD = 45; - public static readonly CASE = 46; - public static readonly IN = 47; - public static readonly NOT = 48; - public static readonly OR = 49; - public static readonly AND = 50; - public static readonly XOR = 51; - public static readonly TRUE = 52; - public static readonly FALSE = 53; - public static readonly REGEXP = 54; - public static readonly DATETIME = 55; - public static readonly INTERVAL = 56; - public static readonly MICROSECOND = 57; - public static readonly MILLISECOND = 58; - public static readonly SECOND = 59; - public static readonly MINUTE = 60; - public static readonly HOUR = 61; - public static readonly DAY = 62; - public static readonly WEEK = 63; - public static readonly MONTH = 64; - public static readonly QUARTER = 65; - public static readonly YEAR = 66; - public static readonly SECOND_MICROSECOND = 67; - public static readonly MINUTE_MICROSECOND = 68; - public static readonly MINUTE_SECOND = 69; - public static readonly HOUR_MICROSECOND = 70; - public static readonly HOUR_SECOND = 71; - public static readonly HOUR_MINUTE = 72; - public static readonly DAY_MICROSECOND = 73; - public static readonly DAY_SECOND = 74; - public static readonly DAY_MINUTE = 75; - public static readonly DAY_HOUR = 76; - public static readonly YEAR_MONTH = 77; - public static readonly DATAMODEL = 78; - public static readonly LOOKUP = 79; - public static readonly SAVEDSEARCH = 80; - public static readonly INT = 81; - public static readonly INTEGER = 82; - public static readonly DOUBLE = 83; - public static readonly LONG = 84; - public static readonly FLOAT = 85; - public static readonly STRING = 86; - public static readonly BOOLEAN = 87; - public static readonly PIPE = 88; - public static readonly COMMA = 89; - public static readonly DOT = 90; - public static readonly EQUAL = 91; - public static readonly GREATER = 92; - public static readonly LESS = 93; - public static readonly NOT_GREATER = 94; - public static readonly NOT_LESS = 95; - public static readonly NOT_EQUAL = 96; - public static readonly PLUS = 97; - public static readonly MINUS = 98; - public static readonly STAR = 99; - public static readonly DIVIDE = 100; - public static readonly MODULE = 101; - public static readonly EXCLAMATION_SYMBOL = 102; - public static readonly COLON = 103; - public static readonly LT_PRTHS = 104; - public static readonly RT_PRTHS = 105; - public static readonly LT_SQR_PRTHS = 106; - public static readonly RT_SQR_PRTHS = 107; - public static readonly SINGLE_QUOTE = 108; - public static readonly DOUBLE_QUOTE = 109; - public static readonly BACKTICK = 110; - public static readonly BIT_NOT_OP = 111; - public static readonly BIT_AND_OP = 112; - public static readonly BIT_XOR_OP = 113; - public static readonly AVG = 114; - public static readonly COUNT = 115; - public static readonly DISTINCT_COUNT = 116; - public static readonly ESTDC = 117; - public static readonly ESTDC_ERROR = 118; - public static readonly MAX = 119; - public static readonly MEAN = 120; - public static readonly MEDIAN = 121; - public static readonly MIN = 122; - public static readonly MODE = 123; - public static readonly RANGE = 124; - public static readonly STDEV = 125; - public static readonly STDEVP = 126; - public static readonly SUM = 127; - public static readonly SUMSQ = 128; - public static readonly VAR_SAMP = 129; - public static readonly VAR_POP = 130; - public static readonly STDDEV_SAMP = 131; - public static readonly STDDEV_POP = 132; - public static readonly PERCENTILE = 133; - public static readonly FIRST = 134; - public static readonly LAST = 135; - public static readonly LIST = 136; - public static readonly VALUES = 137; - public static readonly EARLIEST = 138; - public static readonly EARLIEST_TIME = 139; - public static readonly LATEST = 140; - public static readonly LATEST_TIME = 141; - public static readonly PER_DAY = 142; - public static readonly PER_HOUR = 143; - public static readonly PER_MINUTE = 144; - public static readonly PER_SECOND = 145; - public static readonly RATE = 146; - public static readonly SPARKLINE = 147; - public static readonly C = 148; - public static readonly DC = 149; - public static readonly ABS = 150; - public static readonly CEIL = 151; - public static readonly CEILING = 152; - public static readonly CONV = 153; - public static readonly CRC32 = 154; - public static readonly E = 155; - public static readonly EXP = 156; - public static readonly FLOOR = 157; - public static readonly LN = 158; - public static readonly LOG = 159; - public static readonly LOG10 = 160; - public static readonly LOG2 = 161; - public static readonly MOD = 162; - public static readonly PI = 163; - public static readonly POW = 164; - public static readonly POWER = 165; - public static readonly RAND = 166; - public static readonly ROUND = 167; - public static readonly SIGN = 168; - public static readonly SQRT = 169; - public static readonly TRUNCATE = 170; - public static readonly ACOS = 171; - public static readonly ASIN = 172; - public static readonly ATAN = 173; - public static readonly ATAN2 = 174; - public static readonly COS = 175; - public static readonly COT = 176; - public static readonly DEGREES = 177; - public static readonly RADIANS = 178; - public static readonly SIN = 179; - public static readonly TAN = 180; - public static readonly ADDDATE = 181; - public static readonly DATE = 182; - public static readonly DATE_ADD = 183; - public static readonly DATE_SUB = 184; - public static readonly DAYOFMONTH = 185; - public static readonly DAYOFWEEK = 186; - public static readonly DAYOFYEAR = 187; - public static readonly DAYNAME = 188; - public static readonly FROM_DAYS = 189; - public static readonly MONTHNAME = 190; - public static readonly SUBDATE = 191; - public static readonly TIME = 192; - public static readonly TIME_TO_SEC = 193; - public static readonly TIMESTAMP = 194; - public static readonly DATE_FORMAT = 195; - public static readonly TO_DAYS = 196; - public static readonly SUBSTR = 197; - public static readonly SUBSTRING = 198; - public static readonly LTRIM = 199; - public static readonly RTRIM = 200; - public static readonly TRIM = 201; - public static readonly TO = 202; - public static readonly LOWER = 203; - public static readonly UPPER = 204; - public static readonly CONCAT = 205; - public static readonly CONCAT_WS = 206; - public static readonly LENGTH = 207; - public static readonly STRCMP = 208; - public static readonly RIGHT = 209; - public static readonly LEFT = 210; - public static readonly ASCII = 211; - public static readonly LOCATE = 212; - public static readonly REPLACE = 213; - public static readonly CAST = 214; - public static readonly LIKE = 215; - public static readonly ISNULL = 216; - public static readonly ISNOTNULL = 217; - public static readonly IFNULL = 218; - public static readonly NULLIF = 219; - public static readonly IF = 220; - public static readonly MATCH = 221; - public static readonly MATCH_PHRASE = 222; - public static readonly SIMPLE_QUERY_STRING = 223; - public static readonly ALLOW_LEADING_WILDCARD = 224; - public static readonly ANALYZE_WILDCARD = 225; - public static readonly ANALYZER = 226; - public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; - public static readonly BOOST = 228; - public static readonly CUTOFF_FREQUENCY = 229; - public static readonly DEFAULT_FIELD = 230; - public static readonly DEFAULT_OPERATOR = 231; - public static readonly ENABLE_POSITION_INCREMENTS = 232; - public static readonly FLAGS = 233; - public static readonly FUZZY_MAX_EXPANSIONS = 234; - public static readonly FUZZY_PREFIX_LENGTH = 235; - public static readonly FUZZY_TRANSPOSITIONS = 236; - public static readonly FUZZY_REWRITE = 237; - public static readonly FUZZINESS = 238; - public static readonly LENIENT = 239; - public static readonly LOW_FREQ_OPERATOR = 240; - public static readonly MAX_DETERMINIZED_STATES = 241; - public static readonly MAX_EXPANSIONS = 242; - public static readonly MINIMUM_SHOULD_MATCH = 243; - public static readonly OPERATOR = 244; - public static readonly PHRASE_SLOP = 245; - public static readonly PREFIX_LENGTH = 246; - public static readonly QUOTE_ANALYZER = 247; - public static readonly QUOTE_FIELD_SUFFIX = 248; - public static readonly REWRITE = 249; - public static readonly SLOP = 250; - public static readonly TIE_BREAKER = 251; - public static readonly TYPE = 252; - public static readonly ZERO_TERMS_QUERY = 253; - public static readonly SPAN = 254; - public static readonly MS = 255; - public static readonly S = 256; - public static readonly M = 257; - public static readonly H = 258; - public static readonly W = 259; - public static readonly Q = 260; - public static readonly Y = 261; - public static readonly ID = 262; - public static readonly INTEGER_LITERAL = 263; - public static readonly DECIMAL_LITERAL = 264; - public static readonly ID_DATE_SUFFIX = 265; - public static readonly DQUOTA_STRING = 266; - public static readonly SQUOTA_STRING = 267; - public static readonly BQUOTA_STRING = 268; - public static readonly ERROR_RECOGNITION = 269; - public static readonly WHITESPACE = 2; - public static readonly ERRORCHANNEL = 3; - - // tslint:disable:no-trailing-whitespace - public static readonly channelNames: string[] = [ - "DEFAULT_TOKEN_CHANNEL", "HIDDEN", "WHITESPACE", "ERRORCHANNEL", - ]; - - // tslint:disable:no-trailing-whitespace - public static readonly modeNames: string[] = [ - "DEFAULT_MODE", - ]; - - public static readonly ruleNames: string[] = [ - "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", "SORT", - "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", "BY", "SOURCE", - "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", "KEEPEMPTY", - "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", "DELIM", "CENTROIDS", - "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", "SHINGLE_SIZE", "SAMPLE_SIZE", - "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", "TIME_FIELD", "TIME_ZONE", - "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", "CASE", "IN", "NOT", - "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", "INTERVAL", - "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", "DAY", "WEEK", - "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", - "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", - "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", - "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", - "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", - "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", - "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", - "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", - "DATE_SUFFIX", "ID_LITERAL", "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", - "BQUOTA_STRING", "DEC_DIGIT", "ERROR_RECOGNITION", - ]; - - private static readonly _LITERAL_NAMES: Array = [ - undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", - "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", - "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", - "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", - "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", - "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", - "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", - "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", - "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", - "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, - undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", - "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", - "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", - "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", - "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", - "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", - "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", - "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", - "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", - "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", - "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", - "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", - "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", - "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", - "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", - "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", - "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", - "'W'", "'Q'", "'Y'", - ]; - private static readonly _SYMBOLIC_NAMES: Array = [ - undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", - "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", - "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", - "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", - "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", - "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", - "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", - "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", - "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", - "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", - "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", - ]; - public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLLexer._LITERAL_NAMES, OpenSearchPPLLexer._SYMBOLIC_NAMES, []); - - // @Override - // @NotNull - public get vocabulary(): Vocabulary { - return OpenSearchPPLLexer.VOCABULARY; - } - // tslint:enable:no-trailing-whitespace - - - constructor(input: CharStream) { - super(input); - this._interp = new LexerATNSimulator(OpenSearchPPLLexer._ATN, this); - } - - // @Override - public get grammarFileName(): string { return "OpenSearchPPLLexer.g4"; } - - // @Override - public get ruleNames(): string[] { return OpenSearchPPLLexer.ruleNames; } - - // @Override - public get serializedATN(): string { return OpenSearchPPLLexer._serializedATN; } - - // @Override - public get channelNames(): string[] { return OpenSearchPPLLexer.channelNames; } - - // @Override - public get modeNames(): string[] { return OpenSearchPPLLexer.modeNames; } - - private static readonly _serializedATNSegments: number = 5; - private static readonly _serializedATNSegment0: string = - "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02\u010F\u0A6F\b" + - "\x01\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t" + - "\x06\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04" + - "\r\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12" + - "\t\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17" + - "\t\x17\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C" + - "\t\x1C\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"" + - "\t\"\x04#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t" + - "*\x04+\t+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x04" + - "3\t3\x044\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04" + - "<\t<\x04=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04" + - "E\tE\x04F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04" + - "N\tN\x04O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x04" + - "W\tW\x04X\tX\x04Y\tY\x04Z\tZ\x04[\t[\x04\\\t\\\x04]\t]\x04^\t^\x04_\t" + - "_\x04`\t`\x04a\ta\x04b\tb\x04c\tc\x04d\td\x04e\te\x04f\tf\x04g\tg\x04" + - "h\th\x04i\ti\x04j\tj\x04k\tk\x04l\tl\x04m\tm\x04n\tn\x04o\to\x04p\tp\x04" + - "q\tq\x04r\tr\x04s\ts\x04t\tt\x04u\tu\x04v\tv\x04w\tw\x04x\tx\x04y\ty\x04" + - "z\tz\x04{\t{\x04|\t|\x04}\t}\x04~\t~\x04\x7F\t\x7F\x04\x80\t\x80\x04\x81" + - "\t\x81\x04\x82\t\x82\x04\x83\t\x83\x04\x84\t\x84\x04\x85\t\x85\x04\x86" + - "\t\x86\x04\x87\t\x87\x04\x88\t\x88\x04\x89\t\x89\x04\x8A\t\x8A\x04\x8B" + - "\t\x8B\x04\x8C\t\x8C\x04\x8D\t\x8D\x04\x8E\t\x8E\x04\x8F\t\x8F\x04\x90" + - "\t\x90\x04\x91\t\x91\x04\x92\t\x92\x04\x93\t\x93\x04\x94\t\x94\x04\x95" + - "\t\x95\x04\x96\t\x96\x04\x97\t\x97\x04\x98\t\x98\x04\x99\t\x99\x04\x9A" + - "\t\x9A\x04\x9B\t\x9B\x04\x9C\t\x9C\x04\x9D\t\x9D\x04\x9E\t\x9E\x04\x9F" + - "\t\x9F\x04\xA0\t\xA0\x04\xA1\t\xA1\x04\xA2\t\xA2\x04\xA3\t\xA3\x04\xA4" + - "\t\xA4\x04\xA5\t\xA5\x04\xA6\t\xA6\x04\xA7\t\xA7\x04\xA8\t\xA8\x04\xA9" + - "\t\xA9\x04\xAA\t\xAA\x04\xAB\t\xAB\x04\xAC\t\xAC\x04\xAD\t\xAD\x04\xAE" + - "\t\xAE\x04\xAF\t\xAF\x04\xB0\t\xB0\x04\xB1\t\xB1\x04\xB2\t\xB2\x04\xB3" + - "\t\xB3\x04\xB4\t\xB4\x04\xB5\t\xB5\x04\xB6\t\xB6\x04\xB7\t\xB7\x04\xB8" + - "\t\xB8\x04\xB9\t\xB9\x04\xBA\t\xBA\x04\xBB\t\xBB\x04\xBC\t\xBC\x04\xBD" + - "\t\xBD\x04\xBE\t\xBE\x04\xBF\t\xBF\x04\xC0\t\xC0\x04\xC1\t\xC1\x04\xC2" + - "\t\xC2\x04\xC3\t\xC3\x04\xC4\t\xC4\x04\xC5\t\xC5\x04\xC6\t\xC6\x04\xC7" + - "\t\xC7\x04\xC8\t\xC8\x04\xC9\t\xC9\x04\xCA\t\xCA\x04\xCB\t\xCB\x04\xCC" + - "\t\xCC\x04\xCD\t\xCD\x04\xCE\t\xCE\x04\xCF\t\xCF\x04\xD0\t\xD0\x04\xD1" + - "\t\xD1\x04\xD2\t\xD2\x04\xD3\t\xD3\x04\xD4\t\xD4\x04\xD5\t\xD5\x04\xD6" + - "\t\xD6\x04\xD7\t\xD7\x04\xD8\t\xD8\x04\xD9\t\xD9\x04\xDA\t\xDA\x04\xDB" + - "\t\xDB\x04\xDC\t\xDC\x04\xDD\t\xDD\x04\xDE\t\xDE\x04\xDF\t\xDF\x04\xE0" + - "\t\xE0\x04\xE1\t\xE1\x04\xE2\t\xE2\x04\xE3\t\xE3\x04\xE4\t\xE4\x04\xE5" + - "\t\xE5\x04\xE6\t\xE6\x04\xE7\t\xE7\x04\xE8\t\xE8\x04\xE9\t\xE9\x04\xEA" + - "\t\xEA\x04\xEB\t\xEB\x04\xEC\t\xEC\x04\xED\t\xED\x04\xEE\t\xEE\x04\xEF" + - "\t\xEF\x04\xF0\t\xF0\x04\xF1\t\xF1\x04\xF2\t\xF2\x04\xF3\t\xF3\x04\xF4" + - "\t\xF4\x04\xF5\t\xF5\x04\xF6\t\xF6\x04\xF7\t\xF7\x04\xF8\t\xF8\x04\xF9" + - "\t\xF9\x04\xFA\t\xFA\x04\xFB\t\xFB\x04\xFC\t\xFC\x04\xFD\t\xFD\x04\xFE" + - "\t\xFE\x04\xFF\t\xFF\x04\u0100\t\u0100\x04\u0101\t\u0101\x04\u0102\t\u0102" + - "\x04\u0103\t\u0103\x04\u0104\t\u0104\x04\u0105\t\u0105\x04\u0106\t\u0106" + - "\x04\u0107\t\u0107\x04\u0108\t\u0108\x04\u0109\t\u0109\x04\u010A\t\u010A" + - "\x04\u010B\t\u010B\x04\u010C\t\u010C\x04\u010D\t\u010D\x04\u010E\t\u010E" + - "\x04\u010F\t\u010F\x04\u0110\t\u0110\x04\u0111\t\u0111\x03\x02\x03\x02" + - "\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x03\x03" + - "\x03\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x05\x03\x05" + - "\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x06\x03\x06\x03\x06\x03\x06" + - "\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07" + - "\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\t\x03\t\x03\t\x03\t\x03\t\x03" + - "\n\x03\n\x03\n\x03\n\x03\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + - "\f\x03\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03\x0E\x03\x0E\x03\x0E\x03\x0E" + - "\x03\x0E\x03\x0E\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F" + - "\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x03\x11\x03\x12\x03\x12\x03\x12" + - "\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x14\x03\x14" + - "\x03\x14\x03\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17\x03\x17" + - "\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x19\x03\x19\x03\x19\x03\x19" + - "\x03\x1A\x03\x1A\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1C\x03\x1C" + - "\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D" + - "\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D\x03\x1D" + - "\x03\x1D\x03\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + - "\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E" + - "\x03\x1E\x03\x1E\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03\x1F" + - "\x03\x1F\x03\x1F\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03" + - "!\x03!\x03!\x03!\x03!\x03!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x03" + - "\"\x03\"\x03\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03#" + - "\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03" + - "$\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03%\x03" + - "%\x03%\x03%\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03&\x03" + - "&\x03&\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03\'\x03" + - "\'\x03\'\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03(\x03" + - "(\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03)\x03*\x03*\x03" + - "*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03*\x03+\x03+\x03+\x03" + - "+\x03+\x03+\x03+\x03+\x03+\x03+\x03+\x03,\x03,\x03,\x03,\x03,\x03,\x03" + - ",\x03,\x03,\x03,\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03" + - "-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03-\x03.\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x03.\x03.\x03/\x03/\x03/\x03/\x03/\x030\x030\x030\x031\x03" + - "1\x031\x031\x032\x032\x032\x033\x033\x033\x033\x034\x034\x034\x034\x03" + - "5\x035\x035\x035\x035\x036\x036\x036\x036\x036\x036\x037\x037\x037\x03" + - "7\x037\x037\x037\x038\x038\x038\x038\x038\x038\x038\x038\x038\x039\x03" + - "9\x039\x039\x039\x039\x039\x039\x039\x03:\x03:\x03:\x03:\x03:\x03:\x03" + - ":\x03:\x03:\x03:\x03:\x03:\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03;\x03" + - ";\x03;\x03;\x03;\x03<\x03<\x03<\x03<\x03<\x03<\x03<\x03=\x03=\x03=\x03" + - "=\x03=\x03=\x03=\x03>\x03>\x03>\x03>\x03>\x03?\x03?\x03?\x03?\x03@\x03" + - "@\x03@\x03@\x03@\x03A\x03A\x03A\x03A\x03A\x03A\x03B\x03B\x03B\x03B\x03" + - "B\x03B\x03B\x03B\x03C\x03C\x03C\x03C\x03C\x03D\x03D\x03D\x03D\x03D\x03" + - "D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03D\x03" + - "E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03E\x03" + - "E\x03E\x03E\x03E\x03E\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03F\x03" + - "F\x03F\x03F\x03F\x03F\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03" + - "G\x03G\x03G\x03G\x03G\x03G\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x03H\x03" + - "H\x03H\x03H\x03H\x03H\x03H\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03I\x03" + - "I\x03I\x03I\x03I\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03J\x03" + - "J\x03J\x03J\x03J\x03J\x03J\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03K\x03" + - "K\x03K\x03K\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03L\x03" + - "M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03M\x03N\x03N\x03N\x03N\x03N\x03" + - "N\x03N\x03N\x03N\x03N\x03N\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03O\x03" + - "O\x03O\x03P\x03P\x03P\x03P\x03P\x03P\x03P\x03Q\x03Q\x03Q\x03Q\x03Q\x03" + - "Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03Q\x03R\x03R\x03R\x03R\x03S\x03S\x03S\x03" + - "S\x03S\x03S\x03S\x03S\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x03U\x03U\x03" + - "U\x03U\x03U\x03V\x03V\x03V\x03V\x03V\x03V\x03W\x03W\x03W\x03W\x03W\x03" + - "W\x03W\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03X\x03Y\x03Y\x03Z\x03Z\x03" + - "[\x03[\x03\\\x03\\\x03]\x03]\x03^\x03^\x03_\x03_\x03_\x03`\x03`\x03`\x03" + - "a\x03a\x03a\x03b\x03b\x03c\x03c\x03d\x03d\x03e\x03e\x03f\x03f\x03g\x03" + - "g\x03h\x03h\x03i\x03i\x03j\x03j\x03k\x03k\x03l\x03l\x03m\x03m\x03n\x03" + - "n\x03o\x03o\x03p\x03p\x03q\x03q\x03r\x03r\x03s\x03s\x03s\x03s\x03t\x03" + - "t\x03t\x03t\x03t\x03t\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03u\x03" + - "u\x03u\x03u\x03u\x03u\x03u\x03v\x03v\x03v\x03v\x03v\x03v\x03w\x03w\x03" + - "w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03w\x03x\x03x\x03x\x03x\x03" + - "y\x03y\x03y\x03y\x03y\x03z\x03z\x03z\x03z\x03z\x03z\x03z\x03{\x03{\x03" + - "{\x03{\x03|\x03|\x03|\x03|\x03|\x03}\x03}\x03}\x03}\x03}\x03}\x03~\x03" + - "~\x03~\x03~\x03~\x03~\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F\x03\x7F" + - "\x03\x7F\x03\x80\x03\x80\x03\x80\x03\x80\x03\x81\x03\x81\x03\x81\x03\x81" + - "\x03\x81\x03\x81\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82\x03\x82" + - "\x03\x82\x03\x82\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83\x03\x83" + - "\x03\x83\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84\x03\x84" + - "\x03\x84\x03\x84\x03\x84\x03\x84\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85" + - "\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x85\x03\x86\x03\x86\x03\x86" + - "\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x86\x03\x87" + - "\x03\x87\x03\x87\x03\x87\x03\x87\x03\x87\x03\x88\x03\x88\x03\x88\x03\x88" + - "\x03\x88\x03\x89\x03\x89\x03\x89\x03\x89\x03\x89\x03\x8A\x03\x8A\x03\x8A" + - "\x03\x8A\x03\x8A\x03\x8A\x03\x8A\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8B" + - "\x03\x8B\x03\x8B\x03\x8B\x03\x8B\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + - "\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C\x03\x8C" + - "\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8D\x03\x8E\x03\x8E" + - "\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E\x03\x8E" + - "\x03\x8E\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F\x03\x8F" + - "\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90\x03\x90" + - "\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91\x03\x91" + - "\x03\x91\x03\x91\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92\x03\x92" + - "\x03\x92\x03\x92\x03\x92\x03\x92\x03\x93\x03\x93\x03\x93\x03\x93\x03\x93" + - "\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94\x03\x94" + - "\x03\x94\x03\x95\x03\x95\x03\x96\x03\x96\x03\x96\x03\x97\x03\x97\x03\x97" + - "\x03\x97\x03\x98\x03\x98\x03\x98\x03\x98\x03\x98\x03\x99\x03\x99\x03\x99" + - "\x03\x99\x03\x99\x03\x99\x03\x99\x03\x99\x03\x9A\x03\x9A\x03\x9A\x03\x9A" + - "\x03\x9A\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9B\x03\x9C\x03\x9C" + - "\x03\x9D\x03\x9D\x03\x9D\x03\x9D\x03\x9E\x03\x9E\x03\x9E\x03\x9E\x03\x9E" + - "\x03\x9E\x03\x9F\x03\x9F\x03\x9F\x03\xA0\x03\xA0\x03\xA0\x03\xA0\x03\xA1" + - "\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA1\x03\xA2\x03\xA2\x03\xA2\x03\xA2" + - "\x03\xA2\x03\xA3\x03\xA3\x03\xA3\x03\xA3\x03\xA4\x03\xA4\x03\xA4\x03\xA5" + - "\x03\xA5\x03\xA5\x03\xA5\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6\x03\xA6" + - "\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA7\x03\xA8\x03\xA8\x03\xA8\x03\xA8" + - "\x03\xA8\x03\xA8\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xA9\x03\xAA\x03\xAA" + - "\x03\xAA\x03\xAA\x03\xAA\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB\x03\xAB" + - "\x03\xAB\x03\xAB\x03\xAB\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAC\x03\xAD" + - "\x03\xAD\x03\xAD\x03\xAD\x03\xAD\x03\xAE\x03\xAE\x03\xAE\x03\xAE\x03\xAE" + - "\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xAF\x03\xB0\x03\xB0\x03\xB0" + - "\x03\xB0\x03\xB1\x03\xB1\x03\xB1\x03\xB1\x03\xB2\x03\xB2\x03\xB2\x03\xB2" + - "\x03\xB2\x03\xB2\x03\xB2\x03\xB2\x03\xB3\x03\xB3\x03\xB3\x03\xB3\x03\xB3" + - "\x03\xB3\x03\xB3\x03\xB3\x03\xB4\x03\xB4\x03\xB4\x03\xB4\x03\xB5\x03\xB5" + - "\x03\xB5\x03\xB5\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6\x03\xB6" + - "\x03\xB6\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB7\x03\xB8\x03\xB8\x03\xB8" + - "\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB8\x03\xB9\x03\xB9\x03\xB9" + - "\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xB9\x03\xBA\x03\xBA\x03\xBA" + - "\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBA\x03\xBB" + - "\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB\x03\xBB" + - "\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC\x03\xBC" + - "\x03\xBC\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD\x03\xBD" + - "\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE\x03\xBE" + - "\x03\xBE\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF\x03\xBF" + - "\x03\xBF\x03\xBF\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0\x03\xC0" + - "\x03\xC0\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC1\x03\xC2\x03\xC2\x03\xC2" + - "\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2\x03\xC2" + - "\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3\x03\xC3" + - "\x03\xC3\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC4" + - "\x03\xC4\x03\xC4\x03\xC4\x03\xC4\x03\xC5\x03\xC5\x03\xC5\x03\xC5\x03\xC5" + - "\x03\xC5\x03\xC5\x03\xC5\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6\x03\xC6" + - "\x03\xC6\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7\x03\xC7" + - "\x03\xC7\x03\xC7\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC8\x03\xC9" + - "\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xC9\x03\xCA\x03\xCA\x03\xCA\x03\xCA" + - "\x03\xCA\x03\xCB\x03\xCB\x03\xCB\x03\xCC\x03\xCC\x03\xCC\x03\xCC\x03\xCC" + - "\x03\xCC\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCD\x03\xCE\x03\xCE" + - "\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCE\x03\xCF\x03\xCF\x03\xCF\x03\xCF" + - "\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xCF\x03\xD0\x03\xD0\x03\xD0" + - "\x03\xD0\x03\xD0\x03\xD0\x03\xD0\x03\xD1\x03\xD1\x03\xD1\x03\xD1\x03\xD1" + - "\x03\xD1\x03\xD1\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD2\x03\xD3" + - "\x03\xD3\x03\xD3\x03\xD3\x03\xD3\x03\xD4\x03\xD4\x03\xD4\x03\xD4\x03\xD4" + - "\x03\xD4\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD5\x03\xD6" + - "\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD6\x03\xD7\x03\xD7" + - "\x03\xD7\x03\xD7\x03\xD7\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD8\x03\xD9" + - "\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xD9\x03\xDA\x03\xDA\x03\xDA" + - "\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDA\x03\xDB\x03\xDB" + - "\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDB\x03\xDC\x03\xDC\x03\xDC\x03\xDC" + - "\x03\xDC\x03\xDC\x03\xDC\x03\xDD\x03\xDD\x03\xDD\x03\xDE\x03\xDE\x03\xDE" + - "\x03\xDE\x03\xDE\x03\xDE\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF" + - "\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xDF\x03\xE0\x03\xE0" + - "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + - "\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0\x03\xE0" + - "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + - "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1" + - "\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE1\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + - "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE2" + - "\x03\xE2\x03\xE2\x03\xE2\x03\xE2\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE3" + - "\x03\xE3\x03\xE3\x03\xE3\x03\xE3\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE4" + - "\x03\xE4\x03\xE4\x03\xE4\x03\xE4\x03\xE5\x03\xE5\x03\xE5\x03\xE5\x03\xE5" + - "\x03\xE5\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + - "\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6\x03\xE6" + - "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7" + - "\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE7\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + - "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE8" + - "\x03\xE8\x03\xE8\x03\xE8\x03\xE8\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + - "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + - "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xE9" + - "\x03\xE9\x03\xE9\x03\xE9\x03\xE9\x03\xEA\x03\xEA\x03\xEA\x03\xEA\x03\xEA" + - "\x03\xEA\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + - "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEB" + - "\x03\xEB\x03\xEB\x03\xEB\x03\xEB\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + - "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC" + - "\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xEC\x03\xED\x03\xED\x03\xED" + - "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + - "\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED\x03\xED" + - "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE" + - "\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEE\x03\xEF\x03\xEF\x03\xEF\x03\xEF" + - "\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xEF\x03\xF0\x03\xF0\x03\xF0" + - "\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF0\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + - "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1" + - "\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF1\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + - "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + - "\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2\x03\xF2" + - "\x03\xF2\x03\xF2\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3" + - "\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF3\x03\xF4" + - "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + - "\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4\x03\xF4" + - "\x03\xF4\x03\xF4\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5\x03\xF5" + - "\x03\xF5\x03\xF5\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6" + - "\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF6\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + - "\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7\x03\xF7" + - "\x03\xF7\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8" + - "\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF8\x03\xF9"; - private static readonly _serializedATNSegment1: string = - "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + - "\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9\x03\xF9" + - "\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFA\x03\xFB" + - "\x03\xFB\x03\xFB\x03\xFB\x03\xFB\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC" + - "\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFC\x03\xFD\x03\xFD" + - "\x03\xFD\x03\xFD\x03\xFD\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + - "\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE\x03\xFE" + - "\x03\xFE\x03\xFE\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\xFF\x03\u0100\x03" + - "\u0100\x03\u0100\x03\u0101\x03\u0101\x03\u0102\x03\u0102\x03\u0103\x03" + - "\u0103\x03\u0104\x03\u0104\x03\u0105\x03\u0105\x03\u0106\x03\u0106\x03" + - "\u0107\x03\u0107\x03\u0108\x06\u0108\u0A19\n\u0108\r\u0108\x0E\u0108\u0A1A" + - "\x03\u0109\x06\u0109\u0A1E\n\u0109\r\u0109\x0E\u0109\u0A1F\x05\u0109\u0A22" + - "\n\u0109\x03\u0109\x03\u0109\x06\u0109\u0A26\n\u0109\r\u0109\x0E\u0109" + - "\u0A27\x03\u010A\x03\u010A\x06\u010A\u0A2C\n\u010A\r\u010A\x0E\u010A\u0A2D" + - "\x07\u010A\u0A30\n\u010A\f\u010A\x0E\u010A\u0A33\v\u010A\x03\u010B\x06" + - "\u010B\u0A36\n\u010B\r\u010B\x0E\u010B\u0A37\x03\u010B\x07\u010B\u0A3B" + - "\n\u010B\f\u010B\x0E\u010B\u0A3E\v\u010B\x03\u010C\x03\u010C\x03\u010C" + - "\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x03\u010D\x07\u010D" + - "\u0A49\n\u010D\f\u010D\x0E\u010D\u0A4C\v\u010D\x03\u010D\x03\u010D\x03" + - "\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x03\u010E\x07\u010E\u0A56" + - "\n\u010E\f\u010E\x0E\u010E\u0A59\v\u010E\x03\u010E\x03\u010E\x03\u010F" + - "\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x03\u010F\x07\u010F\u0A63\n\u010F" + - "\f\u010F\x0E\u010F\u0A66\v\u010F\x03\u010F\x03\u010F\x03\u0110\x03\u0110" + - "\x03\u0111\x03\u0111\x03\u0111\x03\u0111\x03\u0A37\x02\x02\u0112\x03\x02" + - "\x03\x05\x02\x04\x07\x02\x05\t\x02\x06\v\x02\x07\r\x02\b\x0F\x02\t\x11" + - "\x02\n\x13\x02\v\x15\x02\f\x17\x02\r\x19\x02\x0E\x1B\x02\x0F\x1D\x02\x10" + - "\x1F\x02\x11!\x02\x12#\x02\x13%\x02\x14\'\x02\x15)\x02\x16+\x02\x17-\x02" + - "\x18/\x02\x191\x02\x1A3\x02\x1B5\x02\x1C7\x02\x1D9\x02\x1E;\x02\x1F=\x02" + - " ?\x02!A\x02\"C\x02#E\x02$G\x02%I\x02&K\x02\'M\x02(O\x02)Q\x02*S\x02+" + - "U\x02,W\x02-Y\x02.[\x02/]\x020_\x021a\x022c\x023e\x024g\x025i\x026k\x02" + - "7m\x028o\x029q\x02:s\x02;u\x02{\x02?}\x02@\x7F\x02A\x81\x02" + - "B\x83\x02C\x85\x02D\x87\x02E\x89\x02F\x8B\x02G\x8D\x02H\x8F\x02I\x91\x02" + - "J\x93\x02K\x95\x02L\x97\x02M\x99\x02N\x9B\x02O\x9D\x02P\x9F\x02Q\xA1\x02" + - "R\xA3\x02S\xA5\x02T\xA7\x02U\xA9\x02V\xAB\x02W\xAD\x02X\xAF\x02Y\xB1\x02" + - "Z\xB3\x02[\xB5\x02\\\xB7\x02]\xB9\x02^\xBB\x02_\xBD\x02`\xBF\x02a\xC1" + - "\x02b\xC3\x02c\xC5\x02d\xC7\x02e\xC9\x02f\xCB\x02g\xCD\x02h\xCF\x02i\xD1" + - "\x02j\xD3\x02k\xD5\x02l\xD7\x02m\xD9\x02n\xDB\x02o\xDD\x02p\xDF\x02q\xE1" + - "\x02r\xE3\x02s\xE5\x02t\xE7\x02u\xE9\x02v\xEB\x02w\xED\x02x\xEF\x02y\xF1" + - "\x02z\xF3\x02{\xF5\x02|\xF7\x02}\xF9\x02~\xFB\x02\x7F\xFD\x02\x80\xFF" + - "\x02\x81\u0101\x02\x82\u0103\x02\x83\u0105\x02\x84\u0107\x02\x85\u0109" + - "\x02\x86\u010B\x02\x87\u010D\x02\x88\u010F\x02\x89\u0111\x02\x8A\u0113" + - "\x02\x8B\u0115\x02\x8C\u0117\x02\x8D\u0119\x02\x8E\u011B\x02\x8F\u011D" + - "\x02\x90\u011F\x02\x91\u0121\x02\x92\u0123\x02\x93\u0125\x02\x94\u0127" + - "\x02\x95\u0129\x02\x96\u012B\x02\x97\u012D\x02\x98\u012F\x02\x99\u0131" + - "\x02\x9A\u0133\x02\x9B\u0135\x02\x9C\u0137\x02\x9D\u0139\x02\x9E\u013B" + - "\x02\x9F\u013D\x02\xA0\u013F\x02\xA1\u0141\x02\xA2\u0143\x02\xA3\u0145" + - "\x02\xA4\u0147\x02\xA5\u0149\x02\xA6\u014B\x02\xA7\u014D\x02\xA8\u014F" + - "\x02\xA9\u0151\x02\xAA\u0153\x02\xAB\u0155\x02\xAC\u0157\x02\xAD\u0159" + - "\x02\xAE\u015B\x02\xAF\u015D\x02\xB0\u015F\x02\xB1\u0161\x02\xB2\u0163" + - "\x02\xB3\u0165\x02\xB4\u0167\x02\xB5\u0169\x02\xB6\u016B\x02\xB7\u016D" + - "\x02\xB8\u016F\x02\xB9\u0171\x02\xBA\u0173\x02\xBB\u0175\x02\xBC\u0177" + - "\x02\xBD\u0179\x02\xBE\u017B\x02\xBF\u017D\x02\xC0\u017F\x02\xC1\u0181" + - "\x02\xC2\u0183\x02\xC3\u0185\x02\xC4\u0187\x02\xC5\u0189\x02\xC6\u018B" + - "\x02\xC7\u018D\x02\xC8\u018F\x02\xC9\u0191\x02\xCA\u0193\x02\xCB\u0195" + - "\x02\xCC\u0197\x02\xCD\u0199\x02\xCE\u019B\x02\xCF\u019D\x02\xD0\u019F" + - "\x02\xD1\u01A1\x02\xD2\u01A3\x02\xD3\u01A5\x02\xD4\u01A7\x02\xD5\u01A9" + - "\x02\xD6\u01AB\x02\xD7\u01AD\x02\xD8\u01AF\x02\xD9\u01B1\x02\xDA\u01B3" + - "\x02\xDB\u01B5\x02\xDC\u01B7\x02\xDD\u01B9\x02\xDE\u01BB\x02\xDF\u01BD" + - "\x02\xE0\u01BF\x02\xE1\u01C1\x02\xE2\u01C3\x02\xE3\u01C5\x02\xE4\u01C7" + - "\x02\xE5\u01C9\x02\xE6\u01CB\x02\xE7\u01CD\x02\xE8\u01CF\x02\xE9\u01D1" + - "\x02\xEA\u01D3\x02\xEB\u01D5\x02\xEC\u01D7\x02\xED\u01D9\x02\xEE\u01DB" + - "\x02\xEF\u01DD\x02\xF0\u01DF\x02\xF1\u01E1\x02\xF2\u01E3\x02\xF3\u01E5" + - "\x02\xF4\u01E7\x02\xF5\u01E9\x02\xF6\u01EB\x02\xF7\u01ED\x02\xF8\u01EF" + - "\x02\xF9\u01F1\x02\xFA\u01F3\x02\xFB\u01F5\x02\xFC\u01F7\x02\xFD\u01F9" + - "\x02\xFE\u01FB\x02\xFF\u01FD\x02\u0100\u01FF\x02\u0101\u0201\x02\u0102" + - "\u0203\x02\u0103\u0205\x02\u0104\u0207\x02\u0105\u0209\x02\u0106\u020B" + - "\x02\u0107\u020D\x02\u0108\u020F\x02\u0109\u0211\x02\u010A\u0213\x02\x02" + - "\u0215\x02\x02\u0217\x02\u010B\u0219\x02\u010C\u021B\x02\u010D\u021D\x02" + - "\u010E\u021F\x02\x02\u0221\x02\u010F\x03\x02\n\x03\x02/0\x04\x02,,2;\x04" + - "\x02,,B\\\x07\x02,,//2;C\\aa\x04\x02$$^^\x04\x02))^^\x04\x02^^bb\x03\x02" + - "2;\x02\u0A7C\x02\x03\x03\x02\x02\x02\x02\x05\x03\x02\x02\x02\x02\x07\x03" + - "\x02\x02\x02\x02\t\x03\x02\x02\x02\x02\v\x03\x02\x02\x02\x02\r\x03\x02" + - "\x02\x02\x02\x0F\x03\x02\x02\x02\x02\x11\x03\x02\x02\x02\x02\x13\x03\x02" + - "\x02\x02\x02\x15\x03\x02\x02\x02\x02\x17\x03\x02\x02\x02\x02\x19\x03\x02" + - "\x02\x02\x02\x1B\x03\x02\x02\x02\x02\x1D\x03\x02\x02\x02\x02\x1F\x03\x02" + - "\x02\x02\x02!\x03\x02\x02\x02\x02#\x03\x02\x02\x02\x02%\x03\x02\x02\x02" + - "\x02\'\x03\x02\x02\x02\x02)\x03\x02\x02\x02\x02+\x03\x02\x02\x02\x02-" + - "\x03\x02\x02\x02\x02/\x03\x02\x02\x02\x021\x03\x02\x02\x02\x023\x03\x02" + - "\x02\x02\x025\x03\x02\x02\x02\x027\x03\x02\x02\x02\x029\x03\x02\x02\x02" + - "\x02;\x03\x02\x02\x02\x02=\x03\x02\x02\x02\x02?\x03\x02\x02\x02\x02A\x03" + - "\x02\x02\x02\x02C\x03\x02\x02\x02\x02E\x03\x02\x02\x02\x02G\x03\x02\x02" + - "\x02\x02I\x03\x02\x02\x02\x02K\x03\x02\x02\x02\x02M\x03\x02\x02\x02\x02" + - "O\x03\x02\x02\x02\x02Q\x03\x02\x02\x02\x02S\x03\x02\x02\x02\x02U\x03\x02" + - "\x02\x02\x02W\x03\x02\x02\x02\x02Y\x03\x02\x02\x02\x02[\x03\x02\x02\x02" + - "\x02]\x03\x02\x02\x02\x02_\x03\x02\x02\x02\x02a\x03\x02\x02\x02\x02c\x03" + - "\x02\x02\x02\x02e\x03\x02\x02\x02\x02g\x03\x02\x02\x02\x02i\x03\x02\x02" + - "\x02\x02k\x03\x02\x02\x02\x02m\x03\x02\x02\x02\x02o\x03\x02\x02\x02\x02" + - "q\x03\x02\x02\x02\x02s\x03\x02\x02\x02\x02u\x03\x02\x02\x02\x02w\x03\x02" + - "\x02\x02\x02y\x03\x02\x02\x02\x02{\x03\x02\x02\x02\x02}\x03\x02\x02\x02" + - "\x02\x7F\x03\x02\x02\x02\x02\x81\x03\x02\x02\x02\x02\x83\x03\x02\x02\x02" + - "\x02\x85\x03\x02\x02\x02\x02\x87\x03\x02\x02\x02\x02\x89\x03\x02\x02\x02" + - "\x02\x8B\x03\x02\x02\x02\x02\x8D\x03\x02\x02\x02\x02\x8F\x03\x02\x02\x02" + - "\x02\x91\x03\x02\x02\x02\x02\x93\x03\x02\x02\x02\x02\x95\x03\x02\x02\x02" + - "\x02\x97\x03\x02\x02\x02\x02\x99\x03\x02\x02\x02\x02\x9B\x03\x02\x02\x02" + - "\x02\x9D\x03\x02\x02\x02\x02\x9F\x03\x02\x02\x02\x02\xA1\x03\x02\x02\x02" + - "\x02\xA3\x03\x02\x02\x02\x02\xA5\x03\x02\x02\x02\x02\xA7\x03\x02\x02\x02" + - "\x02\xA9\x03\x02\x02\x02\x02\xAB\x03\x02\x02\x02\x02\xAD\x03\x02\x02\x02" + - "\x02\xAF\x03\x02\x02\x02\x02\xB1\x03\x02\x02\x02\x02\xB3\x03\x02\x02\x02" + - "\x02\xB5\x03\x02\x02\x02\x02\xB7\x03\x02\x02\x02\x02\xB9\x03\x02\x02\x02" + - "\x02\xBB\x03\x02\x02\x02\x02\xBD\x03\x02\x02\x02\x02\xBF\x03\x02\x02\x02" + - "\x02\xC1\x03\x02\x02\x02\x02\xC3\x03\x02\x02\x02\x02\xC5\x03\x02\x02\x02" + - "\x02\xC7\x03\x02\x02\x02\x02\xC9\x03\x02\x02\x02\x02\xCB\x03\x02\x02\x02" + - "\x02\xCD\x03\x02\x02\x02\x02\xCF\x03\x02\x02\x02\x02\xD1\x03\x02\x02\x02" + - "\x02\xD3\x03\x02\x02\x02\x02\xD5\x03\x02\x02\x02\x02\xD7\x03\x02\x02\x02" + - "\x02\xD9\x03\x02\x02\x02\x02\xDB\x03\x02\x02\x02\x02\xDD\x03\x02\x02\x02" + - "\x02\xDF\x03\x02\x02\x02\x02\xE1\x03\x02\x02\x02\x02\xE3\x03\x02\x02\x02" + - "\x02\xE5\x03\x02\x02\x02\x02\xE7\x03\x02\x02\x02\x02\xE9\x03\x02\x02\x02" + - "\x02\xEB\x03\x02\x02\x02\x02\xED\x03\x02\x02\x02\x02\xEF\x03\x02\x02\x02" + - "\x02\xF1\x03\x02\x02\x02\x02\xF3\x03\x02\x02\x02\x02\xF5\x03\x02\x02\x02" + - "\x02\xF7\x03\x02\x02\x02\x02\xF9\x03\x02\x02\x02\x02\xFB\x03\x02\x02\x02" + - "\x02\xFD\x03\x02\x02\x02\x02\xFF\x03\x02\x02\x02\x02\u0101\x03\x02\x02" + - "\x02\x02\u0103\x03\x02\x02\x02\x02\u0105\x03\x02\x02\x02\x02\u0107\x03" + - "\x02\x02\x02\x02\u0109\x03\x02\x02\x02\x02\u010B\x03\x02\x02\x02\x02\u010D" + - "\x03\x02\x02\x02\x02\u010F\x03\x02\x02\x02\x02\u0111\x03\x02\x02\x02\x02" + - "\u0113\x03\x02\x02\x02\x02\u0115\x03\x02\x02\x02\x02\u0117\x03\x02\x02" + - "\x02\x02\u0119\x03\x02\x02\x02\x02\u011B\x03\x02\x02\x02\x02\u011D\x03" + - "\x02\x02\x02\x02\u011F\x03\x02\x02\x02\x02\u0121\x03\x02\x02\x02\x02\u0123" + - "\x03\x02\x02\x02\x02\u0125\x03\x02\x02\x02\x02\u0127\x03\x02\x02\x02\x02" + - "\u0129\x03\x02\x02\x02\x02\u012B\x03\x02\x02\x02\x02\u012D\x03\x02\x02" + - "\x02\x02\u012F\x03\x02\x02\x02\x02\u0131\x03\x02\x02\x02\x02\u0133\x03" + - "\x02\x02\x02\x02\u0135\x03\x02\x02\x02\x02\u0137\x03\x02\x02\x02\x02\u0139" + - "\x03\x02\x02\x02\x02\u013B\x03\x02\x02\x02\x02\u013D\x03\x02\x02\x02\x02" + - "\u013F\x03\x02\x02\x02\x02\u0141\x03\x02\x02\x02\x02\u0143\x03\x02\x02" + - "\x02\x02\u0145\x03\x02\x02\x02\x02\u0147\x03\x02\x02\x02\x02\u0149\x03" + - "\x02\x02\x02\x02\u014B\x03\x02\x02\x02\x02\u014D\x03\x02\x02\x02\x02\u014F" + - "\x03\x02\x02\x02\x02\u0151\x03\x02\x02\x02\x02\u0153\x03\x02\x02\x02\x02" + - "\u0155\x03\x02\x02\x02\x02\u0157\x03\x02\x02\x02\x02\u0159\x03\x02\x02" + - "\x02\x02\u015B\x03\x02\x02\x02\x02\u015D\x03\x02\x02\x02\x02\u015F\x03" + - "\x02\x02\x02\x02\u0161\x03\x02\x02\x02\x02\u0163\x03\x02\x02\x02\x02\u0165" + - "\x03\x02\x02\x02\x02\u0167\x03\x02\x02\x02\x02\u0169\x03\x02\x02\x02\x02" + - "\u016B\x03\x02\x02\x02\x02\u016D\x03\x02\x02\x02\x02\u016F\x03\x02\x02" + - "\x02\x02\u0171\x03\x02\x02\x02\x02\u0173\x03\x02\x02\x02\x02\u0175\x03" + - "\x02\x02\x02\x02\u0177\x03\x02\x02\x02\x02\u0179\x03\x02\x02\x02\x02\u017B" + - "\x03\x02\x02\x02\x02\u017D\x03\x02\x02\x02\x02\u017F\x03\x02\x02\x02\x02" + - "\u0181\x03\x02\x02\x02\x02\u0183\x03\x02\x02\x02\x02\u0185\x03\x02\x02" + - "\x02\x02\u0187\x03\x02\x02\x02\x02\u0189\x03\x02\x02\x02\x02\u018B\x03" + - "\x02\x02\x02\x02\u018D\x03\x02\x02\x02\x02\u018F\x03\x02\x02\x02\x02\u0191" + - "\x03\x02\x02\x02\x02\u0193\x03\x02\x02\x02\x02\u0195\x03\x02\x02\x02\x02" + - "\u0197\x03\x02\x02\x02\x02\u0199\x03\x02\x02\x02\x02\u019B\x03\x02\x02" + - "\x02\x02\u019D\x03\x02\x02\x02\x02\u019F\x03\x02\x02\x02\x02\u01A1\x03" + - "\x02\x02\x02\x02\u01A3\x03\x02\x02\x02\x02\u01A5\x03\x02\x02\x02\x02\u01A7" + - "\x03\x02\x02\x02\x02\u01A9\x03\x02\x02\x02\x02\u01AB\x03\x02\x02\x02\x02" + - "\u01AD\x03\x02\x02\x02\x02\u01AF\x03\x02\x02\x02\x02\u01B1\x03\x02\x02" + - "\x02\x02\u01B3\x03\x02\x02\x02\x02\u01B5\x03\x02\x02\x02\x02\u01B7\x03" + - "\x02\x02\x02\x02\u01B9\x03\x02\x02\x02\x02\u01BB\x03\x02\x02\x02\x02\u01BD" + - "\x03\x02\x02\x02\x02\u01BF\x03\x02\x02\x02\x02\u01C1\x03\x02\x02\x02\x02" + - "\u01C3\x03\x02\x02\x02\x02\u01C5\x03\x02\x02\x02\x02\u01C7\x03\x02\x02" + - "\x02\x02\u01C9\x03\x02\x02\x02\x02\u01CB\x03\x02\x02\x02\x02\u01CD\x03" + - "\x02\x02\x02\x02\u01CF\x03\x02\x02\x02\x02\u01D1\x03\x02\x02\x02\x02\u01D3" + - "\x03\x02\x02\x02\x02\u01D5\x03\x02\x02\x02\x02\u01D7\x03\x02\x02\x02\x02" + - "\u01D9\x03\x02\x02\x02\x02\u01DB\x03\x02\x02\x02\x02\u01DD\x03\x02\x02" + - "\x02\x02\u01DF\x03\x02\x02\x02\x02\u01E1\x03\x02\x02\x02\x02\u01E3\x03" + - "\x02\x02\x02\x02\u01E5\x03\x02\x02\x02\x02\u01E7\x03\x02\x02\x02\x02\u01E9" + - "\x03\x02\x02\x02\x02\u01EB\x03\x02\x02\x02\x02\u01ED\x03\x02\x02\x02\x02" + - "\u01EF\x03\x02\x02\x02\x02\u01F1\x03\x02\x02\x02\x02\u01F3\x03\x02\x02" + - "\x02\x02\u01F5\x03\x02\x02\x02\x02\u01F7\x03\x02\x02\x02\x02\u01F9\x03" + - "\x02\x02\x02\x02\u01FB\x03\x02\x02\x02\x02\u01FD\x03\x02\x02\x02\x02\u01FF" + - "\x03\x02\x02\x02\x02\u0201\x03\x02\x02\x02\x02\u0203\x03\x02\x02\x02\x02" + - "\u0205\x03\x02\x02\x02\x02\u0207\x03\x02\x02\x02\x02\u0209\x03\x02\x02" + - "\x02\x02\u020B\x03\x02\x02\x02\x02\u020D\x03\x02\x02\x02\x02\u020F\x03" + - "\x02\x02\x02\x02\u0211\x03\x02\x02\x02\x02\u0217\x03\x02\x02\x02\x02\u0219" + - "\x03\x02\x02\x02\x02\u021B\x03\x02\x02\x02\x02\u021D\x03\x02\x02\x02\x02" + - "\u0221\x03\x02\x02\x02\x03\u0223\x03\x02\x02\x02\x05\u022A\x03\x02\x02" + - "\x02\x07\u022F\x03\x02\x02\x02\t\u0235\x03\x02\x02\x02\v\u023C\x03\x02" + - "\x02\x02\r\u0243\x03\x02\x02\x02\x0F\u0249\x03\x02\x02\x02\x11\u024F\x03" + - "\x02\x02\x02\x13\u0254\x03\x02\x02\x02\x15\u0259\x03\x02\x02\x02\x17\u025E" + - "\x03\x02\x02\x02\x19\u0262\x03\x02\x02\x02\x1B\u0267\x03\x02\x02\x02\x1D" + - "\u026D\x03\x02\x02\x02\x1F\u0274\x03\x02\x02\x02!\u0277\x03\x02\x02\x02" + - "#\u027A\x03\x02\x02\x02%\u027D\x03\x02\x02\x02\'\u0284\x03\x02\x02\x02" + - ")\u028A\x03\x02\x02\x02+\u028C\x03\x02\x02\x02-\u0291\x03\x02\x02\x02" + - "/\u0298\x03\x02\x02\x021\u029D\x03\x02\x02\x023\u02A1\x03\x02\x02\x02" + - "5\u02A4\x03\x02\x02\x027\u02A8\x03\x02\x02\x029\u02B2\x03\x02\x02\x02" + - ";\u02BE\x03\x02\x02\x02=\u02D0\x03\x02\x02\x02?\u02DB\x03\x02\x02\x02" + - "A\u02E2\x03\x02\x02\x02C\u02E8\x03\x02\x02\x02E\u02F2\x03\x02\x02\x02" + - "G\u02FD\x03\x02\x02\x02I\u030B\x03\x02\x02\x02K\u031B\x03\x02\x02\x02" + - "M\u0328\x03\x02\x02\x02O\u0334\x03\x02\x02\x02Q\u0341\x03\x02\x02\x02" + - "S\u034C\x03\x02\x02\x02U\u0359\x03\x02\x02\x02W\u0364\x03\x02\x02\x02" + - "Y\u036E\x03\x02\x02\x02[\u0381\x03\x02\x02\x02]\u0399\x03\x02\x02\x02" + - "_\u039E\x03\x02\x02\x02a\u03A1\x03\x02\x02\x02c\u03A5\x03\x02\x02\x02" + - "e\u03A8\x03\x02\x02\x02g\u03AC\x03\x02\x02\x02i\u03B0\x03\x02\x02\x02" + - "k\u03B5\x03\x02\x02\x02m\u03BB\x03\x02\x02\x02o\u03C2\x03\x02\x02\x02" + - "q\u03CB\x03\x02\x02\x02s\u03D4\x03\x02\x02\x02u\u03E0\x03\x02\x02\x02" + - "w\u03EC\x03\x02\x02\x02y\u03F3\x03\x02\x02\x02{\u03FA\x03\x02\x02\x02" + - "}\u03FF\x03\x02\x02\x02\x7F\u0403\x03\x02\x02\x02\x81\u0408\x03\x02\x02" + - "\x02\x83\u040E\x03\x02\x02\x02\x85\u0416\x03\x02\x02\x02\x87\u041B\x03" + - "\x02\x02\x02\x89\u042E\x03\x02\x02\x02\x8B\u0441\x03\x02\x02\x02\x8D\u044F" + - "\x03\x02\x02\x02\x8F\u0460\x03\x02\x02\x02\x91\u046C\x03\x02\x02\x02\x93" + - "\u0478\x03\x02\x02\x02\x95\u0488\x03\x02\x02\x02\x97\u0493\x03\x02\x02" + - "\x02\x99\u049E\x03\x02\x02\x02\x9B\u04A7\x03\x02\x02\x02\x9D\u04B2\x03" + - "\x02\x02\x02\x9F\u04BC\x03\x02\x02\x02\xA1\u04C3\x03\x02\x02\x02\xA3\u04CF" + - "\x03\x02\x02\x02\xA5\u04D3\x03\x02\x02\x02\xA7\u04DB\x03\x02\x02\x02\xA9" + - "\u04E2\x03\x02\x02\x02\xAB\u04E7\x03\x02\x02\x02\xAD\u04ED\x03\x02\x02" + - "\x02\xAF\u04F4\x03\x02\x02\x02\xB1\u04FC\x03\x02\x02\x02\xB3\u04FE\x03" + - "\x02\x02\x02\xB5\u0500\x03\x02\x02\x02\xB7\u0502\x03\x02\x02\x02\xB9\u0504" + - "\x03\x02\x02\x02\xBB\u0506\x03\x02\x02\x02\xBD\u0508\x03\x02\x02\x02\xBF" + - "\u050B\x03\x02\x02\x02\xC1\u050E\x03\x02\x02\x02\xC3\u0511\x03\x02\x02" + - "\x02\xC5\u0513\x03\x02\x02\x02\xC7\u0515\x03\x02\x02\x02\xC9\u0517\x03" + - "\x02\x02\x02\xCB\u0519\x03\x02\x02\x02\xCD\u051B\x03\x02\x02\x02\xCF\u051D" + - "\x03\x02\x02\x02\xD1\u051F\x03\x02\x02\x02\xD3\u0521\x03\x02\x02\x02\xD5" + - "\u0523\x03\x02\x02\x02\xD7\u0525\x03\x02\x02\x02\xD9\u0527\x03\x02\x02" + - "\x02\xDB\u0529\x03\x02\x02\x02\xDD\u052B\x03\x02\x02\x02\xDF\u052D\x03" + - "\x02\x02\x02\xE1\u052F\x03\x02\x02\x02\xE3\u0531\x03\x02\x02\x02\xE5\u0533" + - "\x03\x02\x02\x02\xE7\u0537\x03\x02\x02\x02\xE9\u053D\x03\x02\x02\x02\xEB" + - "\u054C\x03\x02\x02\x02\xED\u0552\x03\x02\x02\x02\xEF\u055E\x03\x02\x02" + - "\x02\xF1\u0562\x03\x02\x02\x02\xF3\u0567\x03\x02\x02\x02\xF5\u056E\x03" + - "\x02\x02\x02\xF7\u0572\x03\x02\x02\x02\xF9\u0577\x03\x02\x02\x02\xFB\u057D" + - "\x03\x02\x02\x02\xFD\u0583\x03\x02\x02\x02\xFF\u058A\x03\x02\x02\x02\u0101" + - "\u058E\x03\x02\x02\x02\u0103\u0594\x03\x02\x02\x02\u0105\u059D\x03\x02" + - "\x02\x02\u0107\u05A5\x03\x02\x02\x02\u0109\u05B1\x03\x02\x02\x02\u010B" + - "\u05BC\x03\x02\x02\x02\u010D\u05C7\x03\x02\x02\x02\u010F\u05CD\x03\x02" + - "\x02\x02\u0111\u05D2\x03\x02\x02\x02\u0113\u05D7\x03\x02\x02\x02\u0115" + - "\u05DE\x03\x02\x02\x02\u0117\u05E7\x03\x02\x02\x02\u0119\u05F5\x03\x02" + - "\x02\x02\u011B\u05FC\x03\x02\x02\x02\u011D\u0608\x03\x02\x02\x02\u011F" + - "\u0610\x03\x02\x02\x02\u0121\u0619\x03\x02\x02\x02\u0123\u0624\x03\x02" + - "\x02\x02\u0125\u062F\x03\x02\x02\x02\u0127\u0634\x03\x02\x02\x02\u0129" + - "\u063E\x03\x02\x02\x02\u012B\u0640\x03\x02\x02\x02\u012D\u0643\x03\x02" + - "\x02\x02\u012F\u0647\x03\x02\x02\x02\u0131\u064C\x03\x02\x02\x02\u0133" + - "\u0654\x03\x02\x02\x02\u0135\u0659\x03\x02\x02\x02\u0137\u065F\x03\x02" + - "\x02\x02\u0139\u0661\x03\x02\x02\x02\u013B\u0665\x03\x02\x02\x02\u013D" + - "\u066B\x03\x02\x02\x02\u013F\u066E\x03\x02\x02\x02\u0141\u0672\x03\x02" + - "\x02\x02\u0143\u0678\x03\x02\x02\x02\u0145\u067D\x03\x02\x02\x02\u0147" + - "\u0681\x03\x02\x02\x02\u0149\u0684\x03\x02\x02\x02\u014B\u0688\x03\x02" + - "\x02\x02\u014D\u068E\x03\x02\x02\x02\u014F\u0693\x03\x02\x02\x02\u0151" + - "\u0699\x03\x02\x02\x02\u0153\u069E\x03\x02\x02\x02\u0155\u06A3\x03\x02" + - "\x02\x02\u0157\u06AC\x03\x02\x02\x02\u0159\u06B1\x03\x02\x02\x02\u015B" + - "\u06B6\x03\x02\x02\x02\u015D\u06BB\x03\x02\x02\x02\u015F\u06C1\x03\x02" + - "\x02\x02\u0161\u06C5\x03\x02\x02\x02\u0163\u06C9\x03\x02\x02\x02\u0165" + - "\u06D1\x03\x02\x02\x02\u0167\u06D9\x03\x02\x02\x02\u0169\u06DD\x03\x02" + - "\x02\x02\u016B\u06E1\x03\x02\x02\x02\u016D\u06E9\x03\x02\x02\x02\u016F" + - "\u06EE\x03\x02\x02\x02\u0171\u06F7\x03\x02\x02\x02\u0173\u0700\x03\x02" + - "\x02\x02\u0175\u070B\x03\x02\x02\x02\u0177\u0715\x03\x02\x02\x02\u0179" + - "\u071F\x03\x02\x02\x02\u017B\u0727\x03\x02\x02\x02\u017D\u0731\x03\x02" + - "\x02\x02\u017F\u073B\x03\x02\x02\x02\u0181\u0743\x03\x02\x02\x02\u0183" + - "\u0748\x03\x02\x02\x02\u0185\u0754\x03\x02\x02\x02\u0187\u075E\x03\x02" + - "\x02\x02\u0189\u076A\x03\x02\x02\x02\u018B\u0772\x03\x02\x02\x02\u018D" + - "\u0779\x03\x02\x02\x02\u018F\u0783\x03\x02\x02\x02\u0191\u0789\x03\x02" + - "\x02\x02\u0193\u078F\x03\x02\x02\x02\u0195\u0794\x03\x02\x02\x02\u0197" + - "\u0797\x03\x02\x02\x02\u0199\u079D\x03\x02\x02\x02\u019B\u07A3\x03\x02" + - "\x02\x02\u019D\u07AA\x03\x02\x02\x02\u019F\u07B4\x03\x02\x02\x02\u01A1" + - "\u07BB\x03\x02\x02\x02\u01A3\u07C2\x03\x02\x02\x02\u01A5\u07C8\x03\x02" + - "\x02\x02\u01A7\u07CD\x03\x02\x02\x02\u01A9\u07D3\x03\x02\x02\x02\u01AB" + - "\u07DA\x03\x02\x02\x02\u01AD\u07E2\x03\x02\x02\x02\u01AF\u07E7\x03\x02" + - "\x02\x02\u01B1\u07EC\x03\x02\x02\x02\u01B3\u07F3\x03\x02\x02\x02\u01B5" + - "\u07FD\x03\x02\x02\x02\u01B7\u0804\x03\x02\x02\x02\u01B9\u080B\x03\x02" + - "\x02\x02\u01BB\u080E\x03\x02\x02\x02\u01BD\u0814\x03\x02\x02\x02\u01BF" + - "\u0821\x03\x02\x02\x02\u01C1\u0835\x03\x02\x02\x02\u01C3\u084C\x03\x02" + - "\x02\x02\u01C5\u085D\x03\x02\x02\x02\u01C7\u0866\x03\x02\x02\x02\u01C9" + - "\u088A\x03\x02\x02\x02\u01CB\u0890\x03\x02\x02\x02\u01CD\u08A1\x03\x02" + - "\x02\x02\u01CF\u08AF\x03\x02\x02\x02\u01D1\u08C0\x03\x02\x02\x02\u01D3" + - "\u08DB\x03\x02\x02\x02\u01D5\u08E1\x03\x02\x02\x02\u01D7\u08F6\x03\x02" + - "\x02\x02\u01D9\u090A\x03\x02\x02\x02\u01DB\u091F\x03\x02\x02\x02\u01DD" + - "\u092D\x03\x02\x02\x02\u01DF\u0937\x03\x02\x02\x02\u01E1\u093F\x03\x02" + - "\x02\x02\u01E3\u0951\x03\x02\x02\x02\u01E5\u0969\x03\x02\x02\x02\u01E7" + - "\u0978\x03\x02\x02\x02\u01E9\u098D\x03\x02\x02\x02\u01EB\u0996\x03\x02" + - "\x02\x02\u01ED\u09A2\x03\x02\x02\x02\u01EF\u09B0\x03\x02\x02\x02\u01F1" + - "\u09BF\x03\x02\x02\x02\u01F3\u09D2\x03\x02\x02\x02\u01F5\u09DA\x03\x02" + - "\x02\x02\u01F7\u09DF\x03\x02\x02\x02\u01F9\u09EB\x03\x02\x02\x02\u01FB" + - "\u09F0\x03\x02\x02\x02\u01FD\u0A01\x03\x02\x02\x02\u01FF\u0A06\x03\x02" + - "\x02\x02\u0201\u0A09\x03\x02\x02\x02\u0203\u0A0B\x03\x02\x02\x02\u0205" + - "\u0A0D\x03\x02\x02\x02\u0207\u0A0F\x03\x02\x02\x02\u0209\u0A11\x03\x02" + - "\x02\x02\u020B\u0A13\x03\x02\x02\x02\u020D\u0A15\x03\x02\x02\x02\u020F" + - "\u0A18\x03\x02\x02\x02\u0211\u0A21\x03\x02\x02\x02\u0213\u0A31\x03\x02" + - "\x02\x02\u0215\u0A35\x03\x02\x02\x02\u0217\u0A3F\x03\x02\x02\x02\u0219" + - "\u0A42\x03\x02\x02\x02\u021B\u0A4F\x03\x02\x02\x02\u021D\u0A5C\x03\x02" + - "\x02\x02\u021F\u0A69\x03\x02\x02\x02\u0221\u0A6B\x03\x02\x02\x02\u0223" + - "\u0224\x07U\x02\x02\u0224\u0225\x07G\x02\x02\u0225\u0226\x07C\x02\x02" + - "\u0226\u0227\x07T\x02\x02\u0227\u0228\x07E\x02\x02\u0228\u0229\x07J\x02" + - "\x02\u0229\x04\x03\x02\x02\x02\u022A\u022B\x07H\x02\x02\u022B\u022C\x07" + - "T\x02\x02\u022C\u022D\x07Q\x02\x02\u022D\u022E\x07O\x02\x02\u022E\x06" + - "\x03\x02\x02\x02\u022F\u0230\x07Y\x02\x02\u0230\u0231\x07J\x02\x02\u0231" + - "\u0232\x07G\x02\x02\u0232\u0233\x07T\x02\x02\u0233\u0234\x07G\x02\x02" + - "\u0234\b\x03\x02\x02\x02\u0235\u0236\x07H\x02\x02\u0236\u0237\x07K\x02" + - "\x02\u0237\u0238\x07G\x02\x02\u0238\u0239\x07N\x02\x02\u0239\u023A\x07" + - "F\x02\x02\u023A\u023B\x07U\x02\x02\u023B\n\x03\x02\x02\x02\u023C\u023D" + - "\x07T\x02\x02\u023D\u023E\x07G\x02\x02\u023E\u023F\x07P\x02\x02\u023F" + - "\u0240\x07C\x02\x02\u0240\u0241\x07O\x02\x02\u0241\u0242\x07G\x02\x02" + - "\u0242\f\x03\x02\x02\x02\u0243\u0244\x07U\x02\x02\u0244\u0245\x07V\x02" + - "\x02\u0245\u0246\x07C\x02\x02\u0246\u0247\x07V\x02\x02\u0247\u0248\x07" + - "U\x02\x02\u0248\x0E\x03\x02\x02\x02\u0249\u024A\x07F\x02\x02\u024A\u024B" + - "\x07G\x02\x02\u024B\u024C\x07F\x02\x02\u024C\u024D\x07W\x02\x02\u024D" + - "\u024E\x07R\x02\x02\u024E\x10\x03\x02\x02\x02\u024F\u0250\x07U\x02\x02" + - "\u0250\u0251\x07Q\x02\x02\u0251\u0252\x07T\x02\x02\u0252\u0253\x07V\x02" + - "\x02\u0253\x12\x03\x02\x02\x02\u0254\u0255\x07G\x02\x02\u0255\u0256\x07" + - "X\x02\x02\u0256\u0257\x07C\x02\x02\u0257\u0258\x07N\x02\x02\u0258\x14" + - "\x03\x02\x02\x02\u0259\u025A\x07J\x02\x02\u025A\u025B\x07G\x02\x02\u025B" + - "\u025C\x07C\x02\x02\u025C\u025D\x07F\x02\x02\u025D\x16\x03\x02\x02\x02" + - "\u025E\u025F\x07V\x02\x02\u025F\u0260\x07Q\x02\x02\u0260\u0261\x07R\x02" + - "\x02\u0261\x18\x03\x02\x02\x02\u0262\u0263\x07T\x02\x02\u0263\u0264\x07" + - "C\x02\x02\u0264\u0265\x07T\x02\x02\u0265\u0266\x07G\x02\x02\u0266\x1A" + - "\x03\x02\x02\x02\u0267\u0268\x07R\x02\x02\u0268\u0269\x07C\x02\x02\u0269" + - "\u026A\x07T\x02\x02\u026A\u026B\x07U\x02\x02\u026B\u026C\x07G\x02\x02" + - "\u026C\x1C\x03\x02\x02\x02\u026D\u026E\x07M\x02\x02\u026E\u026F\x07O\x02" + - "\x02\u026F\u0270\x07G\x02\x02\u0270\u0271\x07C\x02\x02\u0271\u0272\x07" + - "P\x02\x02\u0272\u0273\x07U\x02\x02\u0273\x1E\x03\x02\x02\x02\u0274\u0275" + - "\x07C\x02\x02\u0275\u0276\x07F\x02\x02\u0276 \x03\x02\x02\x02\u0277\u0278" + - "\x07"; - private static readonly _serializedATNSegment2: string = - "C\x02\x02\u0278\u0279\x07U\x02\x02\u0279\"\x03\x02\x02\x02\u027A\u027B" + - "\x07D\x02\x02\u027B\u027C\x07[\x02\x02\u027C$\x03\x02\x02\x02\u027D\u027E" + - "\x07U\x02\x02\u027E\u027F\x07Q\x02\x02\u027F\u0280\x07W\x02\x02\u0280" + - "\u0281\x07T\x02\x02\u0281\u0282\x07E\x02\x02\u0282\u0283\x07G\x02\x02" + - "\u0283&\x03\x02\x02\x02\u0284\u0285\x07K\x02\x02\u0285\u0286\x07P\x02" + - "\x02\u0286\u0287\x07F\x02\x02\u0287\u0288\x07G\x02\x02\u0288\u0289\x07" + - "Z\x02\x02\u0289(\x03\x02\x02\x02\u028A\u028B\x07F\x02\x02\u028B*\x03\x02" + - "\x02\x02\u028C\u028D\x07F\x02\x02\u028D\u028E\x07G\x02\x02\u028E\u028F" + - "\x07U\x02\x02\u028F\u0290\x07E\x02\x02\u0290,\x03\x02\x02\x02\u0291\u0292" + - "\x07U\x02\x02\u0292\u0293\x07Q\x02\x02\u0293\u0294\x07T\x02\x02\u0294" + - "\u0295\x07V\x02\x02\u0295\u0296\x07D\x02\x02\u0296\u0297\x07[\x02\x02" + - "\u0297.\x03\x02\x02\x02\u0298\u0299\x07C\x02\x02\u0299\u029A\x07W\x02" + - "\x02\u029A\u029B\x07V\x02\x02\u029B\u029C\x07Q\x02\x02\u029C0\x03\x02" + - "\x02\x02\u029D\u029E\x07U\x02\x02\u029E\u029F\x07V\x02\x02\u029F\u02A0" + - "\x07T\x02\x02\u02A02\x03\x02\x02\x02\u02A1\u02A2\x07K\x02\x02\u02A2\u02A3" + - "\x07R\x02\x02\u02A34\x03\x02\x02\x02\u02A4\u02A5\x07P\x02\x02\u02A5\u02A6" + - "\x07W\x02\x02\u02A6\u02A7\x07O\x02\x02\u02A76\x03\x02\x02\x02\u02A8\u02A9" + - "\x07M\x02\x02\u02A9\u02AA\x07G\x02\x02\u02AA\u02AB\x07G\x02\x02\u02AB" + - "\u02AC\x07R\x02\x02\u02AC\u02AD\x07G\x02\x02\u02AD\u02AE\x07O\x02\x02" + - "\u02AE\u02AF\x07R\x02\x02\u02AF\u02B0\x07V\x02\x02\u02B0\u02B1\x07[\x02" + - "\x02\u02B18\x03\x02\x02\x02\u02B2\u02B3\x07E\x02\x02\u02B3\u02B4\x07Q" + - "\x02\x02\u02B4\u02B5\x07P\x02\x02\u02B5\u02B6\x07U\x02\x02\u02B6\u02B7" + - "\x07G\x02\x02\u02B7\u02B8\x07E\x02\x02\u02B8\u02B9\x07W\x02\x02\u02B9" + - "\u02BA\x07V\x02\x02\u02BA\u02BB\x07K\x02\x02\u02BB\u02BC\x07X\x02\x02" + - "\u02BC\u02BD\x07G\x02\x02\u02BD:\x03\x02\x02\x02\u02BE\u02BF\x07F\x02" + - "\x02\u02BF\u02C0\x07G\x02\x02\u02C0\u02C1\x07F\x02\x02\u02C1\u02C2\x07" + - "W\x02\x02\u02C2\u02C3\x07R\x02\x02\u02C3\u02C4\x07a\x02\x02\u02C4\u02C5" + - "\x07U\x02\x02\u02C5\u02C6\x07R\x02\x02\u02C6\u02C7\x07N\x02\x02\u02C7" + - "\u02C8\x07K\x02\x02\u02C8\u02C9\x07V\x02\x02\u02C9\u02CA\x07X\x02\x02" + - "\u02CA\u02CB\x07C\x02\x02\u02CB\u02CC\x07N\x02\x02\u02CC\u02CD\x07W\x02" + - "\x02\u02CD\u02CE\x07G\x02\x02\u02CE\u02CF\x07U\x02\x02\u02CF<\x03\x02" + - "\x02\x02\u02D0\u02D1\x07R\x02\x02\u02D1\u02D2\x07C\x02\x02\u02D2\u02D3" + - "\x07T\x02\x02\u02D3\u02D4\x07V\x02\x02\u02D4\u02D5\x07K\x02\x02\u02D5" + - "\u02D6\x07V\x02\x02\u02D6\u02D7\x07K\x02\x02\u02D7\u02D8\x07Q\x02\x02" + - "\u02D8\u02D9\x07P\x02\x02\u02D9\u02DA\x07U\x02\x02\u02DA>\x03\x02\x02" + - "\x02\u02DB\u02DC\x07C\x02\x02\u02DC\u02DD\x07N\x02\x02\u02DD\u02DE\x07" + - "N\x02\x02\u02DE\u02DF\x07P\x02\x02\u02DF\u02E0\x07W\x02\x02\u02E0\u02E1" + - "\x07O\x02\x02\u02E1@\x03\x02\x02\x02\u02E2\u02E3\x07F\x02\x02\u02E3\u02E4" + - "\x07G\x02\x02\u02E4\u02E5\x07N\x02\x02\u02E5\u02E6\x07K\x02\x02\u02E6" + - "\u02E7\x07O\x02\x02\u02E7B\x03\x02\x02\x02\u02E8\u02E9\x07E\x02\x02\u02E9" + - "\u02EA\x07G\x02\x02\u02EA\u02EB\x07P\x02\x02\u02EB\u02EC\x07V\x02\x02" + - "\u02EC\u02ED\x07T\x02\x02\u02ED\u02EE\x07Q\x02\x02\u02EE\u02EF\x07K\x02" + - "\x02\u02EF\u02F0\x07F\x02\x02\u02F0\u02F1\x07U\x02\x02\u02F1D\x03\x02" + - "\x02\x02\u02F2\u02F3\x07K\x02\x02\u02F3\u02F4\x07V\x02\x02\u02F4\u02F5" + - "\x07G\x02\x02\u02F5\u02F6\x07T\x02\x02\u02F6\u02F7\x07C\x02\x02\u02F7" + - "\u02F8\x07V\x02\x02\u02F8\u02F9\x07K\x02\x02\u02F9\u02FA\x07Q\x02\x02" + - "\u02FA\u02FB\x07P\x02\x02\u02FB\u02FC\x07U\x02\x02\u02FCF\x03\x02\x02" + - "\x02\u02FD\u02FE\x07F\x02\x02\u02FE\u02FF\x07K\x02\x02\u02FF\u0300\x07" + - "U\x02\x02\u0300\u0301\x07V\x02\x02\u0301\u0302\x07C\x02\x02\u0302\u0303" + - "\x07P\x02\x02\u0303\u0304\x07E\x02\x02\u0304\u0305\x07G\x02\x02\u0305" + - "\u0306\x07a\x02\x02\u0306\u0307\x07V\x02\x02\u0307\u0308\x07[\x02\x02" + - "\u0308\u0309\x07R\x02\x02\u0309\u030A\x07G\x02\x02\u030AH\x03\x02\x02" + - "\x02\u030B\u030C\x07P\x02\x02\u030C\u030D\x07W\x02\x02\u030D\u030E\x07" + - "O\x02\x02\u030E\u030F\x07D\x02\x02\u030F\u0310\x07G\x02\x02\u0310\u0311" + - "\x07T\x02\x02\u0311\u0312\x07a\x02\x02\u0312\u0313\x07Q\x02\x02\u0313" + - "\u0314\x07H\x02\x02\u0314\u0315\x07a\x02\x02\u0315\u0316\x07V\x02\x02" + - "\u0316\u0317\x07T\x02\x02\u0317\u0318\x07G\x02\x02\u0318\u0319\x07G\x02" + - "\x02\u0319\u031A\x07U\x02\x02\u031AJ\x03\x02\x02\x02\u031B\u031C\x07U" + - "\x02\x02\u031C\u031D\x07J\x02\x02\u031D\u031E\x07K\x02\x02\u031E\u031F" + - "\x07P\x02\x02\u031F\u0320\x07I\x02\x02\u0320\u0321\x07N\x02\x02\u0321" + - "\u0322\x07G\x02\x02\u0322\u0323\x07a\x02\x02\u0323\u0324\x07U\x02\x02" + - "\u0324\u0325\x07K\x02\x02\u0325\u0326\x07\\\x02\x02\u0326\u0327\x07G\x02" + - "\x02\u0327L\x03\x02\x02\x02\u0328\u0329\x07U\x02\x02\u0329\u032A\x07C" + - "\x02\x02\u032A\u032B\x07O\x02\x02\u032B\u032C\x07R\x02\x02\u032C\u032D" + - "\x07N\x02\x02\u032D\u032E\x07G\x02\x02\u032E\u032F\x07a\x02\x02\u032F" + - "\u0330\x07U\x02\x02\u0330\u0331\x07K\x02\x02\u0331\u0332\x07\\\x02\x02" + - "\u0332\u0333\x07G\x02\x02\u0333N\x03\x02\x02\x02\u0334\u0335\x07Q\x02" + - "\x02\u0335\u0336\x07W\x02\x02\u0336\u0337\x07V\x02\x02\u0337\u0338\x07" + - "R\x02\x02\u0338\u0339\x07W\x02\x02\u0339\u033A\x07V\x02\x02\u033A\u033B" + - "\x07a\x02\x02\u033B\u033C\x07C\x02\x02\u033C\u033D\x07H\x02\x02\u033D" + - "\u033E\x07V\x02\x02\u033E\u033F\x07G\x02\x02\u033F\u0340\x07T\x02\x02" + - "\u0340P\x03\x02\x02\x02\u0341\u0342\x07V\x02\x02\u0342\u0343\x07K\x02" + - "\x02\u0343\u0344\x07O\x02\x02\u0344\u0345\x07G\x02\x02\u0345\u0346\x07" + - "a\x02\x02\u0346\u0347\x07F\x02\x02\u0347\u0348\x07G\x02\x02\u0348\u0349" + - "\x07E\x02\x02\u0349\u034A\x07C\x02\x02\u034A\u034B\x07[\x02\x02\u034B" + - "R\x03\x02\x02\x02\u034C\u034D\x07C\x02\x02\u034D\u034E\x07P\x02\x02\u034E" + - "\u034F\x07Q\x02\x02\u034F\u0350\x07O\x02\x02\u0350\u0351\x07C\x02\x02" + - "\u0351\u0352\x07N\x02\x02\u0352\u0353\x07[\x02\x02\u0353\u0354\x07a\x02" + - "\x02\u0354\u0355\x07T\x02\x02\u0355\u0356\x07C\x02\x02\u0356\u0357\x07" + - "V\x02\x02\u0357\u0358\x07G\x02\x02\u0358T\x03\x02\x02\x02\u0359\u035A" + - "\x07V\x02\x02\u035A\u035B\x07K\x02\x02\u035B\u035C\x07O\x02\x02\u035C" + - "\u035D\x07G\x02\x02\u035D\u035E\x07a\x02\x02\u035E\u035F\x07H\x02\x02" + - "\u035F\u0360\x07K\x02\x02\u0360\u0361\x07G\x02\x02\u0361\u0362\x07N\x02" + - "\x02\u0362\u0363\x07F\x02\x02\u0363V\x03\x02\x02\x02\u0364\u0365\x07V" + - "\x02\x02\u0365\u0366\x07K\x02\x02\u0366\u0367\x07O\x02\x02\u0367\u0368" + - "\x07G\x02\x02\u0368\u0369\x07a\x02\x02\u0369\u036A\x07\\\x02\x02\u036A" + - "\u036B\x07Q\x02\x02\u036B\u036C\x07P\x02\x02\u036C\u036D\x07G\x02\x02" + - "\u036DX\x03\x02\x02\x02\u036E\u036F\x07V\x02\x02\u036F\u0370\x07T\x02" + - "\x02\u0370\u0371\x07C\x02\x02\u0371\u0372\x07K\x02\x02\u0372\u0373\x07" + - "P\x02\x02\u0373\u0374\x07K\x02\x02\u0374\u0375\x07P\x02\x02\u0375\u0376" + - "\x07I\x02\x02\u0376\u0377\x07a\x02\x02\u0377\u0378\x07F\x02\x02\u0378" + - "\u0379\x07C\x02\x02\u0379\u037A\x07V\x02\x02\u037A\u037B\x07C\x02\x02" + - "\u037B\u037C\x07a\x02\x02\u037C\u037D\x07U\x02\x02\u037D\u037E\x07K\x02" + - "\x02\u037E\u037F\x07\\\x02\x02\u037F\u0380\x07G\x02\x02\u0380Z\x03\x02" + - "\x02\x02\u0381\u0382\x07C\x02\x02\u0382\u0383\x07P\x02\x02\u0383\u0384" + - "\x07Q\x02\x02\u0384\u0385\x07O\x02\x02\u0385\u0386\x07C\x02\x02\u0386" + - "\u0387\x07N\x02\x02\u0387\u0388\x07[\x02\x02\u0388\u0389\x07a\x02\x02" + - "\u0389\u038A\x07U\x02\x02\u038A\u038B\x07E\x02\x02\u038B\u038C\x07Q\x02" + - "\x02\u038C\u038D\x07T\x02\x02\u038D\u038E\x07G\x02\x02\u038E\u038F\x07" + - "a\x02\x02\u038F\u0390\x07V\x02\x02\u0390\u0391\x07J\x02\x02\u0391\u0392" + - "\x07T\x02\x02\u0392\u0393\x07G\x02\x02\u0393\u0394\x07U\x02\x02\u0394" + - "\u0395\x07J\x02\x02\u0395\u0396\x07Q\x02\x02\u0396\u0397\x07N\x02\x02" + - "\u0397\u0398\x07F\x02\x02\u0398\\\x03\x02\x02\x02\u0399\u039A\x07E\x02" + - "\x02\u039A\u039B\x07C\x02\x02\u039B\u039C\x07U\x02\x02\u039C\u039D\x07" + - "G\x02\x02\u039D^\x03\x02\x02\x02\u039E\u039F\x07K\x02\x02\u039F\u03A0" + - "\x07P\x02\x02\u03A0`\x03\x02\x02\x02\u03A1\u03A2\x07P\x02\x02\u03A2\u03A3" + - "\x07Q\x02\x02\u03A3\u03A4\x07V\x02\x02\u03A4b\x03\x02\x02\x02\u03A5\u03A6" + - "\x07Q\x02\x02\u03A6\u03A7\x07T\x02\x02\u03A7d\x03\x02\x02\x02\u03A8\u03A9" + - "\x07C\x02\x02\u03A9\u03AA\x07P\x02\x02\u03AA\u03AB\x07F\x02\x02\u03AB" + - "f\x03\x02\x02\x02\u03AC\u03AD\x07Z\x02\x02\u03AD\u03AE\x07Q\x02\x02\u03AE" + - "\u03AF\x07T\x02\x02\u03AFh\x03\x02\x02\x02\u03B0\u03B1\x07V\x02\x02\u03B1" + - "\u03B2\x07T\x02\x02\u03B2\u03B3\x07W\x02\x02\u03B3\u03B4\x07G\x02\x02" + - "\u03B4j\x03\x02\x02\x02\u03B5\u03B6\x07H\x02\x02\u03B6\u03B7\x07C\x02" + - "\x02\u03B7\u03B8\x07N\x02\x02\u03B8\u03B9\x07U\x02\x02\u03B9\u03BA\x07" + - "G\x02\x02\u03BAl\x03\x02\x02\x02\u03BB\u03BC\x07T\x02\x02\u03BC\u03BD" + - "\x07G\x02\x02\u03BD\u03BE\x07I\x02\x02\u03BE\u03BF\x07G\x02\x02\u03BF" + - "\u03C0\x07Z\x02\x02\u03C0\u03C1\x07R\x02\x02\u03C1n\x03\x02\x02\x02\u03C2" + - "\u03C3\x07F\x02\x02\u03C3\u03C4\x07C\x02\x02\u03C4\u03C5\x07V\x02\x02" + - "\u03C5\u03C6\x07G\x02\x02\u03C6\u03C7\x07V\x02\x02\u03C7\u03C8\x07K\x02" + - "\x02\u03C8\u03C9\x07O\x02\x02\u03C9\u03CA\x07G\x02\x02\u03CAp\x03\x02" + - "\x02\x02\u03CB\u03CC\x07K\x02\x02\u03CC\u03CD\x07P\x02\x02\u03CD\u03CE" + - "\x07V\x02\x02\u03CE\u03CF\x07G\x02\x02\u03CF\u03D0\x07T\x02\x02\u03D0" + - "\u03D1\x07X\x02\x02\u03D1\u03D2\x07C\x02\x02\u03D2\u03D3\x07N\x02\x02" + - "\u03D3r\x03\x02\x02\x02\u03D4\u03D5\x07O\x02\x02\u03D5\u03D6\x07K\x02" + - "\x02\u03D6\u03D7\x07E\x02\x02\u03D7\u03D8\x07T\x02\x02\u03D8\u03D9\x07" + - "Q\x02\x02\u03D9\u03DA\x07U\x02\x02\u03DA\u03DB\x07G\x02\x02\u03DB\u03DC" + - "\x07E\x02\x02\u03DC\u03DD\x07Q\x02\x02\u03DD\u03DE\x07P\x02\x02\u03DE" + - "\u03DF\x07F\x02\x02\u03DFt\x03\x02\x02\x02\u03E0\u03E1\x07O\x02\x02\u03E1" + - "\u03E2\x07K\x02\x02\u03E2\u03E3\x07N\x02\x02\u03E3\u03E4\x07N\x02\x02" + - "\u03E4\u03E5\x07K\x02\x02\u03E5\u03E6\x07U\x02\x02\u03E6\u03E7\x07G\x02" + - "\x02\u03E7\u03E8\x07E\x02\x02\u03E8\u03E9\x07Q\x02\x02\u03E9\u03EA\x07" + - "P\x02\x02\u03EA\u03EB\x07F\x02\x02\u03EBv\x03\x02\x02\x02\u03EC\u03ED" + - "\x07U\x02\x02\u03ED\u03EE\x07G\x02\x02\u03EE\u03EF\x07E\x02\x02\u03EF" + - "\u03F0\x07Q\x02\x02\u03F0\u03F1\x07P\x02\x02\u03F1\u03F2\x07F\x02\x02" + - "\u03F2x\x03\x02\x02\x02\u03F3\u03F4\x07O\x02\x02\u03F4\u03F5\x07K\x02" + - "\x02\u03F5\u03F6\x07P\x02\x02\u03F6\u03F7\x07W\x02\x02\u03F7\u03F8\x07" + - "V\x02\x02\u03F8\u03F9\x07G\x02\x02\u03F9z\x03\x02\x02\x02\u03FA\u03FB" + - "\x07J\x02\x02\u03FB\u03FC\x07Q\x02\x02\u03FC\u03FD\x07W\x02\x02\u03FD" + - "\u03FE\x07T\x02\x02\u03FE|\x03\x02\x02\x02\u03FF\u0400\x07F\x02\x02\u0400" + - "\u0401\x07C\x02\x02\u0401\u0402\x07[\x02\x02\u0402~\x03\x02\x02\x02\u0403" + - "\u0404\x07Y\x02\x02\u0404\u0405\x07G\x02\x02\u0405\u0406\x07G\x02\x02" + - "\u0406\u0407\x07M\x02\x02\u0407\x80\x03\x02\x02\x02\u0408\u0409\x07O\x02" + - "\x02\u0409\u040A\x07Q\x02\x02\u040A\u040B\x07P\x02\x02\u040B\u040C\x07" + - "V\x02\x02\u040C\u040D\x07J\x02\x02\u040D\x82\x03\x02\x02\x02\u040E\u040F" + - "\x07S\x02\x02\u040F\u0410\x07W\x02\x02\u0410\u0411\x07C\x02\x02\u0411" + - "\u0412\x07T\x02\x02\u0412\u0413\x07V\x02\x02\u0413\u0414\x07G\x02\x02" + - "\u0414\u0415\x07T\x02\x02\u0415\x84\x03\x02\x02\x02\u0416\u0417\x07[\x02" + - "\x02\u0417\u0418\x07G\x02\x02\u0418\u0419\x07C\x02\x02\u0419\u041A\x07" + - "T\x02\x02\u041A\x86\x03\x02\x02\x02\u041B\u041C\x07U\x02\x02\u041C\u041D" + - "\x07G\x02\x02\u041D\u041E\x07E\x02\x02\u041E\u041F\x07Q\x02\x02\u041F" + - "\u0420\x07P\x02\x02\u0420\u0421\x07F\x02\x02\u0421\u0422\x07a\x02\x02" + - "\u0422\u0423\x07O\x02\x02\u0423\u0424\x07K\x02\x02\u0424\u0425\x07E\x02" + - "\x02\u0425\u0426\x07T\x02\x02\u0426\u0427\x07Q\x02\x02\u0427\u0428\x07" + - "U\x02\x02\u0428\u0429\x07G\x02\x02\u0429\u042A\x07E\x02\x02\u042A\u042B" + - "\x07Q\x02\x02\u042B\u042C\x07P\x02\x02\u042C\u042D\x07F\x02\x02\u042D" + - "\x88\x03\x02\x02\x02\u042E\u042F\x07O\x02\x02\u042F\u0430\x07K\x02\x02" + - "\u0430\u0431\x07P\x02\x02\u0431\u0432\x07W\x02\x02\u0432\u0433\x07V\x02" + - "\x02\u0433\u0434\x07G\x02\x02\u0434\u0435\x07a\x02\x02\u0435\u0436\x07" + - "O\x02\x02\u0436\u0437\x07K\x02\x02\u0437\u0438\x07E\x02\x02\u0438\u0439" + - "\x07T\x02\x02\u0439\u043A\x07Q\x02\x02\u043A\u043B\x07U\x02\x02\u043B" + - "\u043C\x07G\x02\x02\u043C\u043D\x07E\x02\x02\u043D\u043E\x07Q\x02\x02" + - "\u043E\u043F\x07P\x02\x02\u043F\u0440\x07F\x02\x02\u0440\x8A\x03\x02\x02" + - "\x02\u0441\u0442\x07O\x02\x02\u0442\u0443\x07K\x02\x02\u0443\u0444\x07" + - "P\x02\x02\u0444\u0445\x07W\x02\x02\u0445\u0446\x07V\x02\x02\u0446\u0447" + - "\x07G\x02\x02\u0447\u0448\x07a\x02\x02\u0448\u0449\x07U\x02\x02\u0449" + - "\u044A\x07G\x02\x02\u044A\u044B\x07E\x02\x02\u044B\u044C\x07Q\x02\x02" + - "\u044C\u044D\x07P\x02\x02\u044D\u044E\x07F\x02\x02\u044E\x8C\x03\x02\x02" + - "\x02\u044F\u0450\x07J\x02\x02\u0450\u0451\x07Q\x02\x02\u0451\u0452\x07" + - "W\x02\x02\u0452\u0453\x07T\x02\x02\u0453\u0454\x07a\x02\x02\u0454\u0455" + - "\x07O\x02\x02\u0455\u0456\x07K\x02\x02\u0456\u0457\x07E\x02\x02\u0457" + - "\u0458\x07T\x02\x02\u0458\u0459\x07Q\x02\x02\u0459\u045A\x07U\x02\x02" + - "\u045A\u045B\x07G\x02\x02\u045B\u045C\x07E\x02\x02\u045C\u045D\x07Q\x02" + - "\x02\u045D\u045E\x07P\x02\x02\u045E\u045F\x07F\x02\x02\u045F\x8E\x03\x02" + - "\x02\x02\u0460\u0461\x07J\x02\x02\u0461\u0462\x07Q\x02\x02\u0462\u0463" + - "\x07W\x02\x02\u0463\u0464\x07T\x02\x02\u0464\u0465\x07a\x02\x02\u0465" + - "\u0466\x07U\x02\x02\u0466\u0467\x07G\x02\x02\u0467\u0468\x07E\x02\x02" + - "\u0468\u0469\x07Q\x02\x02\u0469\u046A\x07P\x02\x02\u046A\u046B\x07F\x02" + - "\x02\u046B\x90\x03\x02\x02\x02\u046C\u046D\x07J\x02\x02\u046D\u046E\x07" + - "Q\x02\x02\u046E\u046F\x07W\x02\x02\u046F\u0470\x07T\x02\x02\u0470\u0471" + - "\x07a\x02\x02\u0471\u0472\x07O\x02\x02\u0472\u0473\x07K\x02\x02\u0473" + - "\u0474\x07P\x02\x02\u0474\u0475\x07W\x02\x02\u0475\u0476\x07V\x02\x02" + - "\u0476\u0477\x07G\x02\x02\u0477\x92\x03\x02\x02\x02\u0478\u0479\x07F\x02" + - "\x02\u0479\u047A\x07C\x02\x02\u047A\u047B\x07[\x02\x02\u047B\u047C\x07" + - "a\x02\x02\u047C\u047D\x07O\x02\x02\u047D\u047E\x07K\x02\x02\u047E\u047F" + - "\x07E\x02\x02\u047F\u0480\x07T\x02\x02\u0480\u0481\x07Q\x02\x02\u0481" + - "\u0482\x07U\x02\x02\u0482\u0483\x07G\x02\x02\u0483\u0484\x07E\x02\x02" + - "\u0484\u0485\x07Q\x02\x02\u0485\u0486\x07P\x02\x02\u0486\u0487\x07F\x02" + - "\x02\u0487\x94\x03\x02\x02\x02\u0488\u0489\x07F\x02\x02\u0489\u048A\x07" + - "C\x02\x02\u048A\u048B\x07[\x02\x02\u048B\u048C\x07a\x02\x02\u048C\u048D" + - "\x07U\x02\x02\u048D\u048E\x07G\x02\x02\u048E\u048F\x07E\x02\x02\u048F" + - "\u0490\x07Q\x02\x02\u0490\u0491\x07P\x02\x02\u0491\u0492\x07F\x02\x02" + - "\u0492\x96\x03\x02\x02\x02\u0493\u0494\x07F\x02\x02\u0494\u0495\x07C\x02" + - "\x02\u0495\u0496\x07[\x02\x02\u0496\u0497\x07a\x02\x02\u0497\u0498\x07" + - "O\x02\x02\u0498\u0499\x07K\x02\x02\u0499\u049A\x07P\x02\x02\u049A\u049B" + - "\x07W\x02\x02\u049B\u049C\x07V\x02\x02\u049C\u049D\x07G\x02\x02\u049D" + - "\x98\x03\x02\x02\x02\u049E\u049F\x07F\x02\x02\u049F\u04A0\x07C\x02\x02" + - "\u04A0\u04A1\x07[\x02\x02\u04A1\u04A2\x07a\x02\x02\u04A2\u04A3\x07J\x02" + - "\x02\u04A3\u04A4\x07Q\x02\x02\u04A4\u04A5\x07W\x02\x02\u04A5\u04A6\x07" + - "T\x02\x02\u04A6\x9A\x03\x02\x02\x02\u04A7\u04A8\x07[\x02\x02\u04A8\u04A9" + - "\x07G\x02\x02\u04A9\u04AA\x07C\x02\x02\u04AA\u04AB\x07T\x02\x02\u04AB" + - "\u04AC\x07a\x02\x02\u04AC\u04AD\x07O\x02\x02\u04AD\u04AE\x07Q\x02\x02" + - "\u04AE\u04AF\x07P\x02\x02\u04AF\u04B0\x07V\x02\x02\u04B0\u04B1\x07J\x02" + - "\x02\u04B1\x9C\x03\x02\x02\x02\u04B2\u04B3\x07F\x02\x02\u04B3\u04B4\x07" + - "C\x02\x02\u04B4\u04B5\x07V\x02\x02\u04B5\u04B6\x07C\x02\x02\u04B6\u04B7" + - "\x07O\x02\x02\u04B7\u04B8\x07Q\x02\x02\u04B8\u04B9\x07F\x02\x02\u04B9" + - "\u04BA\x07G\x02\x02\u04BA\u04BB\x07N\x02\x02\u04BB\x9E\x03\x02\x02\x02" + - "\u04BC\u04BD\x07N\x02\x02\u04BD\u04BE\x07Q\x02\x02\u04BE\u04BF\x07Q\x02" + - "\x02\u04BF\u04C0\x07M\x02\x02\u04C0\u04C1\x07W\x02\x02\u04C1\u04C2\x07" + - "R\x02\x02\u04C2\xA0\x03\x02\x02\x02\u04C3\u04C4\x07U\x02\x02\u04C4\u04C5" + - "\x07C\x02\x02\u04C5\u04C6\x07X\x02\x02\u04C6\u04C7\x07G\x02\x02\u04C7" + - "\u04C8\x07F\x02\x02\u04C8\u04C9\x07U\x02\x02\u04C9\u04CA\x07G\x02\x02" + - "\u04CA\u04CB\x07C\x02\x02\u04CB\u04CC\x07T\x02\x02\u04CC\u04CD\x07E\x02" + - "\x02\u04CD\u04CE\x07J\x02\x02\u04CE\xA2\x03\x02\x02\x02\u04CF\u04D0\x07" + - "K\x02\x02\u04D0\u04D1\x07P\x02\x02\u04D1\u04D2\x07V\x02\x02\u04D2\xA4" + - "\x03\x02\x02\x02\u04D3\u04D4\x07K\x02\x02\u04D4\u04D5\x07P\x02\x02\u04D5" + - "\u04D6\x07V\x02\x02\u04D6\u04D7\x07G\x02\x02\u04D7\u04D8\x07I\x02\x02" + - "\u04D8\u04D9\x07G\x02\x02\u04D9\u04DA\x07T\x02\x02\u04DA\xA6\x03\x02\x02" + - "\x02\u04DB\u04DC\x07F\x02\x02\u04DC\u04DD\x07Q\x02\x02\u04DD\u04DE\x07" + - "W\x02\x02\u04DE\u04DF\x07D\x02\x02\u04DF\u04E0\x07N\x02\x02\u04E0\u04E1" + - "\x07G\x02\x02\u04E1\xA8\x03\x02\x02\x02\u04E2\u04E3\x07N\x02\x02\u04E3" + - "\u04E4\x07Q\x02\x02\u04E4\u04E5\x07P\x02\x02\u04E5\u04E6\x07I\x02\x02" + - "\u04E6\xAA\x03\x02\x02\x02\u04E7\u04E8\x07H\x02\x02\u04E8\u04E9\x07N\x02" + - "\x02\u04E9\u04EA\x07Q\x02\x02\u04EA\u04EB\x07C\x02\x02\u04EB\u04EC\x07" + - "V\x02\x02\u04EC\xAC\x03\x02\x02\x02\u04ED\u04EE\x07U\x02\x02\u04EE\u04EF" + - "\x07V\x02\x02\u04EF\u04F0\x07T\x02\x02\u04F0\u04F1\x07K\x02\x02\u04F1" + - "\u04F2\x07P\x02\x02\u04F2\u04F3\x07I\x02\x02\u04F3\xAE\x03\x02\x02\x02" + - "\u04F4\u04F5\x07D\x02\x02\u04F5\u04F6\x07Q\x02\x02\u04F6\u04F7\x07Q\x02" + - "\x02\u04F7\u04F8\x07N\x02\x02\u04F8\u04F9\x07G\x02\x02\u04F9\u04FA\x07" + - "C\x02\x02\u04FA\u04FB\x07P\x02\x02\u04FB\xB0\x03\x02\x02\x02\u04FC\u04FD" + - "\x07~\x02\x02\u04FD\xB2\x03\x02\x02\x02\u04FE\u04FF\x07.\x02\x02\u04FF" + - "\xB4\x03\x02\x02\x02\u0500\u0501\x070\x02\x02\u0501\xB6\x03\x02\x02\x02" + - "\u0502\u0503\x07?\x02\x02\u0503\xB8\x03\x02\x02\x02\u0504\u0505\x07@\x02" + - "\x02\u0505\xBA\x03\x02\x02\x02\u0506\u0507\x07>\x02\x02\u0507\xBC\x03" + - "\x02\x02\x02\u0508\u0509\x07>\x02\x02\u0509\u050A\x07?\x02\x02\u050A\xBE" + - "\x03\x02\x02\x02\u050B\u050C\x07@\x02\x02\u050C\u050D\x07?\x02\x02\u050D" + - "\xC0\x03\x02\x02\x02\u050E\u050F\x07#\x02\x02\u050F\u0510\x07?\x02\x02" + - "\u0510\xC2\x03\x02\x02\x02\u0511\u0512\x07-\x02\x02\u0512\xC4\x03\x02" + - "\x02\x02\u0513\u0514\x07/\x02\x02\u0514\xC6\x03\x02\x02\x02\u0515\u0516" + - "\x07,\x02\x02\u0516\xC8\x03\x02\x02\x02\u0517\u0518\x071\x02\x02\u0518" + - "\xCA\x03\x02\x02\x02\u0519\u051A\x07\'\x02\x02\u051A\xCC\x03\x02\x02\x02" + - "\u051B\u051C\x07#\x02\x02\u051C\xCE\x03\x02\x02\x02\u051D\u051E\x07<\x02" + - "\x02\u051E\xD0\x03\x02\x02\x02\u051F\u0520\x07*\x02\x02\u0520\xD2\x03" + - "\x02\x02\x02\u0521\u0522\x07+\x02\x02\u0522\xD4\x03\x02\x02\x02\u0523" + - "\u0524\x07]\x02\x02\u0524\xD6\x03\x02\x02\x02\u0525\u0526\x07_\x02\x02" + - "\u0526\xD8\x03\x02\x02\x02\u0527\u0528\x07)\x02\x02\u0528\xDA\x03\x02" + - "\x02\x02\u0529\u052A\x07$\x02\x02\u052A\xDC\x03\x02\x02\x02\u052B\u052C" + - "\x07b\x02\x02\u052C\xDE\x03\x02\x02\x02\u052D\u052E\x07\x80\x02\x02\u052E" + - "\xE0\x03\x02\x02\x02\u052F\u0530\x07(\x02\x02\u0530\xE2\x03\x02\x02\x02" + - "\u0531\u0532\x07`\x02\x02\u0532\xE4\x03\x02\x02\x02\u0533\u0534\x07C\x02" + - "\x02\u0534\u0535\x07X\x02\x02\u0535\u0536\x07I\x02\x02\u0536\xE6\x03\x02" + - "\x02\x02\u0537\u0538\x07E\x02\x02\u0538\u0539\x07Q\x02\x02\u0539\u053A" + - "\x07W\x02\x02\u053A\u053B\x07P\x02\x02\u053B\u053C\x07V\x02\x02\u053C" + - "\xE8\x03\x02\x02\x02\u053D\u053E\x07F\x02\x02\u053E\u053F\x07K\x02\x02" + - "\u053F\u0540\x07U\x02\x02\u0540\u0541\x07V\x02\x02\u0541\u0542\x07K\x02" + - "\x02\u0542\u0543\x07P\x02\x02\u0543\u0544\x07E\x02\x02\u0544\u0545\x07" + - "V\x02\x02\u0545\u0546\x07a\x02\x02\u0546\u0547\x07E\x02\x02\u0547\u0548" + - "\x07Q\x02\x02\u0548\u0549\x07W\x02\x02\u0549\u054A\x07P\x02\x02\u054A" + - "\u054B\x07V\x02\x02\u054B\xEA\x03\x02\x02\x02\u054C\u054D\x07G\x02\x02" + - "\u054D\u054E\x07U\x02\x02\u054E\u054F\x07V\x02\x02\u054F\u0550\x07F\x02" + - "\x02\u0550\u0551\x07E\x02\x02\u0551\xEC\x03\x02\x02\x02\u0552\u0553\x07" + - "G\x02\x02\u0553\u0554\x07U\x02\x02\u0554\u0555\x07V\x02\x02\u0555\u0556" + - "\x07F\x02\x02\u0556\u0557\x07E\x02\x02\u0557\u0558\x07a\x02\x02\u0558" + - "\u0559\x07G\x02\x02\u0559\u055A\x07T\x02\x02\u055A\u055B\x07T\x02\x02" + - "\u055B\u055C\x07Q\x02\x02\u055C\u055D\x07T\x02\x02\u055D\xEE\x03\x02\x02" + - "\x02\u055E\u055F\x07O\x02\x02\u055F\u0560\x07C\x02\x02\u0560\u0561\x07" + - "Z\x02\x02\u0561\xF0\x03\x02\x02\x02\u0562\u0563\x07O\x02\x02\u0563\u0564" + - "\x07G\x02\x02\u0564\u0565\x07C\x02\x02\u0565\u0566\x07P\x02\x02\u0566" + - "\xF2\x03\x02\x02\x02\u0567\u0568\x07O\x02\x02\u0568\u0569\x07G\x02\x02" + - "\u0569\u056A\x07F\x02\x02\u056A\u056B\x07K\x02\x02\u056B\u056C\x07C\x02" + - "\x02\u056C\u056D\x07P\x02\x02\u056D\xF4\x03\x02\x02\x02\u056E\u056F\x07" + - "O\x02\x02\u056F\u0570\x07K\x02\x02\u0570\u0571\x07P\x02\x02\u0571\xF6" + - "\x03\x02\x02\x02\u0572\u0573\x07O\x02\x02\u0573\u0574\x07Q\x02\x02\u0574" + - "\u0575\x07F\x02\x02\u0575\u0576\x07G\x02\x02\u0576\xF8\x03\x02\x02\x02" + - "\u0577\u0578\x07T\x02\x02\u0578\u0579\x07C\x02\x02\u0579\u057A\x07P\x02" + - "\x02\u057A\u057B\x07I\x02\x02\u057B\u057C\x07G\x02\x02\u057C\xFA\x03\x02" + - "\x02\x02\u057D\u057E\x07U\x02\x02\u057E\u057F\x07V\x02\x02\u057F\u0580" + - "\x07F\x02\x02\u0580\u0581\x07G\x02\x02\u0581\u0582\x07X\x02\x02\u0582" + - "\xFC\x03\x02\x02\x02\u0583\u0584\x07U\x02\x02\u0584\u0585\x07V\x02\x02" + - "\u0585\u0586\x07F\x02\x02\u0586\u0587\x07G\x02\x02\u0587\u0588\x07X\x02" + - "\x02\u0588\u0589\x07R\x02\x02\u0589\xFE\x03\x02\x02\x02\u058A\u058B\x07" + - "U\x02\x02\u058B\u058C\x07W\x02\x02\u058C\u058D\x07O\x02\x02\u058D\u0100" + - "\x03\x02\x02\x02\u058E\u058F\x07U\x02\x02\u058F\u0590\x07W\x02\x02\u0590" + - "\u0591\x07O\x02\x02\u0591\u0592\x07U\x02\x02\u0592\u0593\x07S\x02\x02" + - "\u0593\u0102\x03\x02\x02\x02\u0594\u0595\x07X\x02\x02\u0595\u0596\x07" + - "C\x02\x02\u0596\u0597\x07T\x02\x02\u0597\u0598\x07a\x02\x02\u0598\u0599" + - "\x07U\x02\x02\u0599\u059A\x07C\x02\x02\u059A\u059B\x07O\x02\x02\u059B" + - "\u059C\x07R\x02\x02\u059C\u0104\x03\x02\x02\x02\u059D\u059E\x07X\x02\x02" + - "\u059E\u059F\x07C\x02\x02\u059F\u05A0\x07T\x02\x02\u05A0\u05A1\x07a\x02" + - "\x02\u05A1\u05A2\x07R\x02\x02\u05A2\u05A3\x07Q\x02\x02\u05A3\u05A4\x07" + - "R\x02\x02\u05A4\u0106\x03\x02\x02\x02\u05A5\u05A6\x07U\x02\x02\u05A6\u05A7" + - "\x07V\x02\x02\u05A7\u05A8\x07F\x02\x02\u05A8\u05A9\x07F\x02\x02\u05A9" + - "\u05AA\x07G\x02\x02\u05AA\u05AB\x07X\x02\x02\u05AB\u05AC\x07a\x02\x02" + - "\u05AC\u05AD\x07U\x02\x02\u05AD\u05AE\x07C\x02\x02\u05AE\u05AF\x07O\x02" + - "\x02\u05AF\u05B0\x07R\x02\x02\u05B0\u0108\x03\x02\x02\x02\u05B1\u05B2" + - "\x07U\x02\x02\u05B2\u05B3\x07V\x02\x02\u05B3\u05B4\x07F\x02\x02\u05B4" + - "\u05B5\x07F\x02\x02\u05B5\u05B6\x07G\x02\x02\u05B6\u05B7\x07X\x02\x02" + - "\u05B7\u05B8\x07a\x02\x02\u05B8\u05B9\x07R\x02"; - private static readonly _serializedATNSegment3: string = - "\x02\u05B9\u05BA\x07Q\x02\x02\u05BA\u05BB\x07R\x02\x02\u05BB\u010A\x03" + - "\x02\x02\x02\u05BC\u05BD\x07R\x02\x02\u05BD\u05BE\x07G\x02\x02\u05BE\u05BF" + - "\x07T\x02\x02\u05BF\u05C0\x07E\x02\x02\u05C0\u05C1\x07G\x02\x02\u05C1" + - "\u05C2\x07P\x02\x02\u05C2\u05C3\x07V\x02\x02\u05C3\u05C4\x07K\x02\x02" + - "\u05C4\u05C5\x07N\x02\x02\u05C5\u05C6\x07G\x02\x02\u05C6\u010C\x03\x02" + - "\x02\x02\u05C7\u05C8\x07H\x02\x02\u05C8\u05C9\x07K\x02\x02\u05C9\u05CA" + - "\x07T\x02\x02\u05CA\u05CB\x07U\x02\x02\u05CB\u05CC\x07V\x02\x02\u05CC" + - "\u010E\x03\x02\x02\x02\u05CD\u05CE\x07N\x02\x02\u05CE\u05CF\x07C\x02\x02" + - "\u05CF\u05D0\x07U\x02\x02\u05D0\u05D1\x07V\x02\x02\u05D1\u0110\x03\x02" + - "\x02\x02\u05D2\u05D3\x07N\x02\x02\u05D3\u05D4\x07K\x02\x02\u05D4\u05D5" + - "\x07U\x02\x02\u05D5\u05D6\x07V\x02\x02\u05D6\u0112\x03\x02\x02\x02\u05D7" + - "\u05D8\x07X\x02\x02\u05D8\u05D9\x07C\x02\x02\u05D9\u05DA\x07N\x02\x02" + - "\u05DA\u05DB\x07W\x02\x02\u05DB\u05DC\x07G\x02\x02\u05DC\u05DD\x07U\x02" + - "\x02\u05DD\u0114\x03\x02\x02\x02\u05DE\u05DF\x07G\x02\x02\u05DF\u05E0" + - "\x07C\x02\x02\u05E0\u05E1\x07T\x02\x02\u05E1\u05E2\x07N\x02\x02\u05E2" + - "\u05E3\x07K\x02\x02\u05E3\u05E4\x07G\x02\x02\u05E4\u05E5\x07U\x02\x02" + - "\u05E5\u05E6\x07V\x02\x02\u05E6\u0116\x03\x02\x02\x02\u05E7\u05E8\x07" + - "G\x02\x02\u05E8\u05E9\x07C\x02\x02\u05E9\u05EA\x07T\x02\x02\u05EA\u05EB" + - "\x07N\x02\x02\u05EB\u05EC\x07K\x02\x02\u05EC\u05ED\x07G\x02\x02\u05ED" + - "\u05EE\x07U\x02\x02\u05EE\u05EF\x07V\x02\x02\u05EF\u05F0\x07a\x02\x02" + - "\u05F0\u05F1\x07V\x02\x02\u05F1\u05F2\x07K\x02\x02\u05F2\u05F3\x07O\x02" + - "\x02\u05F3\u05F4\x07G\x02\x02\u05F4\u0118\x03\x02\x02\x02\u05F5\u05F6" + - "\x07N\x02\x02\u05F6\u05F7\x07C\x02\x02\u05F7\u05F8\x07V\x02\x02\u05F8" + - "\u05F9\x07G\x02\x02\u05F9\u05FA\x07U\x02\x02\u05FA\u05FB\x07V\x02\x02" + - "\u05FB\u011A\x03\x02\x02\x02\u05FC\u05FD\x07N\x02\x02\u05FD\u05FE\x07" + - "C\x02\x02\u05FE\u05FF\x07V\x02\x02\u05FF\u0600\x07G\x02\x02\u0600\u0601" + - "\x07U\x02\x02\u0601\u0602\x07V\x02\x02\u0602\u0603\x07a\x02\x02\u0603" + - "\u0604\x07V\x02\x02\u0604\u0605\x07K\x02\x02\u0605\u0606\x07O\x02\x02" + - "\u0606\u0607\x07G\x02\x02\u0607\u011C\x03\x02\x02\x02\u0608\u0609\x07" + - "R\x02\x02\u0609\u060A\x07G\x02\x02\u060A\u060B\x07T\x02\x02\u060B\u060C" + - "\x07a\x02\x02\u060C\u060D\x07F\x02\x02\u060D\u060E\x07C\x02\x02\u060E" + - "\u060F\x07[\x02\x02\u060F\u011E\x03\x02\x02\x02\u0610\u0611\x07R\x02\x02" + - "\u0611\u0612\x07G\x02\x02\u0612\u0613\x07T\x02\x02\u0613\u0614\x07a\x02" + - "\x02\u0614\u0615\x07J\x02\x02\u0615\u0616\x07Q\x02\x02\u0616\u0617\x07" + - "W\x02\x02\u0617\u0618\x07T\x02\x02\u0618\u0120\x03\x02\x02\x02\u0619\u061A" + - "\x07R\x02\x02\u061A\u061B\x07G\x02\x02\u061B\u061C\x07T\x02\x02\u061C" + - "\u061D\x07a\x02\x02\u061D\u061E\x07O\x02\x02\u061E\u061F\x07K\x02\x02" + - "\u061F\u0620\x07P\x02\x02\u0620\u0621\x07W\x02\x02\u0621\u0622\x07V\x02" + - "\x02\u0622\u0623\x07G\x02\x02\u0623\u0122\x03\x02\x02\x02\u0624\u0625" + - "\x07R\x02\x02\u0625\u0626\x07G\x02\x02\u0626\u0627\x07T\x02\x02\u0627" + - "\u0628\x07a\x02\x02\u0628\u0629\x07U\x02\x02\u0629\u062A\x07G\x02\x02" + - "\u062A\u062B\x07E\x02\x02\u062B\u062C\x07Q\x02\x02\u062C\u062D\x07P\x02" + - "\x02\u062D\u062E\x07F\x02\x02\u062E\u0124\x03\x02\x02\x02\u062F\u0630" + - "\x07T\x02\x02\u0630\u0631\x07C\x02\x02\u0631\u0632\x07V\x02\x02\u0632" + - "\u0633\x07G\x02\x02\u0633\u0126\x03\x02\x02\x02\u0634\u0635\x07U\x02\x02" + - "\u0635\u0636\x07R\x02\x02\u0636\u0637\x07C\x02\x02\u0637\u0638\x07T\x02" + - "\x02\u0638\u0639\x07M\x02\x02\u0639\u063A\x07N\x02\x02\u063A\u063B\x07" + - "K\x02\x02\u063B\u063C\x07P\x02\x02\u063C\u063D\x07G\x02\x02\u063D\u0128" + - "\x03\x02\x02\x02\u063E\u063F\x07E\x02\x02\u063F\u012A\x03\x02\x02\x02" + - "\u0640\u0641\x07F\x02\x02\u0641\u0642\x07E\x02\x02\u0642\u012C\x03\x02" + - "\x02\x02\u0643\u0644\x07C\x02\x02\u0644\u0645\x07D\x02\x02\u0645\u0646" + - "\x07U\x02\x02\u0646\u012E\x03\x02\x02\x02\u0647\u0648\x07E\x02\x02\u0648" + - "\u0649\x07G\x02\x02\u0649\u064A\x07K\x02\x02\u064A\u064B\x07N\x02\x02" + - "\u064B\u0130\x03\x02\x02\x02\u064C\u064D\x07E\x02\x02\u064D\u064E\x07" + - "G\x02\x02\u064E\u064F\x07K\x02\x02\u064F\u0650\x07N\x02\x02\u0650\u0651" + - "\x07K\x02\x02\u0651\u0652\x07P\x02\x02\u0652\u0653\x07I\x02\x02\u0653" + - "\u0132\x03\x02\x02\x02\u0654\u0655\x07E\x02\x02\u0655\u0656\x07Q\x02\x02" + - "\u0656\u0657\x07P\x02\x02\u0657\u0658\x07X\x02\x02\u0658\u0134\x03\x02" + - "\x02\x02\u0659\u065A\x07E\x02\x02\u065A\u065B\x07T\x02\x02\u065B\u065C" + - "\x07E\x02\x02\u065C\u065D\x075\x02\x02\u065D\u065E\x074\x02\x02\u065E" + - "\u0136\x03\x02\x02\x02\u065F\u0660\x07G\x02\x02\u0660\u0138\x03\x02\x02" + - "\x02\u0661\u0662\x07G\x02\x02\u0662\u0663\x07Z\x02\x02\u0663\u0664\x07" + - "R\x02\x02\u0664\u013A\x03\x02\x02\x02\u0665\u0666\x07H\x02\x02\u0666\u0667" + - "\x07N\x02\x02\u0667\u0668\x07Q\x02\x02\u0668\u0669\x07Q\x02\x02\u0669" + - "\u066A\x07T\x02\x02\u066A\u013C\x03\x02\x02\x02\u066B\u066C\x07N\x02\x02" + - "\u066C\u066D\x07P\x02\x02\u066D\u013E\x03\x02\x02\x02\u066E\u066F\x07" + - "N\x02\x02\u066F\u0670\x07Q\x02\x02\u0670\u0671\x07I\x02\x02\u0671\u0140" + - "\x03\x02\x02\x02\u0672\u0673\x07N\x02\x02\u0673\u0674\x07Q\x02\x02\u0674" + - "\u0675\x07I\x02\x02\u0675\u0676\x073\x02\x02\u0676\u0677\x072\x02\x02" + - "\u0677\u0142\x03\x02\x02\x02\u0678\u0679\x07N\x02\x02\u0679\u067A\x07" + - "Q\x02\x02\u067A\u067B\x07I\x02\x02\u067B\u067C\x074\x02\x02\u067C\u0144" + - "\x03\x02\x02\x02\u067D\u067E\x07O\x02\x02\u067E\u067F\x07Q\x02\x02\u067F" + - "\u0680\x07F\x02\x02\u0680\u0146\x03\x02\x02\x02\u0681\u0682\x07R\x02\x02" + - "\u0682\u0683\x07K\x02\x02\u0683\u0148\x03\x02\x02\x02\u0684\u0685\x07" + - "R\x02\x02\u0685\u0686\x07Q\x02\x02\u0686\u0687\x07Y\x02\x02\u0687\u014A" + - "\x03\x02\x02\x02\u0688\u0689\x07R\x02\x02\u0689\u068A\x07Q\x02\x02\u068A" + - "\u068B\x07Y\x02\x02\u068B\u068C\x07G\x02\x02\u068C\u068D\x07T\x02\x02" + - "\u068D\u014C\x03\x02\x02\x02\u068E\u068F\x07T\x02\x02\u068F\u0690\x07" + - "C\x02\x02\u0690\u0691\x07P\x02\x02\u0691\u0692\x07F\x02\x02\u0692\u014E" + - "\x03\x02\x02\x02\u0693\u0694\x07T\x02\x02\u0694\u0695\x07Q\x02\x02\u0695" + - "\u0696\x07W\x02\x02\u0696\u0697\x07P\x02\x02\u0697\u0698\x07F\x02\x02" + - "\u0698\u0150\x03\x02\x02\x02\u0699\u069A\x07U\x02\x02\u069A\u069B\x07" + - "K\x02\x02\u069B\u069C\x07I\x02\x02\u069C\u069D\x07P\x02\x02\u069D\u0152" + - "\x03\x02\x02\x02\u069E\u069F\x07U\x02\x02\u069F\u06A0\x07S\x02\x02\u06A0" + - "\u06A1\x07T\x02\x02\u06A1\u06A2\x07V\x02\x02\u06A2\u0154\x03\x02\x02\x02" + - "\u06A3\u06A4\x07V\x02\x02\u06A4\u06A5\x07T\x02\x02\u06A5\u06A6\x07W\x02" + - "\x02\u06A6\u06A7\x07P\x02\x02\u06A7\u06A8\x07E\x02\x02\u06A8\u06A9\x07" + - "C\x02\x02\u06A9\u06AA\x07V\x02\x02\u06AA\u06AB\x07G\x02\x02\u06AB\u0156" + - "\x03\x02\x02\x02\u06AC\u06AD\x07C\x02\x02\u06AD\u06AE\x07E\x02\x02\u06AE" + - "\u06AF\x07Q\x02\x02\u06AF\u06B0\x07U\x02\x02\u06B0\u0158\x03\x02\x02\x02" + - "\u06B1\u06B2\x07C\x02\x02\u06B2\u06B3\x07U\x02\x02\u06B3\u06B4\x07K\x02" + - "\x02\u06B4\u06B5\x07P\x02\x02\u06B5\u015A\x03\x02\x02\x02\u06B6\u06B7" + - "\x07C\x02\x02\u06B7\u06B8\x07V\x02\x02\u06B8\u06B9\x07C\x02\x02\u06B9" + - "\u06BA\x07P\x02\x02\u06BA\u015C\x03\x02\x02\x02\u06BB\u06BC\x07C\x02\x02" + - "\u06BC\u06BD\x07V\x02\x02\u06BD\u06BE\x07C\x02\x02\u06BE\u06BF\x07P\x02" + - "\x02\u06BF\u06C0\x074\x02\x02\u06C0\u015E\x03\x02\x02\x02\u06C1\u06C2" + - "\x07E\x02\x02\u06C2\u06C3\x07Q\x02\x02\u06C3\u06C4\x07U\x02\x02\u06C4" + - "\u0160\x03\x02\x02\x02\u06C5\u06C6\x07E\x02\x02\u06C6\u06C7\x07Q\x02\x02" + - "\u06C7\u06C8\x07V\x02\x02\u06C8\u0162\x03\x02\x02\x02\u06C9\u06CA\x07" + - "F\x02\x02\u06CA\u06CB\x07G\x02\x02\u06CB\u06CC\x07I\x02\x02\u06CC\u06CD" + - "\x07T\x02\x02\u06CD\u06CE\x07G\x02\x02\u06CE\u06CF\x07G\x02\x02\u06CF" + - "\u06D0\x07U\x02\x02\u06D0\u0164\x03\x02\x02\x02\u06D1\u06D2\x07T\x02\x02" + - "\u06D2\u06D3\x07C\x02\x02\u06D3\u06D4\x07F\x02\x02\u06D4\u06D5\x07K\x02" + - "\x02\u06D5\u06D6\x07C\x02\x02\u06D6\u06D7\x07P\x02\x02\u06D7\u06D8\x07" + - "U\x02\x02\u06D8\u0166\x03\x02\x02\x02\u06D9\u06DA\x07U\x02\x02\u06DA\u06DB" + - "\x07K\x02\x02\u06DB\u06DC\x07P\x02\x02\u06DC\u0168\x03\x02\x02\x02\u06DD" + - "\u06DE\x07V\x02\x02\u06DE\u06DF\x07C\x02\x02\u06DF\u06E0\x07P\x02\x02" + - "\u06E0\u016A\x03\x02\x02\x02\u06E1\u06E2\x07C\x02\x02\u06E2\u06E3\x07" + - "F\x02\x02\u06E3\u06E4\x07F\x02\x02\u06E4\u06E5\x07F\x02\x02\u06E5\u06E6" + - "\x07C\x02\x02\u06E6\u06E7\x07V\x02\x02\u06E7\u06E8\x07G\x02\x02\u06E8" + - "\u016C\x03\x02\x02\x02\u06E9\u06EA\x07F\x02\x02\u06EA\u06EB\x07C\x02\x02" + - "\u06EB\u06EC\x07V\x02\x02\u06EC\u06ED\x07G\x02\x02\u06ED\u016E\x03\x02" + - "\x02\x02\u06EE\u06EF\x07F\x02\x02\u06EF\u06F0\x07C\x02\x02\u06F0\u06F1" + - "\x07V\x02\x02\u06F1\u06F2\x07G\x02\x02\u06F2\u06F3\x07a\x02\x02\u06F3" + - "\u06F4\x07C\x02\x02\u06F4\u06F5\x07F\x02\x02\u06F5\u06F6\x07F\x02\x02" + - "\u06F6\u0170\x03\x02\x02\x02\u06F7\u06F8\x07F\x02\x02\u06F8\u06F9\x07" + - "C\x02\x02\u06F9\u06FA\x07V\x02\x02\u06FA\u06FB\x07G\x02\x02\u06FB\u06FC" + - "\x07a\x02\x02\u06FC\u06FD\x07U\x02\x02\u06FD\u06FE\x07W\x02\x02\u06FE" + - "\u06FF\x07D\x02\x02\u06FF\u0172\x03\x02\x02\x02\u0700\u0701\x07F\x02\x02" + - "\u0701\u0702\x07C\x02\x02\u0702\u0703\x07[\x02\x02\u0703\u0704\x07Q\x02" + - "\x02\u0704\u0705\x07H\x02\x02\u0705\u0706\x07O\x02\x02\u0706\u0707\x07" + - "Q\x02\x02\u0707\u0708\x07P\x02\x02\u0708\u0709\x07V\x02\x02\u0709\u070A" + - "\x07J\x02\x02\u070A\u0174\x03\x02\x02\x02\u070B\u070C\x07F\x02\x02\u070C" + - "\u070D\x07C\x02\x02\u070D\u070E\x07[\x02\x02\u070E\u070F\x07Q\x02\x02" + - "\u070F\u0710\x07H\x02\x02\u0710\u0711\x07Y\x02\x02\u0711\u0712\x07G\x02" + - "\x02\u0712\u0713\x07G\x02\x02\u0713\u0714\x07M\x02\x02\u0714\u0176\x03" + - "\x02\x02\x02\u0715\u0716\x07F\x02\x02\u0716\u0717\x07C\x02\x02\u0717\u0718" + - "\x07[\x02\x02\u0718\u0719\x07Q\x02\x02\u0719\u071A\x07H\x02\x02\u071A" + - "\u071B\x07[\x02\x02\u071B\u071C\x07G\x02\x02\u071C\u071D\x07C\x02\x02" + - "\u071D\u071E\x07T\x02\x02\u071E\u0178\x03\x02\x02\x02\u071F\u0720\x07" + - "F\x02\x02\u0720\u0721\x07C\x02\x02\u0721\u0722\x07[\x02\x02\u0722\u0723" + - "\x07P\x02\x02\u0723\u0724\x07C\x02\x02\u0724\u0725\x07O\x02\x02\u0725" + - "\u0726\x07G\x02\x02\u0726\u017A\x03\x02\x02\x02\u0727\u0728\x07H\x02\x02" + - "\u0728\u0729\x07T\x02\x02\u0729\u072A\x07Q\x02\x02\u072A\u072B\x07O\x02" + - "\x02\u072B\u072C\x07a\x02\x02\u072C\u072D\x07F\x02\x02\u072D\u072E\x07" + - "C\x02\x02\u072E\u072F\x07[\x02\x02\u072F\u0730\x07U\x02\x02\u0730\u017C" + - "\x03\x02\x02\x02\u0731\u0732\x07O\x02\x02\u0732\u0733\x07Q\x02\x02\u0733" + - "\u0734\x07P\x02\x02\u0734\u0735\x07V\x02\x02\u0735\u0736\x07J\x02\x02" + - "\u0736\u0737\x07P\x02\x02\u0737\u0738\x07C\x02\x02\u0738\u0739\x07O\x02" + - "\x02\u0739\u073A\x07G\x02\x02\u073A\u017E\x03\x02\x02\x02\u073B\u073C" + - "\x07U\x02\x02\u073C\u073D\x07W\x02\x02\u073D\u073E\x07D\x02\x02\u073E" + - "\u073F\x07F\x02\x02\u073F\u0740\x07C\x02\x02\u0740\u0741\x07V\x02\x02" + - "\u0741\u0742\x07G\x02\x02\u0742\u0180\x03\x02\x02\x02\u0743\u0744\x07" + - "V\x02\x02\u0744\u0745\x07K\x02\x02\u0745\u0746\x07O\x02\x02\u0746\u0747" + - "\x07G\x02\x02\u0747\u0182\x03\x02\x02\x02\u0748\u0749\x07V\x02\x02\u0749" + - "\u074A\x07K\x02\x02\u074A\u074B\x07O\x02\x02\u074B\u074C\x07G\x02\x02" + - "\u074C\u074D\x07a\x02\x02\u074D\u074E\x07V\x02\x02\u074E\u074F\x07Q\x02" + - "\x02\u074F\u0750\x07a\x02\x02\u0750\u0751\x07U\x02\x02\u0751\u0752\x07" + - "G\x02\x02\u0752\u0753\x07E\x02\x02\u0753\u0184\x03\x02\x02\x02\u0754\u0755" + - "\x07V\x02\x02\u0755\u0756\x07K\x02\x02\u0756\u0757\x07O\x02\x02\u0757" + - "\u0758\x07G\x02\x02\u0758\u0759\x07U\x02\x02\u0759\u075A\x07V\x02\x02" + - "\u075A\u075B\x07C\x02\x02\u075B\u075C\x07O\x02\x02\u075C\u075D\x07R\x02" + - "\x02\u075D\u0186\x03\x02\x02\x02\u075E\u075F\x07F\x02\x02\u075F\u0760" + - "\x07C\x02\x02\u0760\u0761\x07V\x02\x02\u0761\u0762\x07G\x02\x02\u0762" + - "\u0763\x07a\x02\x02\u0763\u0764\x07H\x02\x02\u0764\u0765\x07Q\x02\x02" + - "\u0765\u0766\x07T\x02\x02\u0766\u0767\x07O\x02\x02\u0767\u0768\x07C\x02" + - "\x02\u0768\u0769\x07V\x02\x02\u0769\u0188\x03\x02\x02\x02\u076A\u076B" + - "\x07V\x02\x02\u076B\u076C\x07Q\x02\x02\u076C\u076D\x07a\x02\x02\u076D" + - "\u076E\x07F\x02\x02\u076E\u076F\x07C\x02\x02\u076F\u0770\x07[\x02\x02" + - "\u0770\u0771\x07U\x02\x02\u0771\u018A\x03\x02\x02\x02\u0772\u0773\x07" + - "U\x02\x02\u0773\u0774\x07W\x02\x02\u0774\u0775\x07D\x02\x02\u0775\u0776" + - "\x07U\x02\x02\u0776\u0777\x07V\x02\x02\u0777\u0778\x07T\x02\x02\u0778" + - "\u018C\x03\x02\x02\x02\u0779\u077A\x07U\x02\x02\u077A\u077B\x07W\x02\x02" + - "\u077B\u077C\x07D\x02\x02\u077C\u077D\x07U\x02\x02\u077D\u077E\x07V\x02" + - "\x02\u077E\u077F\x07T\x02\x02\u077F\u0780\x07K\x02\x02\u0780\u0781\x07" + - "P\x02\x02\u0781\u0782\x07I\x02\x02\u0782\u018E\x03\x02\x02\x02\u0783\u0784" + - "\x07N\x02\x02\u0784\u0785\x07V\x02\x02\u0785\u0786\x07T\x02\x02\u0786" + - "\u0787\x07K\x02\x02\u0787\u0788\x07O\x02\x02\u0788\u0190\x03\x02\x02\x02" + - "\u0789\u078A\x07T\x02\x02\u078A\u078B\x07V\x02\x02\u078B\u078C\x07T\x02" + - "\x02\u078C\u078D\x07K\x02\x02\u078D\u078E\x07O\x02\x02\u078E\u0192\x03" + - "\x02\x02\x02\u078F\u0790\x07V\x02\x02\u0790\u0791\x07T\x02\x02\u0791\u0792" + - "\x07K\x02\x02\u0792\u0793\x07O\x02\x02\u0793\u0194\x03\x02\x02\x02\u0794" + - "\u0795\x07V\x02\x02\u0795\u0796\x07Q\x02\x02\u0796\u0196\x03\x02\x02\x02" + - "\u0797\u0798\x07N\x02\x02\u0798\u0799\x07Q\x02\x02\u0799\u079A\x07Y\x02" + - "\x02\u079A\u079B\x07G\x02\x02\u079B\u079C\x07T\x02\x02\u079C\u0198\x03" + - "\x02\x02\x02\u079D\u079E\x07W\x02\x02\u079E\u079F\x07R\x02\x02\u079F\u07A0" + - "\x07R\x02\x02\u07A0\u07A1\x07G\x02\x02\u07A1\u07A2\x07T\x02\x02\u07A2" + - "\u019A\x03\x02\x02\x02\u07A3\u07A4\x07E\x02\x02\u07A4\u07A5\x07Q\x02\x02" + - "\u07A5\u07A6\x07P\x02\x02\u07A6\u07A7\x07E\x02\x02\u07A7\u07A8\x07C\x02" + - "\x02\u07A8\u07A9\x07V\x02\x02\u07A9\u019C\x03\x02\x02\x02\u07AA\u07AB" + - "\x07E\x02\x02\u07AB\u07AC\x07Q\x02\x02\u07AC\u07AD\x07P\x02\x02\u07AD" + - "\u07AE\x07E\x02\x02\u07AE\u07AF\x07C\x02\x02\u07AF\u07B0\x07V\x02\x02" + - "\u07B0\u07B1\x07a\x02\x02\u07B1\u07B2\x07Y\x02\x02\u07B2\u07B3\x07U\x02" + - "\x02\u07B3\u019E\x03\x02\x02\x02\u07B4\u07B5\x07N\x02\x02\u07B5\u07B6" + - "\x07G\x02\x02\u07B6\u07B7\x07P\x02\x02\u07B7\u07B8\x07I\x02\x02\u07B8" + - "\u07B9\x07V\x02\x02\u07B9\u07BA\x07J\x02\x02\u07BA\u01A0\x03\x02\x02\x02" + - "\u07BB\u07BC\x07U\x02\x02\u07BC\u07BD\x07V\x02\x02\u07BD\u07BE\x07T\x02" + - "\x02\u07BE\u07BF\x07E\x02\x02\u07BF\u07C0\x07O\x02\x02\u07C0\u07C1\x07" + - "R\x02\x02\u07C1\u01A2\x03\x02\x02\x02\u07C2\u07C3\x07T\x02\x02\u07C3\u07C4" + - "\x07K\x02\x02\u07C4\u07C5\x07I\x02\x02\u07C5\u07C6\x07J\x02\x02\u07C6" + - "\u07C7\x07V\x02\x02\u07C7\u01A4\x03\x02\x02\x02\u07C8\u07C9\x07N\x02\x02" + - "\u07C9\u07CA\x07G\x02\x02\u07CA\u07CB\x07H\x02\x02\u07CB\u07CC\x07V\x02" + - "\x02\u07CC\u01A6\x03\x02\x02\x02\u07CD\u07CE\x07C\x02\x02\u07CE\u07CF" + - "\x07U\x02\x02\u07CF\u07D0\x07E\x02\x02\u07D0\u07D1\x07K\x02\x02\u07D1" + - "\u07D2\x07K\x02\x02\u07D2\u01A8\x03\x02\x02\x02\u07D3\u07D4\x07N\x02\x02" + - "\u07D4\u07D5\x07Q\x02\x02\u07D5\u07D6\x07E\x02\x02\u07D6\u07D7\x07C\x02" + - "\x02\u07D7\u07D8\x07V\x02\x02\u07D8\u07D9\x07G\x02\x02\u07D9\u01AA\x03" + - "\x02\x02\x02\u07DA\u07DB\x07T\x02\x02\u07DB\u07DC\x07G\x02\x02\u07DC\u07DD" + - "\x07R\x02\x02\u07DD\u07DE\x07N\x02\x02\u07DE\u07DF\x07C\x02\x02\u07DF" + - "\u07E0\x07E\x02\x02\u07E0\u07E1\x07G\x02\x02\u07E1\u01AC\x03\x02\x02\x02" + - "\u07E2\u07E3\x07E\x02\x02\u07E3\u07E4\x07C\x02\x02\u07E4\u07E5\x07U\x02" + - "\x02\u07E5\u07E6\x07V\x02\x02\u07E6\u01AE\x03\x02\x02\x02\u07E7\u07E8" + - "\x07N\x02\x02\u07E8\u07E9\x07K\x02\x02\u07E9\u07EA\x07M\x02\x02\u07EA" + - "\u07EB\x07G\x02\x02\u07EB\u01B0\x03\x02\x02\x02\u07EC\u07ED\x07K\x02\x02" + - "\u07ED\u07EE\x07U\x02\x02\u07EE\u07EF\x07P\x02\x02\u07EF\u07F0\x07W\x02" + - "\x02\u07F0\u07F1\x07N\x02\x02\u07F1\u07F2\x07N\x02\x02\u07F2\u01B2\x03" + - "\x02\x02\x02\u07F3\u07F4\x07K\x02\x02\u07F4\u07F5\x07U\x02\x02\u07F5\u07F6" + - "\x07P\x02\x02\u07F6\u07F7\x07Q\x02\x02\u07F7\u07F8\x07V\x02\x02\u07F8" + - "\u07F9\x07P\x02\x02\u07F9\u07FA\x07W\x02\x02\u07FA\u07FB\x07N\x02\x02" + - "\u07FB\u07FC\x07N\x02\x02\u07FC\u01B4\x03\x02\x02\x02\u07FD\u07FE\x07" + - "K\x02\x02\u07FE\u07FF\x07H\x02\x02\u07FF\u0800\x07P\x02\x02\u0800\u0801" + - "\x07W\x02\x02\u0801\u0802\x07N\x02\x02\u0802\u0803\x07N\x02\x02\u0803" + - "\u01B6\x03\x02\x02\x02\u0804\u0805\x07P\x02\x02\u0805\u0806\x07W\x02\x02" + - "\u0806\u0807\x07N\x02\x02\u0807\u0808\x07N\x02\x02\u0808\u0809\x07K\x02" + - "\x02\u0809\u080A\x07H\x02\x02\u080A\u01B8\x03\x02\x02\x02\u080B\u080C" + - "\x07K\x02\x02\u080C\u080D\x07H\x02\x02\u080D\u01BA\x03\x02\x02\x02\u080E" + - "\u080F\x07O\x02\x02\u080F\u0810\x07C\x02\x02\u0810\u0811\x07V\x02\x02" + - "\u0811\u0812\x07E\x02\x02\u0812\u0813\x07J\x02\x02\u0813\u01BC\x03\x02" + - "\x02\x02\u0814\u0815\x07O\x02\x02\u0815\u0816\x07C\x02\x02\u0816\u0817" + - "\x07V\x02\x02\u0817\u0818\x07E\x02\x02\u0818\u0819\x07J\x02\x02\u0819" + - "\u081A\x07a\x02\x02\u081A\u081B\x07R\x02\x02\u081B\u081C\x07J\x02\x02" + - "\u081C\u081D\x07T\x02\x02\u081D\u081E\x07C\x02\x02\u081E\u081F\x07U\x02" + - "\x02\u081F\u0820\x07G\x02\x02\u0820\u01BE\x03\x02\x02\x02\u0821\u0822" + - "\x07U\x02\x02\u0822\u0823\x07K\x02\x02\u0823\u0824\x07O\x02\x02\u0824" + - "\u0825\x07R\x02\x02\u0825\u0826\x07N\x02\x02\u0826\u0827\x07G\x02\x02" + - "\u0827\u0828\x07a\x02\x02\u0828\u0829\x07S\x02\x02\u0829\u082A\x07W\x02" + - "\x02\u082A\u082B\x07G\x02\x02\u082B\u082C\x07T\x02\x02\u082C\u082D\x07" + - "[\x02\x02\u082D\u082E\x07a\x02\x02\u082E\u082F\x07U\x02\x02\u082F\u0830" + - "\x07V\x02\x02\u0830\u0831\x07T\x02\x02\u0831\u0832\x07K\x02\x02\u0832" + - "\u0833\x07P\x02\x02\u0833\u0834\x07I\x02\x02\u0834\u01C0\x03\x02\x02\x02" + - "\u0835\u0836\x07C\x02\x02\u0836\u0837\x07N\x02\x02\u0837\u0838\x07N\x02" + - "\x02\u0838\u0839\x07Q\x02\x02\u0839\u083A\x07Y\x02\x02\u083A\u083B\x07" + - "a\x02\x02\u083B\u083C\x07N\x02\x02\u083C\u083D\x07G\x02\x02\u083D\u083E" + - "\x07C\x02\x02\u083E\u083F\x07F\x02\x02\u083F\u0840\x07K\x02\x02\u0840" + - "\u0841\x07P\x02\x02\u0841\u0842\x07I\x02\x02\u0842\u0843\x07a\x02\x02" + - "\u0843\u0844\x07Y\x02\x02\u0844\u0845\x07K\x02\x02\u0845\u0846\x07N\x02" + - "\x02\u0846\u0847\x07F\x02\x02\u0847\u0848\x07E\x02\x02\u0848\u0849\x07" + - "C\x02\x02\u0849\u084A\x07T\x02\x02\u084A\u084B\x07F\x02\x02\u084B\u01C2" + - "\x03\x02\x02\x02\u084C\u084D\x07C\x02\x02\u084D\u084E\x07P\x02\x02\u084E" + - "\u084F\x07C\x02\x02\u084F\u0850\x07N\x02\x02\u0850\u0851\x07[\x02\x02" + - "\u0851\u0852\x07\\\x02\x02\u0852\u0853\x07G\x02\x02\u0853\u0854\x07a\x02" + - "\x02\u0854\u0855\x07Y\x02\x02\u0855\u0856\x07K\x02\x02\u0856\u0857\x07" + - "N\x02\x02\u0857\u0858\x07F\x02\x02\u0858\u0859\x07E\x02\x02\u0859\u085A" + - "\x07C\x02\x02\u085A\u085B\x07T\x02\x02\u085B\u085C\x07F\x02\x02\u085C" + - "\u01C4\x03\x02\x02\x02\u085D\u085E\x07C\x02\x02\u085E\u085F\x07P\x02\x02" + - "\u085F\u0860\x07C\x02\x02\u0860\u0861\x07N\x02\x02\u0861\u0862\x07[\x02" + - "\x02\u0862\u0863\x07\\\x02\x02\u0863\u0864\x07G\x02\x02\u0864\u0865\x07" + - "T\x02\x02\u0865\u01C6\x03\x02\x02\x02\u0866\u0867\x07C\x02\x02\u0867\u0868" + - "\x07W\x02\x02\u0868\u0869\x07V\x02\x02\u0869\u086A\x07Q\x02\x02\u086A" + - "\u086B\x07a\x02\x02\u086B\u086C\x07I\x02\x02\u086C\u086D\x07G\x02\x02" + - "\u086D\u086E\x07P\x02\x02\u086E\u086F\x07G\x02\x02\u086F\u0870\x07T\x02" + - "\x02\u0870\u0871\x07C\x02\x02\u0871\u0872\x07V\x02\x02\u0872\u0873\x07" + - "G\x02\x02\u0873\u0874\x07a\x02\x02\u0874\u0875\x07U\x02\x02\u0875\u0876" + - "\x07[\x02\x02\u0876\u0877\x07P\x02\x02\u0877\u0878\x07Q\x02\x02\u0878" + - "\u0879\x07P\x02\x02\u0879\u087A\x07[\x02\x02\u087A\u087B\x07O\x02\x02" + - "\u087B\u087C\x07U\x02\x02\u087C\u087D\x07a\x02\x02\u087D\u087E\x07R\x02" + - "\x02\u087E\u087F\x07J\x02\x02\u087F\u0880\x07T\x02\x02\u0880\u0881\x07" + - "C\x02\x02\u0881\u0882\x07U\x02\x02\u0882\u0883\x07G\x02\x02\u0883\u0884" + - "\x07a\x02\x02\u0884\u0885\x07S\x02\x02\u0885\u0886\x07W\x02\x02\u0886" + - "\u0887\x07G\x02\x02\u0887\u0888\x07T\x02\x02\u0888\u0889\x07[\x02\x02" + - "\u0889\u01C8\x03\x02\x02\x02\u088A\u088B\x07D\x02\x02\u088B\u088C\x07" + - "Q\x02\x02\u088C\u088D\x07Q\x02\x02\u088D\u088E\x07U\x02\x02\u088E\u088F" + - "\x07V\x02\x02\u088F\u01CA\x03\x02\x02\x02\u0890\u0891\x07E\x02\x02\u0891" + - "\u0892\x07W\x02\x02\u0892\u0893\x07V\x02\x02\u0893\u0894\x07Q\x02\x02" + - "\u0894\u0895\x07H\x02\x02\u0895\u0896\x07H\x02\x02\u0896\u0897\x07a\x02" + - "\x02\u0897\u0898\x07H\x02\x02\u0898\u0899\x07T\x02\x02\u0899\u089A\x07" + - "G\x02\x02\u089A\u089B\x07S\x02\x02\u089B\u089C\x07W\x02\x02\u089C\u089D" + - "\x07G\x02\x02\u089D\u089E\x07P\x02\x02\u089E\u089F\x07E\x02\x02\u089F" + - "\u08A0\x07[\x02\x02\u08A0\u01CC\x03\x02\x02\x02\u08A1\u08A2\x07F\x02\x02" + - "\u08A2\u08A3\x07G\x02\x02\u08A3\u08A4\x07H\x02\x02\u08A4\u08A5\x07C\x02" + - "\x02\u08A5\u08A6\x07W\x02\x02\u08A6\u08A7\x07N\x02\x02\u08A7\u08A8\x07" + - "V\x02\x02\u08A8\u08A9\x07a\x02\x02\u08A9\u08AA\x07H\x02\x02\u08AA\u08AB" + - "\x07K\x02\x02\u08AB\u08AC\x07G\x02\x02\u08AC\u08AD\x07N\x02\x02\u08AD" + - "\u08AE\x07F\x02\x02\u08AE\u01CE\x03\x02\x02\x02\u08AF\u08B0\x07F\x02\x02" + - "\u08B0\u08B1\x07G\x02\x02\u08B1\u08B2\x07H\x02\x02\u08B2\u08B3\x07C\x02" + - "\x02\u08B3\u08B4\x07W\x02\x02\u08B4\u08B5\x07N\x02\x02\u08B5\u08B6\x07" + - "V\x02\x02\u08B6\u08B7\x07a\x02\x02\u08B7\u08B8\x07Q\x02\x02\u08B8\u08B9" + - "\x07R\x02\x02\u08B9\u08BA\x07G\x02\x02\u08BA\u08BB\x07T\x02\x02\u08BB" + - "\u08BC\x07C\x02\x02\u08BC\u08BD\x07V\x02\x02\u08BD\u08BE\x07Q\x02\x02" + - "\u08BE\u08BF\x07T\x02\x02\u08BF\u01D0\x03\x02\x02\x02\u08C0\u08C1\x07" + - "G\x02\x02\u08C1\u08C2\x07P\x02\x02\u08C2\u08C3\x07C\x02\x02\u08C3\u08C4" + - "\x07D\x02\x02\u08C4\u08C5\x07N\x02\x02\u08C5\u08C6\x07G\x02\x02\u08C6" + - "\u08C7\x07a\x02\x02\u08C7\u08C8\x07R\x02\x02\u08C8\u08C9\x07Q\x02\x02" + - "\u08C9\u08CA\x07U\x02\x02\u08CA\u08CB\x07K\x02\x02\u08CB\u08CC\x07V\x02" + - "\x02\u08CC\u08CD\x07K\x02\x02\u08CD\u08CE\x07Q\x02\x02\u08CE\u08CF\x07" + - "P\x02\x02\u08CF\u08D0\x07a\x02\x02\u08D0\u08D1\x07K\x02\x02\u08D1\u08D2" + - "\x07P\x02\x02\u08D2\u08D3\x07E\x02\x02\u08D3\u08D4\x07T\x02\x02\u08D4" + - "\u08D5\x07G\x02\x02\u08D5\u08D6\x07O\x02\x02\u08D6\u08D7\x07G\x02\x02" + - "\u08D7\u08D8\x07P\x02\x02\u08D8\u08D9\x07V\x02\x02\u08D9\u08DA\x07U\x02" + - "\x02\u08DA\u01D2\x03\x02\x02\x02\u08DB\u08DC\x07H\x02\x02\u08DC\u08DD" + - "\x07N\x02\x02\u08DD\u08DE\x07C\x02\x02\u08DE\u08DF\x07I\x02\x02\u08DF" + - "\u08E0\x07U\x02\x02\u08E0\u01D4\x03\x02\x02\x02\u08E1\u08E2\x07H\x02\x02" + - "\u08E2\u08E3\x07W\x02\x02\u08E3\u08E4\x07\\\x02\x02\u08E4\u08E5\x07\\" + - "\x02\x02\u08E5\u08E6\x07[\x02\x02\u08E6\u08E7\x07a\x02\x02\u08E7\u08E8" + - "\x07O\x02\x02\u08E8\u08E9\x07C\x02\x02\u08E9\u08EA\x07Z\x02\x02\u08EA" + - "\u08EB\x07a\x02\x02\u08EB\u08EC\x07G\x02\x02\u08EC\u08ED\x07Z\x02\x02" + - "\u08ED\u08EE\x07R\x02\x02\u08EE\u08EF\x07C\x02\x02\u08EF\u08F0\x07P\x02" + - "\x02\u08F0\u08F1\x07U\x02\x02\u08F1\u08F2\x07K\x02\x02\u08F2\u08F3\x07" + - "Q\x02\x02\u08F3\u08F4\x07P\x02\x02\u08F4\u08F5\x07U\x02\x02\u08F5\u01D6" + - "\x03\x02\x02\x02\u08F6\u08F7\x07H\x02\x02\u08F7\u08F8\x07W\x02\x02\u08F8" + - "\u08F9\x07\\\x02\x02\u08F9\u08FA\x07\\\x02\x02\u08FA"; - private static readonly _serializedATNSegment4: string = - "\u08FB\x07[\x02\x02\u08FB\u08FC\x07a\x02\x02\u08FC\u08FD\x07R\x02\x02" + - "\u08FD\u08FE\x07T\x02\x02\u08FE\u08FF\x07G\x02\x02\u08FF\u0900\x07H\x02" + - "\x02\u0900\u0901\x07K\x02\x02\u0901\u0902\x07Z\x02\x02\u0902\u0903\x07" + - "a\x02\x02\u0903\u0904\x07N\x02\x02\u0904\u0905\x07G\x02\x02\u0905\u0906" + - "\x07P\x02\x02\u0906\u0907\x07I\x02\x02\u0907\u0908\x07V\x02\x02\u0908" + - "\u0909\x07J\x02\x02\u0909\u01D8\x03\x02\x02\x02\u090A\u090B\x07H\x02\x02" + - "\u090B\u090C\x07W\x02\x02\u090C\u090D\x07\\\x02\x02\u090D\u090E\x07\\" + - "\x02\x02\u090E\u090F\x07[\x02\x02\u090F\u0910\x07a\x02\x02\u0910\u0911" + - "\x07V\x02\x02\u0911\u0912\x07T\x02\x02\u0912\u0913\x07C\x02\x02\u0913" + - "\u0914\x07P\x02\x02\u0914\u0915\x07U\x02\x02\u0915\u0916\x07R\x02\x02" + - "\u0916\u0917\x07Q\x02\x02\u0917\u0918\x07U\x02\x02\u0918\u0919\x07K\x02" + - "\x02\u0919\u091A\x07V\x02\x02\u091A\u091B\x07K\x02\x02\u091B\u091C\x07" + - "Q\x02\x02\u091C\u091D\x07P\x02\x02\u091D\u091E\x07U\x02\x02\u091E\u01DA" + - "\x03\x02\x02\x02\u091F\u0920\x07H\x02\x02\u0920\u0921\x07W\x02\x02\u0921" + - "\u0922\x07\\\x02\x02\u0922\u0923\x07\\\x02\x02\u0923\u0924\x07[\x02\x02" + - "\u0924\u0925\x07a\x02\x02\u0925\u0926\x07T\x02\x02\u0926\u0927\x07G\x02" + - "\x02\u0927\u0928\x07Y\x02\x02\u0928\u0929\x07T\x02\x02\u0929\u092A\x07" + - "K\x02\x02\u092A\u092B\x07V\x02\x02\u092B\u092C\x07G\x02\x02\u092C\u01DC" + - "\x03\x02\x02\x02\u092D\u092E\x07H\x02\x02\u092E\u092F\x07W\x02\x02\u092F" + - "\u0930\x07\\\x02\x02\u0930\u0931\x07\\\x02\x02\u0931\u0932\x07K\x02\x02" + - "\u0932\u0933\x07P\x02\x02\u0933\u0934\x07G\x02\x02\u0934\u0935\x07U\x02" + - "\x02\u0935\u0936\x07U\x02\x02\u0936\u01DE\x03\x02\x02\x02\u0937\u0938" + - "\x07N\x02\x02\u0938\u0939\x07G\x02\x02\u0939\u093A\x07P\x02\x02\u093A" + - "\u093B\x07K\x02\x02\u093B\u093C\x07G\x02\x02\u093C\u093D\x07P\x02\x02" + - "\u093D\u093E\x07V\x02\x02\u093E\u01E0\x03\x02\x02\x02\u093F\u0940\x07" + - "N\x02\x02\u0940\u0941\x07Q\x02\x02\u0941\u0942\x07Y\x02\x02\u0942\u0943" + - "\x07a\x02\x02\u0943\u0944\x07H\x02\x02\u0944\u0945\x07T\x02\x02\u0945" + - "\u0946\x07G\x02\x02\u0946\u0947\x07S\x02\x02\u0947\u0948\x07a\x02\x02" + - "\u0948\u0949\x07Q\x02\x02\u0949\u094A\x07R\x02\x02\u094A\u094B\x07G\x02" + - "\x02\u094B\u094C\x07T\x02\x02\u094C\u094D\x07C\x02\x02\u094D\u094E\x07" + - "V\x02\x02\u094E\u094F\x07Q\x02\x02\u094F\u0950\x07T\x02\x02\u0950\u01E2" + - "\x03\x02\x02\x02\u0951\u0952\x07O\x02\x02\u0952\u0953\x07C\x02\x02\u0953" + - "\u0954\x07Z\x02\x02\u0954\u0955\x07a\x02\x02\u0955\u0956\x07F\x02\x02" + - "\u0956\u0957\x07G\x02\x02\u0957\u0958\x07V\x02\x02\u0958\u0959\x07G\x02" + - "\x02\u0959\u095A\x07T\x02\x02\u095A\u095B\x07O\x02\x02\u095B\u095C\x07" + - "K\x02\x02\u095C\u095D\x07P\x02\x02\u095D\u095E\x07K\x02\x02\u095E\u095F" + - "\x07\\\x02\x02\u095F\u0960\x07G\x02\x02\u0960\u0961\x07F\x02\x02\u0961" + - "\u0962\x07a\x02\x02\u0962\u0963\x07U\x02\x02\u0963\u0964\x07V\x02\x02" + - "\u0964\u0965\x07C\x02\x02\u0965\u0966\x07V\x02\x02\u0966\u0967\x07G\x02" + - "\x02\u0967\u0968\x07U\x02\x02\u0968\u01E4\x03\x02\x02\x02\u0969\u096A" + - "\x07O\x02\x02\u096A\u096B\x07C\x02\x02\u096B\u096C\x07Z\x02\x02\u096C" + - "\u096D\x07a\x02\x02\u096D\u096E\x07G\x02\x02\u096E\u096F\x07Z\x02\x02" + - "\u096F\u0970\x07R\x02\x02\u0970\u0971\x07C\x02\x02\u0971\u0972\x07P\x02" + - "\x02\u0972\u0973\x07U\x02\x02\u0973\u0974\x07K\x02\x02\u0974\u0975\x07" + - "Q\x02\x02\u0975\u0976\x07P\x02\x02\u0976\u0977\x07U\x02\x02\u0977\u01E6" + - "\x03\x02\x02\x02\u0978\u0979\x07O\x02\x02\u0979\u097A\x07K\x02\x02\u097A" + - "\u097B\x07P\x02\x02\u097B\u097C\x07K\x02\x02\u097C\u097D\x07O\x02\x02" + - "\u097D\u097E\x07W\x02\x02\u097E\u097F\x07O\x02\x02\u097F\u0980\x07a\x02" + - "\x02\u0980\u0981\x07U\x02\x02\u0981\u0982\x07J\x02\x02\u0982\u0983\x07" + - "Q\x02\x02\u0983\u0984\x07W\x02\x02\u0984\u0985\x07N\x02\x02\u0985\u0986" + - "\x07F\x02\x02\u0986\u0987\x07a\x02\x02\u0987\u0988\x07O\x02\x02\u0988" + - "\u0989\x07C\x02\x02\u0989\u098A\x07V\x02\x02\u098A\u098B\x07E\x02\x02" + - "\u098B\u098C\x07J\x02\x02\u098C\u01E8\x03\x02\x02\x02\u098D\u098E\x07" + - "Q\x02\x02\u098E\u098F\x07R\x02\x02\u098F\u0990\x07G\x02\x02\u0990\u0991" + - "\x07T\x02\x02\u0991\u0992\x07C\x02\x02\u0992\u0993\x07V\x02\x02\u0993" + - "\u0994\x07Q\x02\x02\u0994\u0995\x07T\x02\x02\u0995\u01EA\x03\x02\x02\x02" + - "\u0996\u0997\x07R\x02\x02\u0997\u0998\x07J\x02\x02\u0998\u0999\x07T\x02" + - "\x02\u0999\u099A\x07C\x02\x02\u099A\u099B\x07U\x02\x02\u099B\u099C\x07" + - "G\x02\x02\u099C\u099D\x07a\x02\x02\u099D\u099E\x07U\x02\x02\u099E\u099F" + - "\x07N\x02\x02\u099F\u09A0\x07Q\x02\x02\u09A0\u09A1\x07R\x02\x02\u09A1" + - "\u01EC\x03\x02\x02\x02\u09A2\u09A3\x07R\x02\x02\u09A3\u09A4\x07T\x02\x02" + - "\u09A4\u09A5\x07G\x02\x02\u09A5\u09A6\x07H\x02\x02\u09A6\u09A7\x07K\x02" + - "\x02\u09A7\u09A8\x07Z\x02\x02\u09A8\u09A9\x07a\x02\x02\u09A9\u09AA\x07" + - "N\x02\x02\u09AA\u09AB\x07G\x02\x02\u09AB\u09AC\x07P\x02\x02\u09AC\u09AD" + - "\x07I\x02\x02\u09AD\u09AE\x07V\x02\x02\u09AE\u09AF\x07J\x02\x02\u09AF" + - "\u01EE\x03\x02\x02\x02\u09B0\u09B1\x07S\x02\x02\u09B1\u09B2\x07W\x02\x02" + - "\u09B2\u09B3\x07Q\x02\x02\u09B3\u09B4\x07V\x02\x02\u09B4\u09B5\x07G\x02" + - "\x02\u09B5\u09B6\x07a\x02\x02\u09B6\u09B7\x07C\x02\x02\u09B7\u09B8\x07" + - "P\x02\x02\u09B8\u09B9\x07C\x02\x02\u09B9\u09BA\x07N\x02\x02\u09BA\u09BB" + - "\x07[\x02\x02\u09BB\u09BC\x07\\\x02\x02\u09BC\u09BD\x07G\x02\x02\u09BD" + - "\u09BE\x07T\x02\x02\u09BE\u01F0\x03\x02\x02\x02\u09BF\u09C0\x07S\x02\x02" + - "\u09C0\u09C1\x07W\x02\x02\u09C1\u09C2\x07Q\x02\x02\u09C2\u09C3\x07V\x02" + - "\x02\u09C3\u09C4\x07G\x02\x02\u09C4\u09C5\x07a\x02\x02\u09C5\u09C6\x07" + - "H\x02\x02\u09C6\u09C7\x07K\x02\x02\u09C7\u09C8\x07G\x02\x02\u09C8\u09C9" + - "\x07N\x02\x02\u09C9\u09CA\x07F\x02\x02\u09CA\u09CB\x07a\x02\x02\u09CB" + - "\u09CC\x07U\x02\x02\u09CC\u09CD\x07W\x02\x02\u09CD\u09CE\x07H\x02\x02" + - "\u09CE\u09CF\x07H\x02\x02\u09CF\u09D0\x07K\x02\x02\u09D0\u09D1\x07Z\x02" + - "\x02\u09D1\u01F2\x03\x02\x02\x02\u09D2\u09D3\x07T\x02\x02\u09D3\u09D4" + - "\x07G\x02\x02\u09D4\u09D5\x07Y\x02\x02\u09D5\u09D6\x07T\x02\x02\u09D6" + - "\u09D7\x07K\x02\x02\u09D7\u09D8\x07V\x02\x02\u09D8\u09D9\x07G\x02\x02" + - "\u09D9\u01F4\x03\x02\x02\x02\u09DA\u09DB\x07U\x02\x02\u09DB\u09DC\x07" + - "N\x02\x02\u09DC\u09DD\x07Q\x02\x02\u09DD\u09DE\x07R\x02\x02\u09DE\u01F6" + - "\x03\x02\x02\x02\u09DF\u09E0\x07V\x02\x02\u09E0\u09E1\x07K\x02\x02\u09E1" + - "\u09E2\x07G\x02\x02\u09E2\u09E3\x07a\x02\x02\u09E3\u09E4\x07D\x02\x02" + - "\u09E4\u09E5\x07T\x02\x02\u09E5\u09E6\x07G\x02\x02\u09E6\u09E7\x07C\x02" + - "\x02\u09E7\u09E8\x07M\x02\x02\u09E8\u09E9\x07G\x02\x02\u09E9\u09EA\x07" + - "T\x02\x02\u09EA\u01F8\x03\x02\x02\x02\u09EB\u09EC\x07V\x02\x02\u09EC\u09ED" + - "\x07[\x02\x02\u09ED\u09EE\x07R\x02\x02\u09EE\u09EF\x07G\x02\x02\u09EF" + - "\u01FA\x03\x02\x02\x02\u09F0\u09F1\x07\\\x02\x02\u09F1\u09F2\x07G\x02" + - "\x02\u09F2\u09F3\x07T\x02\x02\u09F3\u09F4\x07Q\x02\x02\u09F4\u09F5\x07" + - "a\x02\x02\u09F5\u09F6\x07V\x02\x02\u09F6\u09F7\x07G\x02\x02\u09F7\u09F8" + - "\x07T\x02\x02\u09F8\u09F9\x07O\x02\x02\u09F9\u09FA\x07U\x02\x02\u09FA" + - "\u09FB\x07a\x02\x02\u09FB\u09FC\x07S\x02\x02\u09FC\u09FD\x07W\x02\x02" + - "\u09FD\u09FE\x07G\x02\x02\u09FE\u09FF\x07T\x02\x02\u09FF\u0A00\x07[\x02" + - "\x02\u0A00\u01FC\x03\x02\x02\x02\u0A01\u0A02\x07U\x02\x02\u0A02\u0A03" + - "\x07R\x02\x02\u0A03\u0A04\x07C\x02\x02\u0A04\u0A05\x07P\x02\x02\u0A05" + - "\u01FE\x03\x02\x02\x02\u0A06\u0A07\x07O\x02\x02\u0A07\u0A08\x07U\x02\x02" + - "\u0A08\u0200\x03\x02\x02\x02\u0A09\u0A0A\x07U\x02\x02\u0A0A\u0202\x03" + - "\x02\x02\x02\u0A0B\u0A0C\x07O\x02\x02\u0A0C\u0204\x03\x02\x02\x02\u0A0D" + - "\u0A0E\x07J\x02\x02\u0A0E\u0206\x03\x02\x02\x02\u0A0F\u0A10\x07Y\x02\x02" + - "\u0A10\u0208\x03\x02\x02\x02\u0A11\u0A12\x07S\x02\x02\u0A12\u020A\x03" + - "\x02\x02\x02\u0A13\u0A14\x07[\x02\x02\u0A14\u020C\x03\x02\x02\x02\u0A15" + - "\u0A16\x05\u0215\u010B\x02\u0A16\u020E\x03\x02\x02\x02\u0A17\u0A19\x05" + - "\u021F\u0110\x02\u0A18\u0A17\x03\x02\x02\x02\u0A19\u0A1A\x03\x02\x02\x02" + - "\u0A1A\u0A18\x03\x02\x02\x02\u0A1A\u0A1B\x03\x02\x02\x02\u0A1B\u0210\x03" + - "\x02\x02\x02\u0A1C\u0A1E\x05\u021F\u0110\x02\u0A1D\u0A1C\x03\x02\x02\x02" + - "\u0A1E\u0A1F\x03\x02\x02\x02\u0A1F\u0A1D\x03\x02\x02\x02\u0A1F\u0A20\x03" + - "\x02\x02\x02\u0A20\u0A22\x03\x02\x02\x02\u0A21\u0A1D\x03\x02\x02\x02\u0A21" + - "\u0A22\x03\x02\x02\x02\u0A22\u0A23\x03\x02\x02\x02\u0A23\u0A25\x070\x02" + - "\x02\u0A24\u0A26\x05\u021F\u0110\x02\u0A25\u0A24\x03\x02\x02\x02\u0A26" + - "\u0A27\x03\x02\x02\x02\u0A27\u0A25\x03\x02\x02\x02\u0A27\u0A28\x03\x02" + - "\x02\x02\u0A28\u0212\x03\x02\x02\x02\u0A29\u0A2B\t\x02\x02\x02\u0A2A\u0A2C" + - "\t\x03\x02\x02\u0A2B\u0A2A\x03\x02\x02\x02\u0A2C\u0A2D\x03\x02\x02\x02" + - "\u0A2D\u0A2B\x03\x02\x02\x02\u0A2D\u0A2E\x03\x02\x02\x02\u0A2E\u0A30\x03" + - "\x02\x02\x02\u0A2F\u0A29\x03\x02\x02\x02\u0A30\u0A33\x03\x02\x02\x02\u0A31" + - "\u0A2F\x03\x02\x02\x02\u0A31\u0A32\x03\x02\x02\x02\u0A32\u0214\x03\x02" + - "\x02\x02\u0A33\u0A31\x03\x02\x02\x02\u0A34\u0A36\t\x04\x02\x02\u0A35\u0A34" + - "\x03\x02\x02\x02\u0A36\u0A37\x03\x02\x02\x02\u0A37\u0A38\x03\x02\x02\x02" + - "\u0A37\u0A35\x03\x02\x02\x02\u0A38\u0A3C\x03\x02\x02\x02\u0A39\u0A3B\t" + - "\x05\x02\x02\u0A3A\u0A39\x03\x02\x02\x02\u0A3B\u0A3E\x03\x02\x02\x02\u0A3C" + - "\u0A3A\x03\x02\x02\x02\u0A3C\u0A3D\x03\x02\x02\x02\u0A3D\u0216\x03\x02" + - "\x02\x02\u0A3E\u0A3C\x03\x02\x02\x02\u0A3F\u0A40\x05\u0215\u010B\x02\u0A40" + - "\u0A41\x05\u0213\u010A\x02\u0A41\u0218\x03\x02\x02\x02\u0A42\u0A4A\x07" + - "$\x02\x02\u0A43\u0A44\x07^\x02\x02\u0A44\u0A49\v\x02\x02\x02\u0A45\u0A46" + - "\x07$\x02\x02\u0A46\u0A49\x07$\x02\x02\u0A47\u0A49\n\x06\x02\x02\u0A48" + - "\u0A43\x03\x02\x02\x02\u0A48\u0A45\x03\x02\x02\x02\u0A48\u0A47\x03\x02" + - "\x02\x02\u0A49\u0A4C\x03\x02\x02\x02\u0A4A\u0A48\x03\x02\x02\x02\u0A4A" + - "\u0A4B\x03\x02\x02\x02\u0A4B\u0A4D\x03\x02\x02\x02\u0A4C\u0A4A\x03\x02" + - "\x02\x02\u0A4D\u0A4E\x07$\x02\x02\u0A4E\u021A\x03\x02\x02\x02\u0A4F\u0A57" + - "\x07)\x02\x02\u0A50\u0A51\x07^\x02\x02\u0A51\u0A56\v\x02\x02\x02\u0A52" + - "\u0A53\x07)\x02\x02\u0A53\u0A56\x07)\x02\x02\u0A54\u0A56\n\x07\x02\x02" + - "\u0A55\u0A50\x03\x02\x02\x02\u0A55\u0A52\x03\x02\x02\x02\u0A55\u0A54\x03" + - "\x02\x02\x02\u0A56\u0A59\x03\x02\x02\x02\u0A57\u0A55\x03\x02\x02\x02\u0A57" + - "\u0A58\x03\x02\x02\x02\u0A58\u0A5A\x03\x02\x02\x02\u0A59\u0A57\x03\x02" + - "\x02\x02\u0A5A\u0A5B\x07)\x02\x02\u0A5B\u021C\x03\x02\x02\x02\u0A5C\u0A64" + - "\x07b\x02\x02\u0A5D\u0A5E\x07^\x02\x02\u0A5E\u0A63\v\x02\x02\x02\u0A5F" + - "\u0A60\x07b\x02\x02\u0A60\u0A63\x07b\x02\x02\u0A61\u0A63\n\b\x02\x02\u0A62" + - "\u0A5D\x03\x02\x02\x02\u0A62\u0A5F\x03\x02\x02\x02\u0A62\u0A61\x03\x02" + - "\x02\x02\u0A63\u0A66\x03\x02\x02\x02\u0A64\u0A62\x03\x02\x02\x02\u0A64" + - "\u0A65\x03\x02\x02\x02\u0A65\u0A67\x03\x02\x02\x02\u0A66\u0A64\x03\x02" + - "\x02\x02\u0A67\u0A68\x07b\x02\x02\u0A68\u021E\x03\x02\x02\x02\u0A69\u0A6A" + - "\t\t\x02\x02\u0A6A\u0220\x03\x02\x02\x02\u0A6B\u0A6C\v\x02\x02\x02\u0A6C" + - "\u0A6D\x03\x02\x02\x02\u0A6D\u0A6E\b\u0111\x02\x02\u0A6E\u0222\x03\x02" + - "\x02\x02\x11\x02\u0A1A\u0A1F\u0A21\u0A27\u0A2D\u0A31\u0A37\u0A3C\u0A48" + - "\u0A4A\u0A55\u0A57\u0A62\u0A64\x03\x02\x05\x02"; - public static readonly _serializedATN: string = Utils.join( - [ - OpenSearchPPLLexer._serializedATNSegment0, - OpenSearchPPLLexer._serializedATNSegment1, - OpenSearchPPLLexer._serializedATNSegment2, - OpenSearchPPLLexer._serializedATNSegment3, - OpenSearchPPLLexer._serializedATNSegment4, - ], - "", - ); - public static __ATN: ATN; - public static get _ATN(): ATN { - if (!OpenSearchPPLLexer.__ATN) { - OpenSearchPPLLexer.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLLexer._serializedATN)); - } - - return OpenSearchPPLLexer.__ATN; - } - -} - diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp deleted file mode 100644 index a9db73a19..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.interp +++ /dev/null @@ -1,634 +0,0 @@ -token literal names: -null -'SEARCH' -'FROM' -'WHERE' -'FIELDS' -'RENAME' -'STATS' -'DEDUP' -'SORT' -'EVAL' -'HEAD' -'TOP' -'RARE' -'PARSE' -'KMEANS' -'AD' -'AS' -'BY' -'SOURCE' -'INDEX' -'D' -'DESC' -'SORTBY' -'AUTO' -'STR' -'IP' -'NUM' -'KEEPEMPTY' -'CONSECUTIVE' -'DEDUP_SPLITVALUES' -'PARTITIONS' -'ALLNUM' -'DELIM' -'CENTROIDS' -'ITERATIONS' -'DISTANCE_TYPE' -'NUMBER_OF_TREES' -'SHINGLE_SIZE' -'SAMPLE_SIZE' -'OUTPUT_AFTER' -'TIME_DECAY' -'ANOMALY_RATE' -'TIME_FIELD' -'TIME_ZONE' -'TRAINING_DATA_SIZE' -'ANOMALY_SCORE_THRESHOLD' -'CASE' -'IN' -'NOT' -'OR' -'AND' -'XOR' -'TRUE' -'FALSE' -'REGEXP' -'DATETIME' -'INTERVAL' -'MICROSECOND' -'MILLISECOND' -'SECOND' -'MINUTE' -'HOUR' -'DAY' -'WEEK' -'MONTH' -'QUARTER' -'YEAR' -'SECOND_MICROSECOND' -'MINUTE_MICROSECOND' -'MINUTE_SECOND' -'HOUR_MICROSECOND' -'HOUR_SECOND' -'HOUR_MINUTE' -'DAY_MICROSECOND' -'DAY_SECOND' -'DAY_MINUTE' -'DAY_HOUR' -'YEAR_MONTH' -'DATAMODEL' -'LOOKUP' -'SAVEDSEARCH' -'INT' -'INTEGER' -'DOUBLE' -'LONG' -'FLOAT' -'STRING' -'BOOLEAN' -'|' -',' -'.' -'=' -'>' -'<' -null -null -null -'+' -'-' -'*' -'/' -'%' -'!' -':' -'(' -')' -'[' -']' -'\'' -'"' -'`' -'~' -'&' -'^' -'AVG' -'COUNT' -'DISTINCT_COUNT' -'ESTDC' -'ESTDC_ERROR' -'MAX' -'MEAN' -'MEDIAN' -'MIN' -'MODE' -'RANGE' -'STDEV' -'STDEVP' -'SUM' -'SUMSQ' -'VAR_SAMP' -'VAR_POP' -'STDDEV_SAMP' -'STDDEV_POP' -'PERCENTILE' -'FIRST' -'LAST' -'LIST' -'VALUES' -'EARLIEST' -'EARLIEST_TIME' -'LATEST' -'LATEST_TIME' -'PER_DAY' -'PER_HOUR' -'PER_MINUTE' -'PER_SECOND' -'RATE' -'SPARKLINE' -'C' -'DC' -'ABS' -'CEIL' -'CEILING' -'CONV' -'CRC32' -'E' -'EXP' -'FLOOR' -'LN' -'LOG' -'LOG10' -'LOG2' -'MOD' -'PI' -'POW' -'POWER' -'RAND' -'ROUND' -'SIGN' -'SQRT' -'TRUNCATE' -'ACOS' -'ASIN' -'ATAN' -'ATAN2' -'COS' -'COT' -'DEGREES' -'RADIANS' -'SIN' -'TAN' -'ADDDATE' -'DATE' -'DATE_ADD' -'DATE_SUB' -'DAYOFMONTH' -'DAYOFWEEK' -'DAYOFYEAR' -'DAYNAME' -'FROM_DAYS' -'MONTHNAME' -'SUBDATE' -'TIME' -'TIME_TO_SEC' -'TIMESTAMP' -'DATE_FORMAT' -'TO_DAYS' -'SUBSTR' -'SUBSTRING' -'LTRIM' -'RTRIM' -'TRIM' -'TO' -'LOWER' -'UPPER' -'CONCAT' -'CONCAT_WS' -'LENGTH' -'STRCMP' -'RIGHT' -'LEFT' -'ASCII' -'LOCATE' -'REPLACE' -'CAST' -'LIKE' -'ISNULL' -'ISNOTNULL' -'IFNULL' -'NULLIF' -'IF' -'MATCH' -'MATCH_PHRASE' -'SIMPLE_QUERY_STRING' -'ALLOW_LEADING_WILDCARD' -'ANALYZE_WILDCARD' -'ANALYZER' -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY' -'BOOST' -'CUTOFF_FREQUENCY' -'DEFAULT_FIELD' -'DEFAULT_OPERATOR' -'ENABLE_POSITION_INCREMENTS' -'FLAGS' -'FUZZY_MAX_EXPANSIONS' -'FUZZY_PREFIX_LENGTH' -'FUZZY_TRANSPOSITIONS' -'FUZZY_REWRITE' -'FUZZINESS' -'LENIENT' -'LOW_FREQ_OPERATOR' -'MAX_DETERMINIZED_STATES' -'MAX_EXPANSIONS' -'MINIMUM_SHOULD_MATCH' -'OPERATOR' -'PHRASE_SLOP' -'PREFIX_LENGTH' -'QUOTE_ANALYZER' -'QUOTE_FIELD_SUFFIX' -'REWRITE' -'SLOP' -'TIE_BREAKER' -'TYPE' -'ZERO_TERMS_QUERY' -'SPAN' -'MS' -'S' -'M' -'H' -'W' -'Q' -'Y' -null -null -null -null -null -null -null -null - -token symbolic names: -null -SEARCH -FROM -WHERE -FIELDS -RENAME -STATS -DEDUP -SORT -EVAL -HEAD -TOP -RARE -PARSE -KMEANS -AD -AS -BY -SOURCE -INDEX -D -DESC -SORTBY -AUTO -STR -IP -NUM -KEEPEMPTY -CONSECUTIVE -DEDUP_SPLITVALUES -PARTITIONS -ALLNUM -DELIM -CENTROIDS -ITERATIONS -DISTANCE_TYPE -NUMBER_OF_TREES -SHINGLE_SIZE -SAMPLE_SIZE -OUTPUT_AFTER -TIME_DECAY -ANOMALY_RATE -TIME_FIELD -TIME_ZONE -TRAINING_DATA_SIZE -ANOMALY_SCORE_THRESHOLD -CASE -IN -NOT -OR -AND -XOR -TRUE -FALSE -REGEXP -DATETIME -INTERVAL -MICROSECOND -MILLISECOND -SECOND -MINUTE -HOUR -DAY -WEEK -MONTH -QUARTER -YEAR -SECOND_MICROSECOND -MINUTE_MICROSECOND -MINUTE_SECOND -HOUR_MICROSECOND -HOUR_SECOND -HOUR_MINUTE -DAY_MICROSECOND -DAY_SECOND -DAY_MINUTE -DAY_HOUR -YEAR_MONTH -DATAMODEL -LOOKUP -SAVEDSEARCH -INT -INTEGER -DOUBLE -LONG -FLOAT -STRING -BOOLEAN -PIPE -COMMA -DOT -EQUAL -GREATER -LESS -NOT_GREATER -NOT_LESS -NOT_EQUAL -PLUS -MINUS -STAR -DIVIDE -MODULE -EXCLAMATION_SYMBOL -COLON -LT_PRTHS -RT_PRTHS -LT_SQR_PRTHS -RT_SQR_PRTHS -SINGLE_QUOTE -DOUBLE_QUOTE -BACKTICK -BIT_NOT_OP -BIT_AND_OP -BIT_XOR_OP -AVG -COUNT -DISTINCT_COUNT -ESTDC -ESTDC_ERROR -MAX -MEAN -MEDIAN -MIN -MODE -RANGE -STDEV -STDEVP -SUM -SUMSQ -VAR_SAMP -VAR_POP -STDDEV_SAMP -STDDEV_POP -PERCENTILE -FIRST -LAST -LIST -VALUES -EARLIEST -EARLIEST_TIME -LATEST -LATEST_TIME -PER_DAY -PER_HOUR -PER_MINUTE -PER_SECOND -RATE -SPARKLINE -C -DC -ABS -CEIL -CEILING -CONV -CRC32 -E -EXP -FLOOR -LN -LOG -LOG10 -LOG2 -MOD -PI -POW -POWER -RAND -ROUND -SIGN -SQRT -TRUNCATE -ACOS -ASIN -ATAN -ATAN2 -COS -COT -DEGREES -RADIANS -SIN -TAN -ADDDATE -DATE -DATE_ADD -DATE_SUB -DAYOFMONTH -DAYOFWEEK -DAYOFYEAR -DAYNAME -FROM_DAYS -MONTHNAME -SUBDATE -TIME -TIME_TO_SEC -TIMESTAMP -DATE_FORMAT -TO_DAYS -SUBSTR -SUBSTRING -LTRIM -RTRIM -TRIM -TO -LOWER -UPPER -CONCAT -CONCAT_WS -LENGTH -STRCMP -RIGHT -LEFT -ASCII -LOCATE -REPLACE -CAST -LIKE -ISNULL -ISNOTNULL -IFNULL -NULLIF -IF -MATCH -MATCH_PHRASE -SIMPLE_QUERY_STRING -ALLOW_LEADING_WILDCARD -ANALYZE_WILDCARD -ANALYZER -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY -BOOST -CUTOFF_FREQUENCY -DEFAULT_FIELD -DEFAULT_OPERATOR -ENABLE_POSITION_INCREMENTS -FLAGS -FUZZY_MAX_EXPANSIONS -FUZZY_PREFIX_LENGTH -FUZZY_TRANSPOSITIONS -FUZZY_REWRITE -FUZZINESS -LENIENT -LOW_FREQ_OPERATOR -MAX_DETERMINIZED_STATES -MAX_EXPANSIONS -MINIMUM_SHOULD_MATCH -OPERATOR -PHRASE_SLOP -PREFIX_LENGTH -QUOTE_ANALYZER -QUOTE_FIELD_SUFFIX -REWRITE -SLOP -TIE_BREAKER -TYPE -ZERO_TERMS_QUERY -SPAN -MS -S -M -H -W -Q -Y -ID -INTEGER_LITERAL -DECIMAL_LITERAL -ID_DATE_SUFFIX -DQUOTA_STRING -SQUOTA_STRING -BQUOTA_STRING -ERROR_RECOGNITION - -rule names: -root -pplStatement -commands -searchCommand -whereCommand -fieldsCommand -renameCommand -statsCommand -dedupCommand -sortCommand -evalCommand -headCommand -topCommand -rareCommand -parseCommand -kmeansCommand -kmeansParameter -adCommand -adParameter -fromClause -renameClasue -byClause -statsByClause -bySpanClause -spanClause -sortbyClause -evalClause -statsAggTerm -statsFunction -statsFunctionName -percentileAggFunction -expression -logicalExpression -comparisonExpression -valueExpression -primaryExpression -booleanExpression -relevanceExpression -singleFieldRelevanceFunction -multiFieldRelevanceFunction -tableSource -fieldList -wcFieldList -sortField -sortFieldExpression -fieldExpression -wcFieldExpression -evalFunctionCall -dataTypeFunctionCall -booleanFunctionCall -convertedDataType -evalFunctionName -functionArgs -functionArg -relevanceArg -relevanceArgName -relevanceFieldAndWeight -relevanceFieldWeight -relevanceField -relevanceQuery -relevanceArgValue -mathematicalFunctionBase -trigonometricFunctionName -dateAndTimeFunctionBase -conditionFunctionBase -textFunctionBase -comparisonOperator -binaryOperator -singleFieldRelevanceFunctionName -multiFieldRelevanceFunctionName -literalValue -intervalLiteral -stringLiteral -integerLiteral -decimalLiteral -booleanLiteral -pattern -intervalUnit -timespanUnit -valueList -qualifiedName -wcQualifiedName -ident -wildcard -keywordsCanBeId - - -atn: -[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 271, 861, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 3, 2, 5, 2, 174, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 7, 3, 181, 10, 3, 12, 3, 14, 3, 184, 11, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 199, 10, 4, 3, 5, 5, 5, 202, 10, 5, 3, 5, 3, 5, 5, 5, 206, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 212, 10, 5, 3, 5, 3, 5, 3, 5, 5, 5, 217, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 5, 7, 224, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 232, 10, 8, 12, 8, 14, 8, 235, 11, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 241, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 246, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 251, 10, 9, 3, 9, 3, 9, 3, 9, 7, 9, 256, 10, 9, 12, 9, 14, 9, 259, 11, 9, 3, 9, 5, 9, 262, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 267, 10, 9, 3, 10, 3, 10, 5, 10, 271, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 277, 10, 10, 3, 10, 3, 10, 3, 10, 5, 10, 282, 10, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 7, 12, 291, 10, 12, 12, 12, 14, 12, 294, 11, 12, 3, 13, 3, 13, 5, 13, 298, 10, 13, 3, 13, 3, 13, 5, 13, 302, 10, 13, 3, 14, 3, 14, 5, 14, 306, 10, 14, 3, 14, 3, 14, 5, 14, 310, 10, 14, 3, 15, 3, 15, 3, 15, 5, 15, 315, 10, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 7, 17, 323, 10, 17, 12, 17, 14, 17, 326, 11, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 337, 10, 18, 3, 19, 3, 19, 7, 19, 341, 10, 19, 12, 19, 14, 19, 344, 11, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 379, 10, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 386, 10, 21, 12, 21, 14, 21, 389, 11, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 396, 10, 21, 12, 21, 14, 21, 399, 11, 21, 5, 21, 401, 10, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 419, 10, 24, 3, 25, 3, 25, 3, 25, 5, 25, 424, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 432, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 7, 27, 439, 10, 27, 12, 27, 14, 27, 442, 11, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 5, 29, 451, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 467, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 5, 33, 482, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 490, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 497, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 503, 10, 34, 12, 34, 14, 34, 506, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 516, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 526, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 532, 10, 36, 12, 36, 14, 36, 535, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 541, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 547, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 556, 10, 40, 12, 40, 14, 40, 559, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 569, 10, 41, 12, 41, 14, 41, 572, 11, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 579, 10, 41, 12, 41, 14, 41, 582, 11, 41, 3, 41, 3, 41, 3, 42, 3, 42, 5, 42, 588, 10, 42, 3, 43, 3, 43, 3, 43, 7, 43, 593, 10, 43, 12, 43, 14, 43, 596, 11, 43, 3, 44, 3, 44, 3, 44, 7, 44, 601, 10, 44, 12, 44, 14, 44, 604, 11, 44, 3, 45, 5, 45, 607, 10, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 632, 10, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 665, 10, 52, 3, 53, 3, 53, 3, 53, 3, 53, 5, 53, 671, 10, 53, 3, 54, 3, 54, 3, 54, 7, 54, 676, 10, 54, 12, 54, 14, 54, 679, 11, 54, 5, 54, 681, 10, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 699, 10, 58, 3, 59, 3, 59, 5, 59, 703, 10, 59, 3, 60, 3, 60, 5, 60, 707, 10, 60, 3, 61, 3, 61, 3, 62, 3, 62, 5, 62, 713, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 737, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 760, 10, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 5, 75, 769, 10, 75, 3, 75, 3, 75, 3, 76, 5, 76, 774, 10, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 7, 81, 790, 10, 81, 12, 81, 14, 81, 793, 11, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 7, 82, 800, 10, 82, 12, 82, 14, 82, 803, 11, 82, 3, 83, 3, 83, 3, 83, 7, 83, 808, 10, 83, 12, 83, 14, 83, 811, 11, 83, 3, 84, 5, 84, 814, 10, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 5, 84, 823, 10, 84, 3, 85, 3, 85, 3, 85, 7, 85, 828, 10, 85, 12, 85, 14, 85, 831, 11, 85, 3, 85, 5, 85, 834, 10, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 5, 85, 848, 10, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 5, 86, 859, 10, 86, 3, 86, 2, 2, 4, 66, 70, 87, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 78, 2, 80, 2, 82, 2, 84, 2, 86, 2, 88, 2, 90, 2, 92, 2, 94, 2, 96, 2, 98, 2, 100, 2, 102, 2, 104, 2, 106, 2, 108, 2, 110, 2, 112, 2, 114, 2, 116, 2, 118, 2, 120, 2, 122, 2, 124, 2, 126, 2, 128, 2, 130, 2, 132, 2, 134, 2, 136, 2, 138, 2, 140, 2, 142, 2, 144, 2, 146, 2, 148, 2, 150, 2, 152, 2, 154, 2, 156, 2, 158, 2, 160, 2, 162, 2, 164, 2, 166, 2, 168, 2, 170, 2, 2, 17, 3, 2, 99, 100, 4, 2, 118, 118, 151, 151, 7, 2, 116, 117, 121, 121, 124, 124, 129, 129, 131, 134, 5, 2, 6, 6, 45, 45, 226, 255, 3, 2, 173, 182, 5, 2, 59, 59, 61, 68, 183, 198, 3, 2, 217, 222, 4, 2, 199, 203, 205, 215, 4, 2, 56, 56, 93, 98, 3, 2, 99, 103, 3, 2, 223, 224, 3, 2, 268, 269, 3, 2, 54, 55, 4, 2, 59, 59, 61, 79, 5, 2, 22, 22, 60, 68, 257, 263, 2, 930, 2, 173, 3, 2, 2, 2, 4, 177, 3, 2, 2, 2, 6, 198, 3, 2, 2, 2, 8, 216, 3, 2, 2, 2, 10, 218, 3, 2, 2, 2, 12, 221, 3, 2, 2, 2, 14, 227, 3, 2, 2, 2, 16, 236, 3, 2, 2, 2, 18, 268, 3, 2, 2, 2, 20, 283, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 295, 3, 2, 2, 2, 26, 303, 3, 2, 2, 2, 28, 311, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 336, 3, 2, 2, 2, 36, 338, 3, 2, 2, 2, 38, 378, 3, 2, 2, 2, 40, 400, 3, 2, 2, 2, 42, 402, 3, 2, 2, 2, 44, 406, 3, 2, 2, 2, 46, 418, 3, 2, 2, 2, 48, 420, 3, 2, 2, 2, 50, 425, 3, 2, 2, 2, 52, 435, 3, 2, 2, 2, 54, 443, 3, 2, 2, 2, 56, 447, 3, 2, 2, 2, 58, 466, 3, 2, 2, 2, 60, 468, 3, 2, 2, 2, 62, 470, 3, 2, 2, 2, 64, 481, 3, 2, 2, 2, 66, 489, 3, 2, 2, 2, 68, 515, 3, 2, 2, 2, 70, 525, 3, 2, 2, 2, 72, 540, 3, 2, 2, 2, 74, 542, 3, 2, 2, 2, 76, 546, 3, 2, 2, 2, 78, 548, 3, 2, 2, 2, 80, 562, 3, 2, 2, 2, 82, 587, 3, 2, 2, 2, 84, 589, 3, 2, 2, 2, 86, 597, 3, 2, 2, 2, 88, 606, 3, 2, 2, 2, 90, 631, 3, 2, 2, 2, 92, 633, 3, 2, 2, 2, 94, 635, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 642, 3, 2, 2, 2, 100, 649, 3, 2, 2, 2, 102, 664, 3, 2, 2, 2, 104, 670, 3, 2, 2, 2, 106, 680, 3, 2, 2, 2, 108, 682, 3, 2, 2, 2, 110, 684, 3, 2, 2, 2, 112, 688, 3, 2, 2, 2, 114, 698, 3, 2, 2, 2, 116, 702, 3, 2, 2, 2, 118, 706, 3, 2, 2, 2, 120, 708, 3, 2, 2, 2, 122, 712, 3, 2, 2, 2, 124, 736, 3, 2, 2, 2, 126, 738, 3, 2, 2, 2, 128, 740, 3, 2, 2, 2, 130, 742, 3, 2, 2, 2, 132, 744, 3, 2, 2, 2, 134, 746, 3, 2, 2, 2, 136, 748, 3, 2, 2, 2, 138, 750, 3, 2, 2, 2, 140, 752, 3, 2, 2, 2, 142, 759, 3, 2, 2, 2, 144, 761, 3, 2, 2, 2, 146, 765, 3, 2, 2, 2, 148, 768, 3, 2, 2, 2, 150, 773, 3, 2, 2, 2, 152, 777, 3, 2, 2, 2, 154, 779, 3, 2, 2, 2, 156, 781, 3, 2, 2, 2, 158, 783, 3, 2, 2, 2, 160, 785, 3, 2, 2, 2, 162, 796, 3, 2, 2, 2, 164, 804, 3, 2, 2, 2, 166, 822, 3, 2, 2, 2, 168, 847, 3, 2, 2, 2, 170, 858, 3, 2, 2, 2, 172, 174, 5, 4, 3, 2, 173, 172, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 176, 7, 2, 2, 3, 176, 3, 3, 2, 2, 2, 177, 182, 5, 8, 5, 2, 178, 179, 7, 90, 2, 2, 179, 181, 5, 6, 4, 2, 180, 178, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 5, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 199, 5, 10, 6, 2, 186, 199, 5, 12, 7, 2, 187, 199, 5, 14, 8, 2, 188, 199, 5, 16, 9, 2, 189, 199, 5, 18, 10, 2, 190, 199, 5, 20, 11, 2, 191, 199, 5, 22, 12, 2, 192, 199, 5, 24, 13, 2, 193, 199, 5, 26, 14, 2, 194, 199, 5, 28, 15, 2, 195, 199, 5, 30, 16, 2, 196, 199, 5, 32, 17, 2, 197, 199, 5, 36, 19, 2, 198, 185, 3, 2, 2, 2, 198, 186, 3, 2, 2, 2, 198, 187, 3, 2, 2, 2, 198, 188, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 198, 190, 3, 2, 2, 2, 198, 191, 3, 2, 2, 2, 198, 192, 3, 2, 2, 2, 198, 193, 3, 2, 2, 2, 198, 194, 3, 2, 2, 2, 198, 195, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 197, 3, 2, 2, 2, 199, 7, 3, 2, 2, 2, 200, 202, 7, 3, 2, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 203, 3, 2, 2, 2, 203, 217, 5, 40, 21, 2, 204, 206, 7, 3, 2, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 208, 5, 40, 21, 2, 208, 209, 5, 66, 34, 2, 209, 217, 3, 2, 2, 2, 210, 212, 7, 3, 2, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 5, 66, 34, 2, 214, 215, 5, 40, 21, 2, 215, 217, 3, 2, 2, 2, 216, 201, 3, 2, 2, 2, 216, 205, 3, 2, 2, 2, 216, 211, 3, 2, 2, 2, 217, 9, 3, 2, 2, 2, 218, 219, 7, 5, 2, 2, 219, 220, 5, 66, 34, 2, 220, 11, 3, 2, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 9, 2, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 5, 84, 43, 2, 226, 13, 3, 2, 2, 2, 227, 228, 7, 7, 2, 2, 228, 233, 5, 42, 22, 2, 229, 230, 7, 91, 2, 2, 230, 232, 5, 42, 22, 2, 231, 229, 3, 2, 2, 2, 232, 235, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 15, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 236, 240, 7, 8, 2, 2, 237, 238, 7, 32, 2, 2, 238, 239, 7, 93, 2, 2, 239, 241, 5, 148, 75, 2, 240, 237, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 245, 3, 2, 2, 2, 242, 243, 7, 33, 2, 2, 243, 244, 7, 93, 2, 2, 244, 246, 5, 152, 77, 2, 245, 242, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 250, 3, 2, 2, 2, 247, 248, 7, 34, 2, 2, 248, 249, 7, 93, 2, 2, 249, 251, 5, 146, 74, 2, 250, 247, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 257, 5, 56, 29, 2, 253, 254, 7, 91, 2, 2, 254, 256, 5, 56, 29, 2, 255, 253, 3, 2, 2, 2, 256, 259, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 260, 262, 5, 46, 24, 2, 261, 260, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 266, 3, 2, 2, 2, 263, 264, 7, 31, 2, 2, 264, 265, 7, 93, 2, 2, 265, 267, 5, 152, 77, 2, 266, 263, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 17, 3, 2, 2, 2, 268, 270, 7, 9, 2, 2, 269, 271, 5, 148, 75, 2, 270, 269, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 276, 5, 84, 43, 2, 273, 274, 7, 29, 2, 2, 274, 275, 7, 93, 2, 2, 275, 277, 5, 152, 77, 2, 276, 273, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 281, 3, 2, 2, 2, 278, 279, 7, 30, 2, 2, 279, 280, 7, 93, 2, 2, 280, 282, 5, 152, 77, 2, 281, 278, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 19, 3, 2, 2, 2, 283, 284, 7, 10, 2, 2, 284, 285, 5, 52, 27, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 11, 2, 2, 287, 292, 5, 54, 28, 2, 288, 289, 7, 91, 2, 2, 289, 291, 5, 54, 28, 2, 290, 288, 3, 2, 2, 2, 291, 294, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 23, 3, 2, 2, 2, 294, 292, 3, 2, 2, 2, 295, 297, 7, 12, 2, 2, 296, 298, 5, 148, 75, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 300, 7, 4, 2, 2, 300, 302, 5, 148, 75, 2, 301, 299, 3, 2, 2, 2, 301, 302, 3, 2, 2, 2, 302, 25, 3, 2, 2, 2, 303, 305, 7, 13, 2, 2, 304, 306, 5, 148, 75, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 309, 5, 84, 43, 2, 308, 310, 5, 44, 23, 2, 309, 308, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 27, 3, 2, 2, 2, 311, 312, 7, 14, 2, 2, 312, 314, 5, 84, 43, 2, 313, 315, 5, 44, 23, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 29, 3, 2, 2, 2, 316, 317, 7, 15, 2, 2, 317, 318, 5, 64, 33, 2, 318, 319, 5, 154, 78, 2, 319, 31, 3, 2, 2, 2, 320, 324, 7, 16, 2, 2, 321, 323, 5, 34, 18, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 33, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 35, 2, 2, 328, 329, 7, 93, 2, 2, 329, 337, 5, 148, 75, 2, 330, 331, 7, 36, 2, 2, 331, 332, 7, 93, 2, 2, 332, 337, 5, 148, 75, 2, 333, 334, 7, 37, 2, 2, 334, 335, 7, 93, 2, 2, 335, 337, 5, 146, 74, 2, 336, 327, 3, 2, 2, 2, 336, 330, 3, 2, 2, 2, 336, 333, 3, 2, 2, 2, 337, 35, 3, 2, 2, 2, 338, 342, 7, 17, 2, 2, 339, 341, 5, 38, 20, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 37, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 38, 2, 2, 346, 347, 7, 93, 2, 2, 347, 379, 5, 148, 75, 2, 348, 349, 7, 39, 2, 2, 349, 350, 7, 93, 2, 2, 350, 379, 5, 148, 75, 2, 351, 352, 7, 40, 2, 2, 352, 353, 7, 93, 2, 2, 353, 379, 5, 148, 75, 2, 354, 355, 7, 41, 2, 2, 355, 356, 7, 93, 2, 2, 356, 379, 5, 148, 75, 2, 357, 358, 7, 42, 2, 2, 358, 359, 7, 93, 2, 2, 359, 379, 5, 150, 76, 2, 360, 361, 7, 43, 2, 2, 361, 362, 7, 93, 2, 2, 362, 379, 5, 150, 76, 2, 363, 364, 7, 44, 2, 2, 364, 365, 7, 93, 2, 2, 365, 379, 5, 146, 74, 2, 366, 367, 7, 197, 2, 2, 367, 368, 7, 93, 2, 2, 368, 379, 5, 146, 74, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 93, 2, 2, 371, 379, 5, 146, 74, 2, 372, 373, 7, 46, 2, 2, 373, 374, 7, 93, 2, 2, 374, 379, 5, 148, 75, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 93, 2, 2, 377, 379, 5, 150, 76, 2, 378, 345, 3, 2, 2, 2, 378, 348, 3, 2, 2, 2, 378, 351, 3, 2, 2, 2, 378, 354, 3, 2, 2, 2, 378, 357, 3, 2, 2, 2, 378, 360, 3, 2, 2, 2, 378, 363, 3, 2, 2, 2, 378, 366, 3, 2, 2, 2, 378, 369, 3, 2, 2, 2, 378, 372, 3, 2, 2, 2, 378, 375, 3, 2, 2, 2, 379, 39, 3, 2, 2, 2, 380, 381, 7, 20, 2, 2, 381, 382, 7, 93, 2, 2, 382, 387, 5, 82, 42, 2, 383, 384, 7, 91, 2, 2, 384, 386, 5, 82, 42, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 401, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 7, 21, 2, 2, 391, 392, 7, 93, 2, 2, 392, 397, 5, 82, 42, 2, 393, 394, 7, 91, 2, 2, 394, 396, 5, 82, 42, 2, 395, 393, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 401, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 380, 3, 2, 2, 2, 400, 390, 3, 2, 2, 2, 401, 41, 3, 2, 2, 2, 402, 403, 5, 94, 48, 2, 403, 404, 7, 18, 2, 2, 404, 405, 5, 94, 48, 2, 405, 43, 3, 2, 2, 2, 406, 407, 7, 19, 2, 2, 407, 408, 5, 84, 43, 2, 408, 45, 3, 2, 2, 2, 409, 410, 7, 19, 2, 2, 410, 419, 5, 84, 43, 2, 411, 412, 7, 19, 2, 2, 412, 419, 5, 48, 25, 2, 413, 414, 7, 19, 2, 2, 414, 415, 5, 48, 25, 2, 415, 416, 7, 91, 2, 2, 416, 417, 5, 84, 43, 2, 417, 419, 3, 2, 2, 2, 418, 409, 3, 2, 2, 2, 418, 411, 3, 2, 2, 2, 418, 413, 3, 2, 2, 2, 419, 47, 3, 2, 2, 2, 420, 423, 5, 50, 26, 2, 421, 422, 7, 18, 2, 2, 422, 424, 5, 162, 82, 2, 423, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 49, 3, 2, 2, 2, 425, 426, 7, 256, 2, 2, 426, 427, 7, 106, 2, 2, 427, 428, 5, 92, 47, 2, 428, 429, 7, 91, 2, 2, 429, 431, 5, 142, 72, 2, 430, 432, 5, 158, 80, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 434, 7, 107, 2, 2, 434, 51, 3, 2, 2, 2, 435, 440, 5, 88, 45, 2, 436, 437, 7, 91, 2, 2, 437, 439, 5, 88, 45, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 53, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 444, 5, 92, 47, 2, 444, 445, 7, 93, 2, 2, 445, 446, 5, 64, 33, 2, 446, 55, 3, 2, 2, 2, 447, 450, 5, 58, 30, 2, 448, 449, 7, 18, 2, 2, 449, 451, 5, 94, 48, 2, 450, 448, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 57, 3, 2, 2, 2, 452, 453, 5, 60, 31, 2, 453, 454, 7, 106, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 107, 2, 2, 456, 467, 3, 2, 2, 2, 457, 458, 7, 117, 2, 2, 458, 459, 7, 106, 2, 2, 459, 467, 7, 107, 2, 2, 460, 461, 9, 3, 2, 2, 461, 462, 7, 106, 2, 2, 462, 463, 5, 70, 36, 2, 463, 464, 7, 107, 2, 2, 464, 467, 3, 2, 2, 2, 465, 467, 5, 62, 32, 2, 466, 452, 3, 2, 2, 2, 466, 457, 3, 2, 2, 2, 466, 460, 3, 2, 2, 2, 466, 465, 3, 2, 2, 2, 467, 59, 3, 2, 2, 2, 468, 469, 9, 4, 2, 2, 469, 61, 3, 2, 2, 2, 470, 471, 7, 135, 2, 2, 471, 472, 7, 95, 2, 2, 472, 473, 5, 148, 75, 2, 473, 474, 7, 94, 2, 2, 474, 475, 7, 106, 2, 2, 475, 476, 5, 92, 47, 2, 476, 477, 7, 107, 2, 2, 477, 63, 3, 2, 2, 2, 478, 482, 5, 66, 34, 2, 479, 482, 5, 68, 35, 2, 480, 482, 5, 70, 36, 2, 481, 478, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 65, 3, 2, 2, 2, 483, 484, 8, 34, 1, 2, 484, 490, 5, 68, 35, 2, 485, 486, 7, 50, 2, 2, 486, 490, 5, 66, 34, 8, 487, 490, 5, 74, 38, 2, 488, 490, 5, 76, 39, 2, 489, 483, 3, 2, 2, 2, 489, 485, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 504, 3, 2, 2, 2, 491, 492, 12, 7, 2, 2, 492, 493, 7, 51, 2, 2, 493, 503, 5, 66, 34, 8, 494, 496, 12, 6, 2, 2, 495, 497, 7, 52, 2, 2, 496, 495, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 3, 2, 2, 2, 498, 503, 5, 66, 34, 7, 499, 500, 12, 5, 2, 2, 500, 501, 7, 53, 2, 2, 501, 503, 5, 66, 34, 6, 502, 491, 3, 2, 2, 2, 502, 494, 3, 2, 2, 2, 502, 499, 3, 2, 2, 2, 503, 506, 3, 2, 2, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 67, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 507, 508, 5, 70, 36, 2, 508, 509, 5, 134, 68, 2, 509, 510, 5, 70, 36, 2, 510, 516, 3, 2, 2, 2, 511, 512, 5, 70, 36, 2, 512, 513, 7, 49, 2, 2, 513, 514, 5, 160, 81, 2, 514, 516, 3, 2, 2, 2, 515, 507, 3, 2, 2, 2, 515, 511, 3, 2, 2, 2, 516, 69, 3, 2, 2, 2, 517, 518, 8, 36, 1, 2, 518, 519, 7, 106, 2, 2, 519, 520, 5, 70, 36, 2, 520, 521, 5, 136, 69, 2, 521, 522, 5, 70, 36, 2, 522, 523, 7, 107, 2, 2, 523, 526, 3, 2, 2, 2, 524, 526, 5, 72, 37, 2, 525, 517, 3, 2, 2, 2, 525, 524, 3, 2, 2, 2, 526, 533, 3, 2, 2, 2, 527, 528, 12, 5, 2, 2, 528, 529, 5, 136, 69, 2, 529, 530, 5, 70, 36, 6, 530, 532, 3, 2, 2, 2, 531, 527, 3, 2, 2, 2, 532, 535, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 71, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 536, 541, 5, 96, 49, 2, 537, 541, 5, 98, 50, 2, 538, 541, 5, 92, 47, 2, 539, 541, 5, 142, 72, 2, 540, 536, 3, 2, 2, 2, 540, 537, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 539, 3, 2, 2, 2, 541, 73, 3, 2, 2, 2, 542, 543, 5, 100, 51, 2, 543, 75, 3, 2, 2, 2, 544, 547, 5, 78, 40, 2, 545, 547, 5, 80, 41, 2, 546, 544, 3, 2, 2, 2, 546, 545, 3, 2, 2, 2, 547, 77, 3, 2, 2, 2, 548, 549, 5, 138, 70, 2, 549, 550, 7, 106, 2, 2, 550, 551, 5, 118, 60, 2, 551, 552, 7, 91, 2, 2, 552, 557, 5, 120, 61, 2, 553, 554, 7, 91, 2, 2, 554, 556, 5, 110, 56, 2, 555, 553, 3, 2, 2, 2, 556, 559, 3, 2, 2, 2, 557, 555, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 560, 3, 2, 2, 2, 559, 557, 3, 2, 2, 2, 560, 561, 7, 107, 2, 2, 561, 79, 3, 2, 2, 2, 562, 563, 5, 140, 71, 2, 563, 564, 7, 106, 2, 2, 564, 565, 7, 108, 2, 2, 565, 570, 5, 114, 58, 2, 566, 567, 7, 91, 2, 2, 567, 569, 5, 114, 58, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 109, 2, 2, 574, 575, 7, 91, 2, 2, 575, 580, 5, 120, 61, 2, 576, 577, 7, 91, 2, 2, 577, 579, 5, 110, 56, 2, 578, 576, 3, 2, 2, 2, 579, 582, 3, 2, 2, 2, 580, 578, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 580, 3, 2, 2, 2, 583, 584, 7, 107, 2, 2, 584, 81, 3, 2, 2, 2, 585, 588, 5, 162, 82, 2, 586, 588, 7, 267, 2, 2, 587, 585, 3, 2, 2, 2, 587, 586, 3, 2, 2, 2, 588, 83, 3, 2, 2, 2, 589, 594, 5, 92, 47, 2, 590, 591, 7, 91, 2, 2, 591, 593, 5, 92, 47, 2, 592, 590, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 85, 3, 2, 2, 2, 596, 594, 3, 2, 2, 2, 597, 602, 5, 94, 48, 2, 598, 599, 7, 91, 2, 2, 599, 601, 5, 94, 48, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 87, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 607, 9, 2, 2, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 5, 90, 46, 2, 609, 89, 3, 2, 2, 2, 610, 632, 5, 92, 47, 2, 611, 612, 7, 25, 2, 2, 612, 613, 7, 106, 2, 2, 613, 614, 5, 92, 47, 2, 614, 615, 7, 107, 2, 2, 615, 632, 3, 2, 2, 2, 616, 617, 7, 26, 2, 2, 617, 618, 7, 106, 2, 2, 618, 619, 5, 92, 47, 2, 619, 620, 7, 107, 2, 2, 620, 632, 3, 2, 2, 2, 621, 622, 7, 27, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 5, 92, 47, 2, 624, 625, 7, 107, 2, 2, 625, 632, 3, 2, 2, 2, 626, 627, 7, 28, 2, 2, 627, 628, 7, 106, 2, 2, 628, 629, 5, 92, 47, 2, 629, 630, 7, 107, 2, 2, 630, 632, 3, 2, 2, 2, 631, 610, 3, 2, 2, 2, 631, 611, 3, 2, 2, 2, 631, 616, 3, 2, 2, 2, 631, 621, 3, 2, 2, 2, 631, 626, 3, 2, 2, 2, 632, 91, 3, 2, 2, 2, 633, 634, 5, 162, 82, 2, 634, 93, 3, 2, 2, 2, 635, 636, 5, 164, 83, 2, 636, 95, 3, 2, 2, 2, 637, 638, 5, 104, 53, 2, 638, 639, 7, 106, 2, 2, 639, 640, 5, 106, 54, 2, 640, 641, 7, 107, 2, 2, 641, 97, 3, 2, 2, 2, 642, 643, 7, 216, 2, 2, 643, 644, 7, 106, 2, 2, 644, 645, 5, 64, 33, 2, 645, 646, 7, 18, 2, 2, 646, 647, 5, 102, 52, 2, 647, 648, 7, 107, 2, 2, 648, 99, 3, 2, 2, 2, 649, 650, 5, 130, 66, 2, 650, 651, 7, 106, 2, 2, 651, 652, 5, 106, 54, 2, 652, 653, 7, 107, 2, 2, 653, 101, 3, 2, 2, 2, 654, 665, 7, 184, 2, 2, 655, 665, 7, 194, 2, 2, 656, 665, 7, 196, 2, 2, 657, 665, 7, 83, 2, 2, 658, 665, 7, 84, 2, 2, 659, 665, 7, 85, 2, 2, 660, 665, 7, 86, 2, 2, 661, 665, 7, 87, 2, 2, 662, 665, 7, 88, 2, 2, 663, 665, 7, 89, 2, 2, 664, 654, 3, 2, 2, 2, 664, 655, 3, 2, 2, 2, 664, 656, 3, 2, 2, 2, 664, 657, 3, 2, 2, 2, 664, 658, 3, 2, 2, 2, 664, 659, 3, 2, 2, 2, 664, 660, 3, 2, 2, 2, 664, 661, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 103, 3, 2, 2, 2, 666, 671, 5, 124, 63, 2, 667, 671, 5, 128, 65, 2, 668, 671, 5, 132, 67, 2, 669, 671, 5, 130, 66, 2, 670, 666, 3, 2, 2, 2, 670, 667, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 669, 3, 2, 2, 2, 671, 105, 3, 2, 2, 2, 672, 677, 5, 108, 55, 2, 673, 674, 7, 91, 2, 2, 674, 676, 5, 108, 55, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 672, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 107, 3, 2, 2, 2, 682, 683, 5, 70, 36, 2, 683, 109, 3, 2, 2, 2, 684, 685, 5, 112, 57, 2, 685, 686, 7, 93, 2, 2, 686, 687, 5, 122, 62, 2, 687, 111, 3, 2, 2, 2, 688, 689, 9, 5, 2, 2, 689, 113, 3, 2, 2, 2, 690, 699, 5, 118, 60, 2, 691, 692, 5, 118, 60, 2, 692, 693, 5, 116, 59, 2, 693, 699, 3, 2, 2, 2, 694, 695, 5, 118, 60, 2, 695, 696, 7, 115, 2, 2, 696, 697, 5, 116, 59, 2, 697, 699, 3, 2, 2, 2, 698, 690, 3, 2, 2, 2, 698, 691, 3, 2, 2, 2, 698, 694, 3, 2, 2, 2, 699, 115, 3, 2, 2, 2, 700, 703, 5, 148, 75, 2, 701, 703, 5, 150, 76, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 117, 3, 2, 2, 2, 704, 707, 5, 162, 82, 2, 705, 707, 5, 146, 74, 2, 706, 704, 3, 2, 2, 2, 706, 705, 3, 2, 2, 2, 707, 119, 3, 2, 2, 2, 708, 709, 5, 122, 62, 2, 709, 121, 3, 2, 2, 2, 710, 713, 5, 162, 82, 2, 711, 713, 5, 142, 72, 2, 712, 710, 3, 2, 2, 2, 712, 711, 3, 2, 2, 2, 713, 123, 3, 2, 2, 2, 714, 737, 7, 152, 2, 2, 715, 737, 7, 153, 2, 2, 716, 737, 7, 154, 2, 2, 717, 737, 7, 155, 2, 2, 718, 737, 7, 156, 2, 2, 719, 737, 7, 157, 2, 2, 720, 737, 7, 158, 2, 2, 721, 737, 7, 159, 2, 2, 722, 737, 7, 160, 2, 2, 723, 737, 7, 161, 2, 2, 724, 737, 7, 162, 2, 2, 725, 737, 7, 163, 2, 2, 726, 737, 7, 164, 2, 2, 727, 737, 7, 165, 2, 2, 728, 737, 7, 166, 2, 2, 729, 737, 7, 167, 2, 2, 730, 737, 7, 168, 2, 2, 731, 737, 7, 169, 2, 2, 732, 737, 7, 170, 2, 2, 733, 737, 7, 171, 2, 2, 734, 737, 7, 172, 2, 2, 735, 737, 5, 126, 64, 2, 736, 714, 3, 2, 2, 2, 736, 715, 3, 2, 2, 2, 736, 716, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 718, 3, 2, 2, 2, 736, 719, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 721, 3, 2, 2, 2, 736, 722, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 724, 3, 2, 2, 2, 736, 725, 3, 2, 2, 2, 736, 726, 3, 2, 2, 2, 736, 727, 3, 2, 2, 2, 736, 728, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 730, 3, 2, 2, 2, 736, 731, 3, 2, 2, 2, 736, 732, 3, 2, 2, 2, 736, 733, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 735, 3, 2, 2, 2, 737, 125, 3, 2, 2, 2, 738, 739, 9, 6, 2, 2, 739, 127, 3, 2, 2, 2, 740, 741, 9, 7, 2, 2, 741, 129, 3, 2, 2, 2, 742, 743, 9, 8, 2, 2, 743, 131, 3, 2, 2, 2, 744, 745, 9, 9, 2, 2, 745, 133, 3, 2, 2, 2, 746, 747, 9, 10, 2, 2, 747, 135, 3, 2, 2, 2, 748, 749, 9, 11, 2, 2, 749, 137, 3, 2, 2, 2, 750, 751, 9, 12, 2, 2, 751, 139, 3, 2, 2, 2, 752, 753, 7, 225, 2, 2, 753, 141, 3, 2, 2, 2, 754, 760, 5, 144, 73, 2, 755, 760, 5, 146, 74, 2, 756, 760, 5, 148, 75, 2, 757, 760, 5, 150, 76, 2, 758, 760, 5, 152, 77, 2, 759, 754, 3, 2, 2, 2, 759, 755, 3, 2, 2, 2, 759, 756, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 759, 758, 3, 2, 2, 2, 760, 143, 3, 2, 2, 2, 761, 762, 7, 58, 2, 2, 762, 763, 5, 70, 36, 2, 763, 764, 5, 156, 79, 2, 764, 145, 3, 2, 2, 2, 765, 766, 9, 13, 2, 2, 766, 147, 3, 2, 2, 2, 767, 769, 9, 2, 2, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 265, 2, 2, 771, 149, 3, 2, 2, 2, 772, 774, 9, 2, 2, 2, 773, 772, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 266, 2, 2, 776, 151, 3, 2, 2, 2, 777, 778, 9, 14, 2, 2, 778, 153, 3, 2, 2, 2, 779, 780, 5, 146, 74, 2, 780, 155, 3, 2, 2, 2, 781, 782, 9, 15, 2, 2, 782, 157, 3, 2, 2, 2, 783, 784, 9, 16, 2, 2, 784, 159, 3, 2, 2, 2, 785, 786, 7, 106, 2, 2, 786, 791, 5, 142, 72, 2, 787, 788, 7, 91, 2, 2, 788, 790, 5, 142, 72, 2, 789, 787, 3, 2, 2, 2, 790, 793, 3, 2, 2, 2, 791, 789, 3, 2, 2, 2, 791, 792, 3, 2, 2, 2, 792, 794, 3, 2, 2, 2, 793, 791, 3, 2, 2, 2, 794, 795, 7, 107, 2, 2, 795, 161, 3, 2, 2, 2, 796, 801, 5, 166, 84, 2, 797, 798, 7, 92, 2, 2, 798, 800, 5, 166, 84, 2, 799, 797, 3, 2, 2, 2, 800, 803, 3, 2, 2, 2, 801, 799, 3, 2, 2, 2, 801, 802, 3, 2, 2, 2, 802, 163, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 804, 809, 5, 168, 85, 2, 805, 806, 7, 92, 2, 2, 806, 808, 5, 168, 85, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 165, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 814, 7, 92, 2, 2, 813, 812, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 815, 3, 2, 2, 2, 815, 823, 7, 264, 2, 2, 816, 817, 7, 112, 2, 2, 817, 818, 5, 166, 84, 2, 818, 819, 7, 112, 2, 2, 819, 823, 3, 2, 2, 2, 820, 823, 7, 270, 2, 2, 821, 823, 5, 170, 86, 2, 822, 813, 3, 2, 2, 2, 822, 816, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 822, 821, 3, 2, 2, 2, 823, 167, 3, 2, 2, 2, 824, 829, 5, 166, 84, 2, 825, 826, 7, 103, 2, 2, 826, 828, 5, 166, 84, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 833, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 834, 7, 103, 2, 2, 833, 832, 3, 2, 2, 2, 833, 834, 3, 2, 2, 2, 834, 848, 3, 2, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 5, 168, 85, 2, 837, 838, 7, 110, 2, 2, 838, 848, 3, 2, 2, 2, 839, 840, 7, 111, 2, 2, 840, 841, 5, 168, 85, 2, 841, 842, 7, 111, 2, 2, 842, 848, 3, 2, 2, 2, 843, 844, 7, 112, 2, 2, 844, 845, 5, 168, 85, 2, 845, 846, 7, 112, 2, 2, 846, 848, 3, 2, 2, 2, 847, 824, 3, 2, 2, 2, 847, 835, 3, 2, 2, 2, 847, 839, 3, 2, 2, 2, 847, 843, 3, 2, 2, 2, 848, 169, 3, 2, 2, 2, 849, 859, 7, 22, 2, 2, 850, 859, 5, 60, 31, 2, 851, 859, 7, 196, 2, 2, 852, 859, 7, 184, 2, 2, 853, 859, 7, 194, 2, 2, 854, 859, 7, 136, 2, 2, 855, 859, 7, 137, 2, 2, 856, 859, 5, 158, 80, 2, 857, 859, 7, 256, 2, 2, 858, 849, 3, 2, 2, 2, 858, 850, 3, 2, 2, 2, 858, 851, 3, 2, 2, 2, 858, 852, 3, 2, 2, 2, 858, 853, 3, 2, 2, 2, 858, 854, 3, 2, 2, 2, 858, 855, 3, 2, 2, 2, 858, 856, 3, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 171, 3, 2, 2, 2, 78, 173, 182, 198, 201, 205, 211, 216, 223, 233, 240, 245, 250, 257, 261, 266, 270, 276, 281, 292, 297, 301, 305, 309, 314, 324, 336, 342, 378, 387, 397, 400, 418, 423, 431, 440, 450, 466, 481, 489, 496, 502, 504, 515, 525, 533, 540, 546, 557, 570, 580, 587, 594, 602, 606, 631, 664, 670, 677, 680, 698, 702, 706, 712, 736, 759, 768, 773, 791, 801, 809, 813, 822, 829, 833, 847, 858] \ No newline at end of file diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens deleted file mode 100644 index e7b58d1ef..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.tokens +++ /dev/null @@ -1,527 +0,0 @@ -SEARCH=1 -FROM=2 -WHERE=3 -FIELDS=4 -RENAME=5 -STATS=6 -DEDUP=7 -SORT=8 -EVAL=9 -HEAD=10 -TOP=11 -RARE=12 -PARSE=13 -KMEANS=14 -AD=15 -AS=16 -BY=17 -SOURCE=18 -INDEX=19 -D=20 -DESC=21 -SORTBY=22 -AUTO=23 -STR=24 -IP=25 -NUM=26 -KEEPEMPTY=27 -CONSECUTIVE=28 -DEDUP_SPLITVALUES=29 -PARTITIONS=30 -ALLNUM=31 -DELIM=32 -CENTROIDS=33 -ITERATIONS=34 -DISTANCE_TYPE=35 -NUMBER_OF_TREES=36 -SHINGLE_SIZE=37 -SAMPLE_SIZE=38 -OUTPUT_AFTER=39 -TIME_DECAY=40 -ANOMALY_RATE=41 -TIME_FIELD=42 -TIME_ZONE=43 -TRAINING_DATA_SIZE=44 -ANOMALY_SCORE_THRESHOLD=45 -CASE=46 -IN=47 -NOT=48 -OR=49 -AND=50 -XOR=51 -TRUE=52 -FALSE=53 -REGEXP=54 -DATETIME=55 -INTERVAL=56 -MICROSECOND=57 -MILLISECOND=58 -SECOND=59 -MINUTE=60 -HOUR=61 -DAY=62 -WEEK=63 -MONTH=64 -QUARTER=65 -YEAR=66 -SECOND_MICROSECOND=67 -MINUTE_MICROSECOND=68 -MINUTE_SECOND=69 -HOUR_MICROSECOND=70 -HOUR_SECOND=71 -HOUR_MINUTE=72 -DAY_MICROSECOND=73 -DAY_SECOND=74 -DAY_MINUTE=75 -DAY_HOUR=76 -YEAR_MONTH=77 -DATAMODEL=78 -LOOKUP=79 -SAVEDSEARCH=80 -INT=81 -INTEGER=82 -DOUBLE=83 -LONG=84 -FLOAT=85 -STRING=86 -BOOLEAN=87 -PIPE=88 -COMMA=89 -DOT=90 -EQUAL=91 -GREATER=92 -LESS=93 -NOT_GREATER=94 -NOT_LESS=95 -NOT_EQUAL=96 -PLUS=97 -MINUS=98 -STAR=99 -DIVIDE=100 -MODULE=101 -EXCLAMATION_SYMBOL=102 -COLON=103 -LT_PRTHS=104 -RT_PRTHS=105 -LT_SQR_PRTHS=106 -RT_SQR_PRTHS=107 -SINGLE_QUOTE=108 -DOUBLE_QUOTE=109 -BACKTICK=110 -BIT_NOT_OP=111 -BIT_AND_OP=112 -BIT_XOR_OP=113 -AVG=114 -COUNT=115 -DISTINCT_COUNT=116 -ESTDC=117 -ESTDC_ERROR=118 -MAX=119 -MEAN=120 -MEDIAN=121 -MIN=122 -MODE=123 -RANGE=124 -STDEV=125 -STDEVP=126 -SUM=127 -SUMSQ=128 -VAR_SAMP=129 -VAR_POP=130 -STDDEV_SAMP=131 -STDDEV_POP=132 -PERCENTILE=133 -FIRST=134 -LAST=135 -LIST=136 -VALUES=137 -EARLIEST=138 -EARLIEST_TIME=139 -LATEST=140 -LATEST_TIME=141 -PER_DAY=142 -PER_HOUR=143 -PER_MINUTE=144 -PER_SECOND=145 -RATE=146 -SPARKLINE=147 -C=148 -DC=149 -ABS=150 -CEIL=151 -CEILING=152 -CONV=153 -CRC32=154 -E=155 -EXP=156 -FLOOR=157 -LN=158 -LOG=159 -LOG10=160 -LOG2=161 -MOD=162 -PI=163 -POW=164 -POWER=165 -RAND=166 -ROUND=167 -SIGN=168 -SQRT=169 -TRUNCATE=170 -ACOS=171 -ASIN=172 -ATAN=173 -ATAN2=174 -COS=175 -COT=176 -DEGREES=177 -RADIANS=178 -SIN=179 -TAN=180 -ADDDATE=181 -DATE=182 -DATE_ADD=183 -DATE_SUB=184 -DAYOFMONTH=185 -DAYOFWEEK=186 -DAYOFYEAR=187 -DAYNAME=188 -FROM_DAYS=189 -MONTHNAME=190 -SUBDATE=191 -TIME=192 -TIME_TO_SEC=193 -TIMESTAMP=194 -DATE_FORMAT=195 -TO_DAYS=196 -SUBSTR=197 -SUBSTRING=198 -LTRIM=199 -RTRIM=200 -TRIM=201 -TO=202 -LOWER=203 -UPPER=204 -CONCAT=205 -CONCAT_WS=206 -LENGTH=207 -STRCMP=208 -RIGHT=209 -LEFT=210 -ASCII=211 -LOCATE=212 -REPLACE=213 -CAST=214 -LIKE=215 -ISNULL=216 -ISNOTNULL=217 -IFNULL=218 -NULLIF=219 -IF=220 -MATCH=221 -MATCH_PHRASE=222 -SIMPLE_QUERY_STRING=223 -ALLOW_LEADING_WILDCARD=224 -ANALYZE_WILDCARD=225 -ANALYZER=226 -AUTO_GENERATE_SYNONYMS_PHRASE_QUERY=227 -BOOST=228 -CUTOFF_FREQUENCY=229 -DEFAULT_FIELD=230 -DEFAULT_OPERATOR=231 -ENABLE_POSITION_INCREMENTS=232 -FLAGS=233 -FUZZY_MAX_EXPANSIONS=234 -FUZZY_PREFIX_LENGTH=235 -FUZZY_TRANSPOSITIONS=236 -FUZZY_REWRITE=237 -FUZZINESS=238 -LENIENT=239 -LOW_FREQ_OPERATOR=240 -MAX_DETERMINIZED_STATES=241 -MAX_EXPANSIONS=242 -MINIMUM_SHOULD_MATCH=243 -OPERATOR=244 -PHRASE_SLOP=245 -PREFIX_LENGTH=246 -QUOTE_ANALYZER=247 -QUOTE_FIELD_SUFFIX=248 -REWRITE=249 -SLOP=250 -TIE_BREAKER=251 -TYPE=252 -ZERO_TERMS_QUERY=253 -SPAN=254 -MS=255 -S=256 -M=257 -H=258 -W=259 -Q=260 -Y=261 -ID=262 -INTEGER_LITERAL=263 -DECIMAL_LITERAL=264 -ID_DATE_SUFFIX=265 -DQUOTA_STRING=266 -SQUOTA_STRING=267 -BQUOTA_STRING=268 -ERROR_RECOGNITION=269 -'SEARCH'=1 -'FROM'=2 -'WHERE'=3 -'FIELDS'=4 -'RENAME'=5 -'STATS'=6 -'DEDUP'=7 -'SORT'=8 -'EVAL'=9 -'HEAD'=10 -'TOP'=11 -'RARE'=12 -'PARSE'=13 -'KMEANS'=14 -'AD'=15 -'AS'=16 -'BY'=17 -'SOURCE'=18 -'INDEX'=19 -'D'=20 -'DESC'=21 -'SORTBY'=22 -'AUTO'=23 -'STR'=24 -'IP'=25 -'NUM'=26 -'KEEPEMPTY'=27 -'CONSECUTIVE'=28 -'DEDUP_SPLITVALUES'=29 -'PARTITIONS'=30 -'ALLNUM'=31 -'DELIM'=32 -'CENTROIDS'=33 -'ITERATIONS'=34 -'DISTANCE_TYPE'=35 -'NUMBER_OF_TREES'=36 -'SHINGLE_SIZE'=37 -'SAMPLE_SIZE'=38 -'OUTPUT_AFTER'=39 -'TIME_DECAY'=40 -'ANOMALY_RATE'=41 -'TIME_FIELD'=42 -'TIME_ZONE'=43 -'TRAINING_DATA_SIZE'=44 -'ANOMALY_SCORE_THRESHOLD'=45 -'CASE'=46 -'IN'=47 -'NOT'=48 -'OR'=49 -'AND'=50 -'XOR'=51 -'TRUE'=52 -'FALSE'=53 -'REGEXP'=54 -'DATETIME'=55 -'INTERVAL'=56 -'MICROSECOND'=57 -'MILLISECOND'=58 -'SECOND'=59 -'MINUTE'=60 -'HOUR'=61 -'DAY'=62 -'WEEK'=63 -'MONTH'=64 -'QUARTER'=65 -'YEAR'=66 -'SECOND_MICROSECOND'=67 -'MINUTE_MICROSECOND'=68 -'MINUTE_SECOND'=69 -'HOUR_MICROSECOND'=70 -'HOUR_SECOND'=71 -'HOUR_MINUTE'=72 -'DAY_MICROSECOND'=73 -'DAY_SECOND'=74 -'DAY_MINUTE'=75 -'DAY_HOUR'=76 -'YEAR_MONTH'=77 -'DATAMODEL'=78 -'LOOKUP'=79 -'SAVEDSEARCH'=80 -'INT'=81 -'INTEGER'=82 -'DOUBLE'=83 -'LONG'=84 -'FLOAT'=85 -'STRING'=86 -'BOOLEAN'=87 -'|'=88 -','=89 -'.'=90 -'='=91 -'>'=92 -'<'=93 -'+'=97 -'-'=98 -'*'=99 -'/'=100 -'%'=101 -'!'=102 -':'=103 -'('=104 -')'=105 -'['=106 -']'=107 -'\''=108 -'"'=109 -'`'=110 -'~'=111 -'&'=112 -'^'=113 -'AVG'=114 -'COUNT'=115 -'DISTINCT_COUNT'=116 -'ESTDC'=117 -'ESTDC_ERROR'=118 -'MAX'=119 -'MEAN'=120 -'MEDIAN'=121 -'MIN'=122 -'MODE'=123 -'RANGE'=124 -'STDEV'=125 -'STDEVP'=126 -'SUM'=127 -'SUMSQ'=128 -'VAR_SAMP'=129 -'VAR_POP'=130 -'STDDEV_SAMP'=131 -'STDDEV_POP'=132 -'PERCENTILE'=133 -'FIRST'=134 -'LAST'=135 -'LIST'=136 -'VALUES'=137 -'EARLIEST'=138 -'EARLIEST_TIME'=139 -'LATEST'=140 -'LATEST_TIME'=141 -'PER_DAY'=142 -'PER_HOUR'=143 -'PER_MINUTE'=144 -'PER_SECOND'=145 -'RATE'=146 -'SPARKLINE'=147 -'C'=148 -'DC'=149 -'ABS'=150 -'CEIL'=151 -'CEILING'=152 -'CONV'=153 -'CRC32'=154 -'E'=155 -'EXP'=156 -'FLOOR'=157 -'LN'=158 -'LOG'=159 -'LOG10'=160 -'LOG2'=161 -'MOD'=162 -'PI'=163 -'POW'=164 -'POWER'=165 -'RAND'=166 -'ROUND'=167 -'SIGN'=168 -'SQRT'=169 -'TRUNCATE'=170 -'ACOS'=171 -'ASIN'=172 -'ATAN'=173 -'ATAN2'=174 -'COS'=175 -'COT'=176 -'DEGREES'=177 -'RADIANS'=178 -'SIN'=179 -'TAN'=180 -'ADDDATE'=181 -'DATE'=182 -'DATE_ADD'=183 -'DATE_SUB'=184 -'DAYOFMONTH'=185 -'DAYOFWEEK'=186 -'DAYOFYEAR'=187 -'DAYNAME'=188 -'FROM_DAYS'=189 -'MONTHNAME'=190 -'SUBDATE'=191 -'TIME'=192 -'TIME_TO_SEC'=193 -'TIMESTAMP'=194 -'DATE_FORMAT'=195 -'TO_DAYS'=196 -'SUBSTR'=197 -'SUBSTRING'=198 -'LTRIM'=199 -'RTRIM'=200 -'TRIM'=201 -'TO'=202 -'LOWER'=203 -'UPPER'=204 -'CONCAT'=205 -'CONCAT_WS'=206 -'LENGTH'=207 -'STRCMP'=208 -'RIGHT'=209 -'LEFT'=210 -'ASCII'=211 -'LOCATE'=212 -'REPLACE'=213 -'CAST'=214 -'LIKE'=215 -'ISNULL'=216 -'ISNOTNULL'=217 -'IFNULL'=218 -'NULLIF'=219 -'IF'=220 -'MATCH'=221 -'MATCH_PHRASE'=222 -'SIMPLE_QUERY_STRING'=223 -'ALLOW_LEADING_WILDCARD'=224 -'ANALYZE_WILDCARD'=225 -'ANALYZER'=226 -'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'=227 -'BOOST'=228 -'CUTOFF_FREQUENCY'=229 -'DEFAULT_FIELD'=230 -'DEFAULT_OPERATOR'=231 -'ENABLE_POSITION_INCREMENTS'=232 -'FLAGS'=233 -'FUZZY_MAX_EXPANSIONS'=234 -'FUZZY_PREFIX_LENGTH'=235 -'FUZZY_TRANSPOSITIONS'=236 -'FUZZY_REWRITE'=237 -'FUZZINESS'=238 -'LENIENT'=239 -'LOW_FREQ_OPERATOR'=240 -'MAX_DETERMINIZED_STATES'=241 -'MAX_EXPANSIONS'=242 -'MINIMUM_SHOULD_MATCH'=243 -'OPERATOR'=244 -'PHRASE_SLOP'=245 -'PREFIX_LENGTH'=246 -'QUOTE_ANALYZER'=247 -'QUOTE_FIELD_SUFFIX'=248 -'REWRITE'=249 -'SLOP'=250 -'TIE_BREAKER'=251 -'TYPE'=252 -'ZERO_TERMS_QUERY'=253 -'SPAN'=254 -'MS'=255 -'S'=256 -'M'=257 -'H'=258 -'W'=259 -'Q'=260 -'Y'=261 diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts deleted file mode 100644 index 78d1b84a7..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParser.ts +++ /dev/null @@ -1,9805 +0,0 @@ -// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ATN } from "antlr4ts/atn/ATN"; -import { ATNDeserializer } from "antlr4ts/atn/ATNDeserializer"; -import { FailedPredicateException } from "antlr4ts/FailedPredicateException"; -import { NotNull } from "antlr4ts/Decorators"; -import { NoViableAltException } from "antlr4ts/NoViableAltException"; -import { Override } from "antlr4ts/Decorators"; -import { Parser } from "antlr4ts/Parser"; -import { ParserRuleContext } from "antlr4ts/ParserRuleContext"; -import { ParserATNSimulator } from "antlr4ts/atn/ParserATNSimulator"; -import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; -import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; -import { RecognitionException } from "antlr4ts/RecognitionException"; -import { RuleContext } from "antlr4ts/RuleContext"; -//import { RuleVersion } from "antlr4ts/RuleVersion"; -import { TerminalNode } from "antlr4ts/tree/TerminalNode"; -import { Token } from "antlr4ts/Token"; -import { TokenStream } from "antlr4ts/TokenStream"; -import { Vocabulary } from "antlr4ts/Vocabulary"; -import { VocabularyImpl } from "antlr4ts/VocabularyImpl"; - -import * as Utils from "antlr4ts/misc/Utils"; - -import { OpenSearchPPLParserListener } from "./OpenSearchPPLParserListener"; -import { OpenSearchPPLParserVisitor } from "./OpenSearchPPLParserVisitor"; - - -export class OpenSearchPPLParser extends Parser { - public static readonly SEARCH = 1; - public static readonly FROM = 2; - public static readonly WHERE = 3; - public static readonly FIELDS = 4; - public static readonly RENAME = 5; - public static readonly STATS = 6; - public static readonly DEDUP = 7; - public static readonly SORT = 8; - public static readonly EVAL = 9; - public static readonly HEAD = 10; - public static readonly TOP = 11; - public static readonly RARE = 12; - public static readonly PARSE = 13; - public static readonly KMEANS = 14; - public static readonly AD = 15; - public static readonly AS = 16; - public static readonly BY = 17; - public static readonly SOURCE = 18; - public static readonly INDEX = 19; - public static readonly D = 20; - public static readonly DESC = 21; - public static readonly SORTBY = 22; - public static readonly AUTO = 23; - public static readonly STR = 24; - public static readonly IP = 25; - public static readonly NUM = 26; - public static readonly KEEPEMPTY = 27; - public static readonly CONSECUTIVE = 28; - public static readonly DEDUP_SPLITVALUES = 29; - public static readonly PARTITIONS = 30; - public static readonly ALLNUM = 31; - public static readonly DELIM = 32; - public static readonly CENTROIDS = 33; - public static readonly ITERATIONS = 34; - public static readonly DISTANCE_TYPE = 35; - public static readonly NUMBER_OF_TREES = 36; - public static readonly SHINGLE_SIZE = 37; - public static readonly SAMPLE_SIZE = 38; - public static readonly OUTPUT_AFTER = 39; - public static readonly TIME_DECAY = 40; - public static readonly ANOMALY_RATE = 41; - public static readonly TIME_FIELD = 42; - public static readonly TIME_ZONE = 43; - public static readonly TRAINING_DATA_SIZE = 44; - public static readonly ANOMALY_SCORE_THRESHOLD = 45; - public static readonly CASE = 46; - public static readonly IN = 47; - public static readonly NOT = 48; - public static readonly OR = 49; - public static readonly AND = 50; - public static readonly XOR = 51; - public static readonly TRUE = 52; - public static readonly FALSE = 53; - public static readonly REGEXP = 54; - public static readonly DATETIME = 55; - public static readonly INTERVAL = 56; - public static readonly MICROSECOND = 57; - public static readonly MILLISECOND = 58; - public static readonly SECOND = 59; - public static readonly MINUTE = 60; - public static readonly HOUR = 61; - public static readonly DAY = 62; - public static readonly WEEK = 63; - public static readonly MONTH = 64; - public static readonly QUARTER = 65; - public static readonly YEAR = 66; - public static readonly SECOND_MICROSECOND = 67; - public static readonly MINUTE_MICROSECOND = 68; - public static readonly MINUTE_SECOND = 69; - public static readonly HOUR_MICROSECOND = 70; - public static readonly HOUR_SECOND = 71; - public static readonly HOUR_MINUTE = 72; - public static readonly DAY_MICROSECOND = 73; - public static readonly DAY_SECOND = 74; - public static readonly DAY_MINUTE = 75; - public static readonly DAY_HOUR = 76; - public static readonly YEAR_MONTH = 77; - public static readonly DATAMODEL = 78; - public static readonly LOOKUP = 79; - public static readonly SAVEDSEARCH = 80; - public static readonly INT = 81; - public static readonly INTEGER = 82; - public static readonly DOUBLE = 83; - public static readonly LONG = 84; - public static readonly FLOAT = 85; - public static readonly STRING = 86; - public static readonly BOOLEAN = 87; - public static readonly PIPE = 88; - public static readonly COMMA = 89; - public static readonly DOT = 90; - public static readonly EQUAL = 91; - public static readonly GREATER = 92; - public static readonly LESS = 93; - public static readonly NOT_GREATER = 94; - public static readonly NOT_LESS = 95; - public static readonly NOT_EQUAL = 96; - public static readonly PLUS = 97; - public static readonly MINUS = 98; - public static readonly STAR = 99; - public static readonly DIVIDE = 100; - public static readonly MODULE = 101; - public static readonly EXCLAMATION_SYMBOL = 102; - public static readonly COLON = 103; - public static readonly LT_PRTHS = 104; - public static readonly RT_PRTHS = 105; - public static readonly LT_SQR_PRTHS = 106; - public static readonly RT_SQR_PRTHS = 107; - public static readonly SINGLE_QUOTE = 108; - public static readonly DOUBLE_QUOTE = 109; - public static readonly BACKTICK = 110; - public static readonly BIT_NOT_OP = 111; - public static readonly BIT_AND_OP = 112; - public static readonly BIT_XOR_OP = 113; - public static readonly AVG = 114; - public static readonly COUNT = 115; - public static readonly DISTINCT_COUNT = 116; - public static readonly ESTDC = 117; - public static readonly ESTDC_ERROR = 118; - public static readonly MAX = 119; - public static readonly MEAN = 120; - public static readonly MEDIAN = 121; - public static readonly MIN = 122; - public static readonly MODE = 123; - public static readonly RANGE = 124; - public static readonly STDEV = 125; - public static readonly STDEVP = 126; - public static readonly SUM = 127; - public static readonly SUMSQ = 128; - public static readonly VAR_SAMP = 129; - public static readonly VAR_POP = 130; - public static readonly STDDEV_SAMP = 131; - public static readonly STDDEV_POP = 132; - public static readonly PERCENTILE = 133; - public static readonly FIRST = 134; - public static readonly LAST = 135; - public static readonly LIST = 136; - public static readonly VALUES = 137; - public static readonly EARLIEST = 138; - public static readonly EARLIEST_TIME = 139; - public static readonly LATEST = 140; - public static readonly LATEST_TIME = 141; - public static readonly PER_DAY = 142; - public static readonly PER_HOUR = 143; - public static readonly PER_MINUTE = 144; - public static readonly PER_SECOND = 145; - public static readonly RATE = 146; - public static readonly SPARKLINE = 147; - public static readonly C = 148; - public static readonly DC = 149; - public static readonly ABS = 150; - public static readonly CEIL = 151; - public static readonly CEILING = 152; - public static readonly CONV = 153; - public static readonly CRC32 = 154; - public static readonly E = 155; - public static readonly EXP = 156; - public static readonly FLOOR = 157; - public static readonly LN = 158; - public static readonly LOG = 159; - public static readonly LOG10 = 160; - public static readonly LOG2 = 161; - public static readonly MOD = 162; - public static readonly PI = 163; - public static readonly POW = 164; - public static readonly POWER = 165; - public static readonly RAND = 166; - public static readonly ROUND = 167; - public static readonly SIGN = 168; - public static readonly SQRT = 169; - public static readonly TRUNCATE = 170; - public static readonly ACOS = 171; - public static readonly ASIN = 172; - public static readonly ATAN = 173; - public static readonly ATAN2 = 174; - public static readonly COS = 175; - public static readonly COT = 176; - public static readonly DEGREES = 177; - public static readonly RADIANS = 178; - public static readonly SIN = 179; - public static readonly TAN = 180; - public static readonly ADDDATE = 181; - public static readonly DATE = 182; - public static readonly DATE_ADD = 183; - public static readonly DATE_SUB = 184; - public static readonly DAYOFMONTH = 185; - public static readonly DAYOFWEEK = 186; - public static readonly DAYOFYEAR = 187; - public static readonly DAYNAME = 188; - public static readonly FROM_DAYS = 189; - public static readonly MONTHNAME = 190; - public static readonly SUBDATE = 191; - public static readonly TIME = 192; - public static readonly TIME_TO_SEC = 193; - public static readonly TIMESTAMP = 194; - public static readonly DATE_FORMAT = 195; - public static readonly TO_DAYS = 196; - public static readonly SUBSTR = 197; - public static readonly SUBSTRING = 198; - public static readonly LTRIM = 199; - public static readonly RTRIM = 200; - public static readonly TRIM = 201; - public static readonly TO = 202; - public static readonly LOWER = 203; - public static readonly UPPER = 204; - public static readonly CONCAT = 205; - public static readonly CONCAT_WS = 206; - public static readonly LENGTH = 207; - public static readonly STRCMP = 208; - public static readonly RIGHT = 209; - public static readonly LEFT = 210; - public static readonly ASCII = 211; - public static readonly LOCATE = 212; - public static readonly REPLACE = 213; - public static readonly CAST = 214; - public static readonly LIKE = 215; - public static readonly ISNULL = 216; - public static readonly ISNOTNULL = 217; - public static readonly IFNULL = 218; - public static readonly NULLIF = 219; - public static readonly IF = 220; - public static readonly MATCH = 221; - public static readonly MATCH_PHRASE = 222; - public static readonly SIMPLE_QUERY_STRING = 223; - public static readonly ALLOW_LEADING_WILDCARD = 224; - public static readonly ANALYZE_WILDCARD = 225; - public static readonly ANALYZER = 226; - public static readonly AUTO_GENERATE_SYNONYMS_PHRASE_QUERY = 227; - public static readonly BOOST = 228; - public static readonly CUTOFF_FREQUENCY = 229; - public static readonly DEFAULT_FIELD = 230; - public static readonly DEFAULT_OPERATOR = 231; - public static readonly ENABLE_POSITION_INCREMENTS = 232; - public static readonly FLAGS = 233; - public static readonly FUZZY_MAX_EXPANSIONS = 234; - public static readonly FUZZY_PREFIX_LENGTH = 235; - public static readonly FUZZY_TRANSPOSITIONS = 236; - public static readonly FUZZY_REWRITE = 237; - public static readonly FUZZINESS = 238; - public static readonly LENIENT = 239; - public static readonly LOW_FREQ_OPERATOR = 240; - public static readonly MAX_DETERMINIZED_STATES = 241; - public static readonly MAX_EXPANSIONS = 242; - public static readonly MINIMUM_SHOULD_MATCH = 243; - public static readonly OPERATOR = 244; - public static readonly PHRASE_SLOP = 245; - public static readonly PREFIX_LENGTH = 246; - public static readonly QUOTE_ANALYZER = 247; - public static readonly QUOTE_FIELD_SUFFIX = 248; - public static readonly REWRITE = 249; - public static readonly SLOP = 250; - public static readonly TIE_BREAKER = 251; - public static readonly TYPE = 252; - public static readonly ZERO_TERMS_QUERY = 253; - public static readonly SPAN = 254; - public static readonly MS = 255; - public static readonly S = 256; - public static readonly M = 257; - public static readonly H = 258; - public static readonly W = 259; - public static readonly Q = 260; - public static readonly Y = 261; - public static readonly ID = 262; - public static readonly INTEGER_LITERAL = 263; - public static readonly DECIMAL_LITERAL = 264; - public static readonly ID_DATE_SUFFIX = 265; - public static readonly DQUOTA_STRING = 266; - public static readonly SQUOTA_STRING = 267; - public static readonly BQUOTA_STRING = 268; - public static readonly ERROR_RECOGNITION = 269; - public static readonly RULE_root = 0; - public static readonly RULE_pplStatement = 1; - public static readonly RULE_commands = 2; - public static readonly RULE_searchCommand = 3; - public static readonly RULE_whereCommand = 4; - public static readonly RULE_fieldsCommand = 5; - public static readonly RULE_renameCommand = 6; - public static readonly RULE_statsCommand = 7; - public static readonly RULE_dedupCommand = 8; - public static readonly RULE_sortCommand = 9; - public static readonly RULE_evalCommand = 10; - public static readonly RULE_headCommand = 11; - public static readonly RULE_topCommand = 12; - public static readonly RULE_rareCommand = 13; - public static readonly RULE_parseCommand = 14; - public static readonly RULE_kmeansCommand = 15; - public static readonly RULE_kmeansParameter = 16; - public static readonly RULE_adCommand = 17; - public static readonly RULE_adParameter = 18; - public static readonly RULE_fromClause = 19; - public static readonly RULE_renameClasue = 20; - public static readonly RULE_byClause = 21; - public static readonly RULE_statsByClause = 22; - public static readonly RULE_bySpanClause = 23; - public static readonly RULE_spanClause = 24; - public static readonly RULE_sortbyClause = 25; - public static readonly RULE_evalClause = 26; - public static readonly RULE_statsAggTerm = 27; - public static readonly RULE_statsFunction = 28; - public static readonly RULE_statsFunctionName = 29; - public static readonly RULE_percentileAggFunction = 30; - public static readonly RULE_expression = 31; - public static readonly RULE_logicalExpression = 32; - public static readonly RULE_comparisonExpression = 33; - public static readonly RULE_valueExpression = 34; - public static readonly RULE_primaryExpression = 35; - public static readonly RULE_booleanExpression = 36; - public static readonly RULE_relevanceExpression = 37; - public static readonly RULE_singleFieldRelevanceFunction = 38; - public static readonly RULE_multiFieldRelevanceFunction = 39; - public static readonly RULE_tableSource = 40; - public static readonly RULE_fieldList = 41; - public static readonly RULE_wcFieldList = 42; - public static readonly RULE_sortField = 43; - public static readonly RULE_sortFieldExpression = 44; - public static readonly RULE_fieldExpression = 45; - public static readonly RULE_wcFieldExpression = 46; - public static readonly RULE_evalFunctionCall = 47; - public static readonly RULE_dataTypeFunctionCall = 48; - public static readonly RULE_booleanFunctionCall = 49; - public static readonly RULE_convertedDataType = 50; - public static readonly RULE_evalFunctionName = 51; - public static readonly RULE_functionArgs = 52; - public static readonly RULE_functionArg = 53; - public static readonly RULE_relevanceArg = 54; - public static readonly RULE_relevanceArgName = 55; - public static readonly RULE_relevanceFieldAndWeight = 56; - public static readonly RULE_relevanceFieldWeight = 57; - public static readonly RULE_relevanceField = 58; - public static readonly RULE_relevanceQuery = 59; - public static readonly RULE_relevanceArgValue = 60; - public static readonly RULE_mathematicalFunctionBase = 61; - public static readonly RULE_trigonometricFunctionName = 62; - public static readonly RULE_dateAndTimeFunctionBase = 63; - public static readonly RULE_conditionFunctionBase = 64; - public static readonly RULE_textFunctionBase = 65; - public static readonly RULE_comparisonOperator = 66; - public static readonly RULE_binaryOperator = 67; - public static readonly RULE_singleFieldRelevanceFunctionName = 68; - public static readonly RULE_multiFieldRelevanceFunctionName = 69; - public static readonly RULE_literalValue = 70; - public static readonly RULE_intervalLiteral = 71; - public static readonly RULE_stringLiteral = 72; - public static readonly RULE_integerLiteral = 73; - public static readonly RULE_decimalLiteral = 74; - public static readonly RULE_booleanLiteral = 75; - public static readonly RULE_pattern = 76; - public static readonly RULE_intervalUnit = 77; - public static readonly RULE_timespanUnit = 78; - public static readonly RULE_valueList = 79; - public static readonly RULE_qualifiedName = 80; - public static readonly RULE_wcQualifiedName = 81; - public static readonly RULE_ident = 82; - public static readonly RULE_wildcard = 83; - public static readonly RULE_keywordsCanBeId = 84; - // tslint:disable:no-trailing-whitespace - public static readonly ruleNames: string[] = [ - "root", "pplStatement", "commands", "searchCommand", "whereCommand", "fieldsCommand", - "renameCommand", "statsCommand", "dedupCommand", "sortCommand", "evalCommand", - "headCommand", "topCommand", "rareCommand", "parseCommand", "kmeansCommand", - "kmeansParameter", "adCommand", "adParameter", "fromClause", "renameClasue", - "byClause", "statsByClause", "bySpanClause", "spanClause", "sortbyClause", - "evalClause", "statsAggTerm", "statsFunction", "statsFunctionName", "percentileAggFunction", - "expression", "logicalExpression", "comparisonExpression", "valueExpression", - "primaryExpression", "booleanExpression", "relevanceExpression", "singleFieldRelevanceFunction", - "multiFieldRelevanceFunction", "tableSource", "fieldList", "wcFieldList", - "sortField", "sortFieldExpression", "fieldExpression", "wcFieldExpression", - "evalFunctionCall", "dataTypeFunctionCall", "booleanFunctionCall", "convertedDataType", - "evalFunctionName", "functionArgs", "functionArg", "relevanceArg", "relevanceArgName", - "relevanceFieldAndWeight", "relevanceFieldWeight", "relevanceField", "relevanceQuery", - "relevanceArgValue", "mathematicalFunctionBase", "trigonometricFunctionName", - "dateAndTimeFunctionBase", "conditionFunctionBase", "textFunctionBase", - "comparisonOperator", "binaryOperator", "singleFieldRelevanceFunctionName", - "multiFieldRelevanceFunctionName", "literalValue", "intervalLiteral", - "stringLiteral", "integerLiteral", "decimalLiteral", "booleanLiteral", - "pattern", "intervalUnit", "timespanUnit", "valueList", "qualifiedName", - "wcQualifiedName", "ident", "wildcard", "keywordsCanBeId", - ]; - - private static readonly _LITERAL_NAMES: Array = [ - undefined, "'SEARCH'", "'FROM'", "'WHERE'", "'FIELDS'", "'RENAME'", "'STATS'", - "'DEDUP'", "'SORT'", "'EVAL'", "'HEAD'", "'TOP'", "'RARE'", "'PARSE'", - "'KMEANS'", "'AD'", "'AS'", "'BY'", "'SOURCE'", "'INDEX'", "'D'", "'DESC'", - "'SORTBY'", "'AUTO'", "'STR'", "'IP'", "'NUM'", "'KEEPEMPTY'", "'CONSECUTIVE'", - "'DEDUP_SPLITVALUES'", "'PARTITIONS'", "'ALLNUM'", "'DELIM'", "'CENTROIDS'", - "'ITERATIONS'", "'DISTANCE_TYPE'", "'NUMBER_OF_TREES'", "'SHINGLE_SIZE'", - "'SAMPLE_SIZE'", "'OUTPUT_AFTER'", "'TIME_DECAY'", "'ANOMALY_RATE'", "'TIME_FIELD'", - "'TIME_ZONE'", "'TRAINING_DATA_SIZE'", "'ANOMALY_SCORE_THRESHOLD'", "'CASE'", - "'IN'", "'NOT'", "'OR'", "'AND'", "'XOR'", "'TRUE'", "'FALSE'", "'REGEXP'", - "'DATETIME'", "'INTERVAL'", "'MICROSECOND'", "'MILLISECOND'", "'SECOND'", - "'MINUTE'", "'HOUR'", "'DAY'", "'WEEK'", "'MONTH'", "'QUARTER'", "'YEAR'", - "'SECOND_MICROSECOND'", "'MINUTE_MICROSECOND'", "'MINUTE_SECOND'", "'HOUR_MICROSECOND'", - "'HOUR_SECOND'", "'HOUR_MINUTE'", "'DAY_MICROSECOND'", "'DAY_SECOND'", - "'DAY_MINUTE'", "'DAY_HOUR'", "'YEAR_MONTH'", "'DATAMODEL'", "'LOOKUP'", - "'SAVEDSEARCH'", "'INT'", "'INTEGER'", "'DOUBLE'", "'LONG'", "'FLOAT'", - "'STRING'", "'BOOLEAN'", "'|'", "','", "'.'", "'='", "'>'", "'<'", undefined, - undefined, undefined, "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "':'", - "'('", "')'", "'['", "']'", "'''", "'\"'", "'`'", "'~'", "'&'", "'^'", - "'AVG'", "'COUNT'", "'DISTINCT_COUNT'", "'ESTDC'", "'ESTDC_ERROR'", "'MAX'", - "'MEAN'", "'MEDIAN'", "'MIN'", "'MODE'", "'RANGE'", "'STDEV'", "'STDEVP'", - "'SUM'", "'SUMSQ'", "'VAR_SAMP'", "'VAR_POP'", "'STDDEV_SAMP'", "'STDDEV_POP'", - "'PERCENTILE'", "'FIRST'", "'LAST'", "'LIST'", "'VALUES'", "'EARLIEST'", - "'EARLIEST_TIME'", "'LATEST'", "'LATEST_TIME'", "'PER_DAY'", "'PER_HOUR'", - "'PER_MINUTE'", "'PER_SECOND'", "'RATE'", "'SPARKLINE'", "'C'", "'DC'", - "'ABS'", "'CEIL'", "'CEILING'", "'CONV'", "'CRC32'", "'E'", "'EXP'", "'FLOOR'", - "'LN'", "'LOG'", "'LOG10'", "'LOG2'", "'MOD'", "'PI'", "'POW'", "'POWER'", - "'RAND'", "'ROUND'", "'SIGN'", "'SQRT'", "'TRUNCATE'", "'ACOS'", "'ASIN'", - "'ATAN'", "'ATAN2'", "'COS'", "'COT'", "'DEGREES'", "'RADIANS'", "'SIN'", - "'TAN'", "'ADDDATE'", "'DATE'", "'DATE_ADD'", "'DATE_SUB'", "'DAYOFMONTH'", - "'DAYOFWEEK'", "'DAYOFYEAR'", "'DAYNAME'", "'FROM_DAYS'", "'MONTHNAME'", - "'SUBDATE'", "'TIME'", "'TIME_TO_SEC'", "'TIMESTAMP'", "'DATE_FORMAT'", - "'TO_DAYS'", "'SUBSTR'", "'SUBSTRING'", "'LTRIM'", "'RTRIM'", "'TRIM'", - "'TO'", "'LOWER'", "'UPPER'", "'CONCAT'", "'CONCAT_WS'", "'LENGTH'", "'STRCMP'", - "'RIGHT'", "'LEFT'", "'ASCII'", "'LOCATE'", "'REPLACE'", "'CAST'", "'LIKE'", - "'ISNULL'", "'ISNOTNULL'", "'IFNULL'", "'NULLIF'", "'IF'", "'MATCH'", - "'MATCH_PHRASE'", "'SIMPLE_QUERY_STRING'", "'ALLOW_LEADING_WILDCARD'", - "'ANALYZE_WILDCARD'", "'ANALYZER'", "'AUTO_GENERATE_SYNONYMS_PHRASE_QUERY'", - "'BOOST'", "'CUTOFF_FREQUENCY'", "'DEFAULT_FIELD'", "'DEFAULT_OPERATOR'", - "'ENABLE_POSITION_INCREMENTS'", "'FLAGS'", "'FUZZY_MAX_EXPANSIONS'", "'FUZZY_PREFIX_LENGTH'", - "'FUZZY_TRANSPOSITIONS'", "'FUZZY_REWRITE'", "'FUZZINESS'", "'LENIENT'", - "'LOW_FREQ_OPERATOR'", "'MAX_DETERMINIZED_STATES'", "'MAX_EXPANSIONS'", - "'MINIMUM_SHOULD_MATCH'", "'OPERATOR'", "'PHRASE_SLOP'", "'PREFIX_LENGTH'", - "'QUOTE_ANALYZER'", "'QUOTE_FIELD_SUFFIX'", "'REWRITE'", "'SLOP'", "'TIE_BREAKER'", - "'TYPE'", "'ZERO_TERMS_QUERY'", "'SPAN'", "'MS'", "'S'", "'M'", "'H'", - "'W'", "'Q'", "'Y'", - ]; - private static readonly _SYMBOLIC_NAMES: Array = [ - undefined, "SEARCH", "FROM", "WHERE", "FIELDS", "RENAME", "STATS", "DEDUP", - "SORT", "EVAL", "HEAD", "TOP", "RARE", "PARSE", "KMEANS", "AD", "AS", - "BY", "SOURCE", "INDEX", "D", "DESC", "SORTBY", "AUTO", "STR", "IP", "NUM", - "KEEPEMPTY", "CONSECUTIVE", "DEDUP_SPLITVALUES", "PARTITIONS", "ALLNUM", - "DELIM", "CENTROIDS", "ITERATIONS", "DISTANCE_TYPE", "NUMBER_OF_TREES", - "SHINGLE_SIZE", "SAMPLE_SIZE", "OUTPUT_AFTER", "TIME_DECAY", "ANOMALY_RATE", - "TIME_FIELD", "TIME_ZONE", "TRAINING_DATA_SIZE", "ANOMALY_SCORE_THRESHOLD", - "CASE", "IN", "NOT", "OR", "AND", "XOR", "TRUE", "FALSE", "REGEXP", "DATETIME", - "INTERVAL", "MICROSECOND", "MILLISECOND", "SECOND", "MINUTE", "HOUR", - "DAY", "WEEK", "MONTH", "QUARTER", "YEAR", "SECOND_MICROSECOND", "MINUTE_MICROSECOND", - "MINUTE_SECOND", "HOUR_MICROSECOND", "HOUR_SECOND", "HOUR_MINUTE", "DAY_MICROSECOND", - "DAY_SECOND", "DAY_MINUTE", "DAY_HOUR", "YEAR_MONTH", "DATAMODEL", "LOOKUP", - "SAVEDSEARCH", "INT", "INTEGER", "DOUBLE", "LONG", "FLOAT", "STRING", - "BOOLEAN", "PIPE", "COMMA", "DOT", "EQUAL", "GREATER", "LESS", "NOT_GREATER", - "NOT_LESS", "NOT_EQUAL", "PLUS", "MINUS", "STAR", "DIVIDE", "MODULE", - "EXCLAMATION_SYMBOL", "COLON", "LT_PRTHS", "RT_PRTHS", "LT_SQR_PRTHS", - "RT_SQR_PRTHS", "SINGLE_QUOTE", "DOUBLE_QUOTE", "BACKTICK", "BIT_NOT_OP", - "BIT_AND_OP", "BIT_XOR_OP", "AVG", "COUNT", "DISTINCT_COUNT", "ESTDC", - "ESTDC_ERROR", "MAX", "MEAN", "MEDIAN", "MIN", "MODE", "RANGE", "STDEV", - "STDEVP", "SUM", "SUMSQ", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP", - "PERCENTILE", "FIRST", "LAST", "LIST", "VALUES", "EARLIEST", "EARLIEST_TIME", - "LATEST", "LATEST_TIME", "PER_DAY", "PER_HOUR", "PER_MINUTE", "PER_SECOND", - "RATE", "SPARKLINE", "C", "DC", "ABS", "CEIL", "CEILING", "CONV", "CRC32", - "E", "EXP", "FLOOR", "LN", "LOG", "LOG10", "LOG2", "MOD", "PI", "POW", - "POWER", "RAND", "ROUND", "SIGN", "SQRT", "TRUNCATE", "ACOS", "ASIN", - "ATAN", "ATAN2", "COS", "COT", "DEGREES", "RADIANS", "SIN", "TAN", "ADDDATE", - "DATE", "DATE_ADD", "DATE_SUB", "DAYOFMONTH", "DAYOFWEEK", "DAYOFYEAR", - "DAYNAME", "FROM_DAYS", "MONTHNAME", "SUBDATE", "TIME", "TIME_TO_SEC", - "TIMESTAMP", "DATE_FORMAT", "TO_DAYS", "SUBSTR", "SUBSTRING", "LTRIM", - "RTRIM", "TRIM", "TO", "LOWER", "UPPER", "CONCAT", "CONCAT_WS", "LENGTH", - "STRCMP", "RIGHT", "LEFT", "ASCII", "LOCATE", "REPLACE", "CAST", "LIKE", - "ISNULL", "ISNOTNULL", "IFNULL", "NULLIF", "IF", "MATCH", "MATCH_PHRASE", - "SIMPLE_QUERY_STRING", "ALLOW_LEADING_WILDCARD", "ANALYZE_WILDCARD", "ANALYZER", - "AUTO_GENERATE_SYNONYMS_PHRASE_QUERY", "BOOST", "CUTOFF_FREQUENCY", "DEFAULT_FIELD", - "DEFAULT_OPERATOR", "ENABLE_POSITION_INCREMENTS", "FLAGS", "FUZZY_MAX_EXPANSIONS", - "FUZZY_PREFIX_LENGTH", "FUZZY_TRANSPOSITIONS", "FUZZY_REWRITE", "FUZZINESS", - "LENIENT", "LOW_FREQ_OPERATOR", "MAX_DETERMINIZED_STATES", "MAX_EXPANSIONS", - "MINIMUM_SHOULD_MATCH", "OPERATOR", "PHRASE_SLOP", "PREFIX_LENGTH", "QUOTE_ANALYZER", - "QUOTE_FIELD_SUFFIX", "REWRITE", "SLOP", "TIE_BREAKER", "TYPE", "ZERO_TERMS_QUERY", - "SPAN", "MS", "S", "M", "H", "W", "Q", "Y", "ID", "INTEGER_LITERAL", "DECIMAL_LITERAL", - "ID_DATE_SUFFIX", "DQUOTA_STRING", "SQUOTA_STRING", "BQUOTA_STRING", "ERROR_RECOGNITION", - ]; - public static readonly VOCABULARY: Vocabulary = new VocabularyImpl(OpenSearchPPLParser._LITERAL_NAMES, OpenSearchPPLParser._SYMBOLIC_NAMES, []); - - // @Override - // @NotNull - public get vocabulary(): Vocabulary { - return OpenSearchPPLParser.VOCABULARY; - } - // tslint:enable:no-trailing-whitespace - - // @Override - public get grammarFileName(): string { return "OpenSearchPPLParser.g4"; } - - // @Override - public get ruleNames(): string[] { return OpenSearchPPLParser.ruleNames; } - - // @Override - public get serializedATN(): string { return OpenSearchPPLParser._serializedATN; } - - protected createFailedPredicateException(predicate?: string, message?: string): FailedPredicateException { - return new FailedPredicateException(this, predicate, message); - } - - constructor(input: TokenStream) { - super(input); - this._interp = new ParserATNSimulator(OpenSearchPPLParser._ATN, this); - } - // @RuleVersion(0) - public root(): RootContext { - let _localctx: RootContext = new RootContext(this._ctx, this.state); - this.enterRule(_localctx, 0, OpenSearchPPLParser.RULE_root); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 171; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << OpenSearchPPLParser.SEARCH) | (1 << OpenSearchPPLParser.SOURCE) | (1 << OpenSearchPPLParser.INDEX) | (1 << OpenSearchPPLParser.D))) !== 0) || ((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & ((1 << (OpenSearchPPLParser.NOT - 48)) | (1 << (OpenSearchPPLParser.TRUE - 48)) | (1 << (OpenSearchPPLParser.FALSE - 48)) | (1 << (OpenSearchPPLParser.INTERVAL - 48)) | (1 << (OpenSearchPPLParser.MICROSECOND - 48)) | (1 << (OpenSearchPPLParser.MILLISECOND - 48)) | (1 << (OpenSearchPPLParser.SECOND - 48)) | (1 << (OpenSearchPPLParser.MINUTE - 48)) | (1 << (OpenSearchPPLParser.HOUR - 48)) | (1 << (OpenSearchPPLParser.DAY - 48)) | (1 << (OpenSearchPPLParser.WEEK - 48)) | (1 << (OpenSearchPPLParser.MONTH - 48)) | (1 << (OpenSearchPPLParser.QUARTER - 48)) | (1 << (OpenSearchPPLParser.YEAR - 48)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)) | (1 << (OpenSearchPPLParser.MATCH - 218)) | (1 << (OpenSearchPPLParser.MATCH_PHRASE - 218)) | (1 << (OpenSearchPPLParser.SIMPLE_QUERY_STRING - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { - { - this.state = 170; - this.pplStatement(); - } - } - - this.state = 173; - this.match(OpenSearchPPLParser.EOF); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public pplStatement(): PplStatementContext { - let _localctx: PplStatementContext = new PplStatementContext(this._ctx, this.state); - this.enterRule(_localctx, 2, OpenSearchPPLParser.RULE_pplStatement); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 175; - this.searchCommand(); - this.state = 180; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.PIPE) { - { - { - this.state = 176; - this.match(OpenSearchPPLParser.PIPE); - this.state = 177; - this.commands(); - } - } - this.state = 182; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public commands(): CommandsContext { - let _localctx: CommandsContext = new CommandsContext(this._ctx, this.state); - this.enterRule(_localctx, 4, OpenSearchPPLParser.RULE_commands); - try { - this.state = 196; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.WHERE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 183; - this.whereCommand(); - } - break; - case OpenSearchPPLParser.FIELDS: - this.enterOuterAlt(_localctx, 2); - { - this.state = 184; - this.fieldsCommand(); - } - break; - case OpenSearchPPLParser.RENAME: - this.enterOuterAlt(_localctx, 3); - { - this.state = 185; - this.renameCommand(); - } - break; - case OpenSearchPPLParser.STATS: - this.enterOuterAlt(_localctx, 4); - { - this.state = 186; - this.statsCommand(); - } - break; - case OpenSearchPPLParser.DEDUP: - this.enterOuterAlt(_localctx, 5); - { - this.state = 187; - this.dedupCommand(); - } - break; - case OpenSearchPPLParser.SORT: - this.enterOuterAlt(_localctx, 6); - { - this.state = 188; - this.sortCommand(); - } - break; - case OpenSearchPPLParser.EVAL: - this.enterOuterAlt(_localctx, 7); - { - this.state = 189; - this.evalCommand(); - } - break; - case OpenSearchPPLParser.HEAD: - this.enterOuterAlt(_localctx, 8); - { - this.state = 190; - this.headCommand(); - } - break; - case OpenSearchPPLParser.TOP: - this.enterOuterAlt(_localctx, 9); - { - this.state = 191; - this.topCommand(); - } - break; - case OpenSearchPPLParser.RARE: - this.enterOuterAlt(_localctx, 10); - { - this.state = 192; - this.rareCommand(); - } - break; - case OpenSearchPPLParser.PARSE: - this.enterOuterAlt(_localctx, 11); - { - this.state = 193; - this.parseCommand(); - } - break; - case OpenSearchPPLParser.KMEANS: - this.enterOuterAlt(_localctx, 12); - { - this.state = 194; - this.kmeansCommand(); - } - break; - case OpenSearchPPLParser.AD: - this.enterOuterAlt(_localctx, 13); - { - this.state = 195; - this.adCommand(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public searchCommand(): SearchCommandContext { - let _localctx: SearchCommandContext = new SearchCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 6, OpenSearchPPLParser.RULE_searchCommand); - let _la: number; - try { - this.state = 214; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 6, this._ctx) ) { - case 1: - _localctx = new SearchFromContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 199; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.SEARCH) { - { - this.state = 198; - this.match(OpenSearchPPLParser.SEARCH); - } - } - - this.state = 201; - this.fromClause(); - } - break; - - case 2: - _localctx = new SearchFromFilterContext(_localctx); - this.enterOuterAlt(_localctx, 2); - { - this.state = 203; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.SEARCH) { - { - this.state = 202; - this.match(OpenSearchPPLParser.SEARCH); - } - } - - this.state = 205; - this.fromClause(); - this.state = 206; - this.logicalExpression(0); - } - break; - - case 3: - _localctx = new SearchFilterFromContext(_localctx); - this.enterOuterAlt(_localctx, 3); - { - this.state = 209; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.SEARCH) { - { - this.state = 208; - this.match(OpenSearchPPLParser.SEARCH); - } - } - - this.state = 211; - this.logicalExpression(0); - this.state = 212; - this.fromClause(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public whereCommand(): WhereCommandContext { - let _localctx: WhereCommandContext = new WhereCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 8, OpenSearchPPLParser.RULE_whereCommand); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 216; - this.match(OpenSearchPPLParser.WHERE); - this.state = 217; - this.logicalExpression(0); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fieldsCommand(): FieldsCommandContext { - let _localctx: FieldsCommandContext = new FieldsCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 10, OpenSearchPPLParser.RULE_fieldsCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 219; - this.match(OpenSearchPPLParser.FIELDS); - this.state = 221; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 220; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 223; - this.fieldList(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public renameCommand(): RenameCommandContext { - let _localctx: RenameCommandContext = new RenameCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 12, OpenSearchPPLParser.RULE_renameCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 225; - this.match(OpenSearchPPLParser.RENAME); - this.state = 226; - this.renameClasue(); - this.state = 231; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 227; - this.match(OpenSearchPPLParser.COMMA); - this.state = 228; - this.renameClasue(); - } - } - this.state = 233; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsCommand(): StatsCommandContext { - let _localctx: StatsCommandContext = new StatsCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 14, OpenSearchPPLParser.RULE_statsCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 234; - this.match(OpenSearchPPLParser.STATS); - this.state = 238; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PARTITIONS) { - { - this.state = 235; - this.match(OpenSearchPPLParser.PARTITIONS); - this.state = 236; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 237; - _localctx._partitions = this.integerLiteral(); - } - } - - this.state = 243; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.ALLNUM) { - { - this.state = 240; - this.match(OpenSearchPPLParser.ALLNUM); - this.state = 241; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 242; - _localctx._allnum = this.booleanLiteral(); - } - } - - this.state = 248; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.DELIM) { - { - this.state = 245; - this.match(OpenSearchPPLParser.DELIM); - this.state = 246; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 247; - _localctx._delim = this.stringLiteral(); - } - } - - this.state = 250; - this.statsAggTerm(); - this.state = 255; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 251; - this.match(OpenSearchPPLParser.COMMA); - this.state = 252; - this.statsAggTerm(); - } - } - this.state = 257; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 259; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.BY) { - { - this.state = 258; - this.statsByClause(); - } - } - - this.state = 264; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.DEDUP_SPLITVALUES) { - { - this.state = 261; - this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); - this.state = 262; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 263; - _localctx._dedupsplit = this.booleanLiteral(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public dedupCommand(): DedupCommandContext { - let _localctx: DedupCommandContext = new DedupCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 16, OpenSearchPPLParser.RULE_dedupCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 266; - this.match(OpenSearchPPLParser.DEDUP); - this.state = 268; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { - { - this.state = 267; - _localctx._number = this.integerLiteral(); - } - } - - this.state = 270; - this.fieldList(); - this.state = 274; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.KEEPEMPTY) { - { - this.state = 271; - this.match(OpenSearchPPLParser.KEEPEMPTY); - this.state = 272; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 273; - _localctx._keepempty = this.booleanLiteral(); - } - } - - this.state = 279; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.CONSECUTIVE) { - { - this.state = 276; - this.match(OpenSearchPPLParser.CONSECUTIVE); - this.state = 277; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 278; - _localctx._consecutive = this.booleanLiteral(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortCommand(): SortCommandContext { - let _localctx: SortCommandContext = new SortCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 18, OpenSearchPPLParser.RULE_sortCommand); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 281; - this.match(OpenSearchPPLParser.SORT); - this.state = 282; - this.sortbyClause(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalCommand(): EvalCommandContext { - let _localctx: EvalCommandContext = new EvalCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 20, OpenSearchPPLParser.RULE_evalCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 284; - this.match(OpenSearchPPLParser.EVAL); - this.state = 285; - this.evalClause(); - this.state = 290; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 286; - this.match(OpenSearchPPLParser.COMMA); - this.state = 287; - this.evalClause(); - } - } - this.state = 292; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public headCommand(): HeadCommandContext { - let _localctx: HeadCommandContext = new HeadCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 22, OpenSearchPPLParser.RULE_headCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 293; - this.match(OpenSearchPPLParser.HEAD); - this.state = 295; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { - { - this.state = 294; - _localctx._number = this.integerLiteral(); - } - } - - this.state = 299; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.FROM) { - { - this.state = 297; - this.match(OpenSearchPPLParser.FROM); - this.state = 298; - _localctx._from = this.integerLiteral(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public topCommand(): TopCommandContext { - let _localctx: TopCommandContext = new TopCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 24, OpenSearchPPLParser.RULE_topCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 301; - this.match(OpenSearchPPLParser.TOP); - this.state = 303; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS || _la === OpenSearchPPLParser.INTEGER_LITERAL) { - { - this.state = 302; - _localctx._number = this.integerLiteral(); - } - } - - this.state = 305; - this.fieldList(); - this.state = 307; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.BY) { - { - this.state = 306; - this.byClause(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public rareCommand(): RareCommandContext { - let _localctx: RareCommandContext = new RareCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 26, OpenSearchPPLParser.RULE_rareCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 309; - this.match(OpenSearchPPLParser.RARE); - this.state = 310; - this.fieldList(); - this.state = 312; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.BY) { - { - this.state = 311; - this.byClause(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public parseCommand(): ParseCommandContext { - let _localctx: ParseCommandContext = new ParseCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 28, OpenSearchPPLParser.RULE_parseCommand); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 314; - this.match(OpenSearchPPLParser.PARSE); - this.state = 315; - this.expression(); - this.state = 316; - this.pattern(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public kmeansCommand(): KmeansCommandContext { - let _localctx: KmeansCommandContext = new KmeansCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 30, OpenSearchPPLParser.RULE_kmeansCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 318; - this.match(OpenSearchPPLParser.KMEANS); - this.state = 322; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & ((1 << (OpenSearchPPLParser.CENTROIDS - 33)) | (1 << (OpenSearchPPLParser.ITERATIONS - 33)) | (1 << (OpenSearchPPLParser.DISTANCE_TYPE - 33)))) !== 0)) { - { - { - this.state = 319; - this.kmeansParameter(); - } - } - this.state = 324; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public kmeansParameter(): KmeansParameterContext { - let _localctx: KmeansParameterContext = new KmeansParameterContext(this._ctx, this.state); - this.enterRule(_localctx, 32, OpenSearchPPLParser.RULE_kmeansParameter); - try { - this.state = 334; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.CENTROIDS: - this.enterOuterAlt(_localctx, 1); - { - { - this.state = 325; - this.match(OpenSearchPPLParser.CENTROIDS); - this.state = 326; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 327; - _localctx._centroids = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.ITERATIONS: - this.enterOuterAlt(_localctx, 2); - { - { - this.state = 328; - this.match(OpenSearchPPLParser.ITERATIONS); - this.state = 329; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 330; - _localctx._iterations = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.DISTANCE_TYPE: - this.enterOuterAlt(_localctx, 3); - { - { - this.state = 331; - this.match(OpenSearchPPLParser.DISTANCE_TYPE); - this.state = 332; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 333; - _localctx._distance_type = this.stringLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public adCommand(): AdCommandContext { - let _localctx: AdCommandContext = new AdCommandContext(this._ctx, this.state); - this.enterRule(_localctx, 34, OpenSearchPPLParser.RULE_adCommand); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 336; - this.match(OpenSearchPPLParser.AD); - this.state = 340; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & ((1 << (OpenSearchPPLParser.NUMBER_OF_TREES - 36)) | (1 << (OpenSearchPPLParser.SHINGLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.SAMPLE_SIZE - 36)) | (1 << (OpenSearchPPLParser.OUTPUT_AFTER - 36)) | (1 << (OpenSearchPPLParser.TIME_DECAY - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_RATE - 36)) | (1 << (OpenSearchPPLParser.TIME_FIELD - 36)) | (1 << (OpenSearchPPLParser.TIME_ZONE - 36)) | (1 << (OpenSearchPPLParser.TRAINING_DATA_SIZE - 36)) | (1 << (OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD - 36)))) !== 0) || _la === OpenSearchPPLParser.DATE_FORMAT) { - { - { - this.state = 337; - this.adParameter(); - } - } - this.state = 342; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public adParameter(): AdParameterContext { - let _localctx: AdParameterContext = new AdParameterContext(this._ctx, this.state); - this.enterRule(_localctx, 36, OpenSearchPPLParser.RULE_adParameter); - try { - this.state = 376; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.NUMBER_OF_TREES: - this.enterOuterAlt(_localctx, 1); - { - { - this.state = 343; - this.match(OpenSearchPPLParser.NUMBER_OF_TREES); - this.state = 344; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 345; - _localctx._number_of_trees = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.SHINGLE_SIZE: - this.enterOuterAlt(_localctx, 2); - { - { - this.state = 346; - this.match(OpenSearchPPLParser.SHINGLE_SIZE); - this.state = 347; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 348; - _localctx._shingle_size = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.SAMPLE_SIZE: - this.enterOuterAlt(_localctx, 3); - { - { - this.state = 349; - this.match(OpenSearchPPLParser.SAMPLE_SIZE); - this.state = 350; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 351; - _localctx._sample_size = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.OUTPUT_AFTER: - this.enterOuterAlt(_localctx, 4); - { - { - this.state = 352; - this.match(OpenSearchPPLParser.OUTPUT_AFTER); - this.state = 353; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 354; - _localctx._output_after = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.TIME_DECAY: - this.enterOuterAlt(_localctx, 5); - { - { - this.state = 355; - this.match(OpenSearchPPLParser.TIME_DECAY); - this.state = 356; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 357; - _localctx._time_decay = this.decimalLiteral(); - } - } - break; - case OpenSearchPPLParser.ANOMALY_RATE: - this.enterOuterAlt(_localctx, 6); - { - { - this.state = 358; - this.match(OpenSearchPPLParser.ANOMALY_RATE); - this.state = 359; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 360; - _localctx._anomaly_rate = this.decimalLiteral(); - } - } - break; - case OpenSearchPPLParser.TIME_FIELD: - this.enterOuterAlt(_localctx, 7); - { - { - this.state = 361; - this.match(OpenSearchPPLParser.TIME_FIELD); - this.state = 362; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 363; - _localctx._time_field = this.stringLiteral(); - } - } - break; - case OpenSearchPPLParser.DATE_FORMAT: - this.enterOuterAlt(_localctx, 8); - { - { - this.state = 364; - this.match(OpenSearchPPLParser.DATE_FORMAT); - this.state = 365; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 366; - _localctx._date_format = this.stringLiteral(); - } - } - break; - case OpenSearchPPLParser.TIME_ZONE: - this.enterOuterAlt(_localctx, 9); - { - { - this.state = 367; - this.match(OpenSearchPPLParser.TIME_ZONE); - this.state = 368; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 369; - _localctx._time_zone = this.stringLiteral(); - } - } - break; - case OpenSearchPPLParser.TRAINING_DATA_SIZE: - this.enterOuterAlt(_localctx, 10); - { - { - this.state = 370; - this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); - this.state = 371; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 372; - _localctx._training_data_size = this.integerLiteral(); - } - } - break; - case OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD: - this.enterOuterAlt(_localctx, 11); - { - { - this.state = 373; - this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); - this.state = 374; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 375; - _localctx._anomaly_score_threshold = this.decimalLiteral(); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fromClause(): FromClauseContext { - let _localctx: FromClauseContext = new FromClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 38, OpenSearchPPLParser.RULE_fromClause); - let _la: number; - try { - this.state = 398; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.SOURCE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 378; - this.match(OpenSearchPPLParser.SOURCE); - this.state = 379; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 380; - this.tableSource(); - this.state = 385; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 381; - this.match(OpenSearchPPLParser.COMMA); - this.state = 382; - this.tableSource(); - } - } - this.state = 387; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - break; - case OpenSearchPPLParser.INDEX: - this.enterOuterAlt(_localctx, 2); - { - this.state = 388; - this.match(OpenSearchPPLParser.INDEX); - this.state = 389; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 390; - this.tableSource(); - this.state = 395; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 391; - this.match(OpenSearchPPLParser.COMMA); - this.state = 392; - this.tableSource(); - } - } - this.state = 397; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public renameClasue(): RenameClasueContext { - let _localctx: RenameClasueContext = new RenameClasueContext(this._ctx, this.state); - this.enterRule(_localctx, 40, OpenSearchPPLParser.RULE_renameClasue); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 400; - _localctx._orignalField = this.wcFieldExpression(); - this.state = 401; - this.match(OpenSearchPPLParser.AS); - this.state = 402; - _localctx._renamedField = this.wcFieldExpression(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public byClause(): ByClauseContext { - let _localctx: ByClauseContext = new ByClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 42, OpenSearchPPLParser.RULE_byClause); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 404; - this.match(OpenSearchPPLParser.BY); - this.state = 405; - this.fieldList(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsByClause(): StatsByClauseContext { - let _localctx: StatsByClauseContext = new StatsByClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 44, OpenSearchPPLParser.RULE_statsByClause); - try { - this.state = 416; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 31, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 407; - this.match(OpenSearchPPLParser.BY); - this.state = 408; - this.fieldList(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 409; - this.match(OpenSearchPPLParser.BY); - this.state = 410; - this.bySpanClause(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 411; - this.match(OpenSearchPPLParser.BY); - this.state = 412; - this.bySpanClause(); - this.state = 413; - this.match(OpenSearchPPLParser.COMMA); - this.state = 414; - this.fieldList(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public bySpanClause(): BySpanClauseContext { - let _localctx: BySpanClauseContext = new BySpanClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 46, OpenSearchPPLParser.RULE_bySpanClause); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 418; - this.spanClause(); - this.state = 421; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.AS) { - { - this.state = 419; - this.match(OpenSearchPPLParser.AS); - this.state = 420; - _localctx._alias = this.qualifiedName(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public spanClause(): SpanClauseContext { - let _localctx: SpanClauseContext = new SpanClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 48, OpenSearchPPLParser.RULE_spanClause); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 423; - this.match(OpenSearchPPLParser.SPAN); - this.state = 424; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 425; - this.fieldExpression(); - this.state = 426; - this.match(OpenSearchPPLParser.COMMA); - this.state = 427; - _localctx._value = this.literalValue(); - this.state = 429; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0)) { - { - this.state = 428; - _localctx._unit = this.timespanUnit(); - } - } - - this.state = 431; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortbyClause(): SortbyClauseContext { - let _localctx: SortbyClauseContext = new SortbyClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 50, OpenSearchPPLParser.RULE_sortbyClause); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 433; - this.sortField(); - this.state = 438; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 434; - this.match(OpenSearchPPLParser.COMMA); - this.state = 435; - this.sortField(); - } - } - this.state = 440; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalClause(): EvalClauseContext { - let _localctx: EvalClauseContext = new EvalClauseContext(this._ctx, this.state); - this.enterRule(_localctx, 52, OpenSearchPPLParser.RULE_evalClause); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 441; - this.fieldExpression(); - this.state = 442; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 443; - this.expression(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsAggTerm(): StatsAggTermContext { - let _localctx: StatsAggTermContext = new StatsAggTermContext(this._ctx, this.state); - this.enterRule(_localctx, 54, OpenSearchPPLParser.RULE_statsAggTerm); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 445; - this.statsFunction(); - this.state = 448; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.AS) { - { - this.state = 446; - this.match(OpenSearchPPLParser.AS); - this.state = 447; - _localctx._alias = this.wcFieldExpression(); - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsFunction(): StatsFunctionContext { - let _localctx: StatsFunctionContext = new StatsFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 56, OpenSearchPPLParser.RULE_statsFunction); - let _la: number; - try { - this.state = 464; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 36, this._ctx) ) { - case 1: - _localctx = new StatsFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 450; - this.statsFunctionName(); - this.state = 451; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 452; - this.valueExpression(0); - this.state = 453; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - - case 2: - _localctx = new CountAllFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 2); - { - this.state = 455; - this.match(OpenSearchPPLParser.COUNT); - this.state = 456; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 457; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - - case 3: - _localctx = new DistinctCountFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 3); - { - this.state = 458; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.DISTINCT_COUNT || _la === OpenSearchPPLParser.DC)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 459; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 460; - this.valueExpression(0); - this.state = 461; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - - case 4: - _localctx = new PercentileAggFunctionCallContext(_localctx); - this.enterOuterAlt(_localctx, 4); - { - this.state = 463; - this.percentileAggFunction(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public statsFunctionName(): StatsFunctionNameContext { - let _localctx: StatsFunctionNameContext = new StatsFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 58, OpenSearchPPLParser.RULE_statsFunctionName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 466; - _la = this._input.LA(1); - if (!(((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & ((1 << (OpenSearchPPLParser.AVG - 114)) | (1 << (OpenSearchPPLParser.COUNT - 114)) | (1 << (OpenSearchPPLParser.MAX - 114)) | (1 << (OpenSearchPPLParser.MIN - 114)) | (1 << (OpenSearchPPLParser.SUM - 114)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 114)) | (1 << (OpenSearchPPLParser.VAR_POP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 114)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 114)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public percentileAggFunction(): PercentileAggFunctionContext { - let _localctx: PercentileAggFunctionContext = new PercentileAggFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 60, OpenSearchPPLParser.RULE_percentileAggFunction); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 468; - this.match(OpenSearchPPLParser.PERCENTILE); - this.state = 469; - this.match(OpenSearchPPLParser.LESS); - this.state = 470; - _localctx._value = this.integerLiteral(); - this.state = 471; - this.match(OpenSearchPPLParser.GREATER); - this.state = 472; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 473; - _localctx._aggField = this.fieldExpression(); - this.state = 474; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public expression(): ExpressionContext { - let _localctx: ExpressionContext = new ExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 62, OpenSearchPPLParser.RULE_expression); - try { - this.state = 479; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 37, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 476; - this.logicalExpression(0); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 477; - this.comparisonExpression(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 478; - this.valueExpression(0); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - - public logicalExpression(): LogicalExpressionContext; - public logicalExpression(_p: number): LogicalExpressionContext; - // @RuleVersion(0) - public logicalExpression(_p?: number): LogicalExpressionContext { - if (_p === undefined) { - _p = 0; - } - - let _parentctx: ParserRuleContext = this._ctx; - let _parentState: number = this.state; - let _localctx: LogicalExpressionContext = new LogicalExpressionContext(this._ctx, _parentState); - let _prevctx: LogicalExpressionContext = _localctx; - let _startState: number = 64; - this.enterRecursionRule(_localctx, 64, OpenSearchPPLParser.RULE_logicalExpression, _p); - let _la: number; - try { - let _alt: number; - this.enterOuterAlt(_localctx, 1); - { - this.state = 487; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 38, this._ctx) ) { - case 1: - { - _localctx = new ComparsionContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - - this.state = 482; - this.comparisonExpression(); - } - break; - - case 2: - { - _localctx = new LogicalNotContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 483; - this.match(OpenSearchPPLParser.NOT); - this.state = 484; - this.logicalExpression(6); - } - break; - - case 3: - { - _localctx = new BooleanExprContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 485; - this.booleanExpression(); - } - break; - - case 4: - { - _localctx = new RelevanceExprContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 486; - this.relevanceExpression(); - } - break; - } - this._ctx._stop = this._input.tryLT(-1); - this.state = 502; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = _localctx; - { - this.state = 500; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 40, this._ctx) ) { - case 1: - { - _localctx = new LogicalOrContext(new LogicalExpressionContext(_parentctx, _parentState)); - (_localctx as LogicalOrContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 489; - if (!(this.precpred(this._ctx, 5))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); - } - this.state = 490; - this.match(OpenSearchPPLParser.OR); - this.state = 491; - (_localctx as LogicalOrContext)._right = this.logicalExpression(6); - } - break; - - case 2: - { - _localctx = new LogicalAndContext(new LogicalExpressionContext(_parentctx, _parentState)); - (_localctx as LogicalAndContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 492; - if (!(this.precpred(this._ctx, 4))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); - } - this.state = 494; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.AND) { - { - this.state = 493; - this.match(OpenSearchPPLParser.AND); - } - } - - this.state = 496; - (_localctx as LogicalAndContext)._right = this.logicalExpression(5); - } - break; - - case 3: - { - _localctx = new LogicalXorContext(new LogicalExpressionContext(_parentctx, _parentState)); - (_localctx as LogicalXorContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 497; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 498; - this.match(OpenSearchPPLParser.XOR); - this.state = 499; - (_localctx as LogicalXorContext)._right = this.logicalExpression(4); - } - break; - } - } - } - this.state = 504; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.unrollRecursionContexts(_parentctx); - } - return _localctx; - } - // @RuleVersion(0) - public comparisonExpression(): ComparisonExpressionContext { - let _localctx: ComparisonExpressionContext = new ComparisonExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 66, OpenSearchPPLParser.RULE_comparisonExpression); - try { - this.state = 513; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 42, this._ctx) ) { - case 1: - _localctx = new CompareExprContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 505; - (_localctx as CompareExprContext)._left = this.valueExpression(0); - this.state = 506; - this.comparisonOperator(); - this.state = 507; - (_localctx as CompareExprContext)._right = this.valueExpression(0); - } - break; - - case 2: - _localctx = new InExprContext(_localctx); - this.enterOuterAlt(_localctx, 2); - { - this.state = 509; - this.valueExpression(0); - this.state = 510; - this.match(OpenSearchPPLParser.IN); - this.state = 511; - this.valueList(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - - public valueExpression(): ValueExpressionContext; - public valueExpression(_p: number): ValueExpressionContext; - // @RuleVersion(0) - public valueExpression(_p?: number): ValueExpressionContext { - if (_p === undefined) { - _p = 0; - } - - let _parentctx: ParserRuleContext = this._ctx; - let _parentState: number = this.state; - let _localctx: ValueExpressionContext = new ValueExpressionContext(this._ctx, _parentState); - let _prevctx: ValueExpressionContext = _localctx; - let _startState: number = 68; - this.enterRecursionRule(_localctx, 68, OpenSearchPPLParser.RULE_valueExpression, _p); - try { - let _alt: number; - this.enterOuterAlt(_localctx, 1); - { - this.state = 523; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.LT_PRTHS: - { - _localctx = new ParentheticBinaryArithmeticContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - - this.state = 516; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 517; - (_localctx as ParentheticBinaryArithmeticContext)._left = this.valueExpression(0); - this.state = 518; - this.binaryOperator(); - this.state = 519; - (_localctx as ParentheticBinaryArithmeticContext)._right = this.valueExpression(0); - this.state = 520; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.TRUE: - case OpenSearchPPLParser.FALSE: - case OpenSearchPPLParser.INTERVAL: - case OpenSearchPPLParser.MICROSECOND: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.PLUS: - case OpenSearchPPLParser.MINUS: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.ABS: - case OpenSearchPPLParser.CEIL: - case OpenSearchPPLParser.CEILING: - case OpenSearchPPLParser.CONV: - case OpenSearchPPLParser.CRC32: - case OpenSearchPPLParser.E: - case OpenSearchPPLParser.EXP: - case OpenSearchPPLParser.FLOOR: - case OpenSearchPPLParser.LN: - case OpenSearchPPLParser.LOG: - case OpenSearchPPLParser.LOG10: - case OpenSearchPPLParser.LOG2: - case OpenSearchPPLParser.MOD: - case OpenSearchPPLParser.PI: - case OpenSearchPPLParser.POW: - case OpenSearchPPLParser.POWER: - case OpenSearchPPLParser.RAND: - case OpenSearchPPLParser.ROUND: - case OpenSearchPPLParser.SIGN: - case OpenSearchPPLParser.SQRT: - case OpenSearchPPLParser.TRUNCATE: - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - case OpenSearchPPLParser.ADDDATE: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.DATE_ADD: - case OpenSearchPPLParser.DATE_SUB: - case OpenSearchPPLParser.DAYOFMONTH: - case OpenSearchPPLParser.DAYOFWEEK: - case OpenSearchPPLParser.DAYOFYEAR: - case OpenSearchPPLParser.DAYNAME: - case OpenSearchPPLParser.FROM_DAYS: - case OpenSearchPPLParser.MONTHNAME: - case OpenSearchPPLParser.SUBDATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIME_TO_SEC: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.DATE_FORMAT: - case OpenSearchPPLParser.TO_DAYS: - case OpenSearchPPLParser.SUBSTR: - case OpenSearchPPLParser.SUBSTRING: - case OpenSearchPPLParser.LTRIM: - case OpenSearchPPLParser.RTRIM: - case OpenSearchPPLParser.TRIM: - case OpenSearchPPLParser.LOWER: - case OpenSearchPPLParser.UPPER: - case OpenSearchPPLParser.CONCAT: - case OpenSearchPPLParser.CONCAT_WS: - case OpenSearchPPLParser.LENGTH: - case OpenSearchPPLParser.STRCMP: - case OpenSearchPPLParser.RIGHT: - case OpenSearchPPLParser.LEFT: - case OpenSearchPPLParser.ASCII: - case OpenSearchPPLParser.LOCATE: - case OpenSearchPPLParser.REPLACE: - case OpenSearchPPLParser.CAST: - case OpenSearchPPLParser.LIKE: - case OpenSearchPPLParser.ISNULL: - case OpenSearchPPLParser.ISNOTNULL: - case OpenSearchPPLParser.IFNULL: - case OpenSearchPPLParser.NULLIF: - case OpenSearchPPLParser.IF: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.INTEGER_LITERAL: - case OpenSearchPPLParser.DECIMAL_LITERAL: - case OpenSearchPPLParser.DQUOTA_STRING: - case OpenSearchPPLParser.SQUOTA_STRING: - case OpenSearchPPLParser.BQUOTA_STRING: - { - _localctx = new ValueExpressionDefaultContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 522; - this.primaryExpression(); - } - break; - default: - throw new NoViableAltException(this); - } - this._ctx._stop = this._input.tryLT(-1); - this.state = 531; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = _localctx; - { - { - _localctx = new BinaryArithmeticContext(new ValueExpressionContext(_parentctx, _parentState)); - (_localctx as BinaryArithmeticContext)._left = _prevctx; - this.pushNewRecursionContext(_localctx, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 525; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 526; - this.binaryOperator(); - this.state = 527; - (_localctx as BinaryArithmeticContext)._right = this.valueExpression(4); - } - } - } - this.state = 533; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 44, this._ctx); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.unrollRecursionContexts(_parentctx); - } - return _localctx; - } - // @RuleVersion(0) - public primaryExpression(): PrimaryExpressionContext { - let _localctx: PrimaryExpressionContext = new PrimaryExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 70, OpenSearchPPLParser.RULE_primaryExpression); - try { - this.state = 538; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 45, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 534; - this.evalFunctionCall(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 535; - this.dataTypeFunctionCall(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 536; - this.fieldExpression(); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 537; - this.literalValue(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public booleanExpression(): BooleanExpressionContext { - let _localctx: BooleanExpressionContext = new BooleanExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 72, OpenSearchPPLParser.RULE_booleanExpression); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 540; - this.booleanFunctionCall(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceExpression(): RelevanceExpressionContext { - let _localctx: RelevanceExpressionContext = new RelevanceExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 74, OpenSearchPPLParser.RULE_relevanceExpression); - try { - this.state = 544; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.MATCH: - case OpenSearchPPLParser.MATCH_PHRASE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 542; - this.singleFieldRelevanceFunction(); - } - break; - case OpenSearchPPLParser.SIMPLE_QUERY_STRING: - this.enterOuterAlt(_localctx, 2); - { - this.state = 543; - this.multiFieldRelevanceFunction(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext { - let _localctx: SingleFieldRelevanceFunctionContext = new SingleFieldRelevanceFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 76, OpenSearchPPLParser.RULE_singleFieldRelevanceFunction); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 546; - this.singleFieldRelevanceFunctionName(); - this.state = 547; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 548; - _localctx._field = this.relevanceField(); - this.state = 549; - this.match(OpenSearchPPLParser.COMMA); - this.state = 550; - _localctx._query = this.relevanceQuery(); - this.state = 555; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 551; - this.match(OpenSearchPPLParser.COMMA); - this.state = 552; - this.relevanceArg(); - } - } - this.state = 557; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 558; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext { - let _localctx: MultiFieldRelevanceFunctionContext = new MultiFieldRelevanceFunctionContext(this._ctx, this.state); - this.enterRule(_localctx, 78, OpenSearchPPLParser.RULE_multiFieldRelevanceFunction); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 560; - this.multiFieldRelevanceFunctionName(); - this.state = 561; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 562; - this.match(OpenSearchPPLParser.LT_SQR_PRTHS); - this.state = 563; - _localctx._field = this.relevanceFieldAndWeight(); - this.state = 568; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 564; - this.match(OpenSearchPPLParser.COMMA); - this.state = 565; - _localctx._field = this.relevanceFieldAndWeight(); - } - } - this.state = 570; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 571; - this.match(OpenSearchPPLParser.RT_SQR_PRTHS); - this.state = 572; - this.match(OpenSearchPPLParser.COMMA); - this.state = 573; - _localctx._query = this.relevanceQuery(); - this.state = 578; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 574; - this.match(OpenSearchPPLParser.COMMA); - this.state = 575; - this.relevanceArg(); - } - } - this.state = 580; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 581; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public tableSource(): TableSourceContext { - let _localctx: TableSourceContext = new TableSourceContext(this._ctx, this.state); - this.enterRule(_localctx, 80, OpenSearchPPLParser.RULE_tableSource); - try { - this.state = 585; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 583; - this.qualifiedName(); - } - break; - case OpenSearchPPLParser.ID_DATE_SUFFIX: - this.enterOuterAlt(_localctx, 2); - { - this.state = 584; - this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fieldList(): FieldListContext { - let _localctx: FieldListContext = new FieldListContext(this._ctx, this.state); - this.enterRule(_localctx, 82, OpenSearchPPLParser.RULE_fieldList); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 587; - this.fieldExpression(); - this.state = 592; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 588; - this.match(OpenSearchPPLParser.COMMA); - this.state = 589; - this.fieldExpression(); - } - } - this.state = 594; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wcFieldList(): WcFieldListContext { - let _localctx: WcFieldListContext = new WcFieldListContext(this._ctx, this.state); - this.enterRule(_localctx, 84, OpenSearchPPLParser.RULE_wcFieldList); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 595; - this.wcFieldExpression(); - this.state = 600; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 596; - this.match(OpenSearchPPLParser.COMMA); - this.state = 597; - this.wcFieldExpression(); - } - } - this.state = 602; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortField(): SortFieldContext { - let _localctx: SortFieldContext = new SortFieldContext(this._ctx, this.state); - this.enterRule(_localctx, 86, OpenSearchPPLParser.RULE_sortField); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 604; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 603; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 606; - this.sortFieldExpression(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public sortFieldExpression(): SortFieldExpressionContext { - let _localctx: SortFieldExpressionContext = new SortFieldExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 88, OpenSearchPPLParser.RULE_sortFieldExpression); - try { - this.state = 629; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 608; - this.fieldExpression(); - } - break; - case OpenSearchPPLParser.AUTO: - this.enterOuterAlt(_localctx, 2); - { - this.state = 609; - this.match(OpenSearchPPLParser.AUTO); - this.state = 610; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 611; - this.fieldExpression(); - this.state = 612; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.STR: - this.enterOuterAlt(_localctx, 3); - { - this.state = 614; - this.match(OpenSearchPPLParser.STR); - this.state = 615; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 616; - this.fieldExpression(); - this.state = 617; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.IP: - this.enterOuterAlt(_localctx, 4); - { - this.state = 619; - this.match(OpenSearchPPLParser.IP); - this.state = 620; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 621; - this.fieldExpression(); - this.state = 622; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - case OpenSearchPPLParser.NUM: - this.enterOuterAlt(_localctx, 5); - { - this.state = 624; - this.match(OpenSearchPPLParser.NUM); - this.state = 625; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 626; - this.fieldExpression(); - this.state = 627; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public fieldExpression(): FieldExpressionContext { - let _localctx: FieldExpressionContext = new FieldExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 90, OpenSearchPPLParser.RULE_fieldExpression); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 631; - this.qualifiedName(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wcFieldExpression(): WcFieldExpressionContext { - let _localctx: WcFieldExpressionContext = new WcFieldExpressionContext(this._ctx, this.state); - this.enterRule(_localctx, 92, OpenSearchPPLParser.RULE_wcFieldExpression); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 633; - this.wcQualifiedName(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalFunctionCall(): EvalFunctionCallContext { - let _localctx: EvalFunctionCallContext = new EvalFunctionCallContext(this._ctx, this.state); - this.enterRule(_localctx, 94, OpenSearchPPLParser.RULE_evalFunctionCall); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 635; - this.evalFunctionName(); - this.state = 636; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 637; - this.functionArgs(); - this.state = 638; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public dataTypeFunctionCall(): DataTypeFunctionCallContext { - let _localctx: DataTypeFunctionCallContext = new DataTypeFunctionCallContext(this._ctx, this.state); - this.enterRule(_localctx, 96, OpenSearchPPLParser.RULE_dataTypeFunctionCall); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 640; - this.match(OpenSearchPPLParser.CAST); - this.state = 641; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 642; - this.expression(); - this.state = 643; - this.match(OpenSearchPPLParser.AS); - this.state = 644; - this.convertedDataType(); - this.state = 645; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public booleanFunctionCall(): BooleanFunctionCallContext { - let _localctx: BooleanFunctionCallContext = new BooleanFunctionCallContext(this._ctx, this.state); - this.enterRule(_localctx, 98, OpenSearchPPLParser.RULE_booleanFunctionCall); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 647; - this.conditionFunctionBase(); - this.state = 648; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 649; - this.functionArgs(); - this.state = 650; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public convertedDataType(): ConvertedDataTypeContext { - let _localctx: ConvertedDataTypeContext = new ConvertedDataTypeContext(this._ctx, this.state); - this.enterRule(_localctx, 100, OpenSearchPPLParser.RULE_convertedDataType); - try { - this.state = 662; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.DATE: - this.enterOuterAlt(_localctx, 1); - { - this.state = 652; - _localctx._typeName = this.match(OpenSearchPPLParser.DATE); - } - break; - case OpenSearchPPLParser.TIME: - this.enterOuterAlt(_localctx, 2); - { - this.state = 653; - _localctx._typeName = this.match(OpenSearchPPLParser.TIME); - } - break; - case OpenSearchPPLParser.TIMESTAMP: - this.enterOuterAlt(_localctx, 3); - { - this.state = 654; - _localctx._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); - } - break; - case OpenSearchPPLParser.INT: - this.enterOuterAlt(_localctx, 4); - { - this.state = 655; - _localctx._typeName = this.match(OpenSearchPPLParser.INT); - } - break; - case OpenSearchPPLParser.INTEGER: - this.enterOuterAlt(_localctx, 5); - { - this.state = 656; - _localctx._typeName = this.match(OpenSearchPPLParser.INTEGER); - } - break; - case OpenSearchPPLParser.DOUBLE: - this.enterOuterAlt(_localctx, 6); - { - this.state = 657; - _localctx._typeName = this.match(OpenSearchPPLParser.DOUBLE); - } - break; - case OpenSearchPPLParser.LONG: - this.enterOuterAlt(_localctx, 7); - { - this.state = 658; - _localctx._typeName = this.match(OpenSearchPPLParser.LONG); - } - break; - case OpenSearchPPLParser.FLOAT: - this.enterOuterAlt(_localctx, 8); - { - this.state = 659; - _localctx._typeName = this.match(OpenSearchPPLParser.FLOAT); - } - break; - case OpenSearchPPLParser.STRING: - this.enterOuterAlt(_localctx, 9); - { - this.state = 660; - _localctx._typeName = this.match(OpenSearchPPLParser.STRING); - } - break; - case OpenSearchPPLParser.BOOLEAN: - this.enterOuterAlt(_localctx, 10); - { - this.state = 661; - _localctx._typeName = this.match(OpenSearchPPLParser.BOOLEAN); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public evalFunctionName(): EvalFunctionNameContext { - let _localctx: EvalFunctionNameContext = new EvalFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 102, OpenSearchPPLParser.RULE_evalFunctionName); - try { - this.state = 668; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.ABS: - case OpenSearchPPLParser.CEIL: - case OpenSearchPPLParser.CEILING: - case OpenSearchPPLParser.CONV: - case OpenSearchPPLParser.CRC32: - case OpenSearchPPLParser.E: - case OpenSearchPPLParser.EXP: - case OpenSearchPPLParser.FLOOR: - case OpenSearchPPLParser.LN: - case OpenSearchPPLParser.LOG: - case OpenSearchPPLParser.LOG10: - case OpenSearchPPLParser.LOG2: - case OpenSearchPPLParser.MOD: - case OpenSearchPPLParser.PI: - case OpenSearchPPLParser.POW: - case OpenSearchPPLParser.POWER: - case OpenSearchPPLParser.RAND: - case OpenSearchPPLParser.ROUND: - case OpenSearchPPLParser.SIGN: - case OpenSearchPPLParser.SQRT: - case OpenSearchPPLParser.TRUNCATE: - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - this.enterOuterAlt(_localctx, 1); - { - this.state = 664; - this.mathematicalFunctionBase(); - } - break; - case OpenSearchPPLParser.MICROSECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.ADDDATE: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.DATE_ADD: - case OpenSearchPPLParser.DATE_SUB: - case OpenSearchPPLParser.DAYOFMONTH: - case OpenSearchPPLParser.DAYOFWEEK: - case OpenSearchPPLParser.DAYOFYEAR: - case OpenSearchPPLParser.DAYNAME: - case OpenSearchPPLParser.FROM_DAYS: - case OpenSearchPPLParser.MONTHNAME: - case OpenSearchPPLParser.SUBDATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIME_TO_SEC: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.DATE_FORMAT: - case OpenSearchPPLParser.TO_DAYS: - this.enterOuterAlt(_localctx, 2); - { - this.state = 665; - this.dateAndTimeFunctionBase(); - } - break; - case OpenSearchPPLParser.SUBSTR: - case OpenSearchPPLParser.SUBSTRING: - case OpenSearchPPLParser.LTRIM: - case OpenSearchPPLParser.RTRIM: - case OpenSearchPPLParser.TRIM: - case OpenSearchPPLParser.LOWER: - case OpenSearchPPLParser.UPPER: - case OpenSearchPPLParser.CONCAT: - case OpenSearchPPLParser.CONCAT_WS: - case OpenSearchPPLParser.LENGTH: - case OpenSearchPPLParser.STRCMP: - case OpenSearchPPLParser.RIGHT: - case OpenSearchPPLParser.LEFT: - case OpenSearchPPLParser.ASCII: - case OpenSearchPPLParser.LOCATE: - case OpenSearchPPLParser.REPLACE: - this.enterOuterAlt(_localctx, 3); - { - this.state = 666; - this.textFunctionBase(); - } - break; - case OpenSearchPPLParser.LIKE: - case OpenSearchPPLParser.ISNULL: - case OpenSearchPPLParser.ISNOTNULL: - case OpenSearchPPLParser.IFNULL: - case OpenSearchPPLParser.NULLIF: - case OpenSearchPPLParser.IF: - this.enterOuterAlt(_localctx, 4); - { - this.state = 667; - this.conditionFunctionBase(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public functionArgs(): FunctionArgsContext { - let _localctx: FunctionArgsContext = new FunctionArgsContext(this._ctx, this.state); - this.enterRule(_localctx, 104, OpenSearchPPLParser.RULE_functionArgs); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 678; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.D || ((((_la - 52)) & ~0x1F) === 0 && ((1 << (_la - 52)) & ((1 << (OpenSearchPPLParser.TRUE - 52)) | (1 << (OpenSearchPPLParser.FALSE - 52)) | (1 << (OpenSearchPPLParser.INTERVAL - 52)) | (1 << (OpenSearchPPLParser.MICROSECOND - 52)) | (1 << (OpenSearchPPLParser.MILLISECOND - 52)) | (1 << (OpenSearchPPLParser.SECOND - 52)) | (1 << (OpenSearchPPLParser.MINUTE - 52)) | (1 << (OpenSearchPPLParser.HOUR - 52)) | (1 << (OpenSearchPPLParser.DAY - 52)) | (1 << (OpenSearchPPLParser.WEEK - 52)) | (1 << (OpenSearchPPLParser.MONTH - 52)) | (1 << (OpenSearchPPLParser.QUARTER - 52)) | (1 << (OpenSearchPPLParser.YEAR - 52)))) !== 0) || ((((_la - 90)) & ~0x1F) === 0 && ((1 << (_la - 90)) & ((1 << (OpenSearchPPLParser.DOT - 90)) | (1 << (OpenSearchPPLParser.PLUS - 90)) | (1 << (OpenSearchPPLParser.MINUS - 90)) | (1 << (OpenSearchPPLParser.LT_PRTHS - 90)) | (1 << (OpenSearchPPLParser.BACKTICK - 90)) | (1 << (OpenSearchPPLParser.AVG - 90)) | (1 << (OpenSearchPPLParser.COUNT - 90)) | (1 << (OpenSearchPPLParser.MAX - 90)))) !== 0) || ((((_la - 122)) & ~0x1F) === 0 && ((1 << (_la - 122)) & ((1 << (OpenSearchPPLParser.MIN - 122)) | (1 << (OpenSearchPPLParser.SUM - 122)) | (1 << (OpenSearchPPLParser.VAR_SAMP - 122)) | (1 << (OpenSearchPPLParser.VAR_POP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_SAMP - 122)) | (1 << (OpenSearchPPLParser.STDDEV_POP - 122)) | (1 << (OpenSearchPPLParser.FIRST - 122)) | (1 << (OpenSearchPPLParser.LAST - 122)) | (1 << (OpenSearchPPLParser.ABS - 122)) | (1 << (OpenSearchPPLParser.CEIL - 122)) | (1 << (OpenSearchPPLParser.CEILING - 122)) | (1 << (OpenSearchPPLParser.CONV - 122)))) !== 0) || ((((_la - 154)) & ~0x1F) === 0 && ((1 << (_la - 154)) & ((1 << (OpenSearchPPLParser.CRC32 - 154)) | (1 << (OpenSearchPPLParser.E - 154)) | (1 << (OpenSearchPPLParser.EXP - 154)) | (1 << (OpenSearchPPLParser.FLOOR - 154)) | (1 << (OpenSearchPPLParser.LN - 154)) | (1 << (OpenSearchPPLParser.LOG - 154)) | (1 << (OpenSearchPPLParser.LOG10 - 154)) | (1 << (OpenSearchPPLParser.LOG2 - 154)) | (1 << (OpenSearchPPLParser.MOD - 154)) | (1 << (OpenSearchPPLParser.PI - 154)) | (1 << (OpenSearchPPLParser.POW - 154)) | (1 << (OpenSearchPPLParser.POWER - 154)) | (1 << (OpenSearchPPLParser.RAND - 154)) | (1 << (OpenSearchPPLParser.ROUND - 154)) | (1 << (OpenSearchPPLParser.SIGN - 154)) | (1 << (OpenSearchPPLParser.SQRT - 154)) | (1 << (OpenSearchPPLParser.TRUNCATE - 154)) | (1 << (OpenSearchPPLParser.ACOS - 154)) | (1 << (OpenSearchPPLParser.ASIN - 154)) | (1 << (OpenSearchPPLParser.ATAN - 154)) | (1 << (OpenSearchPPLParser.ATAN2 - 154)) | (1 << (OpenSearchPPLParser.COS - 154)) | (1 << (OpenSearchPPLParser.COT - 154)) | (1 << (OpenSearchPPLParser.DEGREES - 154)) | (1 << (OpenSearchPPLParser.RADIANS - 154)) | (1 << (OpenSearchPPLParser.SIN - 154)) | (1 << (OpenSearchPPLParser.TAN - 154)) | (1 << (OpenSearchPPLParser.ADDDATE - 154)) | (1 << (OpenSearchPPLParser.DATE - 154)) | (1 << (OpenSearchPPLParser.DATE_ADD - 154)) | (1 << (OpenSearchPPLParser.DATE_SUB - 154)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 154)))) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & ((1 << (OpenSearchPPLParser.DAYOFWEEK - 186)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 186)) | (1 << (OpenSearchPPLParser.DAYNAME - 186)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 186)) | (1 << (OpenSearchPPLParser.MONTHNAME - 186)) | (1 << (OpenSearchPPLParser.SUBDATE - 186)) | (1 << (OpenSearchPPLParser.TIME - 186)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 186)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 186)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 186)) | (1 << (OpenSearchPPLParser.TO_DAYS - 186)) | (1 << (OpenSearchPPLParser.SUBSTR - 186)) | (1 << (OpenSearchPPLParser.SUBSTRING - 186)) | (1 << (OpenSearchPPLParser.LTRIM - 186)) | (1 << (OpenSearchPPLParser.RTRIM - 186)) | (1 << (OpenSearchPPLParser.TRIM - 186)) | (1 << (OpenSearchPPLParser.LOWER - 186)) | (1 << (OpenSearchPPLParser.UPPER - 186)) | (1 << (OpenSearchPPLParser.CONCAT - 186)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 186)) | (1 << (OpenSearchPPLParser.LENGTH - 186)) | (1 << (OpenSearchPPLParser.STRCMP - 186)) | (1 << (OpenSearchPPLParser.RIGHT - 186)) | (1 << (OpenSearchPPLParser.LEFT - 186)) | (1 << (OpenSearchPPLParser.ASCII - 186)) | (1 << (OpenSearchPPLParser.LOCATE - 186)) | (1 << (OpenSearchPPLParser.REPLACE - 186)) | (1 << (OpenSearchPPLParser.CAST - 186)) | (1 << (OpenSearchPPLParser.LIKE - 186)) | (1 << (OpenSearchPPLParser.ISNULL - 186)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 186)))) !== 0) || ((((_la - 218)) & ~0x1F) === 0 && ((1 << (_la - 218)) & ((1 << (OpenSearchPPLParser.IFNULL - 218)) | (1 << (OpenSearchPPLParser.NULLIF - 218)) | (1 << (OpenSearchPPLParser.IF - 218)))) !== 0) || ((((_la - 254)) & ~0x1F) === 0 && ((1 << (_la - 254)) & ((1 << (OpenSearchPPLParser.SPAN - 254)) | (1 << (OpenSearchPPLParser.MS - 254)) | (1 << (OpenSearchPPLParser.S - 254)) | (1 << (OpenSearchPPLParser.M - 254)) | (1 << (OpenSearchPPLParser.H - 254)) | (1 << (OpenSearchPPLParser.W - 254)) | (1 << (OpenSearchPPLParser.Q - 254)) | (1 << (OpenSearchPPLParser.Y - 254)) | (1 << (OpenSearchPPLParser.ID - 254)) | (1 << (OpenSearchPPLParser.INTEGER_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DECIMAL_LITERAL - 254)) | (1 << (OpenSearchPPLParser.DQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.SQUOTA_STRING - 254)) | (1 << (OpenSearchPPLParser.BQUOTA_STRING - 254)))) !== 0)) { - { - this.state = 670; - this.functionArg(); - this.state = 675; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 671; - this.match(OpenSearchPPLParser.COMMA); - this.state = 672; - this.functionArg(); - } - } - this.state = 677; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public functionArg(): FunctionArgContext { - let _localctx: FunctionArgContext = new FunctionArgContext(this._ctx, this.state); - this.enterRule(_localctx, 106, OpenSearchPPLParser.RULE_functionArg); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 680; - this.valueExpression(0); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceArg(): RelevanceArgContext { - let _localctx: RelevanceArgContext = new RelevanceArgContext(this._ctx, this.state); - this.enterRule(_localctx, 108, OpenSearchPPLParser.RULE_relevanceArg); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 682; - this.relevanceArgName(); - this.state = 683; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 684; - this.relevanceArgValue(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceArgName(): RelevanceArgNameContext { - let _localctx: RelevanceArgNameContext = new RelevanceArgNameContext(this._ctx, this.state); - this.enterRule(_localctx, 110, OpenSearchPPLParser.RULE_relevanceArgName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 686; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.FIELDS || _la === OpenSearchPPLParser.TIME_ZONE || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & ((1 << (OpenSearchPPLParser.ALLOW_LEADING_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZE_WILDCARD - 224)) | (1 << (OpenSearchPPLParser.ANALYZER - 224)) | (1 << (OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY - 224)) | (1 << (OpenSearchPPLParser.BOOST - 224)) | (1 << (OpenSearchPPLParser.CUTOFF_FREQUENCY - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_FIELD - 224)) | (1 << (OpenSearchPPLParser.DEFAULT_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS - 224)) | (1 << (OpenSearchPPLParser.FLAGS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.FUZZY_TRANSPOSITIONS - 224)) | (1 << (OpenSearchPPLParser.FUZZY_REWRITE - 224)) | (1 << (OpenSearchPPLParser.FUZZINESS - 224)) | (1 << (OpenSearchPPLParser.LENIENT - 224)) | (1 << (OpenSearchPPLParser.LOW_FREQ_OPERATOR - 224)) | (1 << (OpenSearchPPLParser.MAX_DETERMINIZED_STATES - 224)) | (1 << (OpenSearchPPLParser.MAX_EXPANSIONS - 224)) | (1 << (OpenSearchPPLParser.MINIMUM_SHOULD_MATCH - 224)) | (1 << (OpenSearchPPLParser.OPERATOR - 224)) | (1 << (OpenSearchPPLParser.PHRASE_SLOP - 224)) | (1 << (OpenSearchPPLParser.PREFIX_LENGTH - 224)) | (1 << (OpenSearchPPLParser.QUOTE_ANALYZER - 224)) | (1 << (OpenSearchPPLParser.QUOTE_FIELD_SUFFIX - 224)) | (1 << (OpenSearchPPLParser.REWRITE - 224)) | (1 << (OpenSearchPPLParser.SLOP - 224)) | (1 << (OpenSearchPPLParser.TIE_BREAKER - 224)) | (1 << (OpenSearchPPLParser.TYPE - 224)) | (1 << (OpenSearchPPLParser.ZERO_TERMS_QUERY - 224)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext { - let _localctx: RelevanceFieldAndWeightContext = new RelevanceFieldAndWeightContext(this._ctx, this.state); - this.enterRule(_localctx, 112, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); - try { - this.state = 696; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 59, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 688; - _localctx._field = this.relevanceField(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 689; - _localctx._field = this.relevanceField(); - this.state = 690; - _localctx._weight = this.relevanceFieldWeight(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 692; - _localctx._field = this.relevanceField(); - this.state = 693; - this.match(OpenSearchPPLParser.BIT_XOR_OP); - this.state = 694; - _localctx._weight = this.relevanceFieldWeight(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceFieldWeight(): RelevanceFieldWeightContext { - let _localctx: RelevanceFieldWeightContext = new RelevanceFieldWeightContext(this._ctx, this.state); - this.enterRule(_localctx, 114, OpenSearchPPLParser.RULE_relevanceFieldWeight); - try { - this.state = 700; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 60, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 698; - this.integerLiteral(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 699; - this.decimalLiteral(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceField(): RelevanceFieldContext { - let _localctx: RelevanceFieldContext = new RelevanceFieldContext(this._ctx, this.state); - this.enterRule(_localctx, 116, OpenSearchPPLParser.RULE_relevanceField); - try { - this.state = 704; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 702; - this.qualifiedName(); - } - break; - case OpenSearchPPLParser.DQUOTA_STRING: - case OpenSearchPPLParser.SQUOTA_STRING: - this.enterOuterAlt(_localctx, 2); - { - this.state = 703; - this.stringLiteral(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceQuery(): RelevanceQueryContext { - let _localctx: RelevanceQueryContext = new RelevanceQueryContext(this._ctx, this.state); - this.enterRule(_localctx, 118, OpenSearchPPLParser.RULE_relevanceQuery); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 706; - this.relevanceArgValue(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public relevanceArgValue(): RelevanceArgValueContext { - let _localctx: RelevanceArgValueContext = new RelevanceArgValueContext(this._ctx, this.state); - this.enterRule(_localctx, 120, OpenSearchPPLParser.RULE_relevanceArgValue); - try { - this.state = 710; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 1); - { - this.state = 708; - this.qualifiedName(); - } - break; - case OpenSearchPPLParser.TRUE: - case OpenSearchPPLParser.FALSE: - case OpenSearchPPLParser.INTERVAL: - case OpenSearchPPLParser.PLUS: - case OpenSearchPPLParser.MINUS: - case OpenSearchPPLParser.INTEGER_LITERAL: - case OpenSearchPPLParser.DECIMAL_LITERAL: - case OpenSearchPPLParser.DQUOTA_STRING: - case OpenSearchPPLParser.SQUOTA_STRING: - this.enterOuterAlt(_localctx, 2); - { - this.state = 709; - this.literalValue(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public mathematicalFunctionBase(): MathematicalFunctionBaseContext { - let _localctx: MathematicalFunctionBaseContext = new MathematicalFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 122, OpenSearchPPLParser.RULE_mathematicalFunctionBase); - try { - this.state = 734; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.ABS: - this.enterOuterAlt(_localctx, 1); - { - this.state = 712; - this.match(OpenSearchPPLParser.ABS); - } - break; - case OpenSearchPPLParser.CEIL: - this.enterOuterAlt(_localctx, 2); - { - this.state = 713; - this.match(OpenSearchPPLParser.CEIL); - } - break; - case OpenSearchPPLParser.CEILING: - this.enterOuterAlt(_localctx, 3); - { - this.state = 714; - this.match(OpenSearchPPLParser.CEILING); - } - break; - case OpenSearchPPLParser.CONV: - this.enterOuterAlt(_localctx, 4); - { - this.state = 715; - this.match(OpenSearchPPLParser.CONV); - } - break; - case OpenSearchPPLParser.CRC32: - this.enterOuterAlt(_localctx, 5); - { - this.state = 716; - this.match(OpenSearchPPLParser.CRC32); - } - break; - case OpenSearchPPLParser.E: - this.enterOuterAlt(_localctx, 6); - { - this.state = 717; - this.match(OpenSearchPPLParser.E); - } - break; - case OpenSearchPPLParser.EXP: - this.enterOuterAlt(_localctx, 7); - { - this.state = 718; - this.match(OpenSearchPPLParser.EXP); - } - break; - case OpenSearchPPLParser.FLOOR: - this.enterOuterAlt(_localctx, 8); - { - this.state = 719; - this.match(OpenSearchPPLParser.FLOOR); - } - break; - case OpenSearchPPLParser.LN: - this.enterOuterAlt(_localctx, 9); - { - this.state = 720; - this.match(OpenSearchPPLParser.LN); - } - break; - case OpenSearchPPLParser.LOG: - this.enterOuterAlt(_localctx, 10); - { - this.state = 721; - this.match(OpenSearchPPLParser.LOG); - } - break; - case OpenSearchPPLParser.LOG10: - this.enterOuterAlt(_localctx, 11); - { - this.state = 722; - this.match(OpenSearchPPLParser.LOG10); - } - break; - case OpenSearchPPLParser.LOG2: - this.enterOuterAlt(_localctx, 12); - { - this.state = 723; - this.match(OpenSearchPPLParser.LOG2); - } - break; - case OpenSearchPPLParser.MOD: - this.enterOuterAlt(_localctx, 13); - { - this.state = 724; - this.match(OpenSearchPPLParser.MOD); - } - break; - case OpenSearchPPLParser.PI: - this.enterOuterAlt(_localctx, 14); - { - this.state = 725; - this.match(OpenSearchPPLParser.PI); - } - break; - case OpenSearchPPLParser.POW: - this.enterOuterAlt(_localctx, 15); - { - this.state = 726; - this.match(OpenSearchPPLParser.POW); - } - break; - case OpenSearchPPLParser.POWER: - this.enterOuterAlt(_localctx, 16); - { - this.state = 727; - this.match(OpenSearchPPLParser.POWER); - } - break; - case OpenSearchPPLParser.RAND: - this.enterOuterAlt(_localctx, 17); - { - this.state = 728; - this.match(OpenSearchPPLParser.RAND); - } - break; - case OpenSearchPPLParser.ROUND: - this.enterOuterAlt(_localctx, 18); - { - this.state = 729; - this.match(OpenSearchPPLParser.ROUND); - } - break; - case OpenSearchPPLParser.SIGN: - this.enterOuterAlt(_localctx, 19); - { - this.state = 730; - this.match(OpenSearchPPLParser.SIGN); - } - break; - case OpenSearchPPLParser.SQRT: - this.enterOuterAlt(_localctx, 20); - { - this.state = 731; - this.match(OpenSearchPPLParser.SQRT); - } - break; - case OpenSearchPPLParser.TRUNCATE: - this.enterOuterAlt(_localctx, 21); - { - this.state = 732; - this.match(OpenSearchPPLParser.TRUNCATE); - } - break; - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - this.enterOuterAlt(_localctx, 22); - { - this.state = 733; - this.trigonometricFunctionName(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public trigonometricFunctionName(): TrigonometricFunctionNameContext { - let _localctx: TrigonometricFunctionNameContext = new TrigonometricFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 124, OpenSearchPPLParser.RULE_trigonometricFunctionName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 736; - _la = this._input.LA(1); - if (!(((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & ((1 << (OpenSearchPPLParser.ACOS - 171)) | (1 << (OpenSearchPPLParser.ASIN - 171)) | (1 << (OpenSearchPPLParser.ATAN - 171)) | (1 << (OpenSearchPPLParser.ATAN2 - 171)) | (1 << (OpenSearchPPLParser.COS - 171)) | (1 << (OpenSearchPPLParser.COT - 171)) | (1 << (OpenSearchPPLParser.DEGREES - 171)) | (1 << (OpenSearchPPLParser.RADIANS - 171)) | (1 << (OpenSearchPPLParser.SIN - 171)) | (1 << (OpenSearchPPLParser.TAN - 171)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext { - let _localctx: DateAndTimeFunctionBaseContext = new DateAndTimeFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 126, OpenSearchPPLParser.RULE_dateAndTimeFunctionBase); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 738; - _la = this._input.LA(1); - if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)))) !== 0) || ((((_la - 181)) & ~0x1F) === 0 && ((1 << (_la - 181)) & ((1 << (OpenSearchPPLParser.ADDDATE - 181)) | (1 << (OpenSearchPPLParser.DATE - 181)) | (1 << (OpenSearchPPLParser.DATE_ADD - 181)) | (1 << (OpenSearchPPLParser.DATE_SUB - 181)) | (1 << (OpenSearchPPLParser.DAYOFMONTH - 181)) | (1 << (OpenSearchPPLParser.DAYOFWEEK - 181)) | (1 << (OpenSearchPPLParser.DAYOFYEAR - 181)) | (1 << (OpenSearchPPLParser.DAYNAME - 181)) | (1 << (OpenSearchPPLParser.FROM_DAYS - 181)) | (1 << (OpenSearchPPLParser.MONTHNAME - 181)) | (1 << (OpenSearchPPLParser.SUBDATE - 181)) | (1 << (OpenSearchPPLParser.TIME - 181)) | (1 << (OpenSearchPPLParser.TIME_TO_SEC - 181)) | (1 << (OpenSearchPPLParser.TIMESTAMP - 181)) | (1 << (OpenSearchPPLParser.DATE_FORMAT - 181)) | (1 << (OpenSearchPPLParser.TO_DAYS - 181)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public conditionFunctionBase(): ConditionFunctionBaseContext { - let _localctx: ConditionFunctionBaseContext = new ConditionFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 128, OpenSearchPPLParser.RULE_conditionFunctionBase); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 740; - _la = this._input.LA(1); - if (!(((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & ((1 << (OpenSearchPPLParser.LIKE - 215)) | (1 << (OpenSearchPPLParser.ISNULL - 215)) | (1 << (OpenSearchPPLParser.ISNOTNULL - 215)) | (1 << (OpenSearchPPLParser.IFNULL - 215)) | (1 << (OpenSearchPPLParser.NULLIF - 215)) | (1 << (OpenSearchPPLParser.IF - 215)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public textFunctionBase(): TextFunctionBaseContext { - let _localctx: TextFunctionBaseContext = new TextFunctionBaseContext(this._ctx, this.state); - this.enterRule(_localctx, 130, OpenSearchPPLParser.RULE_textFunctionBase); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 742; - _la = this._input.LA(1); - if (!(((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & ((1 << (OpenSearchPPLParser.SUBSTR - 197)) | (1 << (OpenSearchPPLParser.SUBSTRING - 197)) | (1 << (OpenSearchPPLParser.LTRIM - 197)) | (1 << (OpenSearchPPLParser.RTRIM - 197)) | (1 << (OpenSearchPPLParser.TRIM - 197)) | (1 << (OpenSearchPPLParser.LOWER - 197)) | (1 << (OpenSearchPPLParser.UPPER - 197)) | (1 << (OpenSearchPPLParser.CONCAT - 197)) | (1 << (OpenSearchPPLParser.CONCAT_WS - 197)) | (1 << (OpenSearchPPLParser.LENGTH - 197)) | (1 << (OpenSearchPPLParser.STRCMP - 197)) | (1 << (OpenSearchPPLParser.RIGHT - 197)) | (1 << (OpenSearchPPLParser.LEFT - 197)) | (1 << (OpenSearchPPLParser.ASCII - 197)) | (1 << (OpenSearchPPLParser.LOCATE - 197)) | (1 << (OpenSearchPPLParser.REPLACE - 197)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public comparisonOperator(): ComparisonOperatorContext { - let _localctx: ComparisonOperatorContext = new ComparisonOperatorContext(this._ctx, this.state); - this.enterRule(_localctx, 132, OpenSearchPPLParser.RULE_comparisonOperator); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 744; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.REGEXP || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & ((1 << (OpenSearchPPLParser.EQUAL - 91)) | (1 << (OpenSearchPPLParser.GREATER - 91)) | (1 << (OpenSearchPPLParser.LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_GREATER - 91)) | (1 << (OpenSearchPPLParser.NOT_LESS - 91)) | (1 << (OpenSearchPPLParser.NOT_EQUAL - 91)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public binaryOperator(): BinaryOperatorContext { - let _localctx: BinaryOperatorContext = new BinaryOperatorContext(this._ctx, this.state); - this.enterRule(_localctx, 134, OpenSearchPPLParser.RULE_binaryOperator); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 746; - _la = this._input.LA(1); - if (!(((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & ((1 << (OpenSearchPPLParser.PLUS - 97)) | (1 << (OpenSearchPPLParser.MINUS - 97)) | (1 << (OpenSearchPPLParser.STAR - 97)) | (1 << (OpenSearchPPLParser.DIVIDE - 97)) | (1 << (OpenSearchPPLParser.MODULE - 97)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { - let _localctx: SingleFieldRelevanceFunctionNameContext = new SingleFieldRelevanceFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 136, OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 748; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.MATCH || _la === OpenSearchPPLParser.MATCH_PHRASE)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { - let _localctx: MultiFieldRelevanceFunctionNameContext = new MultiFieldRelevanceFunctionNameContext(this._ctx, this.state); - this.enterRule(_localctx, 138, OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 750; - this.match(OpenSearchPPLParser.SIMPLE_QUERY_STRING); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public literalValue(): LiteralValueContext { - let _localctx: LiteralValueContext = new LiteralValueContext(this._ctx, this.state); - this.enterRule(_localctx, 140, OpenSearchPPLParser.RULE_literalValue); - try { - this.state = 757; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 64, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 752; - this.intervalLiteral(); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 753; - this.stringLiteral(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 754; - this.integerLiteral(); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 755; - this.decimalLiteral(); - } - break; - - case 5: - this.enterOuterAlt(_localctx, 5); - { - this.state = 756; - this.booleanLiteral(); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public intervalLiteral(): IntervalLiteralContext { - let _localctx: IntervalLiteralContext = new IntervalLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 142, OpenSearchPPLParser.RULE_intervalLiteral); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 759; - this.match(OpenSearchPPLParser.INTERVAL); - this.state = 760; - this.valueExpression(0); - this.state = 761; - this.intervalUnit(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public stringLiteral(): StringLiteralContext { - let _localctx: StringLiteralContext = new StringLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 144, OpenSearchPPLParser.RULE_stringLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 763; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.DQUOTA_STRING || _la === OpenSearchPPLParser.SQUOTA_STRING)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public integerLiteral(): IntegerLiteralContext { - let _localctx: IntegerLiteralContext = new IntegerLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 146, OpenSearchPPLParser.RULE_integerLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 766; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 765; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 768; - this.match(OpenSearchPPLParser.INTEGER_LITERAL); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public decimalLiteral(): DecimalLiteralContext { - let _localctx: DecimalLiteralContext = new DecimalLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 148, OpenSearchPPLParser.RULE_decimalLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 771; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS) { - { - this.state = 770; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.PLUS || _la === OpenSearchPPLParser.MINUS)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 773; - this.match(OpenSearchPPLParser.DECIMAL_LITERAL); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public booleanLiteral(): BooleanLiteralContext { - let _localctx: BooleanLiteralContext = new BooleanLiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 150, OpenSearchPPLParser.RULE_booleanLiteral); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 775; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.TRUE || _la === OpenSearchPPLParser.FALSE)) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public pattern(): PatternContext { - let _localctx: PatternContext = new PatternContext(this._ctx, this.state); - this.enterRule(_localctx, 152, OpenSearchPPLParser.RULE_pattern); - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 777; - this.stringLiteral(); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public intervalUnit(): IntervalUnitContext { - let _localctx: IntervalUnitContext = new IntervalUnitContext(this._ctx, this.state); - this.enterRule(_localctx, 154, OpenSearchPPLParser.RULE_intervalUnit); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 779; - _la = this._input.LA(1); - if (!(((((_la - 57)) & ~0x1F) === 0 && ((1 << (_la - 57)) & ((1 << (OpenSearchPPLParser.MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.SECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE - 57)) | (1 << (OpenSearchPPLParser.HOUR - 57)) | (1 << (OpenSearchPPLParser.DAY - 57)) | (1 << (OpenSearchPPLParser.WEEK - 57)) | (1 << (OpenSearchPPLParser.MONTH - 57)) | (1 << (OpenSearchPPLParser.QUARTER - 57)) | (1 << (OpenSearchPPLParser.YEAR - 57)) | (1 << (OpenSearchPPLParser.SECOND_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.MINUTE_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_SECOND - 57)) | (1 << (OpenSearchPPLParser.HOUR_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_MICROSECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_SECOND - 57)) | (1 << (OpenSearchPPLParser.DAY_MINUTE - 57)) | (1 << (OpenSearchPPLParser.DAY_HOUR - 57)) | (1 << (OpenSearchPPLParser.YEAR_MONTH - 57)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public timespanUnit(): TimespanUnitContext { - let _localctx: TimespanUnitContext = new TimespanUnitContext(this._ctx, this.state); - this.enterRule(_localctx, 156, OpenSearchPPLParser.RULE_timespanUnit); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 781; - _la = this._input.LA(1); - if (!(_la === OpenSearchPPLParser.D || ((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & ((1 << (OpenSearchPPLParser.MILLISECOND - 58)) | (1 << (OpenSearchPPLParser.SECOND - 58)) | (1 << (OpenSearchPPLParser.MINUTE - 58)) | (1 << (OpenSearchPPLParser.HOUR - 58)) | (1 << (OpenSearchPPLParser.DAY - 58)) | (1 << (OpenSearchPPLParser.WEEK - 58)) | (1 << (OpenSearchPPLParser.MONTH - 58)) | (1 << (OpenSearchPPLParser.QUARTER - 58)) | (1 << (OpenSearchPPLParser.YEAR - 58)))) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & ((1 << (OpenSearchPPLParser.MS - 255)) | (1 << (OpenSearchPPLParser.S - 255)) | (1 << (OpenSearchPPLParser.M - 255)) | (1 << (OpenSearchPPLParser.H - 255)) | (1 << (OpenSearchPPLParser.W - 255)) | (1 << (OpenSearchPPLParser.Q - 255)) | (1 << (OpenSearchPPLParser.Y - 255)))) !== 0))) { - this._errHandler.recoverInline(this); - } else { - if (this._input.LA(1) === Token.EOF) { - this.matchedEOF = true; - } - - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public valueList(): ValueListContext { - let _localctx: ValueListContext = new ValueListContext(this._ctx, this.state); - this.enterRule(_localctx, 158, OpenSearchPPLParser.RULE_valueList); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 783; - this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 784; - this.literalValue(); - this.state = 789; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.COMMA) { - { - { - this.state = 785; - this.match(OpenSearchPPLParser.COMMA); - this.state = 786; - this.literalValue(); - } - } - this.state = 791; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 792; - this.match(OpenSearchPPLParser.RT_PRTHS); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public qualifiedName(): QualifiedNameContext { - let _localctx: QualifiedNameContext = new QualifiedNameContext(this._ctx, this.state); - this.enterRule(_localctx, 160, OpenSearchPPLParser.RULE_qualifiedName); - try { - let _alt: number; - _localctx = new IdentsAsQualifiedNameContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 794; - this.ident(); - this.state = 799; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - { - { - this.state = 795; - this.match(OpenSearchPPLParser.DOT); - this.state = 796; - this.ident(); - } - } - } - this.state = 801; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 68, this._ctx); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wcQualifiedName(): WcQualifiedNameContext { - let _localctx: WcQualifiedNameContext = new WcQualifiedNameContext(this._ctx, this.state); - this.enterRule(_localctx, 162, OpenSearchPPLParser.RULE_wcQualifiedName); - let _la: number; - try { - _localctx = new IdentsAsWildcardQualifiedNameContext(_localctx); - this.enterOuterAlt(_localctx, 1); - { - this.state = 802; - this.wildcard(); - this.state = 807; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === OpenSearchPPLParser.DOT) { - { - { - this.state = 803; - this.match(OpenSearchPPLParser.DOT); - this.state = 804; - this.wildcard(); - } - } - this.state = 809; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public ident(): IdentContext { - let _localctx: IdentContext = new IdentContext(this._ctx, this.state); - this.enterRule(_localctx, 164, OpenSearchPPLParser.RULE_ident); - let _la: number; - try { - this.state = 820; - this._errHandler.sync(this); - switch (this._input.LA(1)) { - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.ID: - this.enterOuterAlt(_localctx, 1); - { - this.state = 811; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.DOT) { - { - this.state = 810; - this.match(OpenSearchPPLParser.DOT); - } - } - - this.state = 813; - this.match(OpenSearchPPLParser.ID); - } - break; - case OpenSearchPPLParser.BACKTICK: - this.enterOuterAlt(_localctx, 2); - { - this.state = 814; - this.match(OpenSearchPPLParser.BACKTICK); - this.state = 815; - this.ident(); - this.state = 816; - this.match(OpenSearchPPLParser.BACKTICK); - } - break; - case OpenSearchPPLParser.BQUOTA_STRING: - this.enterOuterAlt(_localctx, 3); - { - this.state = 818; - this.match(OpenSearchPPLParser.BQUOTA_STRING); - } - break; - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: - this.enterOuterAlt(_localctx, 4); - { - this.state = 819; - this.keywordsCanBeId(); - } - break; - default: - throw new NoViableAltException(this); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public wildcard(): WildcardContext { - let _localctx: WildcardContext = new WildcardContext(this._ctx, this.state); - this.enterRule(_localctx, 166, OpenSearchPPLParser.RULE_wildcard); - let _la: number; - try { - let _alt: number; - this.state = 845; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 74, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 822; - this.ident(); - this.state = 827; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); - while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - { - { - this.state = 823; - this.match(OpenSearchPPLParser.MODULE); - this.state = 824; - this.ident(); - } - } - } - this.state = 829; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 72, this._ctx); - } - this.state = 831; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === OpenSearchPPLParser.MODULE) { - { - this.state = 830; - this.match(OpenSearchPPLParser.MODULE); - } - } - - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 833; - this.match(OpenSearchPPLParser.SINGLE_QUOTE); - this.state = 834; - this.wildcard(); - this.state = 835; - this.match(OpenSearchPPLParser.SINGLE_QUOTE); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 837; - this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - this.state = 838; - this.wildcard(); - this.state = 839; - this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 841; - this.match(OpenSearchPPLParser.BACKTICK); - this.state = 842; - this.wildcard(); - this.state = 843; - this.match(OpenSearchPPLParser.BACKTICK); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) - public keywordsCanBeId(): KeywordsCanBeIdContext { - let _localctx: KeywordsCanBeIdContext = new KeywordsCanBeIdContext(this._ctx, this.state); - this.enterRule(_localctx, 168, OpenSearchPPLParser.RULE_keywordsCanBeId); - try { - this.state = 856; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 75, this._ctx) ) { - case 1: - this.enterOuterAlt(_localctx, 1); - { - this.state = 847; - this.match(OpenSearchPPLParser.D); - } - break; - - case 2: - this.enterOuterAlt(_localctx, 2); - { - this.state = 848; - this.statsFunctionName(); - } - break; - - case 3: - this.enterOuterAlt(_localctx, 3); - { - this.state = 849; - this.match(OpenSearchPPLParser.TIMESTAMP); - } - break; - - case 4: - this.enterOuterAlt(_localctx, 4); - { - this.state = 850; - this.match(OpenSearchPPLParser.DATE); - } - break; - - case 5: - this.enterOuterAlt(_localctx, 5); - { - this.state = 851; - this.match(OpenSearchPPLParser.TIME); - } - break; - - case 6: - this.enterOuterAlt(_localctx, 6); - { - this.state = 852; - this.match(OpenSearchPPLParser.FIRST); - } - break; - - case 7: - this.enterOuterAlt(_localctx, 7); - { - this.state = 853; - this.match(OpenSearchPPLParser.LAST); - } - break; - - case 8: - this.enterOuterAlt(_localctx, 8); - { - this.state = 854; - this.timespanUnit(); - } - break; - - case 9: - this.enterOuterAlt(_localctx, 9); - { - this.state = 855; - this.match(OpenSearchPPLParser.SPAN); - } - break; - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - - public sempred(_localctx: RuleContext, ruleIndex: number, predIndex: number): boolean { - switch (ruleIndex) { - case 32: - return this.logicalExpression_sempred(_localctx as LogicalExpressionContext, predIndex); - - case 34: - return this.valueExpression_sempred(_localctx as ValueExpressionContext, predIndex); - } - return true; - } - private logicalExpression_sempred(_localctx: LogicalExpressionContext, predIndex: number): boolean { - switch (predIndex) { - case 0: - return this.precpred(this._ctx, 5); - - case 1: - return this.precpred(this._ctx, 4); - - case 2: - return this.precpred(this._ctx, 3); - } - return true; - } - private valueExpression_sempred(_localctx: ValueExpressionContext, predIndex: number): boolean { - switch (predIndex) { - case 3: - return this.precpred(this._ctx, 3); - } - return true; - } - - private static readonly _serializedATNSegments: number = 2; - private static readonly _serializedATNSegment0: string = - "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\u010F\u035D\x04" + - "\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04" + - "\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r" + - "\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12" + - "\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t\x17" + - "\x04\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t\x1C" + - "\x04\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"\t\"\x04" + - "#\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x04)\t)\x04*\t*\x04+\t" + - "+\x04,\t,\x04-\t-\x04.\t.\x04/\t/\x040\t0\x041\t1\x042\t2\x043\t3\x04" + - "4\t4\x045\t5\x046\t6\x047\t7\x048\t8\x049\t9\x04:\t:\x04;\t;\x04<\t<\x04" + - "=\t=\x04>\t>\x04?\t?\x04@\t@\x04A\tA\x04B\tB\x04C\tC\x04D\tD\x04E\tE\x04" + - "F\tF\x04G\tG\x04H\tH\x04I\tI\x04J\tJ\x04K\tK\x04L\tL\x04M\tM\x04N\tN\x04" + - "O\tO\x04P\tP\x04Q\tQ\x04R\tR\x04S\tS\x04T\tT\x04U\tU\x04V\tV\x03\x02\x05" + - "\x02\xAE\n\x02\x03\x02\x03\x02\x03\x03\x03\x03\x03\x03\x07\x03\xB5\n\x03" + - "\f\x03\x0E\x03\xB8\v\x03\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" + - "\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x05\x04\xC7\n" + - "\x04\x03\x05\x05\x05\xCA\n\x05\x03\x05\x03\x05\x05\x05\xCE\n\x05\x03\x05" + - "\x03\x05\x03\x05\x03\x05\x05\x05\xD4\n\x05\x03\x05\x03\x05\x03\x05\x05" + - "\x05\xD9\n\x05\x03\x06\x03\x06\x03\x06\x03\x07\x03\x07\x05\x07\xE0\n\x07" + - "\x03\x07\x03\x07\x03\b\x03\b\x03\b\x03\b\x07\b\xE8\n\b\f\b\x0E\b\xEB\v" + - "\b\x03\t\x03\t\x03\t\x03\t\x05\t\xF1\n\t\x03\t\x03\t\x03\t\x05\t\xF6\n" + - "\t\x03\t\x03\t\x03\t\x05\t\xFB\n\t\x03\t\x03\t\x03\t\x07\t\u0100\n\t\f" + - "\t\x0E\t\u0103\v\t\x03\t\x05\t\u0106\n\t\x03\t\x03\t\x03\t\x05\t\u010B" + - "\n\t\x03\n\x03\n\x05\n\u010F\n\n\x03\n\x03\n\x03\n\x03\n\x05\n\u0115\n" + - "\n\x03\n\x03\n\x03\n\x05\n\u011A\n\n\x03\v\x03\v\x03\v\x03\f\x03\f\x03" + - "\f\x03\f\x07\f\u0123\n\f\f\f\x0E\f\u0126\v\f\x03\r\x03\r\x05\r\u012A\n" + - "\r\x03\r\x03\r\x05\r\u012E\n\r\x03\x0E\x03\x0E\x05\x0E\u0132\n\x0E\x03" + - "\x0E\x03\x0E\x05\x0E\u0136\n\x0E\x03\x0F\x03\x0F\x03\x0F\x05\x0F\u013B" + - "\n\x0F\x03\x10\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x07\x11\u0143\n" + - "\x11\f\x11\x0E\x11\u0146\v\x11\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12" + - "\x03\x12\x03\x12\x03\x12\x03\x12\x05\x12\u0151\n\x12\x03\x13\x03\x13\x07" + - "\x13\u0155\n\x13\f\x13\x0E\x13\u0158\v\x13\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03" + - "\x14\x03\x14\x03\x14\x05\x14\u017B\n\x14\x03\x15\x03\x15\x03\x15\x03\x15" + - "\x03\x15\x07\x15\u0182\n\x15\f\x15\x0E\x15\u0185\v\x15\x03\x15\x03\x15" + - "\x03\x15\x03\x15\x03\x15\x07\x15\u018C\n\x15\f\x15\x0E\x15\u018F\v\x15" + - "\x05\x15\u0191\n\x15\x03\x16\x03\x16\x03\x16\x03\x16\x03\x17\x03\x17\x03" + - "\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03" + - "\x18\x05\x18\u01A3\n\x18\x03\x19\x03\x19\x03\x19\x05\x19\u01A8\n\x19\x03" + - "\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x05\x1A\u01B0\n\x1A\x03\x1A" + - "\x03\x1A\x03\x1B\x03\x1B\x03\x1B\x07\x1B\u01B7\n\x1B\f\x1B\x0E\x1B\u01BA" + - "\v\x1B\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1D\x03\x1D\x03\x1D\x05\x1D" + - "\u01C3\n\x1D\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03" + - "\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x03\x1E\x05\x1E\u01D3\n\x1E" + - "\x03\x1F\x03\x1F\x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03 \x03!\x03!\x03" + - "!\x05!\u01E2\n!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01EA\n\"\x03" + - "\"\x03\"\x03\"\x03\"\x03\"\x05\"\u01F1\n\"\x03\"\x03\"\x03\"\x03\"\x07" + - "\"\u01F7\n\"\f\"\x0E\"\u01FA\v\"\x03#\x03#\x03#\x03#\x03#\x03#\x03#\x03" + - "#\x05#\u0204\n#\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x03$\x05$\u020E\n$" + - "\x03$\x03$\x03$\x03$\x07$\u0214\n$\f$\x0E$\u0217\v$\x03%\x03%\x03%\x03" + - "%\x05%\u021D\n%\x03&\x03&\x03\'\x03\'\x05\'\u0223\n\'\x03(\x03(\x03(\x03" + - "(\x03(\x03(\x03(\x07(\u022C\n(\f(\x0E(\u022F\v(\x03(\x03(\x03)\x03)\x03" + - ")\x03)\x03)\x03)\x07)\u0239\n)\f)\x0E)\u023C\v)\x03)\x03)\x03)\x03)\x03" + - ")\x07)\u0243\n)\f)\x0E)\u0246\v)\x03)\x03)\x03*\x03*\x05*\u024C\n*\x03" + - "+\x03+\x03+\x07+\u0251\n+\f+\x0E+\u0254\v+\x03,\x03,\x03,\x07,\u0259\n" + - ",\f,\x0E,\u025C\v,\x03-\x05-\u025F\n-\x03-\x03-\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03.\x03" + - ".\x03.\x03.\x05.\u0278\n.\x03/\x03/\x030\x030\x031\x031\x031\x031\x03" + - "1\x032\x032\x032\x032\x032\x032\x032\x033\x033\x033\x033\x033\x034\x03" + - "4\x034\x034\x034\x034\x034\x034\x034\x034\x054\u0299\n4\x035\x035\x03" + - "5\x035\x055\u029F\n5\x036\x036\x036\x076\u02A4\n6\f6\x0E6\u02A7\v6\x05" + - "6\u02A9\n6\x037\x037\x038\x038\x038\x038\x039\x039\x03:\x03:\x03:\x03" + - ":\x03:\x03:\x03:\x03:\x05:\u02BB\n:\x03;\x03;\x05;\u02BF\n;\x03<\x03<" + - "\x05<\u02C3\n<\x03=\x03=\x03>\x03>\x05>\u02C9\n>\x03?\x03?\x03?\x03?\x03" + - "?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03?\x03" + - "?\x03?\x03?\x03?\x05?\u02E1\n?\x03@\x03@\x03A\x03A\x03B\x03B\x03C\x03" + - "C\x03D\x03D\x03E\x03E\x03F\x03F\x03G\x03G\x03H\x03H\x03H\x03H\x03H\x05" + - "H\u02F8\nH\x03I\x03I\x03I\x03I\x03J\x03J\x03K\x05K\u0301\nK\x03K\x03K" + - "\x03L\x05L\u0306\nL\x03L\x03L\x03M\x03M\x03N\x03N\x03O\x03O\x03P\x03P" + - "\x03Q\x03Q\x03Q\x03Q\x07Q\u0316\nQ\fQ\x0EQ\u0319\vQ\x03Q\x03Q\x03R\x03" + - "R\x03R\x07R\u0320\nR\fR\x0ER\u0323\vR\x03S\x03S\x03S\x07S\u0328\nS\fS" + - "\x0ES\u032B\vS\x03T\x05T\u032E\nT\x03T\x03T\x03T\x03T\x03T\x03T\x03T\x05" + - "T\u0337\nT\x03U\x03U\x03U\x07U\u033C\nU\fU\x0EU\u033F\vU\x03U\x05U\u0342" + - "\nU\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x03U\x05U\u0350" + - "\nU\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x03V\x05V\u035B\nV\x03V\x02" + - "\x02\x04BFW\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E\x02\x10\x02" + - "\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02 \x02\"\x02$\x02" + - "&\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02<\x02>\x02@\x02" + - "B\x02D\x02F\x02H\x02J\x02L\x02N\x02P\x02R\x02T\x02V\x02X\x02Z\x02\\\x02" + - "^\x02`\x02b\x02d\x02f\x02h\x02j\x02l\x02n\x02p\x02r\x02t\x02v\x02x\x02" + - "z\x02|\x02~\x02\x80\x02\x82\x02\x84\x02\x86\x02\x88\x02\x8A\x02\x8C\x02" + - "\x8E\x02\x90\x02\x92\x02\x94\x02\x96\x02\x98\x02\x9A\x02\x9C\x02\x9E\x02" + - "\xA0\x02\xA2\x02\xA4\x02\xA6\x02\xA8\x02\xAA\x02\x02\x11\x03\x02cd\x04" + - "\x02vv\x97\x97\x07\x02tuyy||\x81\x81\x83\x86\x05\x02\x06\x06--\xE2\xFF" + - "\x03\x02\xAD\xB6\x05\x02;;=D\xB7\xC6\x03\x02\xD9\xDE\x04\x02\xC7\xCB\xCD" + - "\xD7\x04\x0288]b\x03\x02cg\x03\x02\xDF\xE0\x03\x02\u010C\u010D\x03\x02" + - "67\x04\x02;;=O\x05\x02\x16\x16\u01D6\x03\x02\x02\x02@\u01E1\x03\x02\x02\x02B\u01E9\x03\x02\x02\x02" + - "D\u0203\x03\x02\x02\x02F\u020D\x03\x02\x02\x02H\u021C\x03\x02\x02\x02" + - "J\u021E\x03\x02\x02\x02L\u0222\x03\x02\x02\x02N\u0224\x03\x02\x02\x02" + - "P\u0232\x03\x02\x02\x02R\u024B\x03\x02\x02\x02T\u024D\x03\x02\x02\x02" + - "V\u0255\x03\x02\x02\x02X\u025E\x03\x02\x02\x02Z\u0277\x03\x02\x02\x02" + - "\\\u0279\x03\x02\x02\x02^\u027B\x03\x02\x02\x02`\u027D\x03\x02\x02\x02" + - "b\u0282\x03\x02\x02\x02d\u0289\x03\x02\x02\x02f\u0298\x03\x02\x02\x02" + - "h\u029E\x03\x02\x02\x02j\u02A8\x03\x02\x02\x02l\u02AA\x03\x02\x02\x02" + - "n\u02AC\x03\x02\x02\x02p\u02B0\x03\x02\x02\x02r\u02BA\x03\x02\x02\x02" + - "t\u02BE\x03\x02\x02\x02v\u02C2\x03\x02\x02\x02x\u02C4\x03\x02\x02\x02" + - "z\u02C8\x03\x02\x02\x02|\u02E0\x03\x02\x02\x02~\u02E2\x03\x02\x02\x02" + - "\x80\u02E4\x03\x02\x02\x02\x82\u02E6\x03\x02\x02\x02\x84\u02E8\x03\x02" + - "\x02\x02\x86\u02EA\x03\x02\x02\x02\x88\u02EC\x03\x02\x02\x02\x8A\u02EE" + - "\x03\x02\x02\x02\x8C\u02F0\x03\x02\x02\x02\x8E\u02F7\x03\x02\x02\x02\x90" + - "\u02F9\x03\x02\x02\x02\x92\u02FD\x03\x02\x02\x02\x94\u0300\x03\x02\x02" + - "\x02\x96\u0305\x03\x02\x02\x02\x98\u0309\x03\x02\x02\x02\x9A\u030B\x03" + - "\x02\x02\x02\x9C\u030D\x03\x02\x02\x02\x9E\u030F\x03\x02\x02\x02\xA0\u0311" + - "\x03\x02\x02\x02\xA2\u031C\x03\x02\x02\x02\xA4\u0324\x03\x02\x02\x02\xA6" + - "\u0336\x03\x02\x02\x02\xA8\u034F\x03\x02\x02\x02\xAA\u035A\x03\x02\x02" + - "\x02\xAC\xAE\x05\x04\x03\x02\xAD\xAC\x03\x02\x02\x02\xAD\xAE\x03\x02\x02" + - "\x02\xAE\xAF\x03\x02\x02\x02\xAF\xB0\x07\x02\x02\x03\xB0\x03\x03\x02\x02" + - "\x02\xB1\xB6\x05\b\x05\x02\xB2\xB3\x07Z\x02\x02\xB3\xB5\x05\x06\x04\x02" + - "\xB4\xB2\x03\x02\x02\x02\xB5\xB8\x03\x02\x02\x02\xB6\xB4\x03\x02\x02\x02" + - "\xB6\xB7\x03\x02\x02\x02\xB7\x05\x03\x02\x02\x02\xB8\xB6\x03\x02\x02\x02" + - "\xB9\xC7\x05\n\x06\x02\xBA\xC7\x05\f\x07\x02\xBB\xC7\x05\x0E\b\x02\xBC" + - "\xC7\x05\x10\t\x02\xBD\xC7\x05\x12\n\x02\xBE\xC7\x05\x14\v\x02\xBF\xC7" + - "\x05\x16\f\x02\xC0\xC7\x05\x18\r\x02\xC1\xC7\x05\x1A\x0E\x02\xC2\xC7\x05" + - "\x1C\x0F\x02\xC3\xC7\x05\x1E\x10\x02\xC4\xC7\x05 \x11\x02\xC5\xC7\x05" + - "$\x13\x02\xC6\xB9\x03\x02\x02\x02\xC6\xBA\x03\x02\x02\x02\xC6\xBB\x03" + - "\x02\x02\x02\xC6\xBC\x03\x02\x02\x02\xC6\xBD\x03\x02\x02\x02\xC6\xBE\x03" + - "\x02\x02\x02\xC6\xBF\x03\x02\x02\x02\xC6\xC0\x03\x02\x02\x02\xC6\xC1\x03" + - "\x02\x02\x02\xC6\xC2\x03\x02\x02\x02\xC6\xC3\x03\x02\x02\x02\xC6\xC4\x03" + - "\x02\x02\x02\xC6\xC5\x03\x02\x02\x02\xC7\x07\x03\x02\x02\x02\xC8\xCA\x07" + - "\x03\x02\x02\xC9\xC8\x03\x02\x02\x02\xC9\xCA\x03\x02\x02\x02\xCA\xCB\x03" + - "\x02\x02\x02\xCB\xD9\x05(\x15\x02\xCC\xCE\x07\x03\x02\x02\xCD\xCC\x03" + - "\x02\x02\x02\xCD\xCE\x03\x02\x02\x02\xCE\xCF\x03\x02\x02\x02\xCF\xD0\x05" + - "(\x15\x02\xD0\xD1\x05B\"\x02\xD1\xD9\x03\x02\x02\x02\xD2\xD4\x07\x03\x02" + - "\x02\xD3\xD2\x03\x02\x02\x02\xD3\xD4\x03\x02\x02\x02\xD4\xD5\x03\x02\x02" + - "\x02\xD5\xD6\x05B\"\x02\xD6\xD7\x05(\x15\x02\xD7\xD9\x03\x02\x02\x02\xD8" + - "\xC9\x03\x02\x02\x02\xD8\xCD\x03\x02\x02\x02\xD8\xD3\x03\x02\x02\x02\xD9" + - "\t\x03\x02\x02\x02\xDA\xDB\x07\x05\x02\x02\xDB\xDC\x05B\"\x02\xDC\v\x03" + - "\x02\x02\x02\xDD\xDF\x07\x06\x02\x02\xDE\xE0\t\x02\x02\x02\xDF\xDE\x03" + - "\x02\x02\x02\xDF\xE0\x03\x02\x02\x02\xE0\xE1\x03\x02\x02\x02\xE1\xE2\x05" + - "T+\x02\xE2\r\x03\x02\x02\x02\xE3\xE4\x07\x07\x02\x02\xE4\xE9\x05*\x16" + - "\x02\xE5\xE6\x07[\x02\x02\xE6\xE8\x05*\x16\x02\xE7\xE5\x03\x02\x02\x02" + - "\xE8\xEB\x03\x02\x02\x02\xE9\xE7\x03\x02\x02\x02\xE9\xEA\x03\x02\x02\x02" + - "\xEA\x0F\x03\x02\x02\x02\xEB\xE9\x03\x02\x02\x02\xEC\xF0\x07\b\x02\x02" + - "\xED\xEE\x07 \x02\x02\xEE\xEF\x07]\x02\x02\xEF\xF1\x05\x94K\x02\xF0\xED" + - "\x03\x02\x02\x02\xF0\xF1\x03\x02\x02\x02\xF1\xF5\x03\x02\x02\x02\xF2\xF3" + - "\x07!\x02\x02\xF3\xF4\x07]\x02\x02\xF4\xF6\x05\x98M\x02\xF5\xF2\x03\x02" + - "\x02\x02\xF5\xF6\x03\x02\x02\x02\xF6\xFA\x03\x02\x02\x02\xF7\xF8\x07\"" + - "\x02\x02\xF8\xF9\x07]\x02\x02\xF9\xFB\x05\x92J\x02\xFA\xF7\x03\x02\x02" + - "\x02\xFA\xFB\x03\x02\x02\x02\xFB\xFC\x03\x02\x02\x02\xFC\u0101\x058\x1D" + - "\x02\xFD\xFE\x07[\x02\x02\xFE\u0100\x058\x1D\x02\xFF\xFD\x03\x02\x02\x02" + - "\u0100\u0103\x03\x02\x02\x02\u0101\xFF\x03\x02\x02\x02\u0101\u0102\x03" + - "\x02\x02\x02\u0102\u0105\x03\x02\x02\x02\u0103\u0101\x03\x02\x02\x02\u0104" + - "\u0106\x05.\x18\x02\u0105\u0104\x03\x02\x02\x02\u0105\u0106\x03\x02\x02" + - "\x02\u0106\u010A\x03\x02\x02\x02\u0107\u0108\x07\x1F\x02\x02\u0108\u0109" + - "\x07]\x02\x02\u0109\u010B\x05\x98M\x02\u010A\u0107\x03\x02\x02\x02\u010A" + - "\u010B\x03\x02\x02\x02\u010B\x11\x03\x02\x02\x02\u010C\u010E\x07\t\x02" + - "\x02\u010D\u010F\x05\x94K\x02\u010E\u010D\x03\x02\x02\x02\u010E\u010F" + - "\x03\x02\x02\x02\u010F\u0110\x03\x02\x02\x02\u0110\u0114\x05T+\x02\u0111" + - "\u0112\x07\x1D\x02\x02\u0112\u0113\x07]\x02\x02\u0113\u0115\x05\x98M\x02" + - "\u0114\u0111\x03\x02\x02\x02\u0114\u0115\x03\x02\x02\x02\u0115\u0119\x03" + - "\x02\x02\x02\u0116\u0117\x07\x1E\x02\x02\u0117\u0118\x07]\x02\x02\u0118" + - "\u011A\x05\x98M\x02\u0119\u0116\x03\x02\x02\x02\u0119\u011A\x03\x02\x02" + - "\x02\u011A\x13\x03\x02\x02\x02\u011B\u011C\x07\n\x02\x02\u011C\u011D\x05" + - "4\x1B\x02\u011D\x15\x03\x02\x02\x02\u011E\u011F\x07\v\x02\x02\u011F\u0124" + - "\x056\x1C\x02\u0120\u0121\x07[\x02\x02\u0121\u0123\x056\x1C\x02\u0122" + - "\u0120\x03\x02\x02\x02\u0123\u0126\x03\x02\x02\x02\u0124\u0122\x03\x02" + - "\x02\x02\u0124\u0125\x03\x02\x02\x02\u0125\x17\x03\x02\x02\x02\u0126\u0124" + - "\x03\x02\x02\x02\u0127\u0129\x07\f\x02\x02\u0128\u012A\x05\x94K\x02\u0129" + - "\u0128\x03\x02\x02\x02\u0129\u012A\x03\x02\x02\x02\u012A\u012D\x03\x02" + - "\x02\x02\u012B\u012C\x07\x04\x02\x02\u012C\u012E\x05\x94K\x02\u012D\u012B" + - "\x03\x02\x02\x02\u012D\u012E\x03\x02\x02\x02\u012E\x19\x03\x02\x02\x02" + - "\u012F\u0131\x07\r\x02\x02\u0130\u0132\x05\x94K\x02\u0131\u0130\x03\x02" + - "\x02\x02\u0131\u0132\x03\x02\x02\x02\u0132\u0133\x03\x02\x02\x02\u0133" + - "\u0135\x05T+\x02\u0134\u0136\x05,\x17\x02\u0135\u0134\x03\x02\x02\x02" + - "\u0135\u0136\x03\x02\x02\x02\u0136\x1B\x03\x02\x02\x02\u0137\u0138\x07" + - "\x0E\x02\x02\u0138\u013A\x05T+\x02\u0139\u013B\x05,\x17\x02\u013A\u0139" + - "\x03\x02\x02\x02\u013A\u013B\x03\x02\x02\x02\u013B\x1D\x03\x02\x02\x02" + - "\u013C\u013D\x07\x0F\x02\x02\u013D\u013E\x05@!\x02\u013E\u013F\x05\x9A" + - "N\x02\u013F\x1F\x03\x02\x02\x02\u0140\u0144\x07\x10\x02\x02\u0141\u0143" + - "\x05\"\x12\x02\u0142\u0141\x03\x02\x02\x02\u0143\u0146\x03\x02\x02\x02" + - "\u0144\u0142\x03\x02\x02\x02\u0144\u0145\x03\x02\x02\x02\u0145!\x03\x02" + - "\x02\x02\u0146\u0144\x03\x02\x02\x02\u0147\u0148\x07#\x02\x02\u0148\u0149" + - "\x07]\x02\x02\u0149\u0151\x05\x94K\x02\u014A\u014B\x07$\x02\x02\u014B" + - "\u014C\x07]\x02\x02\u014C\u0151\x05\x94K\x02\u014D\u014E\x07%\x02\x02" + - "\u014E\u014F\x07]\x02\x02\u014F\u0151\x05\x92J\x02\u0150\u0147\x03\x02" + - "\x02\x02\u0150\u014A\x03\x02\x02\x02\u0150\u014D\x03\x02\x02\x02\u0151" + - "#\x03\x02\x02\x02\u0152\u0156\x07\x11\x02\x02\u0153\u0155\x05&\x14\x02" + - "\u0154\u0153\x03\x02\x02\x02\u0155\u0158\x03\x02\x02\x02\u0156\u0154\x03" + - "\x02\x02\x02\u0156\u0157\x03\x02\x02\x02\u0157%\x03\x02\x02\x02\u0158" + - "\u0156\x03\x02\x02\x02\u0159\u015A\x07&\x02\x02\u015A\u015B\x07]\x02\x02" + - "\u015B\u017B\x05\x94K\x02\u015C\u015D\x07\'\x02\x02\u015D\u015E\x07]\x02" + - "\x02\u015E\u017B\x05\x94K\x02\u015F\u0160\x07(\x02\x02\u0160\u0161\x07" + - "]\x02\x02\u0161\u017B\x05\x94K\x02\u0162\u0163\x07)\x02\x02\u0163\u0164" + - "\x07]\x02\x02\u0164\u017B\x05\x94K\x02\u0165\u0166\x07*\x02\x02\u0166" + - "\u0167\x07]\x02\x02\u0167\u017B\x05\x96L\x02\u0168\u0169\x07+\x02\x02" + - "\u0169\u016A\x07]\x02\x02\u016A\u017B\x05\x96L\x02\u016B\u016C\x07,\x02" + - "\x02\u016C\u016D\x07]\x02\x02\u016D\u017B\x05\x92J\x02\u016E\u016F\x07" + - "\xC5\x02\x02\u016F\u0170\x07]\x02\x02\u0170\u017B\x05\x92J\x02\u0171\u0172" + - "\x07-\x02\x02\u0172\u0173\x07]\x02\x02\u0173\u017B\x05\x92J\x02\u0174" + - "\u0175\x07.\x02\x02\u0175\u0176\x07]\x02\x02\u0176\u017B\x05\x94K\x02" + - "\u0177\u0178\x07/\x02\x02\u0178\u0179\x07]\x02\x02\u0179\u017B\x05\x96" + - "L\x02\u017A\u0159\x03\x02\x02\x02\u017A\u015C\x03\x02\x02\x02\u017A\u015F" + - "\x03\x02\x02\x02\u017A\u0162\x03\x02\x02\x02\u017A\u0165\x03\x02\x02\x02" + - "\u017A\u0168\x03\x02\x02\x02\u017A\u016B\x03\x02\x02\x02\u017A\u016E\x03" + - "\x02\x02\x02\u017A\u0171\x03\x02\x02\x02\u017A\u0174\x03\x02\x02\x02\u017A" + - "\u0177\x03\x02\x02\x02\u017B\'\x03\x02\x02\x02\u017C\u017D\x07\x14\x02" + - "\x02\u017D\u017E\x07]\x02\x02\u017E\u0183\x05R*\x02\u017F\u0180\x07[\x02" + - "\x02\u0180\u0182\x05R*\x02\u0181\u017F\x03\x02\x02\x02\u0182\u0185\x03" + - "\x02\x02\x02\u0183\u0181\x03\x02\x02\x02\u0183\u0184\x03\x02\x02\x02\u0184" + - "\u0191\x03\x02\x02\x02\u0185\u0183\x03\x02\x02\x02\u0186\u0187\x07\x15" + - "\x02\x02\u0187\u0188\x07]\x02\x02\u0188\u018D\x05R*\x02\u0189\u018A\x07" + - "[\x02\x02\u018A\u018C\x05R*\x02\u018B\u0189\x03\x02\x02\x02\u018C\u018F" + - "\x03\x02\x02\x02\u018D\u018B\x03\x02\x02\x02\u018D\u018E\x03\x02\x02\x02" + - "\u018E\u0191\x03\x02\x02\x02\u018F\u018D\x03\x02\x02\x02\u0190\u017C\x03" + - "\x02\x02\x02\u0190\u0186\x03\x02\x02\x02\u0191)\x03\x02\x02\x02\u0192" + - "\u0193\x05^0\x02\u0193\u0194\x07\x12\x02\x02\u0194\u0195\x05^0\x02\u0195" + - "+\x03\x02\x02\x02\u0196\u0197\x07\x13\x02\x02\u0197\u0198\x05T+\x02\u0198" + - "-\x03\x02\x02\x02\u0199\u019A\x07\x13\x02\x02\u019A\u01A3\x05T+\x02\u019B" + - "\u019C\x07\x13\x02\x02\u019C\u01A3\x050\x19\x02\u019D\u019E\x07\x13\x02" + - "\x02\u019E\u019F\x050\x19\x02\u019F\u01A0\x07[\x02\x02\u01A0\u01A1\x05" + - "T+\x02\u01A1\u01A3\x03\x02\x02\x02\u01A2\u0199\x03\x02\x02\x02\u01A2\u019B" + - "\x03\x02\x02\x02\u01A2\u019D\x03\x02\x02\x02\u01A3/\x03\x02\x02\x02\u01A4" + - "\u01A7\x052\x1A\x02\u01A5\u01A6\x07\x12\x02\x02\u01A6\u01A8\x05\xA2R\x02" + - "\u01A7\u01A5\x03\x02\x02\x02\u01A7\u01A8\x03\x02\x02\x02\u01A81\x03\x02" + - "\x02\x02\u01A9\u01AA\x07\u0100\x02\x02\u01AA\u01AB\x07j\x02\x02\u01AB" + - "\u01AC\x05\\/\x02\u01AC\u01AD\x07[\x02\x02\u01AD\u01AF\x05\x8EH\x02\u01AE" + - "\u01B0\x05\x9EP\x02\u01AF\u01AE\x03\x02\x02\x02\u01AF\u01B0\x03\x02\x02" + - "\x02\u01B0\u01B1\x03\x02\x02\x02\u01B1\u01B2\x07k\x02\x02\u01B23\x03\x02" + - "\x02\x02\u01B3\u01B8\x05X-\x02\u01B4\u01B5\x07[\x02\x02\u01B5\u01B7\x05" + - "X-\x02\u01B6\u01B4\x03\x02\x02\x02\u01B7\u01BA\x03\x02\x02\x02\u01B8\u01B6" + - "\x03\x02\x02\x02\u01B8\u01B9\x03\x02\x02\x02\u01B95\x03\x02\x02\x02\u01BA" + - "\u01B8\x03\x02\x02\x02\u01BB\u01BC\x05\\/\x02\u01BC\u01BD\x07]\x02\x02" + - "\u01BD\u01BE\x05@!\x02\u01BE7\x03\x02\x02\x02\u01BF\u01C2\x05:\x1E\x02" + - "\u01C0\u01C1\x07\x12\x02\x02\u01C1\u01C3\x05^0\x02\u01C2\u01C0\x03\x02" + - "\x02\x02\u01C2\u01C3\x03\x02\x02\x02\u01C39\x03\x02\x02\x02\u01C4\u01C5" + - "\x05<\x1F\x02\u01C5\u01C6\x07j\x02\x02\u01C6\u01C7\x05F$\x02\u01C7\u01C8" + - "\x07k\x02\x02\u01C8\u01D3\x03\x02\x02\x02\u01C9\u01CA\x07u\x02\x02\u01CA" + - "\u01CB\x07j\x02\x02\u01CB\u01D3\x07k\x02\x02\u01CC\u01CD\t\x03\x02\x02" + - "\u01CD\u01CE\x07j\x02\x02\u01CE\u01CF\x05F$\x02\u01CF\u01D0\x07k\x02\x02" + - "\u01D0\u01D3\x03\x02\x02\x02\u01D1\u01D3\x05> \x02\u01D2\u01C4\x03\x02" + - "\x02\x02\u01D2\u01C9\x03\x02\x02\x02\u01D2\u01CC\x03\x02\x02\x02\u01D2" + - "\u01D1\x03\x02\x02\x02\u01D3;\x03\x02\x02\x02\u01D4\u01D5\t\x04\x02\x02" + - "\u01D5=\x03\x02\x02\x02\u01D6\u01D7\x07\x87\x02\x02\u01D7\u01D8\x07_\x02" + - "\x02\u01D8\u01D9\x05\x94K\x02\u01D9\u01DA\x07^\x02\x02\u01DA\u01DB\x07" + - "j\x02\x02\u01DB\u01DC\x05\\/\x02\u01DC\u01DD\x07k\x02\x02\u01DD?\x03\x02" + - "\x02\x02\u01DE\u01E2\x05B\"\x02\u01DF\u01E2\x05D#\x02\u01E0\u01E2\x05" + - "F$\x02\u01E1\u01DE\x03\x02\x02\x02\u01E1\u01DF\x03\x02\x02\x02\u01E1\u01E0" + - "\x03\x02\x02\x02\u01E2A\x03\x02\x02\x02\u01E3\u01E4\b\"\x01\x02\u01E4" + - "\u01EA\x05D#\x02\u01E5\u01E6\x072\x02\x02\u01E6\u01EA\x05B\"\b\u01E7\u01EA" + - "\x05J&\x02\u01E8\u01EA\x05L\'\x02\u01E9\u01E3\x03\x02\x02\x02\u01E9\u01E5" + - "\x03\x02\x02\x02\u01E9\u01E7\x03\x02\x02\x02\u01E9\u01E8\x03\x02\x02\x02" + - "\u01EA\u01F8\x03\x02\x02\x02\u01EB\u01EC\f\x07\x02\x02\u01EC\u01ED\x07" + - "3\x02\x02\u01ED\u01F7\x05B\"\b\u01EE\u01F0\f\x06\x02\x02\u01EF\u01F1\x07" + - "4\x02\x02\u01F0\u01EF\x03\x02\x02\x02\u01F0\u01F1\x03\x02\x02\x02\u01F1" + - "\u01F2\x03\x02\x02\x02\u01F2\u01F7\x05B\"\x07\u01F3\u01F4\f\x05\x02\x02" + - "\u01F4\u01F5\x075\x02\x02\u01F5\u01F7\x05B\"\x06\u01F6\u01EB\x03\x02\x02" + - "\x02\u01F6\u01EE"; - private static readonly _serializedATNSegment1: string = - "\x03\x02\x02\x02\u01F6\u01F3\x03\x02\x02\x02\u01F7\u01FA\x03\x02\x02\x02" + - "\u01F8\u01F6\x03\x02\x02\x02\u01F8\u01F9\x03\x02\x02\x02\u01F9C\x03\x02" + - "\x02\x02\u01FA\u01F8\x03\x02\x02\x02\u01FB\u01FC\x05F$\x02\u01FC\u01FD" + - "\x05\x86D\x02\u01FD\u01FE\x05F$\x02\u01FE\u0204\x03\x02\x02\x02\u01FF" + - "\u0200\x05F$\x02\u0200\u0201\x071\x02\x02\u0201\u0202\x05\xA0Q\x02\u0202" + - "\u0204\x03\x02\x02\x02\u0203\u01FB\x03\x02\x02\x02\u0203\u01FF\x03\x02" + - "\x02\x02\u0204E\x03\x02\x02\x02\u0205\u0206\b$\x01\x02\u0206\u0207\x07" + - "j\x02\x02\u0207\u0208\x05F$\x02\u0208\u0209\x05\x88E\x02\u0209\u020A\x05" + - "F$\x02\u020A\u020B\x07k\x02\x02\u020B\u020E\x03\x02\x02\x02\u020C\u020E" + - "\x05H%\x02\u020D\u0205\x03\x02\x02\x02\u020D\u020C\x03\x02\x02\x02\u020E" + - "\u0215\x03\x02\x02\x02\u020F\u0210\f\x05\x02\x02\u0210\u0211\x05\x88E" + - "\x02\u0211\u0212\x05F$\x06\u0212\u0214\x03\x02\x02\x02\u0213\u020F\x03" + - "\x02\x02\x02\u0214\u0217\x03\x02\x02\x02\u0215\u0213\x03\x02\x02\x02\u0215" + - "\u0216\x03\x02\x02\x02\u0216G\x03\x02\x02\x02\u0217\u0215\x03\x02\x02" + - "\x02\u0218\u021D\x05`1\x02\u0219\u021D\x05b2\x02\u021A\u021D\x05\\/\x02" + - "\u021B\u021D\x05\x8EH\x02\u021C\u0218\x03\x02\x02\x02\u021C\u0219\x03" + - "\x02\x02\x02\u021C\u021A\x03\x02\x02\x02\u021C\u021B\x03\x02\x02\x02\u021D" + - "I\x03\x02\x02\x02\u021E\u021F\x05d3\x02\u021FK\x03\x02\x02\x02\u0220\u0223" + - "\x05N(\x02\u0221\u0223\x05P)\x02\u0222\u0220\x03\x02\x02\x02\u0222\u0221" + - "\x03\x02\x02\x02\u0223M\x03\x02\x02\x02\u0224\u0225\x05\x8AF\x02\u0225" + - "\u0226\x07j\x02\x02\u0226\u0227\x05v<\x02\u0227\u0228\x07[\x02\x02\u0228" + - "\u022D\x05x=\x02\u0229\u022A\x07[\x02\x02\u022A\u022C\x05n8\x02\u022B" + - "\u0229\x03\x02\x02\x02\u022C\u022F\x03\x02\x02\x02\u022D\u022B\x03\x02" + - "\x02\x02\u022D\u022E\x03\x02\x02\x02\u022E\u0230\x03\x02\x02\x02\u022F" + - "\u022D\x03\x02\x02\x02\u0230\u0231\x07k\x02\x02\u0231O\x03\x02\x02\x02" + - "\u0232\u0233\x05\x8CG\x02\u0233\u0234\x07j\x02\x02\u0234\u0235\x07l\x02" + - "\x02\u0235\u023A\x05r:\x02\u0236\u0237\x07[\x02\x02\u0237\u0239\x05r:" + - "\x02\u0238\u0236\x03\x02\x02\x02\u0239\u023C\x03\x02\x02\x02\u023A\u0238" + - "\x03\x02\x02\x02\u023A\u023B\x03\x02\x02\x02\u023B\u023D\x03\x02\x02\x02" + - "\u023C\u023A\x03\x02\x02\x02\u023D\u023E\x07m\x02\x02\u023E\u023F\x07" + - "[\x02\x02\u023F\u0244\x05x=\x02\u0240\u0241\x07[\x02\x02\u0241\u0243\x05" + - "n8\x02\u0242\u0240\x03\x02\x02\x02\u0243\u0246\x03\x02\x02\x02\u0244\u0242" + - "\x03\x02\x02\x02\u0244\u0245\x03\x02\x02\x02\u0245\u0247\x03\x02\x02\x02" + - "\u0246\u0244\x03\x02\x02\x02\u0247\u0248\x07k\x02\x02\u0248Q\x03\x02\x02" + - "\x02\u0249\u024C\x05\xA2R\x02\u024A\u024C\x07\u010B\x02\x02\u024B\u0249" + - "\x03\x02\x02\x02\u024B\u024A\x03\x02\x02\x02\u024CS\x03\x02\x02\x02\u024D" + - "\u0252\x05\\/\x02\u024E\u024F\x07[\x02\x02\u024F\u0251\x05\\/\x02\u0250" + - "\u024E\x03\x02\x02\x02\u0251\u0254\x03\x02\x02\x02\u0252\u0250\x03\x02" + - "\x02\x02\u0252\u0253\x03\x02\x02\x02\u0253U\x03\x02\x02\x02\u0254\u0252" + - "\x03\x02\x02\x02\u0255\u025A\x05^0\x02\u0256\u0257\x07[\x02\x02\u0257" + - "\u0259\x05^0\x02\u0258\u0256\x03\x02\x02\x02\u0259\u025C\x03\x02\x02\x02" + - "\u025A\u0258\x03\x02\x02\x02\u025A\u025B\x03\x02\x02\x02\u025BW\x03\x02" + - "\x02\x02\u025C\u025A\x03\x02\x02\x02\u025D\u025F\t\x02\x02\x02\u025E\u025D" + - "\x03\x02\x02\x02\u025E\u025F\x03\x02\x02\x02\u025F\u0260\x03\x02\x02\x02" + - "\u0260\u0261\x05Z.\x02\u0261Y\x03\x02\x02\x02\u0262\u0278\x05\\/\x02\u0263" + - "\u0264\x07\x19\x02\x02\u0264\u0265\x07j\x02\x02\u0265\u0266\x05\\/\x02" + - "\u0266\u0267\x07k\x02\x02\u0267\u0278\x03\x02\x02\x02\u0268\u0269\x07" + - "\x1A\x02\x02\u0269\u026A\x07j\x02\x02\u026A\u026B\x05\\/\x02\u026B\u026C" + - "\x07k\x02\x02\u026C\u0278\x03\x02\x02\x02\u026D\u026E\x07\x1B\x02\x02" + - "\u026E\u026F\x07j\x02\x02\u026F\u0270\x05\\/\x02\u0270\u0271\x07k\x02" + - "\x02\u0271\u0278\x03\x02\x02\x02\u0272\u0273\x07\x1C\x02\x02\u0273\u0274" + - "\x07j\x02\x02\u0274\u0275\x05\\/\x02\u0275\u0276\x07k\x02\x02\u0276\u0278" + - "\x03\x02\x02\x02\u0277\u0262\x03\x02\x02\x02\u0277\u0263\x03\x02\x02\x02" + - "\u0277\u0268\x03\x02\x02\x02\u0277\u026D\x03\x02\x02\x02\u0277\u0272\x03" + - "\x02\x02\x02\u0278[\x03\x02\x02\x02\u0279\u027A\x05\xA2R\x02\u027A]\x03" + - "\x02\x02\x02\u027B\u027C\x05\xA4S\x02\u027C_\x03\x02\x02\x02\u027D\u027E" + - "\x05h5\x02\u027E\u027F\x07j\x02\x02\u027F\u0280\x05j6\x02\u0280\u0281" + - "\x07k\x02\x02\u0281a\x03\x02\x02\x02\u0282\u0283\x07\xD8\x02\x02\u0283" + - "\u0284\x07j\x02\x02\u0284\u0285\x05@!\x02\u0285\u0286\x07\x12\x02\x02" + - "\u0286\u0287\x05f4\x02\u0287\u0288\x07k\x02\x02\u0288c\x03\x02\x02\x02" + - "\u0289\u028A\x05\x82B\x02\u028A\u028B\x07j\x02\x02\u028B\u028C\x05j6\x02" + - "\u028C\u028D\x07k\x02\x02\u028De\x03\x02\x02\x02\u028E\u0299\x07\xB8\x02" + - "\x02\u028F\u0299\x07\xC2\x02\x02\u0290\u0299\x07\xC4\x02\x02\u0291\u0299" + - "\x07S\x02\x02\u0292\u0299\x07T\x02\x02\u0293\u0299\x07U\x02\x02\u0294" + - "\u0299\x07V\x02\x02\u0295\u0299\x07W\x02\x02\u0296\u0299\x07X\x02\x02" + - "\u0297\u0299\x07Y\x02\x02\u0298\u028E\x03\x02\x02\x02\u0298\u028F\x03" + - "\x02\x02\x02\u0298\u0290\x03\x02\x02\x02\u0298\u0291\x03\x02\x02\x02\u0298" + - "\u0292\x03\x02\x02\x02\u0298\u0293\x03\x02\x02\x02\u0298\u0294\x03\x02" + - "\x02\x02\u0298\u0295\x03\x02\x02\x02\u0298\u0296\x03\x02\x02\x02\u0298" + - "\u0297\x03\x02\x02\x02\u0299g\x03\x02\x02\x02\u029A\u029F\x05|?\x02\u029B" + - "\u029F\x05\x80A\x02\u029C\u029F\x05\x84C\x02\u029D\u029F\x05\x82B\x02" + - "\u029E\u029A\x03\x02\x02\x02\u029E\u029B\x03\x02\x02\x02\u029E\u029C\x03" + - "\x02\x02\x02\u029E\u029D\x03\x02\x02\x02\u029Fi\x03\x02\x02\x02\u02A0" + - "\u02A5\x05l7\x02\u02A1\u02A2\x07[\x02\x02\u02A2\u02A4\x05l7\x02\u02A3" + - "\u02A1\x03\x02\x02\x02\u02A4\u02A7\x03\x02\x02\x02\u02A5\u02A3\x03\x02" + - "\x02\x02\u02A5\u02A6\x03\x02\x02\x02\u02A6\u02A9\x03\x02\x02\x02\u02A7" + - "\u02A5\x03\x02\x02\x02\u02A8\u02A0\x03\x02\x02\x02\u02A8\u02A9\x03\x02" + - "\x02\x02\u02A9k\x03\x02\x02\x02\u02AA\u02AB\x05F$\x02\u02ABm\x03\x02\x02" + - "\x02\u02AC\u02AD\x05p9\x02\u02AD\u02AE\x07]\x02\x02\u02AE\u02AF\x05z>" + - "\x02\u02AFo\x03\x02\x02\x02\u02B0\u02B1\t\x05\x02\x02\u02B1q\x03\x02\x02" + - "\x02\u02B2\u02BB\x05v<\x02\u02B3\u02B4\x05v<\x02\u02B4\u02B5\x05t;\x02" + - "\u02B5\u02BB\x03\x02\x02\x02\u02B6\u02B7\x05v<\x02\u02B7\u02B8\x07s\x02" + - "\x02\u02B8\u02B9\x05t;\x02\u02B9\u02BB\x03\x02\x02\x02\u02BA\u02B2\x03" + - "\x02\x02\x02\u02BA\u02B3\x03\x02\x02\x02\u02BA\u02B6\x03\x02\x02\x02\u02BB" + - "s\x03\x02\x02\x02\u02BC\u02BF\x05\x94K\x02\u02BD\u02BF\x05\x96L\x02\u02BE" + - "\u02BC\x03\x02\x02\x02\u02BE\u02BD\x03\x02\x02\x02\u02BFu\x03\x02\x02" + - "\x02\u02C0\u02C3\x05\xA2R\x02\u02C1\u02C3\x05\x92J\x02\u02C2\u02C0\x03" + - "\x02\x02\x02\u02C2\u02C1\x03\x02\x02\x02\u02C3w\x03\x02\x02\x02\u02C4" + - "\u02C5\x05z>\x02\u02C5y\x03\x02\x02\x02\u02C6\u02C9\x05\xA2R\x02\u02C7" + - "\u02C9\x05\x8EH\x02\u02C8\u02C6\x03\x02\x02\x02\u02C8\u02C7\x03\x02\x02" + - "\x02\u02C9{\x03\x02\x02\x02\u02CA\u02E1\x07\x98\x02\x02\u02CB\u02E1\x07" + - "\x99\x02\x02\u02CC\u02E1\x07\x9A\x02\x02\u02CD\u02E1\x07\x9B\x02\x02\u02CE" + - "\u02E1\x07\x9C\x02\x02\u02CF\u02E1\x07\x9D\x02\x02\u02D0\u02E1\x07\x9E" + - "\x02\x02\u02D1\u02E1\x07\x9F\x02\x02\u02D2\u02E1\x07\xA0\x02\x02\u02D3" + - "\u02E1\x07\xA1\x02\x02\u02D4\u02E1\x07\xA2\x02\x02\u02D5\u02E1\x07\xA3" + - "\x02\x02\u02D6\u02E1\x07\xA4\x02\x02\u02D7\u02E1\x07\xA5\x02\x02\u02D8" + - "\u02E1\x07\xA6\x02\x02\u02D9\u02E1\x07\xA7\x02\x02\u02DA\u02E1\x07\xA8" + - "\x02\x02\u02DB\u02E1\x07\xA9\x02\x02\u02DC\u02E1\x07\xAA\x02\x02\u02DD" + - "\u02E1\x07\xAB\x02\x02\u02DE\u02E1\x07\xAC\x02\x02\u02DF\u02E1\x05~@\x02" + - "\u02E0\u02CA\x03\x02\x02\x02\u02E0\u02CB\x03\x02\x02\x02\u02E0\u02CC\x03" + - "\x02\x02\x02\u02E0\u02CD\x03\x02\x02\x02\u02E0\u02CE\x03\x02\x02\x02\u02E0" + - "\u02CF\x03\x02\x02\x02\u02E0\u02D0\x03\x02\x02\x02\u02E0\u02D1\x03\x02" + - "\x02\x02\u02E0\u02D2\x03\x02\x02\x02\u02E0\u02D3\x03\x02\x02\x02\u02E0" + - "\u02D4\x03\x02\x02\x02\u02E0\u02D5\x03\x02\x02\x02\u02E0\u02D6\x03\x02" + - "\x02\x02\u02E0\u02D7\x03\x02\x02\x02\u02E0\u02D8\x03\x02\x02\x02\u02E0" + - "\u02D9\x03\x02\x02\x02\u02E0\u02DA\x03\x02\x02\x02\u02E0\u02DB\x03\x02" + - "\x02\x02\u02E0\u02DC\x03\x02\x02\x02\u02E0\u02DD\x03\x02\x02\x02\u02E0" + - "\u02DE\x03\x02\x02\x02\u02E0\u02DF\x03\x02\x02\x02\u02E1}\x03\x02\x02" + - "\x02\u02E2\u02E3\t\x06\x02\x02\u02E3\x7F\x03\x02\x02\x02\u02E4\u02E5\t" + - "\x07\x02\x02\u02E5\x81\x03\x02\x02\x02\u02E6\u02E7\t\b\x02\x02\u02E7\x83" + - "\x03\x02\x02\x02\u02E8\u02E9\t\t\x02\x02\u02E9\x85\x03\x02\x02\x02\u02EA" + - "\u02EB\t\n\x02\x02\u02EB\x87\x03\x02\x02\x02\u02EC\u02ED\t\v\x02\x02\u02ED" + - "\x89\x03\x02\x02\x02\u02EE\u02EF\t\f\x02\x02\u02EF\x8B\x03\x02\x02\x02" + - "\u02F0\u02F1\x07\xE1\x02\x02\u02F1\x8D\x03\x02\x02\x02\u02F2\u02F8\x05" + - "\x90I\x02\u02F3\u02F8\x05\x92J\x02\u02F4\u02F8\x05\x94K\x02\u02F5\u02F8" + - "\x05\x96L\x02\u02F6\u02F8\x05\x98M\x02\u02F7\u02F2\x03\x02\x02\x02\u02F7" + - "\u02F3\x03\x02\x02\x02\u02F7\u02F4\x03\x02\x02\x02\u02F7\u02F5\x03\x02" + - "\x02\x02\u02F7\u02F6\x03\x02\x02\x02\u02F8\x8F\x03\x02\x02\x02\u02F9\u02FA" + - "\x07:\x02\x02\u02FA\u02FB\x05F$\x02\u02FB\u02FC\x05\x9CO\x02\u02FC\x91" + - "\x03\x02\x02\x02\u02FD\u02FE\t\r\x02\x02\u02FE\x93\x03\x02\x02\x02\u02FF" + - "\u0301\t\x02\x02\x02\u0300\u02FF\x03\x02\x02\x02\u0300\u0301\x03\x02\x02" + - "\x02\u0301\u0302\x03\x02\x02\x02\u0302\u0303\x07\u0109\x02\x02\u0303\x95" + - "\x03\x02\x02\x02\u0304\u0306\t\x02\x02\x02\u0305\u0304\x03\x02\x02\x02" + - "\u0305\u0306\x03\x02\x02\x02\u0306\u0307\x03\x02\x02\x02\u0307\u0308\x07" + - "\u010A\x02\x02\u0308\x97\x03\x02\x02\x02\u0309\u030A\t\x0E\x02\x02\u030A" + - "\x99\x03\x02\x02\x02\u030B\u030C\x05\x92J\x02\u030C\x9B\x03\x02\x02\x02" + - "\u030D\u030E\t\x0F\x02\x02\u030E\x9D\x03\x02\x02\x02\u030F\u0310\t\x10" + - "\x02\x02\u0310\x9F\x03\x02\x02\x02\u0311\u0312\x07j\x02\x02\u0312\u0317" + - "\x05\x8EH\x02\u0313\u0314\x07[\x02\x02\u0314\u0316\x05\x8EH\x02\u0315" + - "\u0313\x03\x02\x02\x02\u0316\u0319\x03\x02\x02\x02\u0317\u0315\x03\x02" + - "\x02\x02\u0317\u0318\x03\x02\x02\x02\u0318\u031A\x03\x02\x02\x02\u0319" + - "\u0317\x03\x02\x02\x02\u031A\u031B\x07k\x02\x02\u031B\xA1\x03\x02\x02" + - "\x02\u031C\u0321\x05\xA6T\x02\u031D\u031E\x07\\\x02\x02\u031E\u0320\x05" + - "\xA6T\x02\u031F\u031D\x03\x02\x02\x02\u0320\u0323\x03\x02\x02\x02\u0321" + - "\u031F\x03\x02\x02\x02\u0321\u0322\x03\x02\x02\x02\u0322\xA3\x03\x02\x02" + - "\x02\u0323\u0321\x03\x02\x02\x02\u0324\u0329\x05\xA8U\x02\u0325\u0326" + - "\x07\\\x02\x02\u0326\u0328\x05\xA8U\x02\u0327\u0325\x03\x02\x02\x02\u0328" + - "\u032B\x03\x02\x02\x02\u0329\u0327\x03\x02\x02\x02\u0329\u032A\x03\x02" + - "\x02\x02\u032A\xA5\x03\x02\x02\x02\u032B\u0329\x03\x02\x02\x02\u032C\u032E" + - "\x07\\\x02\x02\u032D\u032C\x03\x02\x02\x02\u032D\u032E\x03\x02\x02\x02" + - "\u032E\u032F\x03\x02\x02\x02\u032F\u0337\x07\u0108\x02\x02\u0330\u0331" + - "\x07p\x02\x02\u0331\u0332\x05\xA6T\x02\u0332\u0333\x07p\x02\x02\u0333" + - "\u0337\x03\x02\x02\x02\u0334\u0337\x07\u010E\x02\x02\u0335\u0337\x05\xAA" + - "V\x02\u0336\u032D\x03\x02\x02\x02\u0336\u0330\x03\x02\x02\x02\u0336\u0334" + - "\x03\x02\x02\x02\u0336\u0335\x03\x02\x02\x02\u0337\xA7\x03\x02\x02\x02" + - "\u0338\u033D\x05\xA6T\x02\u0339\u033A\x07g\x02\x02\u033A\u033C\x05\xA6" + - "T\x02\u033B\u0339\x03\x02\x02\x02\u033C\u033F\x03\x02\x02\x02\u033D\u033B" + - "\x03\x02\x02\x02\u033D\u033E\x03\x02\x02\x02\u033E\u0341\x03\x02\x02\x02" + - "\u033F\u033D\x03\x02\x02\x02\u0340\u0342\x07g\x02\x02\u0341\u0340\x03" + - "\x02\x02\x02\u0341\u0342\x03\x02\x02\x02\u0342\u0350\x03\x02\x02\x02\u0343" + - "\u0344\x07n\x02\x02\u0344\u0345\x05\xA8U\x02\u0345\u0346\x07n\x02\x02" + - "\u0346\u0350\x03\x02\x02\x02\u0347\u0348\x07o\x02\x02\u0348\u0349\x05" + - "\xA8U\x02\u0349\u034A\x07o\x02\x02\u034A\u0350\x03\x02\x02\x02\u034B\u034C" + - "\x07p\x02\x02\u034C\u034D\x05\xA8U\x02\u034D\u034E\x07p\x02\x02\u034E" + - "\u0350\x03\x02\x02\x02\u034F\u0338\x03\x02\x02\x02\u034F\u0343\x03\x02" + - "\x02\x02\u034F\u0347\x03\x02\x02\x02\u034F\u034B\x03\x02\x02\x02\u0350" + - "\xA9\x03\x02\x02\x02\u0351\u035B\x07\x16\x02\x02\u0352\u035B\x05<\x1F" + - "\x02\u0353\u035B\x07\xC4\x02\x02\u0354\u035B\x07\xB8\x02\x02\u0355\u035B" + - "\x07\xC2\x02\x02\u0356\u035B\x07\x88\x02\x02\u0357\u035B\x07\x89\x02\x02" + - "\u0358\u035B\x05\x9EP\x02\u0359\u035B\x07\u0100\x02\x02\u035A\u0351\x03" + - "\x02\x02\x02\u035A\u0352\x03\x02\x02\x02\u035A\u0353\x03\x02\x02\x02\u035A" + - "\u0354\x03\x02\x02\x02\u035A\u0355\x03\x02\x02\x02\u035A\u0356\x03\x02" + - "\x02\x02\u035A\u0357\x03\x02\x02\x02\u035A\u0358\x03\x02\x02\x02\u035A" + - "\u0359\x03\x02\x02\x02\u035B\xAB\x03\x02\x02\x02N\xAD\xB6\xC6\xC9\xCD" + - "\xD3\xD8\xDF\xE9\xF0\xF5\xFA\u0101\u0105\u010A\u010E\u0114\u0119\u0124" + - "\u0129\u012D\u0131\u0135\u013A\u0144\u0150\u0156\u017A\u0183\u018D\u0190" + - "\u01A2\u01A7\u01AF\u01B8\u01C2\u01D2\u01E1\u01E9\u01F0\u01F6\u01F8\u0203" + - "\u020D\u0215\u021C\u0222\u022D\u023A\u0244\u024B\u0252\u025A\u025E\u0277" + - "\u0298\u029E\u02A5\u02A8\u02BA\u02BE\u02C2\u02C8\u02E0\u02F7\u0300\u0305" + - "\u0317\u0321\u0329\u032D\u0336\u033D\u0341\u034F\u035A"; - public static readonly _serializedATN: string = Utils.join( - [ - OpenSearchPPLParser._serializedATNSegment0, - OpenSearchPPLParser._serializedATNSegment1, - ], - "", - ); - public static __ATN: ATN; - public static get _ATN(): ATN { - if (!OpenSearchPPLParser.__ATN) { - OpenSearchPPLParser.__ATN = new ATNDeserializer().deserialize(Utils.toCharArray(OpenSearchPPLParser._serializedATN)); - } - - return OpenSearchPPLParser.__ATN; - } - -} - -export class RootContext extends ParserRuleContext { - public EOF(): TerminalNode { return this.getToken(OpenSearchPPLParser.EOF, 0); } - public pplStatement(): PplStatementContext | undefined { - return this.tryGetRuleContext(0, PplStatementContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_root; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRoot) { - listener.enterRoot(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRoot) { - listener.exitRoot(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRoot) { - return visitor.visitRoot(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PplStatementContext extends ParserRuleContext { - public searchCommand(): SearchCommandContext { - return this.getRuleContext(0, SearchCommandContext); - } - public PIPE(): TerminalNode[]; - public PIPE(i: number): TerminalNode; - public PIPE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.PIPE); - } else { - return this.getToken(OpenSearchPPLParser.PIPE, i); - } - } - public commands(): CommandsContext[]; - public commands(i: number): CommandsContext; - public commands(i?: number): CommandsContext | CommandsContext[] { - if (i === undefined) { - return this.getRuleContexts(CommandsContext); - } else { - return this.getRuleContext(i, CommandsContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pplStatement; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPplStatement) { - listener.enterPplStatement(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPplStatement) { - listener.exitPplStatement(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPplStatement) { - return visitor.visitPplStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CommandsContext extends ParserRuleContext { - public whereCommand(): WhereCommandContext | undefined { - return this.tryGetRuleContext(0, WhereCommandContext); - } - public fieldsCommand(): FieldsCommandContext | undefined { - return this.tryGetRuleContext(0, FieldsCommandContext); - } - public renameCommand(): RenameCommandContext | undefined { - return this.tryGetRuleContext(0, RenameCommandContext); - } - public statsCommand(): StatsCommandContext | undefined { - return this.tryGetRuleContext(0, StatsCommandContext); - } - public dedupCommand(): DedupCommandContext | undefined { - return this.tryGetRuleContext(0, DedupCommandContext); - } - public sortCommand(): SortCommandContext | undefined { - return this.tryGetRuleContext(0, SortCommandContext); - } - public evalCommand(): EvalCommandContext | undefined { - return this.tryGetRuleContext(0, EvalCommandContext); - } - public headCommand(): HeadCommandContext | undefined { - return this.tryGetRuleContext(0, HeadCommandContext); - } - public topCommand(): TopCommandContext | undefined { - return this.tryGetRuleContext(0, TopCommandContext); - } - public rareCommand(): RareCommandContext | undefined { - return this.tryGetRuleContext(0, RareCommandContext); - } - public parseCommand(): ParseCommandContext | undefined { - return this.tryGetRuleContext(0, ParseCommandContext); - } - public kmeansCommand(): KmeansCommandContext | undefined { - return this.tryGetRuleContext(0, KmeansCommandContext); - } - public adCommand(): AdCommandContext | undefined { - return this.tryGetRuleContext(0, AdCommandContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_commands; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterCommands) { - listener.enterCommands(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitCommands) { - listener.exitCommands(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitCommands) { - return visitor.visitCommands(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SearchCommandContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_searchCommand; } - public copyFrom(ctx: SearchCommandContext): void { - super.copyFrom(ctx); - } -} -export class SearchFromContext extends SearchCommandContext { - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext); - } - public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } - constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSearchFrom) { - listener.enterSearchFrom(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSearchFrom) { - listener.exitSearchFrom(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSearchFrom) { - return visitor.visitSearchFrom(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class SearchFromFilterContext extends SearchCommandContext { - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext); - } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } - constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSearchFromFilter) { - listener.enterSearchFromFilter(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSearchFromFilter) { - listener.exitSearchFromFilter(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSearchFromFilter) { - return visitor.visitSearchFromFilter(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class SearchFilterFromContext extends SearchCommandContext { - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext); - } - public SEARCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SEARCH, 0); } - constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSearchFilterFrom) { - listener.enterSearchFilterFrom(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSearchFilterFrom) { - listener.exitSearchFilterFrom(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSearchFilterFrom) { - return visitor.visitSearchFilterFrom(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WhereCommandContext extends ParserRuleContext { - public WHERE(): TerminalNode { return this.getToken(OpenSearchPPLParser.WHERE, 0); } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_whereCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWhereCommand) { - listener.enterWhereCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWhereCommand) { - listener.exitWhereCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWhereCommand) { - return visitor.visitWhereCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FieldsCommandContext extends ParserRuleContext { - public FIELDS(): TerminalNode { return this.getToken(OpenSearchPPLParser.FIELDS, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldsCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFieldsCommand) { - listener.enterFieldsCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFieldsCommand) { - listener.exitFieldsCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFieldsCommand) { - return visitor.visitFieldsCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RenameCommandContext extends ParserRuleContext { - public RENAME(): TerminalNode { return this.getToken(OpenSearchPPLParser.RENAME, 0); } - public renameClasue(): RenameClasueContext[]; - public renameClasue(i: number): RenameClasueContext; - public renameClasue(i?: number): RenameClasueContext | RenameClasueContext[] { - if (i === undefined) { - return this.getRuleContexts(RenameClasueContext); - } else { - return this.getRuleContext(i, RenameClasueContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRenameCommand) { - listener.enterRenameCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRenameCommand) { - listener.exitRenameCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRenameCommand) { - return visitor.visitRenameCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsCommandContext extends ParserRuleContext { - public _partitions!: IntegerLiteralContext; - public _allnum!: BooleanLiteralContext; - public _delim!: StringLiteralContext; - public _dedupsplit!: BooleanLiteralContext; - public STATS(): TerminalNode { return this.getToken(OpenSearchPPLParser.STATS, 0); } - public statsAggTerm(): StatsAggTermContext[]; - public statsAggTerm(i: number): StatsAggTermContext; - public statsAggTerm(i?: number): StatsAggTermContext | StatsAggTermContext[] { - if (i === undefined) { - return this.getRuleContexts(StatsAggTermContext); - } else { - return this.getRuleContext(i, StatsAggTermContext); - } - } - public PARTITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PARTITIONS, 0); } - public EQUAL(): TerminalNode[]; - public EQUAL(i: number): TerminalNode; - public EQUAL(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.EQUAL); - } else { - return this.getToken(OpenSearchPPLParser.EQUAL, i); - } - } - public ALLNUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLNUM, 0); } - public DELIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DELIM, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public statsByClause(): StatsByClauseContext | undefined { - return this.tryGetRuleContext(0, StatsByClauseContext); - } - public DEDUP_SPLITVALUES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEDUP_SPLITVALUES, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public booleanLiteral(): BooleanLiteralContext[]; - public booleanLiteral(i: number): BooleanLiteralContext; - public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { - if (i === undefined) { - return this.getRuleContexts(BooleanLiteralContext); - } else { - return this.getRuleContext(i, BooleanLiteralContext); - } - } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsCommand) { - listener.enterStatsCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsCommand) { - listener.exitStatsCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsCommand) { - return visitor.visitStatsCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DedupCommandContext extends ParserRuleContext { - public _number!: IntegerLiteralContext; - public _keepempty!: BooleanLiteralContext; - public _consecutive!: BooleanLiteralContext; - public DEDUP(): TerminalNode { return this.getToken(OpenSearchPPLParser.DEDUP, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public KEEPEMPTY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.KEEPEMPTY, 0); } - public EQUAL(): TerminalNode[]; - public EQUAL(i: number): TerminalNode; - public EQUAL(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.EQUAL); - } else { - return this.getToken(OpenSearchPPLParser.EQUAL, i); - } - } - public CONSECUTIVE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONSECUTIVE, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public booleanLiteral(): BooleanLiteralContext[]; - public booleanLiteral(i: number): BooleanLiteralContext; - public booleanLiteral(i?: number): BooleanLiteralContext | BooleanLiteralContext[] { - if (i === undefined) { - return this.getRuleContexts(BooleanLiteralContext); - } else { - return this.getRuleContext(i, BooleanLiteralContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dedupCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDedupCommand) { - listener.enterDedupCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDedupCommand) { - listener.exitDedupCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDedupCommand) { - return visitor.visitDedupCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortCommandContext extends ParserRuleContext { - public SORT(): TerminalNode { return this.getToken(OpenSearchPPLParser.SORT, 0); } - public sortbyClause(): SortbyClauseContext { - return this.getRuleContext(0, SortbyClauseContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortCommand) { - listener.enterSortCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortCommand) { - listener.exitSortCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortCommand) { - return visitor.visitSortCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalCommandContext extends ParserRuleContext { - public EVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EVAL, 0); } - public evalClause(): EvalClauseContext[]; - public evalClause(i: number): EvalClauseContext; - public evalClause(i?: number): EvalClauseContext | EvalClauseContext[] { - if (i === undefined) { - return this.getRuleContexts(EvalClauseContext); - } else { - return this.getRuleContext(i, EvalClauseContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalCommand) { - listener.enterEvalCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalCommand) { - listener.exitEvalCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalCommand) { - return visitor.visitEvalCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class HeadCommandContext extends ParserRuleContext { - public _number!: IntegerLiteralContext; - public _from!: IntegerLiteralContext; - public HEAD(): TerminalNode { return this.getToken(OpenSearchPPLParser.HEAD, 0); } - public FROM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM, 0); } - public integerLiteral(): IntegerLiteralContext[]; - public integerLiteral(i: number): IntegerLiteralContext; - public integerLiteral(i?: number): IntegerLiteralContext | IntegerLiteralContext[] { - if (i === undefined) { - return this.getRuleContexts(IntegerLiteralContext); - } else { - return this.getRuleContext(i, IntegerLiteralContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_headCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterHeadCommand) { - listener.enterHeadCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitHeadCommand) { - listener.exitHeadCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitHeadCommand) { - return visitor.visitHeadCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TopCommandContext extends ParserRuleContext { - public _number!: IntegerLiteralContext; - public TOP(): TerminalNode { return this.getToken(OpenSearchPPLParser.TOP, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public byClause(): ByClauseContext | undefined { - return this.tryGetRuleContext(0, ByClauseContext); - } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_topCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTopCommand) { - listener.enterTopCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTopCommand) { - listener.exitTopCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTopCommand) { - return visitor.visitTopCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RareCommandContext extends ParserRuleContext { - public RARE(): TerminalNode { return this.getToken(OpenSearchPPLParser.RARE, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - public byClause(): ByClauseContext | undefined { - return this.tryGetRuleContext(0, ByClauseContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_rareCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRareCommand) { - listener.enterRareCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRareCommand) { - listener.exitRareCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRareCommand) { - return visitor.visitRareCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ParseCommandContext extends ParserRuleContext { - public PARSE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PARSE, 0); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext); - } - public pattern(): PatternContext { - return this.getRuleContext(0, PatternContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_parseCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterParseCommand) { - listener.enterParseCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitParseCommand) { - listener.exitParseCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitParseCommand) { - return visitor.visitParseCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class KmeansCommandContext extends ParserRuleContext { - public KMEANS(): TerminalNode { return this.getToken(OpenSearchPPLParser.KMEANS, 0); } - public kmeansParameter(): KmeansParameterContext[]; - public kmeansParameter(i: number): KmeansParameterContext; - public kmeansParameter(i?: number): KmeansParameterContext | KmeansParameterContext[] { - if (i === undefined) { - return this.getRuleContexts(KmeansParameterContext); - } else { - return this.getRuleContext(i, KmeansParameterContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterKmeansCommand) { - listener.enterKmeansCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitKmeansCommand) { - listener.exitKmeansCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitKmeansCommand) { - return visitor.visitKmeansCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class KmeansParameterContext extends ParserRuleContext { - public _centroids!: IntegerLiteralContext; - public _iterations!: IntegerLiteralContext; - public _distance_type!: StringLiteralContext; - public CENTROIDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CENTROIDS, 0); } - public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public ITERATIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ITERATIONS, 0); } - public DISTANCE_TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTANCE_TYPE, 0); } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_kmeansParameter; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterKmeansParameter) { - listener.enterKmeansParameter(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitKmeansParameter) { - listener.exitKmeansParameter(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitKmeansParameter) { - return visitor.visitKmeansParameter(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AdCommandContext extends ParserRuleContext { - public AD(): TerminalNode { return this.getToken(OpenSearchPPLParser.AD, 0); } - public adParameter(): AdParameterContext[]; - public adParameter(i: number): AdParameterContext; - public adParameter(i?: number): AdParameterContext | AdParameterContext[] { - if (i === undefined) { - return this.getRuleContexts(AdParameterContext); - } else { - return this.getRuleContext(i, AdParameterContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adCommand; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterAdCommand) { - listener.enterAdCommand(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitAdCommand) { - listener.exitAdCommand(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitAdCommand) { - return visitor.visitAdCommand(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AdParameterContext extends ParserRuleContext { - public _number_of_trees!: IntegerLiteralContext; - public _shingle_size!: IntegerLiteralContext; - public _sample_size!: IntegerLiteralContext; - public _output_after!: IntegerLiteralContext; - public _time_decay!: DecimalLiteralContext; - public _anomaly_rate!: DecimalLiteralContext; - public _time_field!: StringLiteralContext; - public _date_format!: StringLiteralContext; - public _time_zone!: StringLiteralContext; - public _training_data_size!: IntegerLiteralContext; - public _anomaly_score_threshold!: DecimalLiteralContext; - public NUMBER_OF_TREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUMBER_OF_TREES, 0); } - public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public SHINGLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SHINGLE_SIZE, 0); } - public SAMPLE_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SAMPLE_SIZE, 0); } - public OUTPUT_AFTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OUTPUT_AFTER, 0); } - public TIME_DECAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_DECAY, 0); } - public decimalLiteral(): DecimalLiteralContext | undefined { - return this.tryGetRuleContext(0, DecimalLiteralContext); - } - public ANOMALY_RATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_RATE, 0); } - public TIME_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_FIELD, 0); } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TRAINING_DATA_SIZE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRAINING_DATA_SIZE, 0); } - public ANOMALY_SCORE_THRESHOLD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_adParameter; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterAdParameter) { - listener.enterAdParameter(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitAdParameter) { - listener.exitAdParameter(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitAdParameter) { - return visitor.visitAdParameter(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FromClauseContext extends ParserRuleContext { - public SOURCE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SOURCE, 0); } - public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } - public tableSource(): TableSourceContext[]; - public tableSource(i: number): TableSourceContext; - public tableSource(i?: number): TableSourceContext | TableSourceContext[] { - if (i === undefined) { - return this.getRuleContexts(TableSourceContext); - } else { - return this.getRuleContext(i, TableSourceContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public INDEX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INDEX, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fromClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFromClause) { - listener.enterFromClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFromClause) { - listener.exitFromClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFromClause) { - return visitor.visitFromClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RenameClasueContext extends ParserRuleContext { - public _orignalField!: WcFieldExpressionContext; - public _renamedField!: WcFieldExpressionContext; - public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } - public wcFieldExpression(): WcFieldExpressionContext[]; - public wcFieldExpression(i: number): WcFieldExpressionContext; - public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(WcFieldExpressionContext); - } else { - return this.getRuleContext(i, WcFieldExpressionContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_renameClasue; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRenameClasue) { - listener.enterRenameClasue(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRenameClasue) { - listener.exitRenameClasue(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRenameClasue) { - return visitor.visitRenameClasue(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ByClauseContext extends ParserRuleContext { - public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } - public fieldList(): FieldListContext { - return this.getRuleContext(0, FieldListContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_byClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterByClause) { - listener.enterByClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitByClause) { - listener.exitByClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitByClause) { - return visitor.visitByClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsByClauseContext extends ParserRuleContext { - public BY(): TerminalNode { return this.getToken(OpenSearchPPLParser.BY, 0); } - public fieldList(): FieldListContext | undefined { - return this.tryGetRuleContext(0, FieldListContext); - } - public bySpanClause(): BySpanClauseContext | undefined { - return this.tryGetRuleContext(0, BySpanClauseContext); - } - public COMMA(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COMMA, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsByClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsByClause) { - listener.enterStatsByClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsByClause) { - listener.exitStatsByClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsByClause) { - return visitor.visitStatsByClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BySpanClauseContext extends ParserRuleContext { - public _alias!: QualifiedNameContext; - public spanClause(): SpanClauseContext { - return this.getRuleContext(0, SpanClauseContext); - } - public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_bySpanClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBySpanClause) { - listener.enterBySpanClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBySpanClause) { - listener.exitBySpanClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBySpanClause) { - return visitor.visitBySpanClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SpanClauseContext extends ParserRuleContext { - public _value!: LiteralValueContext; - public _unit!: TimespanUnitContext; - public SPAN(): TerminalNode { return this.getToken(OpenSearchPPLParser.SPAN, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - public COMMA(): TerminalNode { return this.getToken(OpenSearchPPLParser.COMMA, 0); } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public literalValue(): LiteralValueContext { - return this.getRuleContext(0, LiteralValueContext); - } - public timespanUnit(): TimespanUnitContext | undefined { - return this.tryGetRuleContext(0, TimespanUnitContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_spanClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSpanClause) { - listener.enterSpanClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSpanClause) { - listener.exitSpanClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSpanClause) { - return visitor.visitSpanClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortbyClauseContext extends ParserRuleContext { - public sortField(): SortFieldContext[]; - public sortField(i: number): SortFieldContext; - public sortField(i?: number): SortFieldContext | SortFieldContext[] { - if (i === undefined) { - return this.getRuleContexts(SortFieldContext); - } else { - return this.getRuleContext(i, SortFieldContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortbyClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortbyClause) { - listener.enterSortbyClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortbyClause) { - listener.exitSortbyClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortbyClause) { - return visitor.visitSortbyClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalClauseContext extends ParserRuleContext { - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalClause; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalClause) { - listener.enterEvalClause(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalClause) { - listener.exitEvalClause(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalClause) { - return visitor.visitEvalClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsAggTermContext extends ParserRuleContext { - public _alias!: WcFieldExpressionContext; - public statsFunction(): StatsFunctionContext { - return this.getRuleContext(0, StatsFunctionContext); - } - public AS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AS, 0); } - public wcFieldExpression(): WcFieldExpressionContext | undefined { - return this.tryGetRuleContext(0, WcFieldExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsAggTerm; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsAggTerm) { - listener.enterStatsAggTerm(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsAggTerm) { - listener.exitStatsAggTerm(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsAggTerm) { - return visitor.visitStatsAggTerm(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsFunctionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunction; } - public copyFrom(ctx: StatsFunctionContext): void { - super.copyFrom(ctx); - } -} -export class StatsFunctionCallContext extends StatsFunctionContext { - public statsFunctionName(): StatsFunctionNameContext { - return this.getRuleContext(0, StatsFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsFunctionCall) { - listener.enterStatsFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsFunctionCall) { - listener.exitStatsFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsFunctionCall) { - return visitor.visitStatsFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class CountAllFunctionCallContext extends StatsFunctionContext { - public COUNT(): TerminalNode { return this.getToken(OpenSearchPPLParser.COUNT, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterCountAllFunctionCall) { - listener.enterCountAllFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitCountAllFunctionCall) { - listener.exitCountAllFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitCountAllFunctionCall) { - return visitor.visitCountAllFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class DistinctCountFunctionCallContext extends StatsFunctionContext { - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public DISTINCT_COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DISTINCT_COUNT, 0); } - public DC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DC, 0); } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDistinctCountFunctionCall) { - listener.enterDistinctCountFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDistinctCountFunctionCall) { - listener.exitDistinctCountFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDistinctCountFunctionCall) { - return visitor.visitDistinctCountFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class PercentileAggFunctionCallContext extends StatsFunctionContext { - public percentileAggFunction(): PercentileAggFunctionContext { - return this.getRuleContext(0, PercentileAggFunctionContext); - } - constructor(ctx: StatsFunctionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPercentileAggFunctionCall) { - listener.enterPercentileAggFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPercentileAggFunctionCall) { - listener.exitPercentileAggFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPercentileAggFunctionCall) { - return visitor.visitPercentileAggFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StatsFunctionNameContext extends ParserRuleContext { - public AVG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AVG, 0); } - public COUNT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COUNT, 0); } - public SUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUM, 0); } - public MIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MIN, 0); } - public MAX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX, 0); } - public VAR_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_SAMP, 0); } - public VAR_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.VAR_POP, 0); } - public STDDEV_SAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_SAMP, 0); } - public STDDEV_POP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STDDEV_POP, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_statsFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStatsFunctionName) { - listener.enterStatsFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStatsFunctionName) { - listener.exitStatsFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStatsFunctionName) { - return visitor.visitStatsFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PercentileAggFunctionContext extends ParserRuleContext { - public _value!: IntegerLiteralContext; - public _aggField!: FieldExpressionContext; - public PERCENTILE(): TerminalNode { return this.getToken(OpenSearchPPLParser.PERCENTILE, 0); } - public LESS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LESS, 0); } - public GREATER(): TerminalNode { return this.getToken(OpenSearchPPLParser.GREATER, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public integerLiteral(): IntegerLiteralContext { - return this.getRuleContext(0, IntegerLiteralContext); - } - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_percentileAggFunction; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPercentileAggFunction) { - listener.enterPercentileAggFunction(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPercentileAggFunction) { - listener.exitPercentileAggFunction(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPercentileAggFunction) { - return visitor.visitPercentileAggFunction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ExpressionContext extends ParserRuleContext { - public logicalExpression(): LogicalExpressionContext | undefined { - return this.tryGetRuleContext(0, LogicalExpressionContext); - } - public comparisonExpression(): ComparisonExpressionContext | undefined { - return this.tryGetRuleContext(0, ComparisonExpressionContext); - } - public valueExpression(): ValueExpressionContext | undefined { - return this.tryGetRuleContext(0, ValueExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_expression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterExpression) { - listener.enterExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitExpression) { - listener.exitExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitExpression) { - return visitor.visitExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class LogicalExpressionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_logicalExpression; } - public copyFrom(ctx: LogicalExpressionContext): void { - super.copyFrom(ctx); - } -} -export class ComparsionContext extends LogicalExpressionContext { - public comparisonExpression(): ComparisonExpressionContext { - return this.getRuleContext(0, ComparisonExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterComparsion) { - listener.enterComparsion(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitComparsion) { - listener.exitComparsion(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitComparsion) { - return visitor.visitComparsion(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalNotContext extends LogicalExpressionContext { - public NOT(): TerminalNode { return this.getToken(OpenSearchPPLParser.NOT, 0); } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalNot) { - listener.enterLogicalNot(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalNot) { - listener.exitLogicalNot(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalNot) { - return visitor.visitLogicalNot(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalOrContext extends LogicalExpressionContext { - public _left!: LogicalExpressionContext; - public _right!: LogicalExpressionContext; - public OR(): TerminalNode { return this.getToken(OpenSearchPPLParser.OR, 0); } - public logicalExpression(): LogicalExpressionContext[]; - public logicalExpression(i: number): LogicalExpressionContext; - public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(LogicalExpressionContext); - } else { - return this.getRuleContext(i, LogicalExpressionContext); - } - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalOr) { - listener.enterLogicalOr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalOr) { - listener.exitLogicalOr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalOr) { - return visitor.visitLogicalOr(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalAndContext extends LogicalExpressionContext { - public _left!: LogicalExpressionContext; - public _right!: LogicalExpressionContext; - public logicalExpression(): LogicalExpressionContext[]; - public logicalExpression(i: number): LogicalExpressionContext; - public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(LogicalExpressionContext); - } else { - return this.getRuleContext(i, LogicalExpressionContext); - } - } - public AND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AND, 0); } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalAnd) { - listener.enterLogicalAnd(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalAnd) { - listener.exitLogicalAnd(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalAnd) { - return visitor.visitLogicalAnd(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class LogicalXorContext extends LogicalExpressionContext { - public _left!: LogicalExpressionContext; - public _right!: LogicalExpressionContext; - public XOR(): TerminalNode { return this.getToken(OpenSearchPPLParser.XOR, 0); } - public logicalExpression(): LogicalExpressionContext[]; - public logicalExpression(i: number): LogicalExpressionContext; - public logicalExpression(i?: number): LogicalExpressionContext | LogicalExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(LogicalExpressionContext); - } else { - return this.getRuleContext(i, LogicalExpressionContext); - } - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLogicalXor) { - listener.enterLogicalXor(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLogicalXor) { - listener.exitLogicalXor(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLogicalXor) { - return visitor.visitLogicalXor(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class BooleanExprContext extends LogicalExpressionContext { - public booleanExpression(): BooleanExpressionContext { - return this.getRuleContext(0, BooleanExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanExpr) { - listener.enterBooleanExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanExpr) { - listener.exitBooleanExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanExpr) { - return visitor.visitBooleanExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class RelevanceExprContext extends LogicalExpressionContext { - public relevanceExpression(): RelevanceExpressionContext { - return this.getRuleContext(0, RelevanceExpressionContext); - } - constructor(ctx: LogicalExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceExpr) { - listener.enterRelevanceExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceExpr) { - listener.exitRelevanceExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceExpr) { - return visitor.visitRelevanceExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ComparisonExpressionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonExpression; } - public copyFrom(ctx: ComparisonExpressionContext): void { - super.copyFrom(ctx); - } -} -export class CompareExprContext extends ComparisonExpressionContext { - public _left!: ValueExpressionContext; - public _right!: ValueExpressionContext; - public comparisonOperator(): ComparisonOperatorContext { - return this.getRuleContext(0, ComparisonOperatorContext); - } - public valueExpression(): ValueExpressionContext[]; - public valueExpression(i: number): ValueExpressionContext; - public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(ValueExpressionContext); - } else { - return this.getRuleContext(i, ValueExpressionContext); - } - } - constructor(ctx: ComparisonExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterCompareExpr) { - listener.enterCompareExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitCompareExpr) { - listener.exitCompareExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitCompareExpr) { - return visitor.visitCompareExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class InExprContext extends ComparisonExpressionContext { - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public IN(): TerminalNode { return this.getToken(OpenSearchPPLParser.IN, 0); } - public valueList(): ValueListContext { - return this.getRuleContext(0, ValueListContext); - } - constructor(ctx: ComparisonExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterInExpr) { - listener.enterInExpr(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitInExpr) { - listener.exitInExpr(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitInExpr) { - return visitor.visitInExpr(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ValueExpressionContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueExpression; } - public copyFrom(ctx: ValueExpressionContext): void { - super.copyFrom(ctx); - } -} -export class BinaryArithmeticContext extends ValueExpressionContext { - public _left!: ValueExpressionContext; - public _right!: ValueExpressionContext; - public binaryOperator(): BinaryOperatorContext { - return this.getRuleContext(0, BinaryOperatorContext); - } - public valueExpression(): ValueExpressionContext[]; - public valueExpression(i: number): ValueExpressionContext; - public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(ValueExpressionContext); - } else { - return this.getRuleContext(i, ValueExpressionContext); - } - } - constructor(ctx: ValueExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBinaryArithmetic) { - listener.enterBinaryArithmetic(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBinaryArithmetic) { - listener.exitBinaryArithmetic(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBinaryArithmetic) { - return visitor.visitBinaryArithmetic(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class ParentheticBinaryArithmeticContext extends ValueExpressionContext { - public _left!: ValueExpressionContext; - public _right!: ValueExpressionContext; - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public binaryOperator(): BinaryOperatorContext { - return this.getRuleContext(0, BinaryOperatorContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public valueExpression(): ValueExpressionContext[]; - public valueExpression(i: number): ValueExpressionContext; - public valueExpression(i?: number): ValueExpressionContext | ValueExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(ValueExpressionContext); - } else { - return this.getRuleContext(i, ValueExpressionContext); - } - } - constructor(ctx: ValueExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterParentheticBinaryArithmetic) { - listener.enterParentheticBinaryArithmetic(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitParentheticBinaryArithmetic) { - listener.exitParentheticBinaryArithmetic(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitParentheticBinaryArithmetic) { - return visitor.visitParentheticBinaryArithmetic(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class ValueExpressionDefaultContext extends ValueExpressionContext { - public primaryExpression(): PrimaryExpressionContext { - return this.getRuleContext(0, PrimaryExpressionContext); - } - constructor(ctx: ValueExpressionContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterValueExpressionDefault) { - listener.enterValueExpressionDefault(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitValueExpressionDefault) { - listener.exitValueExpressionDefault(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitValueExpressionDefault) { - return visitor.visitValueExpressionDefault(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PrimaryExpressionContext extends ParserRuleContext { - public evalFunctionCall(): EvalFunctionCallContext | undefined { - return this.tryGetRuleContext(0, EvalFunctionCallContext); - } - public dataTypeFunctionCall(): DataTypeFunctionCallContext | undefined { - return this.tryGetRuleContext(0, DataTypeFunctionCallContext); - } - public fieldExpression(): FieldExpressionContext | undefined { - return this.tryGetRuleContext(0, FieldExpressionContext); - } - public literalValue(): LiteralValueContext | undefined { - return this.tryGetRuleContext(0, LiteralValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_primaryExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPrimaryExpression) { - listener.enterPrimaryExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPrimaryExpression) { - listener.exitPrimaryExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPrimaryExpression) { - return visitor.visitPrimaryExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BooleanExpressionContext extends ParserRuleContext { - public booleanFunctionCall(): BooleanFunctionCallContext { - return this.getRuleContext(0, BooleanFunctionCallContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanExpression) { - listener.enterBooleanExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanExpression) { - listener.exitBooleanExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanExpression) { - return visitor.visitBooleanExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceExpressionContext extends ParserRuleContext { - public singleFieldRelevanceFunction(): SingleFieldRelevanceFunctionContext | undefined { - return this.tryGetRuleContext(0, SingleFieldRelevanceFunctionContext); - } - public multiFieldRelevanceFunction(): MultiFieldRelevanceFunctionContext | undefined { - return this.tryGetRuleContext(0, MultiFieldRelevanceFunctionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceExpression) { - listener.enterRelevanceExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceExpression) { - listener.exitRelevanceExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceExpression) { - return visitor.visitRelevanceExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SingleFieldRelevanceFunctionContext extends ParserRuleContext { - public _field!: RelevanceFieldContext; - public _query!: RelevanceQueryContext; - public singleFieldRelevanceFunctionName(): SingleFieldRelevanceFunctionNameContext { - return this.getRuleContext(0, SingleFieldRelevanceFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public relevanceField(): RelevanceFieldContext { - return this.getRuleContext(0, RelevanceFieldContext); - } - public relevanceQuery(): RelevanceQueryContext { - return this.getRuleContext(0, RelevanceQueryContext); - } - public relevanceArg(): RelevanceArgContext[]; - public relevanceArg(i: number): RelevanceArgContext; - public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { - if (i === undefined) { - return this.getRuleContexts(RelevanceArgContext); - } else { - return this.getRuleContext(i, RelevanceArgContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunction; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSingleFieldRelevanceFunction) { - listener.enterSingleFieldRelevanceFunction(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSingleFieldRelevanceFunction) { - listener.exitSingleFieldRelevanceFunction(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSingleFieldRelevanceFunction) { - return visitor.visitSingleFieldRelevanceFunction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MultiFieldRelevanceFunctionContext extends ParserRuleContext { - public _field!: RelevanceFieldAndWeightContext; - public _query!: RelevanceQueryContext; - public multiFieldRelevanceFunctionName(): MultiFieldRelevanceFunctionNameContext { - return this.getRuleContext(0, MultiFieldRelevanceFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public LT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_SQR_PRTHS, 0); } - public RT_SQR_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_SQR_PRTHS, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext[]; - public relevanceFieldAndWeight(i: number): RelevanceFieldAndWeightContext; - public relevanceFieldAndWeight(i?: number): RelevanceFieldAndWeightContext | RelevanceFieldAndWeightContext[] { - if (i === undefined) { - return this.getRuleContexts(RelevanceFieldAndWeightContext); - } else { - return this.getRuleContext(i, RelevanceFieldAndWeightContext); - } - } - public relevanceQuery(): RelevanceQueryContext { - return this.getRuleContext(0, RelevanceQueryContext); - } - public relevanceArg(): RelevanceArgContext[]; - public relevanceArg(i: number): RelevanceArgContext; - public relevanceArg(i?: number): RelevanceArgContext | RelevanceArgContext[] { - if (i === undefined) { - return this.getRuleContexts(RelevanceArgContext); - } else { - return this.getRuleContext(i, RelevanceArgContext); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunction; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterMultiFieldRelevanceFunction) { - listener.enterMultiFieldRelevanceFunction(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitMultiFieldRelevanceFunction) { - listener.exitMultiFieldRelevanceFunction(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitMultiFieldRelevanceFunction) { - return visitor.visitMultiFieldRelevanceFunction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TableSourceContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - public ID_DATE_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID_DATE_SUFFIX, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_tableSource; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTableSource) { - listener.enterTableSource(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTableSource) { - listener.exitTableSource(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTableSource) { - return visitor.visitTableSource(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FieldListContext extends ParserRuleContext { - public fieldExpression(): FieldExpressionContext[]; - public fieldExpression(i: number): FieldExpressionContext; - public fieldExpression(i?: number): FieldExpressionContext | FieldExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(FieldExpressionContext); - } else { - return this.getRuleContext(i, FieldExpressionContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldList; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFieldList) { - listener.enterFieldList(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFieldList) { - listener.exitFieldList(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFieldList) { - return visitor.visitFieldList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WcFieldListContext extends ParserRuleContext { - public wcFieldExpression(): WcFieldExpressionContext[]; - public wcFieldExpression(i: number): WcFieldExpressionContext; - public wcFieldExpression(i?: number): WcFieldExpressionContext | WcFieldExpressionContext[] { - if (i === undefined) { - return this.getRuleContexts(WcFieldExpressionContext); - } else { - return this.getRuleContext(i, WcFieldExpressionContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldList; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWcFieldList) { - listener.enterWcFieldList(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWcFieldList) { - listener.exitWcFieldList(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWcFieldList) { - return visitor.visitWcFieldList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortFieldContext extends ParserRuleContext { - public sortFieldExpression(): SortFieldExpressionContext { - return this.getRuleContext(0, SortFieldExpressionContext); - } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortField; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortField) { - listener.enterSortField(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortField) { - listener.exitSortField(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortField) { - return visitor.visitSortField(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SortFieldExpressionContext extends ParserRuleContext { - public fieldExpression(): FieldExpressionContext { - return this.getRuleContext(0, FieldExpressionContext); - } - public AUTO(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO, 0); } - public LT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public RT_PRTHS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public STR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STR, 0); } - public IP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IP, 0); } - public NUM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NUM, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_sortFieldExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSortFieldExpression) { - listener.enterSortFieldExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSortFieldExpression) { - listener.exitSortFieldExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSortFieldExpression) { - return visitor.visitSortFieldExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FieldExpressionContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext { - return this.getRuleContext(0, QualifiedNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_fieldExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFieldExpression) { - listener.enterFieldExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFieldExpression) { - listener.exitFieldExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFieldExpression) { - return visitor.visitFieldExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WcFieldExpressionContext extends ParserRuleContext { - public wcQualifiedName(): WcQualifiedNameContext { - return this.getRuleContext(0, WcQualifiedNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcFieldExpression; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWcFieldExpression) { - listener.enterWcFieldExpression(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWcFieldExpression) { - listener.exitWcFieldExpression(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWcFieldExpression) { - return visitor.visitWcFieldExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalFunctionCallContext extends ParserRuleContext { - public evalFunctionName(): EvalFunctionNameContext { - return this.getRuleContext(0, EvalFunctionNameContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public functionArgs(): FunctionArgsContext { - return this.getRuleContext(0, FunctionArgsContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionCall; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalFunctionCall) { - listener.enterEvalFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalFunctionCall) { - listener.exitEvalFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalFunctionCall) { - return visitor.visitEvalFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DataTypeFunctionCallContext extends ParserRuleContext { - public CAST(): TerminalNode { return this.getToken(OpenSearchPPLParser.CAST, 0); } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext); - } - public AS(): TerminalNode { return this.getToken(OpenSearchPPLParser.AS, 0); } - public convertedDataType(): ConvertedDataTypeContext { - return this.getRuleContext(0, ConvertedDataTypeContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dataTypeFunctionCall; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDataTypeFunctionCall) { - listener.enterDataTypeFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDataTypeFunctionCall) { - listener.exitDataTypeFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDataTypeFunctionCall) { - return visitor.visitDataTypeFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BooleanFunctionCallContext extends ParserRuleContext { - public conditionFunctionBase(): ConditionFunctionBaseContext { - return this.getRuleContext(0, ConditionFunctionBaseContext); - } - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public functionArgs(): FunctionArgsContext { - return this.getRuleContext(0, FunctionArgsContext); - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanFunctionCall; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanFunctionCall) { - listener.enterBooleanFunctionCall(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanFunctionCall) { - listener.exitBooleanFunctionCall(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanFunctionCall) { - return visitor.visitBooleanFunctionCall(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConvertedDataTypeContext extends ParserRuleContext { - public _typeName!: Token; - public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } - public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } - public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public INT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INT, 0); } - public INTEGER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.INTEGER, 0); } - public DOUBLE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOUBLE, 0); } - public LONG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LONG, 0); } - public FLOAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOAT, 0); } - public STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRING, 0); } - public BOOLEAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOLEAN, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_convertedDataType; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterConvertedDataType) { - listener.enterConvertedDataType(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitConvertedDataType) { - listener.exitConvertedDataType(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitConvertedDataType) { - return visitor.visitConvertedDataType(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class EvalFunctionNameContext extends ParserRuleContext { - public mathematicalFunctionBase(): MathematicalFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, MathematicalFunctionBaseContext); - } - public dateAndTimeFunctionBase(): DateAndTimeFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, DateAndTimeFunctionBaseContext); - } - public textFunctionBase(): TextFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, TextFunctionBaseContext); - } - public conditionFunctionBase(): ConditionFunctionBaseContext | undefined { - return this.tryGetRuleContext(0, ConditionFunctionBaseContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_evalFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterEvalFunctionName) { - listener.enterEvalFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitEvalFunctionName) { - listener.exitEvalFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitEvalFunctionName) { - return visitor.visitEvalFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FunctionArgsContext extends ParserRuleContext { - public functionArg(): FunctionArgContext[]; - public functionArg(i: number): FunctionArgContext; - public functionArg(i?: number): FunctionArgContext | FunctionArgContext[] { - if (i === undefined) { - return this.getRuleContexts(FunctionArgContext); - } else { - return this.getRuleContext(i, FunctionArgContext); - } - } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArgs; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFunctionArgs) { - listener.enterFunctionArgs(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFunctionArgs) { - listener.exitFunctionArgs(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFunctionArgs) { - return visitor.visitFunctionArgs(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class FunctionArgContext extends ParserRuleContext { - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_functionArg; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterFunctionArg) { - listener.enterFunctionArg(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitFunctionArg) { - listener.exitFunctionArg(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitFunctionArg) { - return visitor.visitFunctionArg(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceArgContext extends ParserRuleContext { - public relevanceArgName(): RelevanceArgNameContext { - return this.getRuleContext(0, RelevanceArgNameContext); - } - public EQUAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0); } - public relevanceArgValue(): RelevanceArgValueContext { - return this.getRuleContext(0, RelevanceArgValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArg; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceArg) { - listener.enterRelevanceArg(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceArg) { - listener.exitRelevanceArg(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceArg) { - return visitor.visitRelevanceArg(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceArgNameContext extends ParserRuleContext { - public ALLOW_LEADING_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ALLOW_LEADING_WILDCARD, 0); } - public ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZER, 0); } - public ANALYZE_WILDCARD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ANALYZE_WILDCARD, 0); } - public AUTO_GENERATE_SYNONYMS_PHRASE_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY, 0); } - public BOOST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BOOST, 0); } - public CUTOFF_FREQUENCY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CUTOFF_FREQUENCY, 0); } - public DEFAULT_FIELD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_FIELD, 0); } - public DEFAULT_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEFAULT_OPERATOR, 0); } - public ENABLE_POSITION_INCREMENTS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS, 0); } - public FIELDS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIELDS, 0); } - public FLAGS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLAGS, 0); } - public FUZZINESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZINESS, 0); } - public FUZZY_MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS, 0); } - public FUZZY_PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_PREFIX_LENGTH, 0); } - public FUZZY_REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_REWRITE, 0); } - public FUZZY_TRANSPOSITIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FUZZY_TRANSPOSITIONS, 0); } - public LENIENT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENIENT, 0); } - public LOW_FREQ_OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOW_FREQ_OPERATOR, 0); } - public MAX_DETERMINIZED_STATES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_DETERMINIZED_STATES, 0); } - public MAX_EXPANSIONS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MAX_EXPANSIONS, 0); } - public MINIMUM_SHOULD_MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINIMUM_SHOULD_MATCH, 0); } - public OPERATOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.OPERATOR, 0); } - public PHRASE_SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PHRASE_SLOP, 0); } - public PREFIX_LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PREFIX_LENGTH, 0); } - public QUOTE_ANALYZER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_ANALYZER, 0); } - public QUOTE_FIELD_SUFFIX(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUOTE_FIELD_SUFFIX, 0); } - public REWRITE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REWRITE, 0); } - public SLOP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SLOP, 0); } - public TIE_BREAKER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIE_BREAKER, 0); } - public TIME_ZONE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_ZONE, 0); } - public TYPE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TYPE, 0); } - public ZERO_TERMS_QUERY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ZERO_TERMS_QUERY, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceArgName) { - listener.enterRelevanceArgName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceArgName) { - listener.exitRelevanceArgName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceArgName) { - return visitor.visitRelevanceArgName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceFieldAndWeightContext extends ParserRuleContext { - public _field!: RelevanceFieldContext; - public _weight!: RelevanceFieldWeightContext; - public relevanceField(): RelevanceFieldContext { - return this.getRuleContext(0, RelevanceFieldContext); - } - public relevanceFieldWeight(): RelevanceFieldWeightContext | undefined { - return this.tryGetRuleContext(0, RelevanceFieldWeightContext); - } - public BIT_XOR_OP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BIT_XOR_OP, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldAndWeight; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceFieldAndWeight) { - listener.enterRelevanceFieldAndWeight(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceFieldAndWeight) { - listener.exitRelevanceFieldAndWeight(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceFieldAndWeight) { - return visitor.visitRelevanceFieldAndWeight(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceFieldWeightContext extends ParserRuleContext { - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public decimalLiteral(): DecimalLiteralContext | undefined { - return this.tryGetRuleContext(0, DecimalLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceFieldWeight; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceFieldWeight) { - listener.enterRelevanceFieldWeight(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceFieldWeight) { - listener.exitRelevanceFieldWeight(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceFieldWeight) { - return visitor.visitRelevanceFieldWeight(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceFieldContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceField; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceField) { - listener.enterRelevanceField(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceField) { - listener.exitRelevanceField(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceField) { - return visitor.visitRelevanceField(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceQueryContext extends ParserRuleContext { - public relevanceArgValue(): RelevanceArgValueContext { - return this.getRuleContext(0, RelevanceArgValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceQuery; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceQuery) { - listener.enterRelevanceQuery(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceQuery) { - listener.exitRelevanceQuery(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceQuery) { - return visitor.visitRelevanceQuery(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RelevanceArgValueContext extends ParserRuleContext { - public qualifiedName(): QualifiedNameContext | undefined { - return this.tryGetRuleContext(0, QualifiedNameContext); - } - public literalValue(): LiteralValueContext | undefined { - return this.tryGetRuleContext(0, LiteralValueContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_relevanceArgValue; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterRelevanceArgValue) { - listener.enterRelevanceArgValue(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitRelevanceArgValue) { - listener.exitRelevanceArgValue(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitRelevanceArgValue) { - return visitor.visitRelevanceArgValue(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MathematicalFunctionBaseContext extends ParserRuleContext { - public ABS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ABS, 0); } - public CEIL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEIL, 0); } - public CEILING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CEILING, 0); } - public CONV(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONV, 0); } - public CRC32(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CRC32, 0); } - public E(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.E, 0); } - public EXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EXP, 0); } - public FLOOR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FLOOR, 0); } - public LN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LN, 0); } - public LOG(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG, 0); } - public LOG10(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG10, 0); } - public LOG2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOG2, 0); } - public MOD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MOD, 0); } - public PI(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PI, 0); } - public POW(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POW, 0); } - public POWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.POWER, 0); } - public RAND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RAND, 0); } - public ROUND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ROUND, 0); } - public SIGN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIGN, 0); } - public SQRT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQRT, 0); } - public TRUNCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUNCATE, 0); } - public trigonometricFunctionName(): TrigonometricFunctionNameContext | undefined { - return this.tryGetRuleContext(0, TrigonometricFunctionNameContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_mathematicalFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterMathematicalFunctionBase) { - listener.enterMathematicalFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitMathematicalFunctionBase) { - listener.exitMathematicalFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitMathematicalFunctionBase) { - return visitor.visitMathematicalFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TrigonometricFunctionNameContext extends ParserRuleContext { - public ACOS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ACOS, 0); } - public ASIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASIN, 0); } - public ATAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN, 0); } - public ATAN2(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ATAN2, 0); } - public COS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COS, 0); } - public COT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.COT, 0); } - public DEGREES(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DEGREES, 0); } - public RADIANS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RADIANS, 0); } - public SIN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SIN, 0); } - public TAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TAN, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_trigonometricFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTrigonometricFunctionName) { - listener.enterTrigonometricFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTrigonometricFunctionName) { - listener.exitTrigonometricFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTrigonometricFunctionName) { - return visitor.visitTrigonometricFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DateAndTimeFunctionBaseContext extends ParserRuleContext { - public ADDDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ADDDATE, 0); } - public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } - public DATE_ADD(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_ADD, 0); } - public DATE_SUB(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_SUB, 0); } - public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } - public DAYNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYNAME, 0); } - public DAYOFMONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFMONTH, 0); } - public DAYOFWEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFWEEK, 0); } - public DAYOFYEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAYOFYEAR, 0); } - public FROM_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FROM_DAYS, 0); } - public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } - public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } - public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } - public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } - public MONTHNAME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTHNAME, 0); } - public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } - public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } - public SUBDATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBDATE, 0); } - public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } - public TIME_TO_SEC(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME_TO_SEC, 0); } - public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public TO_DAYS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TO_DAYS, 0); } - public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } - public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } - public DATE_FORMAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE_FORMAT, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_dateAndTimeFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDateAndTimeFunctionBase) { - listener.enterDateAndTimeFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDateAndTimeFunctionBase) { - listener.exitDateAndTimeFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDateAndTimeFunctionBase) { - return visitor.visitDateAndTimeFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConditionFunctionBaseContext extends ParserRuleContext { - public LIKE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LIKE, 0); } - public IF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IF, 0); } - public ISNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNULL, 0); } - public ISNOTNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ISNOTNULL, 0); } - public IFNULL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.IFNULL, 0); } - public NULLIF(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NULLIF, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_conditionFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterConditionFunctionBase) { - listener.enterConditionFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitConditionFunctionBase) { - listener.exitConditionFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitConditionFunctionBase) { - return visitor.visitConditionFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TextFunctionBaseContext extends ParserRuleContext { - public SUBSTR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTR, 0); } - public SUBSTRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SUBSTRING, 0); } - public TRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRIM, 0); } - public LTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LTRIM, 0); } - public RTRIM(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RTRIM, 0); } - public LOWER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOWER, 0); } - public UPPER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.UPPER, 0); } - public CONCAT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT, 0); } - public CONCAT_WS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.CONCAT_WS, 0); } - public LENGTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LENGTH, 0); } - public STRCMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STRCMP, 0); } - public RIGHT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.RIGHT, 0); } - public LEFT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LEFT, 0); } - public ASCII(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ASCII, 0); } - public LOCATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LOCATE, 0); } - public REPLACE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REPLACE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_textFunctionBase; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTextFunctionBase) { - listener.enterTextFunctionBase(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTextFunctionBase) { - listener.exitTextFunctionBase(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTextFunctionBase) { - return visitor.visitTextFunctionBase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ComparisonOperatorContext extends ParserRuleContext { - public EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.EQUAL, 0); } - public NOT_EQUAL(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_EQUAL, 0); } - public LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LESS, 0); } - public NOT_LESS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_LESS, 0); } - public GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.GREATER, 0); } - public NOT_GREATER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.NOT_GREATER, 0); } - public REGEXP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.REGEXP, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_comparisonOperator; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterComparisonOperator) { - listener.enterComparisonOperator(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitComparisonOperator) { - listener.exitComparisonOperator(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitComparisonOperator) { - return visitor.visitComparisonOperator(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BinaryOperatorContext extends ParserRuleContext { - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - public STAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.STAR, 0); } - public DIVIDE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DIVIDE, 0); } - public MODULE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MODULE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_binaryOperator; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBinaryOperator) { - listener.enterBinaryOperator(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBinaryOperator) { - listener.exitBinaryOperator(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBinaryOperator) { - return visitor.visitBinaryOperator(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SingleFieldRelevanceFunctionNameContext extends ParserRuleContext { - public MATCH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH, 0); } - public MATCH_PHRASE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MATCH_PHRASE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_singleFieldRelevanceFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterSingleFieldRelevanceFunctionName) { - listener.enterSingleFieldRelevanceFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitSingleFieldRelevanceFunctionName) { - listener.exitSingleFieldRelevanceFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitSingleFieldRelevanceFunctionName) { - return visitor.visitSingleFieldRelevanceFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MultiFieldRelevanceFunctionNameContext extends ParserRuleContext { - public SIMPLE_QUERY_STRING(): TerminalNode { return this.getToken(OpenSearchPPLParser.SIMPLE_QUERY_STRING, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_multiFieldRelevanceFunctionName; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterMultiFieldRelevanceFunctionName) { - listener.enterMultiFieldRelevanceFunctionName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitMultiFieldRelevanceFunctionName) { - listener.exitMultiFieldRelevanceFunctionName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitMultiFieldRelevanceFunctionName) { - return visitor.visitMultiFieldRelevanceFunctionName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class LiteralValueContext extends ParserRuleContext { - public intervalLiteral(): IntervalLiteralContext | undefined { - return this.tryGetRuleContext(0, IntervalLiteralContext); - } - public stringLiteral(): StringLiteralContext | undefined { - return this.tryGetRuleContext(0, StringLiteralContext); - } - public integerLiteral(): IntegerLiteralContext | undefined { - return this.tryGetRuleContext(0, IntegerLiteralContext); - } - public decimalLiteral(): DecimalLiteralContext | undefined { - return this.tryGetRuleContext(0, DecimalLiteralContext); - } - public booleanLiteral(): BooleanLiteralContext | undefined { - return this.tryGetRuleContext(0, BooleanLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_literalValue; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterLiteralValue) { - listener.enterLiteralValue(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitLiteralValue) { - listener.exitLiteralValue(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitLiteralValue) { - return visitor.visitLiteralValue(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IntervalLiteralContext extends ParserRuleContext { - public INTERVAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTERVAL, 0); } - public valueExpression(): ValueExpressionContext { - return this.getRuleContext(0, ValueExpressionContext); - } - public intervalUnit(): IntervalUnitContext { - return this.getRuleContext(0, IntervalUnitContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIntervalLiteral) { - listener.enterIntervalLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIntervalLiteral) { - listener.exitIntervalLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIntervalLiteral) { - return visitor.visitIntervalLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class StringLiteralContext extends ParserRuleContext { - public DQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DQUOTA_STRING, 0); } - public SQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SQUOTA_STRING, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_stringLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterStringLiteral) { - listener.enterStringLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitStringLiteral) { - listener.exitStringLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitStringLiteral) { - return visitor.visitStringLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IntegerLiteralContext extends ParserRuleContext { - public INTEGER_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.INTEGER_LITERAL, 0); } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_integerLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIntegerLiteral) { - listener.enterIntegerLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIntegerLiteral) { - listener.exitIntegerLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIntegerLiteral) { - return visitor.visitIntegerLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DecimalLiteralContext extends ParserRuleContext { - public DECIMAL_LITERAL(): TerminalNode { return this.getToken(OpenSearchPPLParser.DECIMAL_LITERAL, 0); } - public PLUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.PLUS, 0); } - public MINUS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUS, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_decimalLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterDecimalLiteral) { - listener.enterDecimalLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitDecimalLiteral) { - listener.exitDecimalLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitDecimalLiteral) { - return visitor.visitDecimalLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class BooleanLiteralContext extends ParserRuleContext { - public TRUE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TRUE, 0); } - public FALSE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FALSE, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_booleanLiteral; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterBooleanLiteral) { - listener.enterBooleanLiteral(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitBooleanLiteral) { - listener.exitBooleanLiteral(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitBooleanLiteral) { - return visitor.visitBooleanLiteral(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PatternContext extends ParserRuleContext { - public stringLiteral(): StringLiteralContext { - return this.getRuleContext(0, StringLiteralContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_pattern; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterPattern) { - listener.enterPattern(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitPattern) { - listener.exitPattern(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitPattern) { - return visitor.visitPattern(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IntervalUnitContext extends ParserRuleContext { - public MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MICROSECOND, 0); } - public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } - public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } - public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } - public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } - public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } - public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } - public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } - public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } - public SECOND_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND_MICROSECOND, 0); } - public MINUTE_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_MICROSECOND, 0); } - public MINUTE_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE_SECOND, 0); } - public HOUR_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MICROSECOND, 0); } - public HOUR_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_SECOND, 0); } - public HOUR_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR_MINUTE, 0); } - public DAY_MICROSECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MICROSECOND, 0); } - public DAY_SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_SECOND, 0); } - public DAY_MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_MINUTE, 0); } - public DAY_HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY_HOUR, 0); } - public YEAR_MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR_MONTH, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_intervalUnit; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIntervalUnit) { - listener.enterIntervalUnit(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIntervalUnit) { - listener.exitIntervalUnit(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIntervalUnit) { - return visitor.visitIntervalUnit(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TimespanUnitContext extends ParserRuleContext { - public MS(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MS, 0); } - public S(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.S, 0); } - public M(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.M, 0); } - public H(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.H, 0); } - public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } - public W(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.W, 0); } - public Q(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Q, 0); } - public Y(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.Y, 0); } - public MILLISECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MILLISECOND, 0); } - public SECOND(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SECOND, 0); } - public MINUTE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MINUTE, 0); } - public HOUR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.HOUR, 0); } - public DAY(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DAY, 0); } - public WEEK(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.WEEK, 0); } - public MONTH(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.MONTH, 0); } - public QUARTER(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.QUARTER, 0); } - public YEAR(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.YEAR, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_timespanUnit; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterTimespanUnit) { - listener.enterTimespanUnit(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitTimespanUnit) { - listener.exitTimespanUnit(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitTimespanUnit) { - return visitor.visitTimespanUnit(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ValueListContext extends ParserRuleContext { - public LT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.LT_PRTHS, 0); } - public literalValue(): LiteralValueContext[]; - public literalValue(i: number): LiteralValueContext; - public literalValue(i?: number): LiteralValueContext | LiteralValueContext[] { - if (i === undefined) { - return this.getRuleContexts(LiteralValueContext); - } else { - return this.getRuleContext(i, LiteralValueContext); - } - } - public RT_PRTHS(): TerminalNode { return this.getToken(OpenSearchPPLParser.RT_PRTHS, 0); } - public COMMA(): TerminalNode[]; - public COMMA(i: number): TerminalNode; - public COMMA(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_valueList; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterValueList) { - listener.enterValueList(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitValueList) { - listener.exitValueList(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitValueList) { - return visitor.visitValueList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class QualifiedNameContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_qualifiedName; } - public copyFrom(ctx: QualifiedNameContext): void { - super.copyFrom(ctx); - } -} -export class IdentsAsQualifiedNameContext extends QualifiedNameContext { - public ident(): IdentContext[]; - public ident(i: number): IdentContext; - public ident(i?: number): IdentContext | IdentContext[] { - if (i === undefined) { - return this.getRuleContexts(IdentContext); - } else { - return this.getRuleContext(i, IdentContext); - } - } - public DOT(): TerminalNode[]; - public DOT(i: number): TerminalNode; - public DOT(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOT); - } else { - return this.getToken(OpenSearchPPLParser.DOT, i); - } - } - constructor(ctx: QualifiedNameContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIdentsAsQualifiedName) { - listener.enterIdentsAsQualifiedName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIdentsAsQualifiedName) { - listener.exitIdentsAsQualifiedName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIdentsAsQualifiedName) { - return visitor.visitIdentsAsQualifiedName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WcQualifiedNameContext extends ParserRuleContext { - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wcQualifiedName; } - public copyFrom(ctx: WcQualifiedNameContext): void { - super.copyFrom(ctx); - } -} -export class IdentsAsWildcardQualifiedNameContext extends WcQualifiedNameContext { - public wildcard(): WildcardContext[]; - public wildcard(i: number): WildcardContext; - public wildcard(i?: number): WildcardContext | WildcardContext[] { - if (i === undefined) { - return this.getRuleContexts(WildcardContext); - } else { - return this.getRuleContext(i, WildcardContext); - } - } - public DOT(): TerminalNode[]; - public DOT(i: number): TerminalNode; - public DOT(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOT); - } else { - return this.getToken(OpenSearchPPLParser.DOT, i); - } - } - constructor(ctx: WcQualifiedNameContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIdentsAsWildcardQualifiedName) { - listener.enterIdentsAsWildcardQualifiedName(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIdentsAsWildcardQualifiedName) { - listener.exitIdentsAsWildcardQualifiedName(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIdentsAsWildcardQualifiedName) { - return visitor.visitIdentsAsWildcardQualifiedName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class IdentContext extends ParserRuleContext { - public ID(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.ID, 0); } - public DOT(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DOT, 0); } - public BACKTICK(): TerminalNode[]; - public BACKTICK(i: number): TerminalNode; - public BACKTICK(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.BACKTICK); - } else { - return this.getToken(OpenSearchPPLParser.BACKTICK, i); - } - } - public ident(): IdentContext | undefined { - return this.tryGetRuleContext(0, IdentContext); - } - public BQUOTA_STRING(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.BQUOTA_STRING, 0); } - public keywordsCanBeId(): KeywordsCanBeIdContext | undefined { - return this.tryGetRuleContext(0, KeywordsCanBeIdContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_ident; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterIdent) { - listener.enterIdent(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitIdent) { - listener.exitIdent(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitIdent) { - return visitor.visitIdent(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WildcardContext extends ParserRuleContext { - public ident(): IdentContext[]; - public ident(i: number): IdentContext; - public ident(i?: number): IdentContext | IdentContext[] { - if (i === undefined) { - return this.getRuleContexts(IdentContext); - } else { - return this.getRuleContext(i, IdentContext); - } - } - public MODULE(): TerminalNode[]; - public MODULE(i: number): TerminalNode; - public MODULE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.MODULE); - } else { - return this.getToken(OpenSearchPPLParser.MODULE, i); - } - } - public SINGLE_QUOTE(): TerminalNode[]; - public SINGLE_QUOTE(i: number): TerminalNode; - public SINGLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.SINGLE_QUOTE); - } else { - return this.getToken(OpenSearchPPLParser.SINGLE_QUOTE, i); - } - } - public wildcard(): WildcardContext | undefined { - return this.tryGetRuleContext(0, WildcardContext); - } - public DOUBLE_QUOTE(): TerminalNode[]; - public DOUBLE_QUOTE(i: number): TerminalNode; - public DOUBLE_QUOTE(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOUBLE_QUOTE); - } else { - return this.getToken(OpenSearchPPLParser.DOUBLE_QUOTE, i); - } - } - public BACKTICK(): TerminalNode[]; - public BACKTICK(i: number): TerminalNode; - public BACKTICK(i?: number): TerminalNode | TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.BACKTICK); - } else { - return this.getToken(OpenSearchPPLParser.BACKTICK, i); - } - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_wildcard; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterWildcard) { - listener.enterWildcard(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitWildcard) { - listener.exitWildcard(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitWildcard) { - return visitor.visitWildcard(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class KeywordsCanBeIdContext extends ParserRuleContext { - public D(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.D, 0); } - public statsFunctionName(): StatsFunctionNameContext | undefined { - return this.tryGetRuleContext(0, StatsFunctionNameContext); - } - public TIMESTAMP(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIMESTAMP, 0); } - public DATE(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.DATE, 0); } - public TIME(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.TIME, 0); } - public FIRST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.FIRST, 0); } - public LAST(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.LAST, 0); } - public timespanUnit(): TimespanUnitContext | undefined { - return this.tryGetRuleContext(0, TimespanUnitContext); - } - public SPAN(): TerminalNode | undefined { return this.tryGetToken(OpenSearchPPLParser.SPAN, 0); } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return OpenSearchPPLParser.RULE_keywordsCanBeId; } - // @Override - public enterRule(listener: OpenSearchPPLParserListener): void { - if (listener.enterKeywordsCanBeId) { - listener.enterKeywordsCanBeId(this); - } - } - // @Override - public exitRule(listener: OpenSearchPPLParserListener): void { - if (listener.exitKeywordsCanBeId) { - listener.exitKeywordsCanBeId(this); - } - } - // @Override - public accept(visitor: OpenSearchPPLParserVisitor): Result { - if (visitor.visitKeywordsCanBeId) { - return visitor.visitKeywordsCanBeId(this); - } else { - return visitor.visitChildren(this); - } - } -} - - diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts deleted file mode 100644 index c3bb1f4bc..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserListener.ts +++ /dev/null @@ -1,1327 +0,0 @@ -// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener"; - -import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; -import { SearchFromContext } from "./OpenSearchPPLParser"; -import { SearchFromFilterContext } from "./OpenSearchPPLParser"; -import { SearchFilterFromContext } from "./OpenSearchPPLParser"; -import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; -import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; -import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; -import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; -import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; -import { CompareExprContext } from "./OpenSearchPPLParser"; -import { InExprContext } from "./OpenSearchPPLParser"; -import { ComparsionContext } from "./OpenSearchPPLParser"; -import { LogicalNotContext } from "./OpenSearchPPLParser"; -import { LogicalOrContext } from "./OpenSearchPPLParser"; -import { LogicalAndContext } from "./OpenSearchPPLParser"; -import { LogicalXorContext } from "./OpenSearchPPLParser"; -import { BooleanExprContext } from "./OpenSearchPPLParser"; -import { RelevanceExprContext } from "./OpenSearchPPLParser"; -import { RootContext } from "./OpenSearchPPLParser"; -import { PplStatementContext } from "./OpenSearchPPLParser"; -import { CommandsContext } from "./OpenSearchPPLParser"; -import { SearchCommandContext } from "./OpenSearchPPLParser"; -import { WhereCommandContext } from "./OpenSearchPPLParser"; -import { FieldsCommandContext } from "./OpenSearchPPLParser"; -import { RenameCommandContext } from "./OpenSearchPPLParser"; -import { StatsCommandContext } from "./OpenSearchPPLParser"; -import { DedupCommandContext } from "./OpenSearchPPLParser"; -import { SortCommandContext } from "./OpenSearchPPLParser"; -import { EvalCommandContext } from "./OpenSearchPPLParser"; -import { HeadCommandContext } from "./OpenSearchPPLParser"; -import { TopCommandContext } from "./OpenSearchPPLParser"; -import { RareCommandContext } from "./OpenSearchPPLParser"; -import { ParseCommandContext } from "./OpenSearchPPLParser"; -import { KmeansCommandContext } from "./OpenSearchPPLParser"; -import { KmeansParameterContext } from "./OpenSearchPPLParser"; -import { AdCommandContext } from "./OpenSearchPPLParser"; -import { AdParameterContext } from "./OpenSearchPPLParser"; -import { FromClauseContext } from "./OpenSearchPPLParser"; -import { RenameClasueContext } from "./OpenSearchPPLParser"; -import { ByClauseContext } from "./OpenSearchPPLParser"; -import { StatsByClauseContext } from "./OpenSearchPPLParser"; -import { BySpanClauseContext } from "./OpenSearchPPLParser"; -import { SpanClauseContext } from "./OpenSearchPPLParser"; -import { SortbyClauseContext } from "./OpenSearchPPLParser"; -import { EvalClauseContext } from "./OpenSearchPPLParser"; -import { StatsAggTermContext } from "./OpenSearchPPLParser"; -import { StatsFunctionContext } from "./OpenSearchPPLParser"; -import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; -import { ExpressionContext } from "./OpenSearchPPLParser"; -import { LogicalExpressionContext } from "./OpenSearchPPLParser"; -import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; -import { ValueExpressionContext } from "./OpenSearchPPLParser"; -import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; -import { BooleanExpressionContext } from "./OpenSearchPPLParser"; -import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { TableSourceContext } from "./OpenSearchPPLParser"; -import { FieldListContext } from "./OpenSearchPPLParser"; -import { WcFieldListContext } from "./OpenSearchPPLParser"; -import { SortFieldContext } from "./OpenSearchPPLParser"; -import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; -import { FieldExpressionContext } from "./OpenSearchPPLParser"; -import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; -import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; -import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; -import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; -import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; -import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; -import { FunctionArgsContext } from "./OpenSearchPPLParser"; -import { FunctionArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldContext } from "./OpenSearchPPLParser"; -import { RelevanceQueryContext } from "./OpenSearchPPLParser"; -import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; -import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; -import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; -import { BinaryOperatorContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { LiteralValueContext } from "./OpenSearchPPLParser"; -import { IntervalLiteralContext } from "./OpenSearchPPLParser"; -import { StringLiteralContext } from "./OpenSearchPPLParser"; -import { IntegerLiteralContext } from "./OpenSearchPPLParser"; -import { DecimalLiteralContext } from "./OpenSearchPPLParser"; -import { BooleanLiteralContext } from "./OpenSearchPPLParser"; -import { PatternContext } from "./OpenSearchPPLParser"; -import { IntervalUnitContext } from "./OpenSearchPPLParser"; -import { TimespanUnitContext } from "./OpenSearchPPLParser"; -import { ValueListContext } from "./OpenSearchPPLParser"; -import { QualifiedNameContext } from "./OpenSearchPPLParser"; -import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; -import { IdentContext } from "./OpenSearchPPLParser"; -import { WildcardContext } from "./OpenSearchPPLParser"; -import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; - - -/** - * This interface defines a complete listener for a parse tree produced by - * `OpenSearchPPLParser`. - */ -export interface OpenSearchPPLParserListener extends ParseTreeListener { - /** - * Enter a parse tree produced by the `identsAsWildcardQualifiedName` - * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - enterIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; - /** - * Exit a parse tree produced by the `identsAsWildcardQualifiedName` - * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - exitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => void; - - /** - * Enter a parse tree produced by the `searchFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchFrom?: (ctx: SearchFromContext) => void; - /** - * Exit a parse tree produced by the `searchFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchFrom?: (ctx: SearchFromContext) => void; - - /** - * Enter a parse tree produced by the `searchFromFilter` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchFromFilter?: (ctx: SearchFromFilterContext) => void; - /** - * Exit a parse tree produced by the `searchFromFilter` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchFromFilter?: (ctx: SearchFromFilterContext) => void; - - /** - * Enter a parse tree produced by the `searchFilterFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; - /** - * Exit a parse tree produced by the `searchFilterFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchFilterFrom?: (ctx: SearchFilterFromContext) => void; - - /** - * Enter a parse tree produced by the `statsFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `statsFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `countAllFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `countAllFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `distinctCountFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `distinctCountFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `percentileAggFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; - /** - * Exit a parse tree produced by the `percentileAggFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => void; - - /** - * Enter a parse tree produced by the `identsAsQualifiedName` - * labeled alternative in `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - enterIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; - /** - * Exit a parse tree produced by the `identsAsQualifiedName` - * labeled alternative in `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - exitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => void; - - /** - * Enter a parse tree produced by the `binaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; - /** - * Exit a parse tree produced by the `binaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => void; - - /** - * Enter a parse tree produced by the `parentheticBinaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; - /** - * Exit a parse tree produced by the `parentheticBinaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => void; - - /** - * Enter a parse tree produced by the `valueExpressionDefault` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; - /** - * Exit a parse tree produced by the `valueExpressionDefault` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void; - - /** - * Enter a parse tree produced by the `compareExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - enterCompareExpr?: (ctx: CompareExprContext) => void; - /** - * Exit a parse tree produced by the `compareExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - exitCompareExpr?: (ctx: CompareExprContext) => void; - - /** - * Enter a parse tree produced by the `inExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - enterInExpr?: (ctx: InExprContext) => void; - /** - * Exit a parse tree produced by the `inExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - exitInExpr?: (ctx: InExprContext) => void; - - /** - * Enter a parse tree produced by the `comparsion` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterComparsion?: (ctx: ComparsionContext) => void; - /** - * Exit a parse tree produced by the `comparsion` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitComparsion?: (ctx: ComparsionContext) => void; - - /** - * Enter a parse tree produced by the `logicalNot` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalNot?: (ctx: LogicalNotContext) => void; - /** - * Exit a parse tree produced by the `logicalNot` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalNot?: (ctx: LogicalNotContext) => void; - - /** - * Enter a parse tree produced by the `logicalOr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalOr?: (ctx: LogicalOrContext) => void; - /** - * Exit a parse tree produced by the `logicalOr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalOr?: (ctx: LogicalOrContext) => void; - - /** - * Enter a parse tree produced by the `logicalAnd` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalAnd?: (ctx: LogicalAndContext) => void; - /** - * Exit a parse tree produced by the `logicalAnd` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalAnd?: (ctx: LogicalAndContext) => void; - - /** - * Enter a parse tree produced by the `logicalXor` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalXor?: (ctx: LogicalXorContext) => void; - /** - * Exit a parse tree produced by the `logicalXor` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalXor?: (ctx: LogicalXorContext) => void; - - /** - * Enter a parse tree produced by the `booleanExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterBooleanExpr?: (ctx: BooleanExprContext) => void; - /** - * Exit a parse tree produced by the `booleanExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitBooleanExpr?: (ctx: BooleanExprContext) => void; - - /** - * Enter a parse tree produced by the `relevanceExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterRelevanceExpr?: (ctx: RelevanceExprContext) => void; - /** - * Exit a parse tree produced by the `relevanceExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitRelevanceExpr?: (ctx: RelevanceExprContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.root`. - * @param ctx the parse tree - */ - enterRoot?: (ctx: RootContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.root`. - * @param ctx the parse tree - */ - exitRoot?: (ctx: RootContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.pplStatement`. - * @param ctx the parse tree - */ - enterPplStatement?: (ctx: PplStatementContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.pplStatement`. - * @param ctx the parse tree - */ - exitPplStatement?: (ctx: PplStatementContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.commands`. - * @param ctx the parse tree - */ - enterCommands?: (ctx: CommandsContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.commands`. - * @param ctx the parse tree - */ - exitCommands?: (ctx: CommandsContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - enterSearchCommand?: (ctx: SearchCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - */ - exitSearchCommand?: (ctx: SearchCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.whereCommand`. - * @param ctx the parse tree - */ - enterWhereCommand?: (ctx: WhereCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.whereCommand`. - * @param ctx the parse tree - */ - exitWhereCommand?: (ctx: WhereCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. - * @param ctx the parse tree - */ - enterFieldsCommand?: (ctx: FieldsCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. - * @param ctx the parse tree - */ - exitFieldsCommand?: (ctx: FieldsCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.renameCommand`. - * @param ctx the parse tree - */ - enterRenameCommand?: (ctx: RenameCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.renameCommand`. - * @param ctx the parse tree - */ - exitRenameCommand?: (ctx: RenameCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsCommand`. - * @param ctx the parse tree - */ - enterStatsCommand?: (ctx: StatsCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsCommand`. - * @param ctx the parse tree - */ - exitStatsCommand?: (ctx: StatsCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.dedupCommand`. - * @param ctx the parse tree - */ - enterDedupCommand?: (ctx: DedupCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. - * @param ctx the parse tree - */ - exitDedupCommand?: (ctx: DedupCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortCommand`. - * @param ctx the parse tree - */ - enterSortCommand?: (ctx: SortCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortCommand`. - * @param ctx the parse tree - */ - exitSortCommand?: (ctx: SortCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalCommand`. - * @param ctx the parse tree - */ - enterEvalCommand?: (ctx: EvalCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalCommand`. - * @param ctx the parse tree - */ - exitEvalCommand?: (ctx: EvalCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.headCommand`. - * @param ctx the parse tree - */ - enterHeadCommand?: (ctx: HeadCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.headCommand`. - * @param ctx the parse tree - */ - exitHeadCommand?: (ctx: HeadCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.topCommand`. - * @param ctx the parse tree - */ - enterTopCommand?: (ctx: TopCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.topCommand`. - * @param ctx the parse tree - */ - exitTopCommand?: (ctx: TopCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.rareCommand`. - * @param ctx the parse tree - */ - enterRareCommand?: (ctx: RareCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.rareCommand`. - * @param ctx the parse tree - */ - exitRareCommand?: (ctx: RareCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.parseCommand`. - * @param ctx the parse tree - */ - enterParseCommand?: (ctx: ParseCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.parseCommand`. - * @param ctx the parse tree - */ - exitParseCommand?: (ctx: ParseCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. - * @param ctx the parse tree - */ - enterKmeansCommand?: (ctx: KmeansCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. - * @param ctx the parse tree - */ - exitKmeansCommand?: (ctx: KmeansCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. - * @param ctx the parse tree - */ - enterKmeansParameter?: (ctx: KmeansParameterContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. - * @param ctx the parse tree - */ - exitKmeansParameter?: (ctx: KmeansParameterContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.adCommand`. - * @param ctx the parse tree - */ - enterAdCommand?: (ctx: AdCommandContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.adCommand`. - * @param ctx the parse tree - */ - exitAdCommand?: (ctx: AdCommandContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.adParameter`. - * @param ctx the parse tree - */ - enterAdParameter?: (ctx: AdParameterContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.adParameter`. - * @param ctx the parse tree - */ - exitAdParameter?: (ctx: AdParameterContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fromClause`. - * @param ctx the parse tree - */ - enterFromClause?: (ctx: FromClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fromClause`. - * @param ctx the parse tree - */ - exitFromClause?: (ctx: FromClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.renameClasue`. - * @param ctx the parse tree - */ - enterRenameClasue?: (ctx: RenameClasueContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.renameClasue`. - * @param ctx the parse tree - */ - exitRenameClasue?: (ctx: RenameClasueContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.byClause`. - * @param ctx the parse tree - */ - enterByClause?: (ctx: ByClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.byClause`. - * @param ctx the parse tree - */ - exitByClause?: (ctx: ByClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsByClause`. - * @param ctx the parse tree - */ - enterStatsByClause?: (ctx: StatsByClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsByClause`. - * @param ctx the parse tree - */ - exitStatsByClause?: (ctx: StatsByClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.bySpanClause`. - * @param ctx the parse tree - */ - enterBySpanClause?: (ctx: BySpanClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. - * @param ctx the parse tree - */ - exitBySpanClause?: (ctx: BySpanClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.spanClause`. - * @param ctx the parse tree - */ - enterSpanClause?: (ctx: SpanClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.spanClause`. - * @param ctx the parse tree - */ - exitSpanClause?: (ctx: SpanClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortbyClause`. - * @param ctx the parse tree - */ - enterSortbyClause?: (ctx: SortbyClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. - * @param ctx the parse tree - */ - exitSortbyClause?: (ctx: SortbyClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalClause`. - * @param ctx the parse tree - */ - enterEvalClause?: (ctx: EvalClauseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalClause`. - * @param ctx the parse tree - */ - exitEvalClause?: (ctx: EvalClauseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. - * @param ctx the parse tree - */ - enterStatsAggTerm?: (ctx: StatsAggTermContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. - * @param ctx the parse tree - */ - exitStatsAggTerm?: (ctx: StatsAggTermContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - enterStatsFunction?: (ctx: StatsFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - */ - exitStatsFunction?: (ctx: StatsFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. - * @param ctx the parse tree - */ - enterStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. - * @param ctx the parse tree - */ - exitStatsFunctionName?: (ctx: StatsFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. - * @param ctx the parse tree - */ - enterPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. - * @param ctx the parse tree - */ - exitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.expression`. - * @param ctx the parse tree - */ - enterExpression?: (ctx: ExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.expression`. - * @param ctx the parse tree - */ - exitExpression?: (ctx: ExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - enterLogicalExpression?: (ctx: LogicalExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - */ - exitLogicalExpression?: (ctx: LogicalExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - enterComparisonExpression?: (ctx: ComparisonExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - */ - exitComparisonExpression?: (ctx: ComparisonExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - enterValueExpression?: (ctx: ValueExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - */ - exitValueExpression?: (ctx: ValueExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.primaryExpression`. - * @param ctx the parse tree - */ - enterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. - * @param ctx the parse tree - */ - exitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.booleanExpression`. - * @param ctx the parse tree - */ - enterBooleanExpression?: (ctx: BooleanExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. - * @param ctx the parse tree - */ - exitBooleanExpression?: (ctx: BooleanExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. - * @param ctx the parse tree - */ - enterRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. - * @param ctx the parse tree - */ - exitRelevanceExpression?: (ctx: RelevanceExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. - * @param ctx the parse tree - */ - enterSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. - * @param ctx the parse tree - */ - exitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. - * @param ctx the parse tree - */ - enterMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. - * @param ctx the parse tree - */ - exitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.tableSource`. - * @param ctx the parse tree - */ - enterTableSource?: (ctx: TableSourceContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.tableSource`. - * @param ctx the parse tree - */ - exitTableSource?: (ctx: TableSourceContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fieldList`. - * @param ctx the parse tree - */ - enterFieldList?: (ctx: FieldListContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fieldList`. - * @param ctx the parse tree - */ - exitFieldList?: (ctx: FieldListContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldList`. - * @param ctx the parse tree - */ - enterWcFieldList?: (ctx: WcFieldListContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. - * @param ctx the parse tree - */ - exitWcFieldList?: (ctx: WcFieldListContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortField`. - * @param ctx the parse tree - */ - enterSortField?: (ctx: SortFieldContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortField`. - * @param ctx the parse tree - */ - exitSortField?: (ctx: SortFieldContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. - * @param ctx the parse tree - */ - enterSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. - * @param ctx the parse tree - */ - exitSortFieldExpression?: (ctx: SortFieldExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.fieldExpression`. - * @param ctx the parse tree - */ - enterFieldExpression?: (ctx: FieldExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. - * @param ctx the parse tree - */ - exitFieldExpression?: (ctx: FieldExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. - * @param ctx the parse tree - */ - enterWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. - * @param ctx the parse tree - */ - exitWcFieldExpression?: (ctx: WcFieldExpressionContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. - * @param ctx the parse tree - */ - enterEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. - * @param ctx the parse tree - */ - exitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. - * @param ctx the parse tree - */ - enterDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. - * @param ctx the parse tree - */ - exitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. - * @param ctx the parse tree - */ - enterBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. - * @param ctx the parse tree - */ - exitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.convertedDataType`. - * @param ctx the parse tree - */ - enterConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. - * @param ctx the parse tree - */ - exitConvertedDataType?: (ctx: ConvertedDataTypeContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. - * @param ctx the parse tree - */ - enterEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. - * @param ctx the parse tree - */ - exitEvalFunctionName?: (ctx: EvalFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.functionArgs`. - * @param ctx the parse tree - */ - enterFunctionArgs?: (ctx: FunctionArgsContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.functionArgs`. - * @param ctx the parse tree - */ - exitFunctionArgs?: (ctx: FunctionArgsContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.functionArg`. - * @param ctx the parse tree - */ - enterFunctionArg?: (ctx: FunctionArgContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.functionArg`. - * @param ctx the parse tree - */ - exitFunctionArg?: (ctx: FunctionArgContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArg`. - * @param ctx the parse tree - */ - enterRelevanceArg?: (ctx: RelevanceArgContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. - * @param ctx the parse tree - */ - exitRelevanceArg?: (ctx: RelevanceArgContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. - * @param ctx the parse tree - */ - enterRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. - * @param ctx the parse tree - */ - exitRelevanceArgName?: (ctx: RelevanceArgNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. - * @param ctx the parse tree - */ - enterRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. - * @param ctx the parse tree - */ - exitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. - * @param ctx the parse tree - */ - enterRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. - * @param ctx the parse tree - */ - exitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceField`. - * @param ctx the parse tree - */ - enterRelevanceField?: (ctx: RelevanceFieldContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceField`. - * @param ctx the parse tree - */ - exitRelevanceField?: (ctx: RelevanceFieldContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. - * @param ctx the parse tree - */ - enterRelevanceQuery?: (ctx: RelevanceQueryContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. - * @param ctx the parse tree - */ - exitRelevanceQuery?: (ctx: RelevanceQueryContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. - * @param ctx the parse tree - */ - enterRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. - * @param ctx the parse tree - */ - exitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. - * @param ctx the parse tree - */ - enterMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. - * @param ctx the parse tree - */ - exitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. - * @param ctx the parse tree - */ - enterTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. - * @param ctx the parse tree - */ - exitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. - * @param ctx the parse tree - */ - enterDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. - * @param ctx the parse tree - */ - exitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. - * @param ctx the parse tree - */ - enterConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. - * @param ctx the parse tree - */ - exitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. - * @param ctx the parse tree - */ - enterTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. - * @param ctx the parse tree - */ - exitTextFunctionBase?: (ctx: TextFunctionBaseContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. - * @param ctx the parse tree - */ - enterComparisonOperator?: (ctx: ComparisonOperatorContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. - * @param ctx the parse tree - */ - exitComparisonOperator?: (ctx: ComparisonOperatorContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.binaryOperator`. - * @param ctx the parse tree - */ - enterBinaryOperator?: (ctx: BinaryOperatorContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. - * @param ctx the parse tree - */ - exitBinaryOperator?: (ctx: BinaryOperatorContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - enterSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - exitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - enterMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. - * @param ctx the parse tree - */ - exitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.literalValue`. - * @param ctx the parse tree - */ - enterLiteralValue?: (ctx: LiteralValueContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.literalValue`. - * @param ctx the parse tree - */ - exitLiteralValue?: (ctx: LiteralValueContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. - * @param ctx the parse tree - */ - enterIntervalLiteral?: (ctx: IntervalLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. - * @param ctx the parse tree - */ - exitIntervalLiteral?: (ctx: IntervalLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.stringLiteral`. - * @param ctx the parse tree - */ - enterStringLiteral?: (ctx: StringLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. - * @param ctx the parse tree - */ - exitStringLiteral?: (ctx: StringLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.integerLiteral`. - * @param ctx the parse tree - */ - enterIntegerLiteral?: (ctx: IntegerLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. - * @param ctx the parse tree - */ - exitIntegerLiteral?: (ctx: IntegerLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. - * @param ctx the parse tree - */ - enterDecimalLiteral?: (ctx: DecimalLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. - * @param ctx the parse tree - */ - exitDecimalLiteral?: (ctx: DecimalLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. - * @param ctx the parse tree - */ - enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. - * @param ctx the parse tree - */ - exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.pattern`. - * @param ctx the parse tree - */ - enterPattern?: (ctx: PatternContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.pattern`. - * @param ctx the parse tree - */ - exitPattern?: (ctx: PatternContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.intervalUnit`. - * @param ctx the parse tree - */ - enterIntervalUnit?: (ctx: IntervalUnitContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. - * @param ctx the parse tree - */ - exitIntervalUnit?: (ctx: IntervalUnitContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.timespanUnit`. - * @param ctx the parse tree - */ - enterTimespanUnit?: (ctx: TimespanUnitContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. - * @param ctx the parse tree - */ - exitTimespanUnit?: (ctx: TimespanUnitContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.valueList`. - * @param ctx the parse tree - */ - enterValueList?: (ctx: ValueListContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.valueList`. - * @param ctx the parse tree - */ - exitValueList?: (ctx: ValueListContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - enterQualifiedName?: (ctx: QualifiedNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - */ - exitQualifiedName?: (ctx: QualifiedNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - enterWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - */ - exitWcQualifiedName?: (ctx: WcQualifiedNameContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.ident`. - * @param ctx the parse tree - */ - enterIdent?: (ctx: IdentContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.ident`. - * @param ctx the parse tree - */ - exitIdent?: (ctx: IdentContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.wildcard`. - * @param ctx the parse tree - */ - enterWildcard?: (ctx: WildcardContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.wildcard`. - * @param ctx the parse tree - */ - exitWildcard?: (ctx: WildcardContext) => void; - - /** - * Enter a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. - * @param ctx the parse tree - */ - enterKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; - /** - * Exit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. - * @param ctx the parse tree - */ - exitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => void; -} - diff --git a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts b/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts deleted file mode 100644 index 594622c97..000000000 --- a/dashboards-observability/common/query_manager/antlr/output/OpenSearchPPLParserVisitor.ts +++ /dev/null @@ -1,885 +0,0 @@ -// Generated from ./common/query_manager/antlr/grammar/OpenSearchPPLParser.g4 by ANTLR 4.9.0-SNAPSHOT - - -import { ParseTreeVisitor } from "antlr4ts/tree/ParseTreeVisitor"; - -import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser"; -import { SearchFromContext } from "./OpenSearchPPLParser"; -import { SearchFromFilterContext } from "./OpenSearchPPLParser"; -import { SearchFilterFromContext } from "./OpenSearchPPLParser"; -import { StatsFunctionCallContext } from "./OpenSearchPPLParser"; -import { CountAllFunctionCallContext } from "./OpenSearchPPLParser"; -import { DistinctCountFunctionCallContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionCallContext } from "./OpenSearchPPLParser"; -import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser"; -import { BinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ParentheticBinaryArithmeticContext } from "./OpenSearchPPLParser"; -import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser"; -import { CompareExprContext } from "./OpenSearchPPLParser"; -import { InExprContext } from "./OpenSearchPPLParser"; -import { ComparsionContext } from "./OpenSearchPPLParser"; -import { LogicalNotContext } from "./OpenSearchPPLParser"; -import { LogicalOrContext } from "./OpenSearchPPLParser"; -import { LogicalAndContext } from "./OpenSearchPPLParser"; -import { LogicalXorContext } from "./OpenSearchPPLParser"; -import { BooleanExprContext } from "./OpenSearchPPLParser"; -import { RelevanceExprContext } from "./OpenSearchPPLParser"; -import { RootContext } from "./OpenSearchPPLParser"; -import { PplStatementContext } from "./OpenSearchPPLParser"; -import { CommandsContext } from "./OpenSearchPPLParser"; -import { SearchCommandContext } from "./OpenSearchPPLParser"; -import { WhereCommandContext } from "./OpenSearchPPLParser"; -import { FieldsCommandContext } from "./OpenSearchPPLParser"; -import { RenameCommandContext } from "./OpenSearchPPLParser"; -import { StatsCommandContext } from "./OpenSearchPPLParser"; -import { DedupCommandContext } from "./OpenSearchPPLParser"; -import { SortCommandContext } from "./OpenSearchPPLParser"; -import { EvalCommandContext } from "./OpenSearchPPLParser"; -import { HeadCommandContext } from "./OpenSearchPPLParser"; -import { TopCommandContext } from "./OpenSearchPPLParser"; -import { RareCommandContext } from "./OpenSearchPPLParser"; -import { ParseCommandContext } from "./OpenSearchPPLParser"; -import { KmeansCommandContext } from "./OpenSearchPPLParser"; -import { KmeansParameterContext } from "./OpenSearchPPLParser"; -import { AdCommandContext } from "./OpenSearchPPLParser"; -import { AdParameterContext } from "./OpenSearchPPLParser"; -import { FromClauseContext } from "./OpenSearchPPLParser"; -import { RenameClasueContext } from "./OpenSearchPPLParser"; -import { ByClauseContext } from "./OpenSearchPPLParser"; -import { StatsByClauseContext } from "./OpenSearchPPLParser"; -import { BySpanClauseContext } from "./OpenSearchPPLParser"; -import { SpanClauseContext } from "./OpenSearchPPLParser"; -import { SortbyClauseContext } from "./OpenSearchPPLParser"; -import { EvalClauseContext } from "./OpenSearchPPLParser"; -import { StatsAggTermContext } from "./OpenSearchPPLParser"; -import { StatsFunctionContext } from "./OpenSearchPPLParser"; -import { StatsFunctionNameContext } from "./OpenSearchPPLParser"; -import { PercentileAggFunctionContext } from "./OpenSearchPPLParser"; -import { ExpressionContext } from "./OpenSearchPPLParser"; -import { LogicalExpressionContext } from "./OpenSearchPPLParser"; -import { ComparisonExpressionContext } from "./OpenSearchPPLParser"; -import { ValueExpressionContext } from "./OpenSearchPPLParser"; -import { PrimaryExpressionContext } from "./OpenSearchPPLParser"; -import { BooleanExpressionContext } from "./OpenSearchPPLParser"; -import { RelevanceExpressionContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionContext } from "./OpenSearchPPLParser"; -import { TableSourceContext } from "./OpenSearchPPLParser"; -import { FieldListContext } from "./OpenSearchPPLParser"; -import { WcFieldListContext } from "./OpenSearchPPLParser"; -import { SortFieldContext } from "./OpenSearchPPLParser"; -import { SortFieldExpressionContext } from "./OpenSearchPPLParser"; -import { FieldExpressionContext } from "./OpenSearchPPLParser"; -import { WcFieldExpressionContext } from "./OpenSearchPPLParser"; -import { EvalFunctionCallContext } from "./OpenSearchPPLParser"; -import { DataTypeFunctionCallContext } from "./OpenSearchPPLParser"; -import { BooleanFunctionCallContext } from "./OpenSearchPPLParser"; -import { ConvertedDataTypeContext } from "./OpenSearchPPLParser"; -import { EvalFunctionNameContext } from "./OpenSearchPPLParser"; -import { FunctionArgsContext } from "./OpenSearchPPLParser"; -import { FunctionArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgContext } from "./OpenSearchPPLParser"; -import { RelevanceArgNameContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldAndWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldWeightContext } from "./OpenSearchPPLParser"; -import { RelevanceFieldContext } from "./OpenSearchPPLParser"; -import { RelevanceQueryContext } from "./OpenSearchPPLParser"; -import { RelevanceArgValueContext } from "./OpenSearchPPLParser"; -import { MathematicalFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TrigonometricFunctionNameContext } from "./OpenSearchPPLParser"; -import { DateAndTimeFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ConditionFunctionBaseContext } from "./OpenSearchPPLParser"; -import { TextFunctionBaseContext } from "./OpenSearchPPLParser"; -import { ComparisonOperatorContext } from "./OpenSearchPPLParser"; -import { BinaryOperatorContext } from "./OpenSearchPPLParser"; -import { SingleFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { MultiFieldRelevanceFunctionNameContext } from "./OpenSearchPPLParser"; -import { LiteralValueContext } from "./OpenSearchPPLParser"; -import { IntervalLiteralContext } from "./OpenSearchPPLParser"; -import { StringLiteralContext } from "./OpenSearchPPLParser"; -import { IntegerLiteralContext } from "./OpenSearchPPLParser"; -import { DecimalLiteralContext } from "./OpenSearchPPLParser"; -import { BooleanLiteralContext } from "./OpenSearchPPLParser"; -import { PatternContext } from "./OpenSearchPPLParser"; -import { IntervalUnitContext } from "./OpenSearchPPLParser"; -import { TimespanUnitContext } from "./OpenSearchPPLParser"; -import { ValueListContext } from "./OpenSearchPPLParser"; -import { QualifiedNameContext } from "./OpenSearchPPLParser"; -import { WcQualifiedNameContext } from "./OpenSearchPPLParser"; -import { IdentContext } from "./OpenSearchPPLParser"; -import { WildcardContext } from "./OpenSearchPPLParser"; -import { KeywordsCanBeIdContext } from "./OpenSearchPPLParser"; - - -/** - * This interface defines a complete generic visitor for a parse tree produced - * by `OpenSearchPPLParser`. - * - * @param The return type of the visit operation. Use `void` for - * operations with no return type. - */ -export interface OpenSearchPPLParserVisitor extends ParseTreeVisitor { - /** - * Visit a parse tree produced by the `identsAsWildcardQualifiedName` - * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIdentsAsWildcardQualifiedName?: (ctx: IdentsAsWildcardQualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by the `searchFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFrom?: (ctx: SearchFromContext) => Result; - - /** - * Visit a parse tree produced by the `searchFromFilter` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFromFilter?: (ctx: SearchFromFilterContext) => Result; - - /** - * Visit a parse tree produced by the `searchFilterFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFilterFrom?: (ctx: SearchFilterFromContext) => Result; - - /** - * Visit a parse tree produced by the `statsFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsFunctionCall?: (ctx: StatsFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `countAllFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCountAllFunctionCall?: (ctx: CountAllFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `distinctCountFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDistinctCountFunctionCall?: (ctx: DistinctCountFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `percentileAggFunctionCall` - * labeled alternative in `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPercentileAggFunctionCall?: (ctx: PercentileAggFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by the `identsAsQualifiedName` - * labeled alternative in `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by the `binaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => Result; - - /** - * Visit a parse tree produced by the `parentheticBinaryArithmetic` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitParentheticBinaryArithmetic?: (ctx: ParentheticBinaryArithmeticContext) => Result; - - /** - * Visit a parse tree produced by the `valueExpressionDefault` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => Result; - - /** - * Visit a parse tree produced by the `compareExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompareExpr?: (ctx: CompareExprContext) => Result; - - /** - * Visit a parse tree produced by the `inExpr` - * labeled alternative in `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitInExpr?: (ctx: InExprContext) => Result; - - /** - * Visit a parse tree produced by the `comparsion` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComparsion?: (ctx: ComparsionContext) => Result; - - /** - * Visit a parse tree produced by the `logicalNot` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalNot?: (ctx: LogicalNotContext) => Result; - - /** - * Visit a parse tree produced by the `logicalOr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalOr?: (ctx: LogicalOrContext) => Result; - - /** - * Visit a parse tree produced by the `logicalAnd` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalAnd?: (ctx: LogicalAndContext) => Result; - - /** - * Visit a parse tree produced by the `logicalXor` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalXor?: (ctx: LogicalXorContext) => Result; - - /** - * Visit a parse tree produced by the `booleanExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanExpr?: (ctx: BooleanExprContext) => Result; - - /** - * Visit a parse tree produced by the `relevanceExpr` - * labeled alternative in `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceExpr?: (ctx: RelevanceExprContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.root`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRoot?: (ctx: RootContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.pplStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPplStatement?: (ctx: PplStatementContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.commands`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCommands?: (ctx: CommandsContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchCommand?: (ctx: SearchCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.whereCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWhereCommand?: (ctx: WhereCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fieldsCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFieldsCommand?: (ctx: FieldsCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.renameCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRenameCommand?: (ctx: RenameCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsCommand?: (ctx: StatsCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.dedupCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDedupCommand?: (ctx: DedupCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortCommand?: (ctx: SortCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalCommand?: (ctx: EvalCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.headCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitHeadCommand?: (ctx: HeadCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.topCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTopCommand?: (ctx: TopCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.rareCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRareCommand?: (ctx: RareCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.parseCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitParseCommand?: (ctx: ParseCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.kmeansCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitKmeansCommand?: (ctx: KmeansCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.kmeansParameter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitKmeansParameter?: (ctx: KmeansParameterContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.adCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAdCommand?: (ctx: AdCommandContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.adParameter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAdParameter?: (ctx: AdParameterContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fromClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFromClause?: (ctx: FromClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.renameClasue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRenameClasue?: (ctx: RenameClasueContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.byClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitByClause?: (ctx: ByClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsByClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsByClause?: (ctx: StatsByClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.bySpanClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBySpanClause?: (ctx: BySpanClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.spanClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSpanClause?: (ctx: SpanClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortbyClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortbyClause?: (ctx: SortbyClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalClause?: (ctx: EvalClauseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsAggTerm`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsAggTerm?: (ctx: StatsAggTermContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsFunction?: (ctx: StatsFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.statsFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStatsFunctionName?: (ctx: StatsFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.percentileAggFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPercentileAggFunction?: (ctx: PercentileAggFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.expression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitExpression?: (ctx: ExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.logicalExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLogicalExpression?: (ctx: LogicalExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.comparisonExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComparisonExpression?: (ctx: ComparisonExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValueExpression?: (ctx: ValueExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPrimaryExpression?: (ctx: PrimaryExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.booleanExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanExpression?: (ctx: BooleanExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceExpression?: (ctx: RelevanceExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSingleFieldRelevanceFunction?: (ctx: SingleFieldRelevanceFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMultiFieldRelevanceFunction?: (ctx: MultiFieldRelevanceFunctionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.tableSource`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTableSource?: (ctx: TableSourceContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fieldList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFieldList?: (ctx: FieldListContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWcFieldList?: (ctx: WcFieldListContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortField`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortField?: (ctx: SortFieldContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.sortFieldExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSortFieldExpression?: (ctx: SortFieldExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.fieldExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFieldExpression?: (ctx: FieldExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wcFieldExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWcFieldExpression?: (ctx: WcFieldExpressionContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionCall`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalFunctionCall?: (ctx: EvalFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.dataTypeFunctionCall`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDataTypeFunctionCall?: (ctx: DataTypeFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.booleanFunctionCall`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanFunctionCall?: (ctx: BooleanFunctionCallContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.convertedDataType`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConvertedDataType?: (ctx: ConvertedDataTypeContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.evalFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitEvalFunctionName?: (ctx: EvalFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.functionArgs`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionArgs?: (ctx: FunctionArgsContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.functionArg`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionArg?: (ctx: FunctionArgContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArg`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceArg?: (ctx: RelevanceArgContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceArgName?: (ctx: RelevanceArgNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldAndWeight`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceFieldAndWeight?: (ctx: RelevanceFieldAndWeightContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceFieldWeight`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceFieldWeight?: (ctx: RelevanceFieldWeightContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceField`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceField?: (ctx: RelevanceFieldContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceQuery`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceQuery?: (ctx: RelevanceQueryContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.relevanceArgValue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelevanceArgValue?: (ctx: RelevanceArgValueContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.mathematicalFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMathematicalFunctionBase?: (ctx: MathematicalFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.trigonometricFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTrigonometricFunctionName?: (ctx: TrigonometricFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.dateAndTimeFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDateAndTimeFunctionBase?: (ctx: DateAndTimeFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.conditionFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConditionFunctionBase?: (ctx: ConditionFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.textFunctionBase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTextFunctionBase?: (ctx: TextFunctionBaseContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.comparisonOperator`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComparisonOperator?: (ctx: ComparisonOperatorContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.binaryOperator`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBinaryOperator?: (ctx: BinaryOperatorContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.singleFieldRelevanceFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSingleFieldRelevanceFunctionName?: (ctx: SingleFieldRelevanceFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.multiFieldRelevanceFunctionName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMultiFieldRelevanceFunctionName?: (ctx: MultiFieldRelevanceFunctionNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.literalValue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLiteralValue?: (ctx: LiteralValueContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.intervalLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIntervalLiteral?: (ctx: IntervalLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.stringLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitStringLiteral?: (ctx: StringLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.integerLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIntegerLiteral?: (ctx: IntegerLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.decimalLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDecimalLiteral?: (ctx: DecimalLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.booleanLiteral`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBooleanLiteral?: (ctx: BooleanLiteralContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.pattern`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPattern?: (ctx: PatternContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.intervalUnit`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIntervalUnit?: (ctx: IntervalUnitContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.timespanUnit`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTimespanUnit?: (ctx: TimespanUnitContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.valueList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValueList?: (ctx: ValueListContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitQualifiedName?: (ctx: QualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wcQualifiedName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWcQualifiedName?: (ctx: WcQualifiedNameContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.ident`. - * @param ctx the parse tree - * @return the visitor result - */ - visitIdent?: (ctx: IdentContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.wildcard`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWildcard?: (ctx: WildcardContext) => Result; - - /** - * Visit a parse tree produced by `OpenSearchPPLParser.keywordsCanBeId`. - * @param ctx the parse tree - * @return the visitor result - */ - visitKeywordsCanBeId?: (ctx: KeywordsCanBeIdContext) => Result; -} - From 1de20126b3753de1cd3a995b1dc2bde49004d11b Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Thu, 8 Sep 2022 14:01:34 -0700 Subject: [PATCH 17/29] removed extra padding Signed-off-by: Eric Wei --- .../components/event_analytics/explorer/sidebar/sidebar.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss index 8ef4cc875..03ed8e63b 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss @@ -38,7 +38,8 @@ } .dscFieldChooser { - padding-left: $euiSize; + // padding-left: $euiSize; + padding: 0; } .dscFieldChooser__toggle { From 72208024a9618b987a37bb5d168c81f85a21ecc6 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Thu, 8 Sep 2022 14:06:28 -0700 Subject: [PATCH 18/29] changed field button size to m Signed-off-by: Eric Wei --- .../components/event_analytics/explorer/sidebar/field.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx b/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx index efeacf5c1..f3b1b4ee0 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx @@ -150,7 +150,7 @@ export const Field = (props: IFieldProps) => { panelClassName="dscSidebarItem__fieldPopoverPanel" button={ Date: Thu, 8 Sep 2022 20:55:11 -0700 Subject: [PATCH 19/29] adjusted styling to align with wizard ux design Signed-off-by: Eric Wei --- .../common/field_button/field_button.scss | 32 ++++++++++ .../common/field_button/field_button.tsx | 1 + .../common/field_icon/field_icon.tsx | 5 +- .../event_analytics/explorer/explorer.tsx | 2 +- .../explorer/sidebar/field.tsx | 2 +- .../explorer/sidebar/sidebar.scss | 35 ++++++++++- .../explorer/sidebar/sidebar.tsx | 1 - .../data_config_panel_item.tsx | 4 +- .../data_configurations_panel.scss | 41 +++++++++++++ .../explorer/visualizations/index.tsx | 58 ++++++++++++------- 10 files changed, 151 insertions(+), 30 deletions(-) create mode 100644 dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss diff --git a/dashboards-observability/public/components/common/field_button/field_button.scss b/dashboards-observability/public/components/common/field_button/field_button.scss index 8ae66b433..2063ca48c 100644 --- a/dashboards-observability/public/components/common/field_button/field_button.scss +++ b/dashboards-observability/public/components/common/field_button/field_button.scss @@ -78,3 +78,35 @@ margin-right: $euiSizeXS; } } + +.explorer__fieldSelectorField { + @include euiBottomShadowSmall; + + background-color: $euiColorEmptyShade; + border: $euiBorderThin; + margin-top: $euiSizeS; + + & > .osdFieldButton__button { + padding: 0; + } + + & .osdFieldButton__name { + padding: $euiSizeS $euiSizeS $euiSizeS 0; + } + + & > button { + align-items: stretch; + } + + & .osdFieldIcon { + box-shadow: none; + height: 100%; + flex-shrink: 0; + line-height: 0; + } + + & .osdFieldButton__fieldIcon { + box-shadow: none; + margin-right: 8px; + } +} diff --git a/dashboards-observability/public/components/common/field_button/field_button.tsx b/dashboards-observability/public/components/common/field_button/field_button.tsx index 5ceac9875..963cdf84a 100644 --- a/dashboards-observability/public/components/common/field_button/field_button.tsx +++ b/dashboards-observability/public/components/common/field_button/field_button.tsx @@ -76,6 +76,7 @@ export function FieldButton({ buttonProps, ...rest }: FieldButtonProps) { + const classes = classNames( 'osdFieldButton', size ? sizeToClassNameMap[size] : null, diff --git a/dashboards-observability/public/components/common/field_icon/field_icon.tsx b/dashboards-observability/public/components/common/field_icon/field_icon.tsx index a63dfe5ad..467c2c7c0 100644 --- a/dashboards-observability/public/components/common/field_icon/field_icon.tsx +++ b/dashboards-observability/public/components/common/field_icon/field_icon.tsx @@ -26,7 +26,7 @@ export interface FieldIconProps extends Omit { } // defaultIcon => a unknown datatype -const defaultIcon = { iconType: 'questionInCircle', color: 'gray' }; +const defaultIcon = { iconType: 'tokenString' }; export const typeToEuiIconMap: Partial> = { boolean: { iconType: 'tokenBoolean' }, @@ -50,13 +50,12 @@ export const typeToEuiIconMap: Partial> = { export function FieldIcon({ type, label, - size = 's', + size = 'l', scripted, className, ...rest }: FieldIconProps) { const token = typeToEuiIconMap[type] || defaultIcon; - return ( {!isSidebarClosed && ( -
+
{ button={ } diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss index 03ed8e63b..4952b063f 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss @@ -37,7 +37,7 @@ background-color: lightOrDarkTheme(tint($euiColorPrimary, 90%), $euiColorLightShade); } -.dscFieldChooser { +.explorerFieldSelector { // padding-left: $euiSize; padding: 0; } @@ -111,3 +111,36 @@ .override_timestamp_loading { vertical-align: middle; } + +.dscAppContainer { + .euiPanel--paddingMedium { + padding: 0; + } +} + +.explorer__insights { + min-height: 0; + display: grid; + grid-template-columns: 50% 50%; + height: 100%; + .explorerFieldSelector, .explorer__vizDataConfig { + padding: $euiSizeS; + + &__fieldGroups { + @include euiYScrollWithShadows; + + overflow-y: auto; + margin-right: -$euiSizeS; + padding-right: $euiSizeS; + margin-top: $euiSizeS; + } + + &__fieldGroup { + margin-top: $euiSizeS; + + &:first-child { + margin-top: 0; + } + } + } +} \ No newline at end of file diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx index c949c9e49..306a7f9c0 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx @@ -45,7 +45,6 @@ export const Sidebar = (props: ISidebarProps) => { return (
-
return ( <> -

Data Configurations

+

Configuration

{visualizations.vis.name !== visChartTypes.Histogram ? ( diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss new file mode 100644 index 000000000..9da7ade4b --- /dev/null +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss @@ -0,0 +1,41 @@ +.explorer__vizDataConfig { + @include euiYScrollWithShadows; + + background: $euiColorLightestShade; + border-left: $euiBorderThin; + border-right: $euiBorderThin; + position: relative; + overflow-x: hidden; + + &__section { + width: 100%; + transition: transform $euiAnimSpeedNormal 0s $euiAnimSlightResistance; + } + + &__title { + padding: $euiSizeS; + padding-bottom: 0; + + &.showDivider { + border-bottom: 1px solid $euiColorLightShade; + } + } + + &__content { + padding: $euiSizeS; + } + + &__aggEditor { + padding: 0 $euiSizeM; + } + + &--secondary { + position: absolute; + top: 0; + left: 100%; + } + + &.showSecondary > .wizConfig__section { + transform: translateX(-100%); + } +} \ No newline at end of file diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx index 2e51c1a7e..ccf7f23ca 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx @@ -91,29 +91,36 @@ export const ExplorerVisualizations = ({ {(EuiResizablePanel, EuiResizableButton) => ( <> -
- handleAddField(field)} - handleRemoveField={(field: IField) => handleRemoveField(field)} - isFieldToggleButtonDisabled={ - vis.name === visChartTypes.LogsView - ? isEmpty(explorerData.jsonData) || - !isEmpty(query[RAW_QUERY].match(PPL_STATS_REGEX)) - : true - } - /> +
+
+ handleAddField(field)} + handleRemoveField={(field: IField) => handleRemoveField(field)} + isFieldToggleButtonDisabled={ + vis.name === visChartTypes.LogsView + ? isEmpty(explorerData.jsonData) || + !isEmpty(query[RAW_QUERY].match(PPL_STATS_REGEX)) + : true + } + /> +
+
+ { renderDataConfigContainer() } +
+ - + {/* {renderDataConfigContainer()} - + */} - + Date: Mon, 12 Sep 2022 11:32:47 -0700 Subject: [PATCH 20/29] added according for field sections Signed-off-by: Eric Wei --- .../explorer/sidebar/sidebar.tsx | 165 ++++++++---------- 1 file changed, 68 insertions(+), 97 deletions(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx index 306a7f9c0..006576af5 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx @@ -7,7 +7,7 @@ import './sidebar.scss'; import React, { useState } from 'react'; import { isEmpty } from 'lodash'; -import { EuiTitle, EuiSpacer, EuiButtonIcon, EuiFieldSearch } from '@elastic/eui'; +import { EuiTitle, EuiSpacer, EuiButtonIcon, EuiFieldSearch, EuiAccordion } from '@elastic/eui'; import { i18n } from '@osd/i18n'; import { FormattedMessage, I18nProvider } from '@osd/i18n/react'; import { cssNumber } from 'jquery'; @@ -63,19 +63,15 @@ export const Sidebar = (props: ISidebarProps) => { !isEmpty(explorerFields.availableFields)) && ( <> {explorerFields?.queriedFields && explorerFields.queriedFields?.length > 0 && ( - <> - -

- -

-
- +
    {explorerFields.queriedFields && @@ -100,90 +96,24 @@ export const Sidebar = (props: ISidebarProps) => { ); })}
- +
)} - -

- -

-
- -
    + - {explorerData && - !isEmpty(explorerData.jsonData) && - explorerFields.selectedFields && - explorerFields.selectedFields.map((field) => { - return ( -
  • - -
  • - ); - })} -
-
- -

- -

-
-
- setShowFields(!showFields)} - aria-label={ - showFields - ? i18n.translate( - 'discover.fieldChooser.filter.indexAndFieldsSectionHideAriaLabel', - { - defaultMessage: 'Hide fields', - } - ) - : i18n.translate( - 'discover.fieldChooser.filter.indexAndFieldsSectionShowAriaLabel', - { - defaultMessage: 'Show fields', - } - ) - } - /> -
-
-
    - {explorerFields.availableFields && - explorerFields.availableFields - .filter((field) => searchTerm === '' || field.name.indexOf(searchTerm) !== -1) - .map((field) => { +
      + {explorerData && + !isEmpty(explorerData.jsonData) && + explorerFields.selectedFields && + explorerFields.selectedFields.map((field) => { return (
    • { selectedTimestamp={selectedTimestamp} isOverridingTimestamp={isOverridingTimestamp} handleOverrideTimestamp={handleOverrideTimestamp} - onToggleField={handleAddField} - selected={false} + selected={true} isFieldToggleButtonDisabled={isFieldToggleButtonDisabled} showTimestampOverrideButton={true} + onToggleField={handleRemoveField} />
    • ); })} -
    +
+ + + +
    + {explorerFields.availableFields && + explorerFields.availableFields + .filter((field) => searchTerm === '' || field.name.indexOf(searchTerm) !== -1) + .map((field) => { + return ( +
  • + +
  • + ); + })} +
+
)}
From 0825b333167e54a5afd94385d2f16375643a96ae Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Tue, 13 Sep 2022 14:20:56 -0700 Subject: [PATCH 21/29] remove reset Signed-off-by: Eric Wei --- .../explorer/visualizations/config_panel/config_panel.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx index eb3142cdf..f923e5785 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx @@ -299,14 +299,6 @@ export const ConfigPanel = ({ /> - - - ); From 4c0684efc015c8728eb59f86962bc313f893ab1f Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Thu, 15 Sep 2022 18:20:13 -0700 Subject: [PATCH 22/29] add scrolling and followed core team's design Signed-off-by: Eric Wei --- .../event_analytics/explorer/explorer.scss | 23 +-- .../explorer/log_explorer.scss | 4 + .../explorer/sidebar/sidebar.scss | 12 +- .../explorer/visualizations/app.scss | 4 - .../config_panel/config_panel.scss | 21 ++- .../config_panel/config_panel.tsx | 52 ++++-- .../data_configurations_panel.scss | 1 - .../explorer/visualizations/index.tsx | 155 ++++++++---------- .../workspace_panel/workspace_panel.scss | 23 ++- .../workspace_panel/workspace_panel.tsx | 116 +++++++------ 10 files changed, 233 insertions(+), 178 deletions(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/explorer.scss b/dashboards-observability/public/components/event_analytics/explorer/explorer.scss index 423e226e3..9f2d60198 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/explorer.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/explorer.scss @@ -3,15 +3,18 @@ * SPDX-License-Identifier: Apache-2.0 */ - .liveStream { - margin : 8px; - height: 40px; - align-items: center; - justify-content: center; - flex-direction: row; - display: flex; - flex-grow: 1; - vertical-align: baseline; - } +.liveStream { + margin : 8px; + height: 40px; + align-items: center; + justify-content: center; + flex-direction: row; + display: flex; + flex-grow: 1; + vertical-align: baseline; +} +.mainContentTabs .euiResizableContainer { + height: calc(100vh - 298px); +} \ No newline at end of file diff --git a/dashboards-observability/public/components/event_analytics/explorer/log_explorer.scss b/dashboards-observability/public/components/event_analytics/explorer/log_explorer.scss index 772a5b873..ae6d83409 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/log_explorer.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/log_explorer.scss @@ -25,6 +25,10 @@ } } +// #queryTabs { +// height: calc(100vh - 98px); +// } + .tab-title { display: inline-block; margin-right: 5px; diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss index 4952b063f..b99918e6b 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss @@ -38,7 +38,6 @@ } .explorerFieldSelector { - // padding-left: $euiSize; padding: 0; } @@ -112,12 +111,6 @@ vertical-align: middle; } -.dscAppContainer { - .euiPanel--paddingMedium { - padding: 0; - } -} - .explorer__insights { min-height: 0; display: grid; @@ -143,4 +136,9 @@ } } } + .explorerFieldSelector { + .sidebar-list { + height: 100%; + } + } } \ No newline at end of file diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss index ef67ba34b..38f37db2c 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss @@ -32,10 +32,6 @@ flex-grow: 1; } -.containerPanel { - padding: 0 16px; -} - .dataConfigContainer { height: 1242px; overflow: auto; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss index e07fded22..d08cc4c43 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss @@ -132,7 +132,22 @@ $vis-editor-sidebar-min-width: 350px; height: 250px !important; } -.configPane_options { - height: 1198px; - overflow: auto; +.cp__rightContainer { + display: grid; + + .cp__rightHeader, .cp__rightSettings { + padding: 8px; + background-color: #FFF; + } + + .cp__rightHeader { + border-bottom: 1px solid #D3DAE6; + } + + .cp__rightSettings { + height: 100%; + overflow-y: auto; + overflow-x: hidden; + } } + diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx index f923e5785..3e0198b2f 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.tsx @@ -264,16 +264,38 @@ export const ConfigPanel = ({ }, [memorizedVisualizationTypes]); return ( - <> - +
+ { + setCurVisId(visType[0].id); + }} + fullWidth + renderOption={vizSelectableItemRenderer} + isClearable={false} + /> +
+
+ tab.id === currTabId) || tabs[0]} + onTabClick={onTabClick} + /> +
+ {/* - - - - - tab.id === currTabId) || tabs[0]} - onTabClick={onTabClick} - /> - + + + tab.id === currTabId) || tabs[0]} + onTabClick={onTabClick} + /> - - +
*/} +
); }; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss index 9da7ade4b..73993b0dd 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.scss @@ -5,7 +5,6 @@ border-left: $euiBorderThin; border-right: $euiBorderThin; position: relative; - overflow-x: hidden; &__section { width: 100%; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx index ccf7f23ca..9fadc7f6a 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx @@ -53,7 +53,7 @@ export const ExplorerVisualizations = ({ const { data: vizData = {}, metadata: { fields = [] } = {} } = data?.rawVizData; const fieldOptionList = explorerFields.availableFields.map((field) => { - // const fieldOptionList = fields.map((field) => { + // const fieldOptionList = fields.map((field) => { return { ...field, label: field.name }; }); @@ -87,92 +87,73 @@ export const ExplorerVisualizations = ({ }; return ( - - {(EuiResizablePanel, EuiResizableButton) => ( - <> - -
-
- handleAddField(field)} - handleRemoveField={(field: IField) => handleRemoveField(field)} - isFieldToggleButtonDisabled={ - vis.name === visChartTypes.LogsView - ? isEmpty(explorerData.jsonData) || - !isEmpty(query[RAW_QUERY].match(PPL_STATS_REGEX)) - : true - } - /> -
-
- { renderDataConfigContainer() } +
+ + {(EuiResizablePanel, EuiResizableButton) => ( + <> + +
+
+ handleAddField(field)} + handleRemoveField={(field: IField) => handleRemoveField(field)} + isFieldToggleButtonDisabled={ + vis.name === visChartTypes.LogsView + ? isEmpty(explorerData.jsonData) || + !isEmpty(query[RAW_QUERY].match(PPL_STATS_REGEX)) + : true + } + /> +
+
{renderDataConfigContainer()}
-
- - - {/* - - - - {renderDataConfigContainer()} - - */} - - - - - - - - - - - )} - + + + + + + + + {/* */} + + {/* */} + + + )} + +
); }; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss index 36f5d15c2..eda6760d5 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss @@ -3,7 +3,28 @@ * SPDX-License-Identifier: Apache-2.0 */ - .ws__header-dark { background-color: transparent; +} + +.ws__visCanvas { + display: grid; + grid-template-rows: auto 1fr; + grid-area: workspace; + grid-gap: 12px; + padding: 12px; + background-color: #FFF; + height: 100%; + .ws__visCanvasControl { + height: 40px; + width: 140px; + .ws__visCanvasFlexitem { + display: block; + } + } +} + +#vis__mainContent .ws__central--canvas { + background-color: #FFF; + border-right: 1px solid #D3DAE6; } \ No newline at end of file diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx index 0fa68e4eb..377c78d64 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx @@ -27,55 +27,73 @@ export function WorkspacePanel({ visualizations }: IWorkSpacePanel) { }, [visualizations]); return ( - <> - + - - - - - - { - setIsTableViewOn((staleState) => !staleState); - }} - aria-describedby="table view switcher" - data-test-subj="workspace__dataTableViewSwitch" - compressed - /> - - - - - - - - {isTableViewOn ? : VisualizationPanel} - - - - + { + setIsTableViewOn((staleState) => !staleState); + }} + aria-describedby="table view switcher" + data-test-subj="workspace__dataTableViewSwitch" + compressed + /> + + + {isTableViewOn ? : VisualizationPanel} + +
+ // + // + // + // { + // setIsTableViewOn((staleState) => !staleState); + // }} + // aria-describedby="table view switcher" + // data-test-subj="workspace__dataTableViewSwitch" + // compressed + // /> + // + // + // + // + // + // {isTableViewOn ? : VisualizationPanel} + // + // + // ); } From 64b2d7253011fdaff18557b5439bb7a60fbf6f06 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Thu, 15 Sep 2022 19:46:50 -0700 Subject: [PATCH 23/29] field selector title Signed-off-by: Eric Wei --- .../explorer/sidebar/sidebar.tsx | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx index 006576af5..46064a483 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.tsx @@ -66,7 +66,11 @@ export const Sidebar = (props: ISidebarProps) => { + Query fields + + } paddingSize="xs" >
    { + Selected Fields + + } paddingSize="xs" >
      { + Available Fields + + } paddingSize="xs" >
        Date: Thu, 22 Sep 2022 20:23:32 -0700 Subject: [PATCH 24/29] synced with main Signed-off-by: Eric Wei --- DEVELOPER_GUIDE.md | 17 +- README.md | 2 +- .../11_horizontalBar_chart.spec.js | 0 .../12_boxPlot_chart.spec.js | 248 +++++++++ .../VisualizationCharts/13_logsView.spec.js | 241 ++++++++ .../13_stats_chart.spec.js | 224 ++++++++ .../VisualizationCharts/7_pie_chart.spec.js | 202 +++++++ .../9_coordinateMap_chart.spec.js} | 0 .../.cypress/utils/event_constants.js | 121 ++-- .../__snapshots__/utils.test.tsx.snap | 288 +--------- .../__snapshots__/config_panel.test.tsx.snap | 287 +++++++++- .../config_bar_chart_styles.tsx | 179 +++--- .../config_controls/config_color_theme.tsx | 13 +- .../config_controls/config_number_input.tsx | 9 +- .../data_config_panel_item.tsx | 30 +- .../logs_view_config_panel_item.tsx | 6 +- .../treemap_config_panel_item.tsx | 68 ++- .../explorer/visualizations/index.tsx | 2 +- .../utils/__tests__/utils.test.tsx | 83 +++ .../__tests__/__snapshots__/bar.test.tsx.snap | 22 +- .../__snapshots__/gauge.test.tsx.snap | 522 ++++++++++++++++++ .../__snapshots__/heatmap.test.tsx.snap | 22 +- .../__snapshots__/histogram.test.tsx.snap | 22 +- .../__snapshots__/line.test.tsx.snap | 22 +- .../__snapshots__/logs_view.test.tsx.snap | 22 +- .../__tests__/__snapshots__/pie.test.tsx.snap | 265 ++++++--- .../__snapshots__/text.test.tsx.snap | 22 +- .../__snapshots__/treemap.test.tsx.snap | 22 +- .../charts/__tests__/gauge.test.tsx | 30 + .../visualizations/charts/bar/bar.tsx | 2 - .../charts/financial/gauge/gauge.tsx | 11 +- .../charts/helpers/viz_types.ts | 156 ++++-- .../visualizations/charts/lines/line.tsx | 30 +- .../visualizations/charts/maps/heatmap.tsx | 24 +- .../visualizations/charts/pie/pie.tsx | 138 ++--- .../test/event_analytics_constants.ts | 242 ++++---- ...rch-observability.release-notes-2.3.0.0.md | 5 + 37 files changed, 2809 insertions(+), 790 deletions(-) rename dashboards-observability/.cypress/integration/{VisualizationCharts.spec.js => VisualizationCharts}/11_horizontalBar_chart.spec.js (100%) create mode 100644 dashboards-observability/.cypress/integration/VisualizationCharts/12_boxPlot_chart.spec.js create mode 100644 dashboards-observability/.cypress/integration/VisualizationCharts/13_logsView.spec.js create mode 100644 dashboards-observability/.cypress/integration/VisualizationCharts/13_stats_chart.spec.js create mode 100644 dashboards-observability/.cypress/integration/VisualizationCharts/7_pie_chart.spec.js rename dashboards-observability/.cypress/integration/{VisualizationsCharts/9_coordinateMap.spec.js => VisualizationCharts/9_coordinateMap_chart.spec.js} (100%) create mode 100644 dashboards-observability/public/components/event_analytics/utils/__tests__/utils.test.tsx create mode 100644 dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap create mode 100644 dashboards-observability/public/components/visualizations/charts/__tests__/gauge.test.tsx create mode 100644 release-notes/opensearch-observability.release-notes-2.3.0.0.md diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index 7a1fde32a..b63759f91 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -14,14 +14,13 @@ By default, tests use the same runtime as `JAVA_HOME`. ### Setup -1. Download OpenSearch for the version that matches the [OpenSearch Dashboards version specified in package.json](./dashboards-observability/package.json#L5). -1. Download the OpenSearch Dashboards source code for the [version specified in package.json](./dashboards-observability/package.json#L5) you want to set up. - +1. Download OpenSearch for the version that matches the [OpenSearch Dashboards version specified in opensearch_dashboards.json](./dashboards-observability/opensearch_dashboards.json#L3) from [opensearch.org](https://opensearch.org/downloads.html). +1. Download the OpenSearch Dashboards source code for the [version specified in opensearch_dashboards.json](./dashboards-observability/opensearch_dashboards.json#L3) you want to set up. 1. Change your node version to the version specified in `.node-version` inside the OpenSearch Dashboards root directory. -1. cd into `plugins` directory in the OpenSearch Dashboards source code directory. -1. Check out this package from version control into the `plugins` directory. +1. cd into `OpenSearch-Dashboards` and remove the `plugins` directory. +1. Check out this package from version control as the `plugins` directory. ```bash -git clone git@github.com:opensearch-project/observability.git plugins --no-checkout +git clone https://github.com/opensearch-project/observability plugins --no-checkout cd plugins echo 'dashboards-observability/*' >> .git/info/sparse-checkout git config core.sparseCheckout true @@ -46,9 +45,7 @@ Example output: `./build/observability*.zip` ### Run -- `yarn start` - - Starts OpenSearch Dashboards and includes this plugin. OpenSearch Dashboards will be available on `localhost:5601`. +cd back to `OpenSearch-Dashboards` directory and run `yarn start` to start OpenSearch Dashboards including this plugin. OpenSearch Dashboards will be available on `localhost:5601`. ### Submitting Changes @@ -60,4 +57,4 @@ The Github workflow in [`backport.yml`](.github/workflows/backport.yml) creates with an appropriate label `backport ` is merged to main with the backport workflow run successfully on the PR. For example, if a PR on main needs to be backported to `1.x` branch, add a label `backport 1.x` to the PR and make sure the backport workflow runs on the PR along with other checks. Once this PR is merged to main, the workflow will create a backport PR -to the `1.x` branch. \ No newline at end of file +to the `1.x` branch. diff --git a/README.md b/README.md index 87feb1c1e..ed0aa2544 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ See [developer guide](DEVELOPER_GUIDE.md) and [how to contribute to this project If you find a bug, or have a feature request, please don't hesitate to open an issue in this repository. -For more information, see [project website](https://opensearch.org/) and [documentation](https://opensearch.org/docs). If you need help and are unsure where to open an issue, try [forums](https://discuss.opendistrocommunity.dev/). +For more information, see [project website](https://opensearch.org/) and [documentation](https://opensearch.org/docs). If you need help and are unsure where to open an issue, try the [Forum](https://forum.opensearch.org/c/plugins/observability/49). ## Code of Conduct diff --git a/dashboards-observability/.cypress/integration/VisualizationCharts.spec.js/11_horizontalBar_chart.spec.js b/dashboards-observability/.cypress/integration/VisualizationCharts/11_horizontalBar_chart.spec.js similarity index 100% rename from dashboards-observability/.cypress/integration/VisualizationCharts.spec.js/11_horizontalBar_chart.spec.js rename to dashboards-observability/.cypress/integration/VisualizationCharts/11_horizontalBar_chart.spec.js diff --git a/dashboards-observability/.cypress/integration/VisualizationCharts/12_boxPlot_chart.spec.js b/dashboards-observability/.cypress/integration/VisualizationCharts/12_boxPlot_chart.spec.js new file mode 100644 index 000000000..d4dae465e --- /dev/null +++ b/dashboards-observability/.cypress/integration/VisualizationCharts/12_boxPlot_chart.spec.js @@ -0,0 +1,248 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +/// +import { + delay, + TEST_QUERIES, + querySearch, + landOnEventVisualizations, +} from '../../utils/event_constants'; + +const numberOfWindow = 4; +const labelSize = 20; +const rotateLevel = 45; +const boxSize = 7; +const boxSizeUpdated = 1; +const markerSize = 5; +const markerSizeUpdated = 1; +const jitter = 2; +const jitterUpdated = .1; +const fillOpacity = 10; +const fillOpacityUpdated = 50; +const numberOfColor = 24; + +const renderBoxPlot = () => { + landOnEventVisualizations(); + querySearch(TEST_QUERIES[4].query, TEST_QUERIES[4].dateRangeDOM); + cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]') + .type('Box plot') + .type('{enter}'); +}; + +describe('Render box plot and verify default behaviour ', () => { + beforeEach(() => { + renderBoxPlot(); + }); + + it('Render box plot and verify by default the data gets render', () => { + cy.get('.xy').should('exist'); + }); + + it('Render box plot and verify you see data configuration panel and chart panel', () => { + cy.get('.euiPanel.euiPanel--paddingSmall').should('have.length', numberOfWindow); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Data Configurations').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Dimensions').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Metrics').should('exist'); + cy.get('.euiIEFlexWrapFix').contains('Panel options').click(); + cy.get('.euiIEFlexWrapFix').contains('Legend').click(); + cy.get('.euiIEFlexWrapFix').contains('Chart styles').click(); + cy.get('.euiIEFlexWrapFix').contains('Color Theme').click(); + cy.get('[aria-label="Press to toggle this panel"]').eq(1).click(); + cy.get('[aria-label="Press to toggle this panel"]').eq(2).click(); + }); + + it('Render box plot and verify the data configuration panel and chart panel are collapsable', () => { + cy.get('.euiPanel.euiPanel--paddingSmall').should('have.length', numberOfWindow); + cy.get('[aria-label="Press to toggle this panel"]').eq(1).click(); + cy.get('[aria-label="Press to toggle this panel"]').eq(2).click(); + }); +}); + +describe('Render box plot for data configuration panel', () => { + beforeEach(() => { + renderBoxPlot(); + }); + + it('Render box plot and verify data config panel', () => { + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(0).should('contain', 'tags'); + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(1).should('contain', 'count()'); + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(2).should('contain', 'avg(bytes)'); + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(3).should('contain', 'host'); + }); + + it('Render box plot and verify data config panel restrict user to select a duplicate field on dimension field', () => { + cy.get('[data-test-subj="comboBoxInput"]').eq(1).click(); + cy.get('[data-test-subj="comboBoxClearButton"]').eq(0).click(); + cy.get('[data-test-subj="comboBoxInput"]').eq(1).click(); + cy.get('.euiComboBoxOption__content').should('have.length', 1); + cy.get('.euiComboBoxOption__content').contains('tags'); + }); + + it('Render box plot and verify data config panel Restrict user to select a duplicate field on Metrics field', () => { + cy.get('.euiText.euiText--extraSmall').eq(1).click(); + cy.get('[data-test-subj="comboBoxClearButton"]').eq(1).click(); + cy.get('[data-test-subj="comboBoxInput"]').eq(3).click(); + cy.get('.euiComboBoxOption__content').should('not.contain', 'tags'); + cy.get('.euiComboBoxOption__content').should('have.length', 2); + }); + + it('Render box plot and verify data config panel no result found if metric is missing', () => { + cy.get('.euiText.euiText--extraSmall').eq(0).click(); + cy.get('.euiText.euiText--extraSmall').eq(1).click(); + cy.get('[data-test-subj="comboBoxClearButton"]').eq(1).click(); + cy.get('[data-test-subj="comboBoxInput"]').eq(0).click(); + cy.get('.euiButton__text').contains('Update chart').click(); + cy.get('.euiTextColor.euiTextColor--subdued').contains('No results found').should('exist'); + cy.get('[data-test-subj="comboBoxInput"]').eq(3).click(); + cy.get('.euiComboBoxOption__content').contains('avg(bytes)').click(); + cy.get('.euiButton__text').contains('Update chart').click(); + cy.get('.main-svg').contains('No results found').should('not.exist'); + }); +}); + +describe('Render box plot for panel options', () => { + beforeEach(() => { + renderBoxPlot(); + }); + + it('Render box plot and verify the title gets updated according to user input ', () => { + cy.get('input[name="title"]').type('box plot'); + cy.get('textarea[name="description"]').should('exist').click(); + cy.get('.gtitle').contains('box plot').should('exist'); + }); +}); + +describe('Render box plot for legend', () => { + beforeEach(() => { + renderBoxPlot(); + }); + + it('Render box plot and verify legends for Show and Hidden', () => { + cy.get('[data-text="Show"]').should('have.text', 'Show'); + cy.get('[data-text="Show"] [data-test-subj="show"]').should('have.attr', 'checked'); + cy.get('[data-text="Hidden"]').should('have.text', 'Hidden').click(); + cy.get('[data-text="Hidden"] [data-test-subj="hidden"]').should('not.have.attr', 'checked'); + cy.get('[data-unformatted="max(bytes)"]').should('not.exist'); + }); + + it('Render box plot and verify legends for position Right and Bottom', () => { + cy.get('[data-text="Right"]').should('have.text', 'Right'); + cy.get('[data-text="Right"] [data-test-subj="v"]').should('have.attr', 'checked'); + cy.get('[data-text="Bottom"]').should('have.text', 'Bottom').click(); + cy.get('[data-text="Bottom"] [data-test-subj="h"]').should('not.have.attr', 'checked'); + }); +}); + +describe('Render box plot for chart style options', () => { + beforeEach(() => { + renderBoxPlot(); + }); + + it('Render box plot and increase Label Size ', () => { + cy.get('[data-test-subj="valueFieldNumber"]').click().type(labelSize); + cy.get('textarea[name="description"]').should('exist').click(); + cy.get('[data-unformatted="count()"]').should('have.css', 'font-size', '20px'); + }); + + it('Render box plot and "Rotate box labels"', () => { + cy.get('input[type="range"]') + .eq(0) + .then(($el) => $el[0].stepUp(rotateLevel)) + .trigger('change'); + cy.get('.euiRangeSlider').eq(0).should('have.value', rotateLevel); + }); + + it('Render box plot and change "Box gap"', () => { + cy.get('input[type="range"]') + .eq(1) + .then(($el) => $el[0].stepUp(boxSize)) + .trigger('change'); + cy.get('.euiRangeSlider').eq(1).should('have.value', boxSizeUpdated); + }); + + it('Render box plot and change "Marker size"', () => { + cy.get('input[type="range"]') + .eq(2) + .then(($el) => $el[0].stepDown(markerSize)) + .trigger('change'); + cy.get('.euiRangeSlider').eq(2).should('have.value', markerSizeUpdated); + }); + + it('Render box plot and change "Jitter"', () => { + cy.get('input[type="range"]') + .eq(3) + .then(($el) => $el[0].stepDown(jitter)) + .trigger('change'); + cy.get('.euiRangeSlider').eq(3).should('have.value', jitterUpdated); + }); + + it('Render box plot and change "Fill opacity"', () => { + cy.get('input[type="range"]') + .eq(4) + .then(($el) => $el[0].stepUp(fillOpacity)) + .trigger('change'); + cy.get('.euiRangeSlider').eq(4).should('have.value', fillOpacityUpdated); + }); +}); + +describe('Render box plot for color theme', () => { + beforeEach(() => { + renderBoxPlot(); + }); + + it('Render box plot and "Add color theme"', () => { + cy.get('.euiButton__text').contains('+ Add color theme').click(); + cy.wait(delay); + cy.get('[data-test-subj="comboBoxInput"]').eq(9).click(); + cy.get('.euiComboBoxOption__content').contains('avg(bytes)').click(); + cy.get('.points').find('path[style*="rgb(252, 5, 5)"]').should('have.length', numberOfColor); + }); +}); + +describe('Render box plot and verify if reset works properly', () => { + beforeEach(() => { + renderBoxPlot(); + }); + + it('Render box plot with all feild data then click on reset and verify reset works properly', () => { + cy.get('input[placeholder="Title"]').type('box plot'); + cy.get('textarea[placeholder="Description"]').type('Description For box plot'); + cy.get('.euiButton__text').contains('Hidden').click(); + cy.get('.euiButton__text').contains('Horizontal').click(); + cy.get('[data-test-subj="valueFieldNumber"]').click().type(labelSize); + cy.get('input[type="range"]') + .eq(0) + .then(($el) => $el[0].stepUp(rotateLevel)) + .trigger('change'); + cy.get('input[type="range"]') + .eq(1) + .then(($el) => $el[0].stepUp(boxSize)) + .trigger('change'); + cy.get('input[type="range"]') + .eq(2) + .then(($el) => $el[0].stepDown(markerSize)) + .trigger('change'); + cy.get('input[type="range"]') + .eq(3) + .then(($el) => $el[0].stepUp(jitter)) + .trigger('change'); + cy.get('input[type="range"]') + .eq(4) + .then(($el) => $el[0].stepUp(fillOpacity)) + .trigger('change'); + cy.get('.euiButtonEmpty__text').contains('Reset').click(); + cy.get('input[placeholder="Title"]').should('not.have.value', 'box plot'); + cy.get('textarea[placeholder="Description"]').should( + 'not.have.value', + 'Description For box plot' + ); + cy.get('[data-text="Show"] [data-test-subj="show"]').should('have.attr', 'checked'); + cy.get('[data-text="Right"] [data-test-subj="v"]').should('have.attr', 'checked'); + cy.get('[data-text="Vertical"] [data-test-subj="v"]').should('have.attr', 'checked'); + cy.get('[data-text="Overlay"] [data-test-subj="overlay"]').should('have.attr', 'checked'); + cy.get('[data-test-subj="valueFieldNumber"]').should('have.value', ''); + }); +}); diff --git a/dashboards-observability/.cypress/integration/VisualizationCharts/13_logsView.spec.js b/dashboards-observability/.cypress/integration/VisualizationCharts/13_logsView.spec.js new file mode 100644 index 000000000..542e3d776 --- /dev/null +++ b/dashboards-observability/.cypress/integration/VisualizationCharts/13_logsView.spec.js @@ -0,0 +1,241 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +/// +import { + delay, + TEST_QUERIES, + querySearch, + landOnEventVisualizations, + saveVisualizationAndVerify, + deleteVisualization, +} from '../../utils/event_constants'; + +const renderLogsView = () => { + landOnEventVisualizations(); + querySearch(TEST_QUERIES[8].query, TEST_QUERIES[8].dateRangeDOM); + cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]') + .type('Logs view') + .type('{enter}'); +}; + +const renderLogsViewChart = () => { + landOnEventVisualizations(); + querySearch(TEST_QUERIES[2].query, TEST_QUERIES[2].dateRangeDOM); + cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]') + .type('Logs view') + .type('{enter}'); +}; + +const fieldName = 'host'; + +describe('Render Logs view and verify default behavior', () => { + beforeEach(() => { + renderLogsView(); + }); + + it('Render Logs view and verify the default data', () => { + cy.get('.logs-view-container').should('exist'); + }); + + it('Render Logs view and verify Data Configuration panel default behavior', () => { + cy.get('.euiTitle.euiTitle--xxsmall').contains('Data Configurations').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Columns'); + cy.get('.euiFormLabel.euiFormRow__label').contains('Field'); + cy.get('.euiButton.euiButton--primary.euiButton--fullWidth.euiButton-isDisabled').should( + 'be.disabled' + ); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').should('be.disabled'); + }); + + it('Render Logs view and verify Style section for Logs view', () => { + cy.get('.vis-config-tabs .euiTab__content').contains('Style').should('exist'); + cy.get('.euiAccordion__triggerWrapper').contains('Panel options').should('exist'); + cy.get('#configPanel__panelOptions .euiFormRow__labelWrapper') + .contains('Title') + .should('exist'); + cy.get('#configPanel__panelOptions .euiFormRow__labelWrapper') + .contains('Description') + .should('exist'); + }); + + it('Table view should be enabled for Logs view', () => { + cy.get('.euiSwitch__label').contains('Table view').should('exist'); + cy.get('[data-test-subj="workspace__dataTableViewSwitch"][aria-checked="false"]').click(); + cy.get('.ag-header.ag-pivot-off').should('exist'); + }); + + it('Verify Style section for Logs view', () => { + cy.get('#data-panel').contains('Style').should('exist'); + cy.get('.euiAccordion__button').contains('Panel options').should('exist'); + cy.get('#configPanel__panelOptions').contains('Title').should('exist'); + cy.get('.euiFormHelpText.euiFormRow__text').contains('Name your visualization').should('exist'); + cy.get('#configPanel__panelOptions').contains('Description').should('exist'); + }); + + it('Add and Remove toggle buttons for fields section', () => { + cy.get('#available_fields').contains('Available Fields').should('exist'); + cy.get('[aria-label="Add agent to table"]').should('be.disabled'); + cy.get('#selected_fields').contains('Query fields').should('exist'); + cy.get('[aria-label="Remove clientip from table"]').should('be.disabled'); + }); +}); + +describe('Save and Delete Visualization', () => { + beforeEach(() => { + renderLogsView(); + }); + + it('Render Logs view, Save and Delete Visualization', () => { + saveVisualizationAndVerify(); + deleteVisualization(); + }); +}); + +describe('Render Logs view with no stats section in the query', () => { + beforeEach(() => { + renderLogsViewChart(); + }); + + it('Disabled Table view toogle button', () => { + cy.get('[data-test-subj="workspace__dataTableViewSwitch"]').should('be.disabled'); + }); + + it('Save toast message', () => { + const vis_name_sub_string = Math.floor(Math.random() * 100); + cy.get('[data-test-subj="eventExplorer__saveManagementPopover"]').click(); + cy.get('[data-test-subj="eventExplorer__querySaveComboBox"]').click(); + cy.get('.euiComboBoxOptionsList__rowWrap .euiFilterSelectItem').eq(0).click(); + cy.get( + '.euiPopover__panel .euiFormControlLayoutIcons [data-test-subj="comboBoxToggleListButton"]' + ) + .eq(0) + .click(); + cy.get('.euiPopover__panel input') + .eq(1) + .type(`Test visualization` + vis_name_sub_string); + cy.get('[data-test-subj="eventExplorer__querySaveConfirm"]').click(); + cy.get('[data-test-subj="euiToastHeader"]') + .contains('There is no query or(and) visualization to save') + .should('exist'); + }); + + it('Verify Logs view details when PPL query does not have stats section ', () => { + cy.get('[data-test-subj="docTable"]').should('exist'); + cy.get('.osdDocTableHeader').contains('Time').should('exist'); + cy.get('.osdDocTableHeader').contains('_source').should('exist'); + }); + + it('Add and Remove toggle buttons for fields section should be enabled', () => { + //Add field + cy.get('[data-test-subj="fieldToggle-agent"]').click(); + cy.get('[data-test-subj="field-agent"]').should('exist'); + //Remove field + cy.get('[data-test-subj="fieldToggle-agent"]').click(); + cy.get('[aria-labelledby="selected_fields"] [data-test-subj="field-agent-showDetails"]').should( + 'not.exist' + ); + }); + + it('Search engine for fields under Visualizations', () => { + cy.get('[data-test-subj="eventExplorer__sidebarSearch"]').should('exist').type(fieldName); + cy.get('[data-test-subj="fieldToggle-host"]').click(); + cy.get('[data-test-subj="fieldList-selected"]').should('exist'); + }); + + it('View surrounding events button enabled', () => { + cy.get('.euiIcon.euiIcon--medium.euiIcon--inherit.euiButtonIcon__icon') + .eq(2) + .click({ force: true }); + cy.get('#eventsDocFyout').contains('Event Details').should('exist'); + cy.get('.euiButton__text').eq(4).should('not.be.disabled'); + }); +}); + +describe('Event Details overlay', () => { + beforeEach(() => { + renderLogsView(); + }); + + it('Verify Event Details overaly should get opened after clicking on details toggle button', () => { + cy.get('.euiIcon.euiIcon--medium.euiIcon--inherit.euiButtonIcon__icon') + .eq(2) + .click({ force: true }); + cy.get('#eventsDocFyout').contains('Event Details').should('exist'); + }); + + it('Options in Event Details overlay', () => { + cy.get('.euiIcon.euiIcon--medium.euiIcon--inherit.euiButtonIcon__icon') + .eq(2) + .click({ force: true }); + cy.get('#eventsDocFyout').contains('Event Details').should('exist'); + cy.get('.euiTabs .euiTab__content').contains('Table'); + cy.get('.table.table-condensed.osdDocViewerTable').should('exist'); + cy.get('.euiTabs .euiTab__content').contains('JSON').click(); + cy.get('.euiCodeBlock__code.json').should('exist'); + cy.get('.euiTabs .euiTab__content').contains('Traces').click(); + cy.get('.euiCallOutHeader__title').contains('No Trace Id found in the event.').should('exist'); + cy.get('.euiLink.euiLink--primary').contains('Trace Analytics').click(); + cy.get('#trace-analytics').contains('Trace Analytics').should('exist'); + cy.get('.euiLink.euiLink--primary').contains('Log Correlation').click(); + cy.get('#log-correlation').contains('Log Correlation').should('exist'); + }); + + it('View surrounding events button disabled', () => { + cy.get('.euiIcon.euiIcon--medium.euiIcon--inherit.euiButtonIcon__icon') + .eq(2) + .click({ force: true }); + cy.get('#eventsDocFyout').contains('Event Details').should('exist'); + cy.get('.euiButton.euiButton--primary.euiButton-isDisabled.header-button') + .contains('View surrounding events') + .should('be.disabled'); + }); + + it('Event Details overlay resizable and "X" buttons', () => { + cy.get('.euiIcon.euiIcon--medium.euiIcon--inherit.euiButtonIcon__icon') + .eq(2) + .click({ force: true }); + cy.get('#eventsDocFyout').contains('Event Details').should('exist'); + cy.get('[title="Resize"]').click(); + cy.get('.euiIcon.euiIcon--medium.euiIcon--inherit.euiButtonIcon__icon') + .eq(2) + .click({ force: true }); + cy.get('#eventsDocFyout').contains('Event Details').should('exist'); + cy.get('[data-test-subj="euiFlyoutCloseButton"]').should('exist').click(); + }); + + it('Table details on Event Details overlay', () => { + cy.get('.euiIcon.euiIcon--medium.euiIcon--inherit.euiButtonIcon__icon') + .eq(2) + .click({ force: true }); + cy.get('#eventsDocFyout').contains('Event Details').should('exist'); + cy.get('[data-test-subj="docTable"]').should('exist'); + }); +}); + +describe('Data Configuration panel when no stats in the query', () => { + beforeEach(() => { + renderLogsViewChart(); + }); + + it('Data Configuration panel default behavior', () => { + cy.get('.euiTitle.euiTitle--xxsmall').contains('Data Configurations').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Columns').should('exist'); + cy.get('.euiButton__text').eq(2).contains('Add').should('not.be.disabled'); + cy.get('.euiButton__text').eq(3).contains('Update Chart').should('not.be.disabled'); + }); + + it('Add button in Data Configuration panel', () => { + cy.get('.euiTitle.euiTitle--xxsmall').contains('Data Configurations').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Columns').should('exist'); + cy.get('.euiButton__text').eq(2).contains('Add').should('not.be.disabled').click(); + cy.get('.euiFormLabel.euiFormRow__label').contains('Field'); + cy.get('.euiIcon.euiIcon--medium.euiIcon--danger').should('exist'); + cy.get('[data-test-subj="comboBoxToggleListButton"]').eq(0).click(); + cy.get('.euiFlexItem.euiFilterSelectItem__content').eq(1).click(); + cy.get('.euiButton__text').contains('Update Chart').should('not.be.disabled').click(); + cy.get('[data-test-subj="docTable"]').should('exist'); + }); +}); diff --git a/dashboards-observability/.cypress/integration/VisualizationCharts/13_stats_chart.spec.js b/dashboards-observability/.cypress/integration/VisualizationCharts/13_stats_chart.spec.js new file mode 100644 index 000000000..657686dd2 --- /dev/null +++ b/dashboards-observability/.cypress/integration/VisualizationCharts/13_stats_chart.spec.js @@ -0,0 +1,224 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +/// +import { + delay, + TEST_QUERIES, + querySearch, + landOnEventVisualizations, +} from '../../utils/event_constants'; + +const numberOfWindow = 4; +const metricsPrecisionUpdated = 2; +const metricUnit = 'cm'; +const titleSize = '25.5px'; +const titleSizeUpdated = '40px'; +const valueSize = '60.8px'; +const valueSizeUpdated = '73.0px'; + +const renderStatsChart = () => { + landOnEventVisualizations(); + querySearch(TEST_QUERIES[4].query, TEST_QUERIES[4].dateRangeDOM); + cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]') + .type('Stats') + .type('{enter}'); +}; + +describe('Render stats chart and verify default behaviour ', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verify by default the data gets render', () => { + cy.get('.xy').should('exist'); + }); + + it('Render scatter chart and verify you see data configuration panel and chart panel', () => { + cy.get('.euiPanel.euiPanel--paddingSmall').should('have.length', numberOfWindow); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Data Configurations').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Dimensions').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Metrics').should('exist'); + cy.get('.euiIEFlexWrapFix').contains('Panel options').click(); + cy.get('.euiIEFlexWrapFix').contains('Chart styles').click(); + cy.get('.euiIEFlexWrapFix').contains('Thresholds').click(); + cy.get('[aria-label="Press to toggle this panel"]').eq(1).click(); + cy.get('[aria-label="Press to toggle this panel"]').eq(2).click(); + }); + + it('Render stats chart and verify the data configuration panel and chart panel are collapsable', () => { + cy.get('.euiPanel.euiPanel--paddingSmall').should('have.length', numberOfWindow); + cy.get('[aria-label="Press to toggle this panel"]').eq(1).click(); + cy.get('[aria-label="Press to toggle this panel"]').eq(2).click(); + }); +}); + +describe('Render stats chart for data configuration panel', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verify data config panel', () => { + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(0).should('contain', 'tags'); + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(1).should('contain', 'count()'); + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(2).should('contain', 'avg(bytes)'); + cy.get('.euiComboBoxPill.euiComboBoxPill--plainText').eq(3).should('contain', 'host'); + }); + + it('Render stats chart and verify no result found message if the dimension is removed', () => { + cy.get('[data-test-subj="comboBoxClearButton"]').eq(0).click(); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').click(); + cy.get('.euiTextColor.euiTextColor--subdued').contains('No results found').should('exist'); + cy.get('[data-test-subj="comboBoxInput"]').eq(1).click(); + cy.get('.euiComboBoxOption__content').click(); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').click(); + cy.get('.main-svg').contains('No results found').should('not.exist'); + }); + + it('Render stats chart and verify data config panel no result found if metric is missing', () => { + cy.get('.euiText.euiText--extraSmall').eq(0).click(); + cy.get('.euiText.euiText--extraSmall').eq(1).click(); + cy.get('[data-test-subj="comboBoxClearButton"]').eq(1).click(); + cy.get('[data-test-subj="comboBoxInput"]').eq(0).click(); + cy.get('.euiButton__text').contains('Update chart').click(); + cy.get('.euiTextColor.euiTextColor--subdued').contains('No results found').should('exist'); + cy.get('[data-test-subj="comboBoxInput"]').eq(3).click(); + cy.get('.euiComboBoxOption__content').contains('avg(bytes)').click(); + cy.get('.euiButton__text').contains('Update chart').click(); + cy.get('.main-svg').contains('No results found').should('not.exist'); + }); +}); + +describe('Render stats chart for panel options', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verify the title gets updated according to user input ', () => { + cy.get('input[name="title"]').type('stats chart'); + cy.get('textarea[name="description"]').should('exist').click(); + cy.get('.gtitle').contains('stats chart').should('exist'); + }); +}); + +describe('Render stats chart verfiy functionality for Tooltip mode', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verfiy the Show and Hidden Tooltip modes', () => { + cy.get('.euiButton__text.euiButtonGroupButton__textShift').eq(0).should('have.text', 'Show'); + cy.get('.euiButton__text.euiButtonGroupButton__textShift') + .eq(1) + .should('have.text', 'Hidden') + .click(); + }); +}); + +describe('Render stats chart verfiy functionality for Tooltip text', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verfiy the Tootltip text -> All , Dimension , Metric', () => { + cy.get('.euiButton__text.euiButtonGroupButton__textShift').eq(2).should('have.text', 'All'); + cy.get('.euiButton__text.euiButtonGroupButton__textShift') + .eq(3) + .should('have.text', 'Dimension') + .click(); + cy.get('.euiButton__text.euiButtonGroupButton__textShift') + .eq(4) + .should('have.text', 'Metrics') + .click(); + }); +}); + +describe('Render stats chart for Chart Styles ', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verify the various chart type selected', () => { + cy.get('.euiButton__text.euiButtonGroupButton__textShift').eq(5).should('have.text', 'Auto'); + cy.get('.euiButton__text.euiButtonGroupButton__textShift') + .eq(6) + .should('have.text', 'Horizontal') + .click(); + cy.get('.euiButton__text.euiButtonGroupButton__textShift') + .eq(7) + .should('have.text', 'Text mode') + .click(); + }); + + it('Render stats chart and verify the various chart orientation selected', () => { + cy.get('.euiButton__text.euiButtonGroupButton__textShift').eq(8).should('have.text', 'Auto'); + cy.get('.euiButton__text.euiButtonGroupButton__textShift') + .eq(9) + .should('have.text', 'Horizontal') + .click(); + cy.get('.euiButton__text.euiButtonGroupButton__textShift') + .eq(10) + .should('have.text', 'Vertical') + .click(); + }); + + it('Render stats chart and verify Metric unit and Metric Precision on chart ', () => { + cy.get('[data-test-subj="valueFieldText"]').click().type(metricUnit); + cy.get('[data-test-subj="valueFieldNumber"]').eq(0).click().type(metricsPrecisionUpdated); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').click(); + }); + + it('Render stats chart and verify behaviour for Title size and Value size on chart ', () => { + cy.get('.annotation-text').eq(0).should('have.css', 'font-size', titleSize); + cy.get('.annotation-text').eq(2).should('have.css', 'font-size', titleSize); + cy.get('.annotation-text').eq(4).should('have.css', 'font-size', titleSize); + cy.get('[data-test-subj="valueFieldNumber"]').eq(1).click().type(titleSizeUpdated); + cy.get('.annotation-text').eq(1).should('have.css', 'font-size', valueSize); + cy.get('.annotation-text').eq(3).should('have.css', 'font-size', valueSize); + cy.get('.annotation-text').eq(5).should('have.css', 'font-size', valueSize); + cy.get('[data-test-subj="valueFieldNumber"]').eq(2).click().type(valueSizeUpdated); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').click(); + }); +}); + +describe('Render stats chart and verify the Text Mode options', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verify text modes ', () => { + cy.get('[data-text="Names"]').should('have.text', 'Names').click(); + cy.get('[data-text="Values"]').should('have.text', 'Values').click(); + cy.get('[data-text="Values + Names"]').should('have.text', 'Values + Names').click(); + }); +}); + +describe('Render stats chart and verify the +add threshold button option', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it('Render stats chart and verify the +Add Threshold button for color picker', () => { + cy.get('[data-test-subj="euiColorPickerAnchor"]').click(); + cy.get('.euiColorPickerSwatch.euiColorPicker__swatchSelect').eq(5).click(); + }); +}); + +describe('Render stats chart and verify the reset button', () => { + beforeEach(() => { + renderStatsChart(); + }); + + it.only('Render stats chart and test the Reset button functionality', () => { + cy.get('[data-test-subj="valueFieldText"]').click().type(metricUnit); + cy.get('[data-test-subj="valueFieldNumber"]').eq(0).click().type(metricsPrecisionUpdated); + cy.get('[data-test-subj="valueFieldNumber"]').eq(1).click().type(titleSizeUpdated); + cy.get('[data-test-subj="valueFieldNumber"]').eq(2).click().type(valueSizeUpdated); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').click(); + cy.get('[data-test-subj="euiColorPickerAnchor"]').click(); + cy.get('.euiColorPickerSwatch.euiColorPicker__swatchSelect').eq(5).click(); + cy.get('[data-test-subj="visualizeEditorResetButton"]').click(); + }); +}); diff --git a/dashboards-observability/.cypress/integration/VisualizationCharts/7_pie_chart.spec.js b/dashboards-observability/.cypress/integration/VisualizationCharts/7_pie_chart.spec.js new file mode 100644 index 000000000..b731db10b --- /dev/null +++ b/dashboards-observability/.cypress/integration/VisualizationCharts/7_pie_chart.spec.js @@ -0,0 +1,202 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +/// +import { + delay, + TEST_QUERIES, + querySearch, + landOnEventVisualizations, + renderDataConfig, + saveVisualizationAndVerify, + deleteVisualization, + } from '../../utils/event_constants'; + + const renderPieChart = () => { + landOnEventVisualizations(); + querySearch(TEST_QUERIES[3].query, TEST_QUERIES[3].dateRangeDOM); + cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]').click(); + cy.get('[data-test-subj="comboBoxOptionsList "] button span').contains('Pie').click(); + }; + + const aggregationValues = [ + 'COUNT', + 'SUM', + 'AVERAGE', + 'MAX', + 'MIN', + 'VAR_SAMP', + 'VAR_POP', + 'STDDEV_SAMP', + 'STDDEV_POP', + ]; + + describe.only('Render Pie chart and verify default behavior', () => { + beforeEach(() => { + renderPieChart(); + }); + + it('Render Pie chart and verify the default data', () => { + cy.get('.plot-container.plotly').should('exist'); + }); + + it('Render Pie chart and verify Data Configuration panel default behavior', () => { + cy.get('.euiTitle.euiTitle--xxsmall').contains('Data Configurations').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Dimensions').should('exist'); + cy.get('.first-division .euiFormRow__labelWrapper').contains('Aggregation').should('exist'); + cy.get('.first-division .euiFormLabel.euiFormRow__label').contains('Field').should('exist'); + cy.get('.first-division .euiFormLabel.euiFormRow__label') + .contains('Custom label') + .should('exist'); + cy.get('.first-division .euiButton__text').contains('Add').should('exist'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Metrics').should('exist'); + cy.get('.euiButton__text').contains('Update chart').should('exist'); + }); + + it('Render Pie chart and verify Style section for Pie chart', () => { + cy.get('#data-panel').contains('Style').should('exist'); + cy.get('[aria-controls="configPanel__panelOptions"]').contains('Panel options').should('exist'); + cy.get('[aria-controls="configPanel__legend"]').contains('Legend').should('exist'); + cy.get('.euiForm.visEditorSidebar__form .euiIEFlexWrapFix') + .contains('Tooltip options') + .should('exist'); + cy.get('[aria-controls="configPanel__chartStyles"]').contains('Chart styles').should('exist'); + }); + + it('Options under Legend section', () => { + cy.get('#configPanel__legend').contains('Legend'); + cy.get('.euiTitle.euiTitle--xxsmall').eq(3).contains('Show legend'); + cy.get('[data-text="Show"]').eq(0).contains('Show'); + cy.get('[data-text="Hidden"]').eq(0).contains('Hidden'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Position'); + cy.get('[data-text="Right"]').contains('Right'); + cy.get('[data-text="Bottom"]').contains('Bottom'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Legend size').should('exist'); + }); + + it('Options under Tooltip options section', () => { + cy.get('.euiIEFlexWrapFix').contains('Tooltip options').should('exist'); + cy.get('[data-text="Show"]').eq(1).contains('Show'); + cy.get('[data-text="Hidden"]').eq(1).contains('Hidden'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Tooltip text'); + cy.get('[data-text="All"]').contains('All'); + cy.get('[data-text="Label"]').contains('Label'); + cy.get('[data-text="Value"]').contains('Value'); + cy.get('[data-text="Percent"]').contains('Percent'); + }); + + it('Options under Chart Styles section', () => { + cy.get('.euiIEFlexWrapFix').contains('Chart styles').should('exist'); + cy.get('#configPanel__chartStyles').contains('Mode'); + cy.get('.euiTitle.euiTitle--xxsmall').eq(9).contains('Label size'); + cy.get('.euiTitle.euiTitle--xxsmall').contains('Color theme'); + }); + + it('Table view should be enabled for Pie chart', () => { + cy.get('.euiSwitch__label').contains('Table view').should('exist'); + cy.get('[data-test-subj="workspace__dataTableViewSwitch"][aria-checked="false"]').click(); + cy.get('.ag-header.ag-pivot-off').should('exist'); + }); + + it('Render Pie chart and verify legends for Position Right and Bottom', () => { + cy.get('[data-text="Right"]').should('have.text', 'Right'); + cy.get('[data-text="Right"] [data-test-subj="v"]').should('have.attr', 'checked'); + cy.get('[data-text="Bottom"]').should('have.text', 'Bottom').click(); + cy.get('[data-text="Bottom"] [data-test-subj="h"]').should('not.have.attr', 'checked'); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').click({ force: true, multiple: true }); + }); + + it('Render Pie chart and verify legends for Show and Hidden', () => { + cy.get('[data-text="Show"]').eq(0).should('have.text', 'Show'); + cy.get('[data-text="Show"] [data-test-subj="show"]').should('have.attr', 'checked'); + cy.get('[data-text="Hidden"]').eq(0).should('have.text', 'Hidden').click(); + cy.get('[data-text="Hidden"] [data-test-subj="hidden"]').should('not.have.attr', 'checked'); + cy.get('[data-test-subj="visualizeEditorRenderButton"]').click({ force: true, multiple: true }); + }); + }); + + describe('Save and Delete Visualization', () => { + beforeEach(() => { + renderPieChart(); + }); + + it('Render Pie chart, Save and Delete Visualization', () => { + saveVisualizationAndVerify(); + deleteVisualization(); + }); + }); + + describe('Color Theme section', () => { + beforeEach(() => { + renderPieChart(); + }); + + it('Default option in Color Theme', () => { + cy.get('.euiTitle.euiTitle--xxsmall') + .contains('Color Theme') + .scrollIntoView() + .should('be.visible'); + cy.get('.euiSuperSelectControl').contains('Default').should('exist'); + }); + + it('Render pie chart with single color option', () => { + cy.get('.euiTitle.euiTitle--xxsmall') + .contains('Color Theme') + .scrollIntoView() + .should('be.visible'); + cy.get('.euiSuperSelectControl').contains('Default').click(); + cy.get('.euiColorPalettePicker__item').contains('Single Color').click(); + cy.get('[data-test-subj="euiColorPickerAnchor"]').click(); + cy.get('.euiColorPickerSwatch.euiColorPicker__swatchSelect').eq(2).click(); + cy.get('.pielayer').should('exist'); + }); + }); + + describe('Renders Pie chart and Data Configurations section for Pie chart', () => { + beforeEach(() => { + landOnEventVisualizations(); + renderPieChart(); + }); + + it('Renders Dimensions and Metrics under Data Configurations for Pie chart', () => { + renderDataConfig(); + }); + + it('Validate "Add" and "X" buttons', () => { + cy.get('.euiResizablePanel.euiResizablePanel--middle').contains('Data Configurations'); + cy.get('.euiText.euiText--extraSmall').eq(0).click(); + cy.get('.euiButton.euiButton--primary.euiButton--fullWidth').contains('Add').click(); + cy.get('[data-test-subj="comboBoxInput"]').eq(2).click(); + cy.get('.euiComboBoxOption__content').eq(0).click(); + cy.get('.euiIcon.euiIcon--medium.euiIcon--danger').eq(1).click(); + cy.get('.first-division .euiFormLabel.euiFormRow__label').eq(4).click(); + cy.get('.euiComboBoxOption__content').eq(1).click(); + cy.get('.euiFieldText[placeholder="Custom label"]').eq(1).type('Demo field'); + cy.get('.euiIcon.euiIcon--medium.euiIcon--danger').eq(1).click(); + cy.get('.euiButton.euiButton--primary.euiButton--fullWidth').contains('Add').should('exist'); + }); + + it('Verify drop down values for Aggregation', () => { + cy.get('.euiResizablePanel.euiResizablePanel--middle').contains('Data Configurations'); + cy.get('.euiTitle.euiTitle--xxsmall').eq(1).contains('Dimensions').should('exist'); + cy.get('.first-division .euiFormLabel.euiFormRow__label').eq(0).contains('Aggregation'); + cy.get('.euiText.euiText--extraSmall').eq(0).click(); + cy.get('[data-test-subj="comboBoxSearchInput"]').eq(0).click(); + aggregationValues.forEach(function (value) { + cy.get('.euiComboBoxOption__content').contains(value); + }); + }); + + it('Collapsible mode for Data Configuration panel', () => { + cy.get('.euiResizablePanel.euiResizablePanel--middle').contains('Data Configurations'); + cy.get('.euiResizableButton.euiResizableButton--horizontal').eq(1).click(); + cy.get('[data-test-subj="panel-1-toggle"]').click(); + cy.get('[class*="euiResizableToggleButton-isCollapsed"]').eq(1).should('exist'); + cy.get('.euiResizablePanel.euiResizablePanel--middle') + .contains('Data Configurations') + .should('not.be.focused'); + }); + }); + \ No newline at end of file diff --git a/dashboards-observability/.cypress/integration/VisualizationsCharts/9_coordinateMap.spec.js b/dashboards-observability/.cypress/integration/VisualizationCharts/9_coordinateMap_chart.spec.js similarity index 100% rename from dashboards-observability/.cypress/integration/VisualizationsCharts/9_coordinateMap.spec.js rename to dashboards-observability/.cypress/integration/VisualizationCharts/9_coordinateMap_chart.spec.js diff --git a/dashboards-observability/.cypress/utils/event_constants.js b/dashboards-observability/.cypress/utils/event_constants.js index 6d7ebbb05..9e0f89697 100644 --- a/dashboards-observability/.cypress/utils/event_constants.js +++ b/dashboards-observability/.cypress/utils/event_constants.js @@ -3,42 +3,53 @@ * SPDX-License-Identifier: Apache-2.0 */ -import { supressResizeObserverIssue } from './constants' +import { supressResizeObserverIssue } from './constants'; export const delay = 1000; -export const YEAR_TO_DATE_DOM_ID = '[data-test-subj="superDatePickerCommonlyUsed_Year_to date"]' +export const YEAR_TO_DATE_DOM_ID = '[data-test-subj="superDatePickerCommonlyUsed_Year_to date"]'; export const TEST_QUERIES = [ { query: 'source = opensearch_dashboards_sample_data_flights', - dateRangeDOM: YEAR_TO_DATE_DOM_ID + dateRangeDOM: YEAR_TO_DATE_DOM_ID, }, { - query: 'source = opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by Carrier', - dateRangeDOM: YEAR_TO_DATE_DOM_ID + query: + 'source = opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by Carrier', + dateRangeDOM: YEAR_TO_DATE_DOM_ID, }, { - query: 'source = opensearch_dashboards_sample_data_logs' + query: 'source = opensearch_dashboards_sample_data_logs', }, { - query: 'source=opensearch_dashboards_sample_data_flights | stats max(AvgTicketPrice) by DestCountry, DestCityName, Carrier', - dateRangeDOM: YEAR_TO_DATE_DOM_ID + query: + 'source=opensearch_dashboards_sample_data_flights | stats max(AvgTicketPrice) by DestCountry, DestCityName, Carrier', + dateRangeDOM: YEAR_TO_DATE_DOM_ID, }, { - query: 'source = opensearch_dashboards_sample_data_logs | stats count(), avg(bytes) by host, tags', - dateRangeDOM: YEAR_TO_DATE_DOM_ID + query: + 'source = opensearch_dashboards_sample_data_logs | stats count(), avg(bytes) by host, tags', + dateRangeDOM: YEAR_TO_DATE_DOM_ID, }, { - query: 'source=opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by DestCountry, DestCityName', - dateRangeDOM: YEAR_TO_DATE_DOM_ID + query: + 'source=opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by DestCountry, DestCityName', + dateRangeDOM: YEAR_TO_DATE_DOM_ID, }, { - query: "source = opensearch_dashboards_sample_data_logs | where response='503' or response='404' | stats count() by span(timestamp,1d)", - dateRangeDOM: YEAR_TO_DATE_DOM_ID + query: + "source = opensearch_dashboards_sample_data_logs | where response='503' or response='404' | stats count() by span(timestamp,1d)", + dateRangeDOM: YEAR_TO_DATE_DOM_ID, }, { - query: 'source=opensearch_dashboards_sample_data_flights |where FlightDelayMin > 0 | stats sum(FlightDelayMin) as total_delay_min, count() as total_delayed by Carrier |eval avg_delay=total_delay_min / total_delayed | sort - avg_delay', - dateRangeDOM: YEAR_TO_DATE_DOM_ID + query: + 'source=opensearch_dashboards_sample_data_flights |where FlightDelayMin > 0 | stats sum(FlightDelayMin) as total_delay_min, count() as total_delayed by Carrier |eval avg_delay=total_delay_min / total_delayed | sort - avg_delay', + dateRangeDOM: YEAR_TO_DATE_DOM_ID, + }, + { + query: + 'source = opensearch_dashboards_sample_data_logs | stats count(), max(bytes) by span(timestamp,1d), clientip, host', + dateRangeDOM: YEAR_TO_DATE_DOM_ID, }, ]; @@ -48,7 +59,17 @@ export const SAVE_QUERY2 = 'Mock Flight count by destination'; export const SAVE_QUERY3 = 'Mock Flight count by destination save to panel'; export const SAVE_QUERY4 = 'Mock Flight peek'; -export const aggregationValues = ["COUNT", "SUM", "AVERAGE", "MAX", "MIN", "VAR_SAMP", "VAR_POP", "STDDEV_SAMP", "STDDEV_POP"]; +export const aggregationValues = [ + 'COUNT', + 'SUM', + 'AVERAGE', + 'MAX', + 'MIN', + 'VAR_SAMP', + 'VAR_POP', + 'STDDEV_SAMP', + 'STDDEV_POP', +]; export const querySearch = (query, rangeSelected) => { cy.get('[data-test-subj="searchAutocompleteTextArea"]').type(query); @@ -91,7 +112,9 @@ export const saveVisualizationAndVerify = () => { cy.get('[data-test-subj="eventExplorer__saveManagementPopover"]').click(); cy.get('[data-test-subj="eventExplorer__querySaveComboBox"]').click(); cy.get('.euiComboBoxOptionsList__rowWrap .euiFilterSelectItem').eq(0).click(); - cy.get('.euiPopover__panel .euiFormControlLayoutIcons [data-test-subj="comboBoxToggleListButton"]') + cy.get( + '.euiPopover__panel .euiFormControlLayoutIcons [data-test-subj="comboBoxToggleListButton"]' + ) .eq(0) .click(); cy.get('.euiPopover__panel input') @@ -110,9 +133,9 @@ export const saveVisualizationAndVerify = () => { export const deleteVisualization = () => { cy.get('a[href = "#/event_analytics"]').click(); cy.get('.euiFlexGroup .euiFormControlLayout__childrenWrapper input') - .eq(0) - .type(`Test visualization` + vis_name_sub_string) - .type('{enter}'); + .eq(0) + .type(`Test visualization` + vis_name_sub_string) + .type('{enter}'); cy.get('input[data-test-subj = "checkboxSelectAll"]').click(); cy.get('.euiButtonContent.euiButtonContent--iconRight.euiButton__content').click(); cy.get('.euiContextMenuItem .euiContextMenuItem__text').eq(0).click(); @@ -141,27 +164,33 @@ export const renderPieChart = () => { cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]').click(); cy.get('[data-test-subj="comboBoxOptionsList "] button span').contains('Pie').click(); cy.wait(delay); - cy.get('#configPanel__panelOptions .euiFieldText').click().type('Pie chart'); - cy.get('.euiFlexItem .euiFormRow [placeholder="Description"]').click().type('This is the description for Pie chart'); - cy.get('[aria-controls="configPanel__legend"]').contains('Legend').should('exist'); - cy.get('#configPanel__legend .euiTitle.euiTitle--xxsmall').eq(0).contains('Show Legend'); - cy.get('span[data-text="Show"]').contains('Show').should('exist'); - cy.get('#configPanel__legend .euiTitle.euiTitle--xxsmall').eq(1).contains('Position'); - cy.get('span[data-text="Right"]').contains('Right').should('exist'); - cy.get('#configPanel__legend .euiTitle.euiTitle--xxsmall').eq(2).contains('Legend Size'); - cy.get('[aria-controls="configPanel__chartStyles"]').contains('Chart Styles').should('exist'); - cy.get('#configPanel__chartStyles .euiTitle.euiTitle--xxsmall').eq(0).contains('Mode').click(); - cy.get('#configPanel__chartStyles .euiComboBox__inputWrap.euiComboBox__inputWrap--noWrap.euiComboBox__inputWrap-isClearable').click(); - cy.get('.euiComboBoxOption__content').contains('Donut').click(); - cy.get('#configPanel__chartStyles .euiTitle.euiTitle--xxsmall').eq(1).contains('Label Size'); - cy.get('#configPanel__chartStyles input[type="number"]').click().type('10'); - cy.get('#configPanel__chartStyles .euiTitle.euiTitle--xxsmall').eq(2).contains('Color Theme'); - cy.get('.euiSuperSelectControl').click(); - cy.get('.euiColorPalettePicker__item').eq(1).contains('Single Color').click(); - cy.get('.euiFieldText.euiColorPicker__input.euiFieldText--withIcon').click(); - cy.get('[aria-label="Select #D36086 as the color"]').click(); - cy.get('.visEditorSidebar__controls [data-test-subj="visualizeEditorRenderButton"]').contains('Preview').click(); - cy.get('.plot-container.plotly').should('exist'); + cy.get('#configPanel__panelOptions .euiFieldText').click().type('Pie chart'); + cy.get('.euiFlexItem .euiFormRow [placeholder="Description"]') + .click() + .type('This is the description for Pie chart'); + cy.get('[aria-controls="configPanel__legend"]').contains('Legend').should('exist'); + cy.get('#configPanel__legend .euiTitle.euiTitle--xxsmall').eq(0).contains('Show Legend'); + cy.get('span[data-text="Show"]').contains('Show').should('exist'); + cy.get('#configPanel__legend .euiTitle.euiTitle--xxsmall').eq(1).contains('Position'); + cy.get('span[data-text="Right"]').contains('Right').should('exist'); + cy.get('#configPanel__legend .euiTitle.euiTitle--xxsmall').eq(2).contains('Legend Size'); + cy.get('[aria-controls="configPanel__chartStyles"]').contains('Chart Styles').should('exist'); + cy.get('#configPanel__chartStyles .euiTitle.euiTitle--xxsmall').eq(0).contains('Mode').click(); + cy.get( + '#configPanel__chartStyles .euiComboBox__inputWrap.euiComboBox__inputWrap--noWrap.euiComboBox__inputWrap-isClearable' + ).click(); + cy.get('.euiComboBoxOption__content').contains('Donut').click(); + cy.get('#configPanel__chartStyles .euiTitle.euiTitle--xxsmall').eq(1).contains('Label Size'); + cy.get('#configPanel__chartStyles input[type="number"]').click().type('10'); + cy.get('#configPanel__chartStyles .euiTitle.euiTitle--xxsmall').eq(2).contains('Color Theme'); + cy.get('.euiSuperSelectControl').click(); + cy.get('.euiColorPalettePicker__item').eq(1).contains('Single Color').click(); + cy.get('.euiFieldText.euiColorPicker__input.euiFieldText--withIcon').click(); + cy.get('[aria-label="Select #D36086 as the color"]').click(); + cy.get('.visEditorSidebar__controls [data-test-subj="visualizeEditorRenderButton"]') + .contains('Preview') + .click(); + cy.get('.plot-container.plotly').should('exist'); }; export const renderDataConfig = () => { @@ -207,11 +236,15 @@ export const renderAddParent = () => { cy.get('.first-division .euiFormLabel.euiFormRow__label').contains('Parent 3').should('exist'); cy.get('p.euiComboBoxPlaceholder').click({ force: true }); cy.get('.euiComboBoxOption__content').eq(2).click(); - cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]').type('Line').type('{enter}'); + cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]') + .type('Line') + .type('{enter}'); }; export const renderGaugeChart = () => { landOnEventVisualizations(); querySearch(TEST_QUERIES[1].query, TEST_QUERIES[1].dateRangeDOM); - cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]').type('Gauge').type('{enter}'); + cy.get('[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]') + .type('Gauge') + .type('{enter}'); }; diff --git a/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap b/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap index e31ae697b..ac6bc701d 100644 --- a/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap +++ b/dashboards-observability/public/components/custom_panels/helpers/__tests__/__snapshots__/utils.test.tsx.snap @@ -133,26 +133,7 @@ exports[`Utils helper functions renders displayVisualization function 1`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "barwidth": 0.97, @@ -617,26 +598,7 @@ exports[`Utils helper functions renders displayVisualization function 1`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "barwidth": 0.97, @@ -1124,26 +1086,7 @@ exports[`Utils helper functions renders displayVisualization function 1`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "barwidth": 0.97, @@ -1567,12 +1510,8 @@ exports[`Utils helper functions renders displayVisualization function 2`] = ` "defaultAxes": Object { "xaxis": Array [ Object { - "aggregation": "", - "custom_label": "", "label": "", "name": "", - "side": "right", - "type": "", }, ], "yaxis": Array [ @@ -1698,34 +1637,7 @@ exports[`Utils helper functions renders displayVisualization function 2`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "aggregation": "", - "custom_label": "", - "label": "", - "name": "", - "side": "right", - "type": "", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -2104,12 +2016,8 @@ exports[`Utils helper functions renders displayVisualization function 2`] = ` "defaultAxes": Object { "xaxis": Array [ Object { - "aggregation": "", - "custom_label": "", "label": "", "name": "", - "side": "right", - "type": "", }, ], "yaxis": Array [ @@ -2235,34 +2143,7 @@ exports[`Utils helper functions renders displayVisualization function 2`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "aggregation": "", - "custom_label": "", - "label": "", - "name": "", - "side": "right", - "type": "", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -2695,12 +2576,8 @@ exports[`Utils helper functions renders displayVisualization function 2`] = ` "defaultAxes": Object { "xaxis": Array [ Object { - "aggregation": "", - "custom_label": "", "label": "", "name": "", - "side": "right", - "type": "", }, ], "yaxis": Array [ @@ -2826,34 +2703,7 @@ exports[`Utils helper functions renders displayVisualization function 2`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "aggregation": "", - "custom_label": "", - "label": "", - "name": "", - "side": "right", - "type": "", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -3440,26 +3290,7 @@ exports[`Utils helper functions renders displayVisualization function 3`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -3729,26 +3560,7 @@ exports[`Utils helper functions renders displayVisualization function 3`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -4041,26 +3853,7 @@ exports[`Utils helper functions renders displayVisualization function 3`] = ` "size": 4, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "Carrier", - "name": "Carrier", - "type": "keyword", - }, - ], - "metrics": Array [ - Object { - "label": "avg(FlightDelayMin)", - "name": "avg(FlightDelayMin)", - "type": "double", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -4358,26 +4151,7 @@ exports[`Utils helper functions renders displayVisualization function 4`] = ` "size": 0, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "span(timestamp,1h)", - "name": "span(timestamp,1h)", - "type": "timestamp", - }, - ], - "metrics": Array [ - Object { - "label": "count('ip')", - "name": "count('ip')", - "type": "integer", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -4593,26 +4367,7 @@ exports[`Utils helper functions renders displayVisualization function 4`] = ` "size": 0, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "span(timestamp,1h)", - "name": "span(timestamp,1h)", - "type": "timestamp", - }, - ], - "metrics": Array [ - Object { - "label": "count('ip')", - "name": "count('ip')", - "type": "integer", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", @@ -4851,26 +4606,7 @@ exports[`Utils helper functions renders displayVisualization function 4`] = ` "size": 0, "status": 200, }, - "userConfigs": Object { - "dataConfig": Object { - "valueOptions": Object { - "dimensions": Array [ - Object { - "label": "span(timestamp,1h)", - "name": "span(timestamp,1h)", - "type": "timestamp", - }, - ], - "metrics": Array [ - Object { - "label": "count('ip')", - "name": "count('ip')", - "type": "integer", - }, - ], - }, - }, - }, + "userConfigs": Object {}, }, "vis": Object { "category": "Visualizations", diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap index 9d76f4d7a..324b855b4 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap @@ -198,7 +198,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, @@ -6029,7 +6049,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, @@ -6362,6 +6402,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] }, } } + vizState={ + Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + } + } />, "id": "data-panel", "name": "Style", @@ -6820,7 +6881,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, @@ -7153,6 +7234,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] }, } } + vizState={ + Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + } + } />, "id": "data-panel", "name": "Style", @@ -7367,7 +7469,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, @@ -8247,7 +8369,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, @@ -8580,6 +8722,27 @@ exports[`Config panel component Renders config panel with visualization data 1`] }, } } + vizState={ + Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + } + } >
        @@ -13233,6 +13476,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] onBlur={[Function]} onChange={[Function]} placeholder="auto" + value="" > { - const { data } = visualizations; - const { data: vizData = {}, metadata: { fields = [] } = {} } = data?.rawVizData; + const { data } = visualizations; + const { data: vizData = {}, metadata: { fields = [] } = {} } = data?.rawVizData; - const handleConfigurationChange = useCallback( - (stateFieldName) => { - return (changes) => { - handleConfigChange({ - ...vizState, - [stateFieldName]: changes, - }); - }; - }, - [handleConfigChange, vizState] - ); + const handleConfigurationChange = useCallback( + (stateFieldName) => { + return (changes) => { + handleConfigChange({ + ...vizState, + [stateFieldName]: changes, + }); + }; + }, + [handleConfigChange, vizState] + ); - /* To update the schema options based on current style mode selection */ - const currentSchemas = useMemo(() => { - if (vizState?.orientation === 'h') { - return schemas.filter((schema: IConfigPanelOptionSection) => schema.mapTo !== 'rotateBarLabels'); - } - return schemas; - }, [vizState]); + /* To update the schema options based on current style mode selection */ + const currentSchemas = useMemo(() => { + if (vizState?.orientation === 'h') { + return schemas.filter( + (schema: IConfigPanelOptionSection) => schema.mapTo !== 'rotateBarLabels' + ); + } + return schemas; + }, [vizState]); - const dimensions = useMemo(() => - currentSchemas.map((schema: IConfigPanelOptionSection, index: number) => { - let params = { - title: schema.name, - vizState, - ...schema.props, - } - const DimensionComponent = schema.component || ButtonGroupItem; + const dimensions = useMemo( + () => + currentSchemas + .map((schema: IConfigPanelOptionSection, index: number) => { + let params = { + title: schema.name, + vizState, + ...schema.props, + }; + const DimensionComponent = schema.component || ButtonGroupItem; - const createDimensionComponent = (dimProps) => ( - - - - - ) - if (schema.eleType === 'buttons') { - params = { - ...params, - legend: schema.name, - groupOptions: schema?.props?.options.map((btn: { name: string }) => ({ ...btn, label: btn.name })), - idSelected: vizState[schema.mapTo] || schema?.props?.defaultSelections[0]?.id, - handleButtonChange: handleConfigurationChange(schema.mapTo), - }; - return createDimensionComponent(params); - } - if (schema.eleType === 'input') { - params = { - title: schema.name, - currentValue: vizState[schema.mapTo] || '', - handleInputChange: handleConfigurationChange(schema.mapTo), - vizState, - ...schema.props, - }; - return createDimensionComponent(params); - } - if (schema.eleType === 'slider') { - params = { - ...params, - minRange: schema?.props?.min || 0, - maxRange: schema?.props?.max || 100, - step: schema?.props?.step || 1, - currentRange: vizState[schema.mapTo] || schema?.defaultState, - ticks: schema?.props?.ticks, - showTicks: schema?.props?.showTicks || false, - handleSliderChange: handleConfigurationChange(schema.mapTo), - }; - return createDimensionComponent(params); - } - }).filter(item => item) - , [schemas, vizState, handleConfigurationChange]); + const createDimensionComponent = (dimProps) => ( + + + + + ); + if (schema.eleType === 'buttons') { + params = { + ...params, + legend: schema.name, + groupOptions: schema?.props?.options.map((btn: { name: string }) => ({ + ...btn, + label: btn.name, + })), + idSelected: vizState[schema.mapTo] || schema?.props?.defaultSelections[0]?.id, + handleButtonChange: handleConfigurationChange(schema.mapTo), + }; + return createDimensionComponent(params); + } + if (schema.eleType === 'input') { + params = { + title: schema.name, + numValue: vizState[schema.mapTo] || '', + handleInputChange: handleConfigurationChange(schema.mapTo), + vizState, + ...schema.props, + }; + return createDimensionComponent(params); + } + if (schema.eleType === 'slider') { + params = { + ...params, + minRange: schema?.props?.min || 0, + maxRange: schema?.props?.max || 100, + step: schema?.props?.step || 1, + currentRange: vizState[schema.mapTo] || schema?.defaultState, + ticks: schema?.props?.ticks, + showTicks: schema?.props?.showTicks || false, + handleSliderChange: handleConfigurationChange(schema.mapTo), + }; + return createDimensionComponent(params); + } + }) + .filter((item) => item), + [schemas, vizState, handleConfigurationChange] + ); - return ( - - {dimensions} - - ); + return ( + + {dimensions} + + ); }; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_color_theme.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_color_theme.tsx index c2aa95813..07801e5fe 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_color_theme.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_color_theme.tsx @@ -18,7 +18,7 @@ import { } from '@elastic/eui'; import { isEmpty } from 'lodash'; import { ADD_BUTTON_TEXT } from '../../../../../../../../common/constants/explorer'; -import { NUMERICAL_FIELDS } from '../../../../../../../../common/constants/shared'; +import { visChartTypes } from '../../../../../../../../common/constants/shared'; export const ConfigColorTheme = ({ visualizations, @@ -27,8 +27,10 @@ export const ConfigColorTheme = ({ handleConfigChange, sectionName = 'Color theme', }: any) => { - const { data } = visualizations; + const { data, vis } = visualizations; + const { defaultAxes = {} } = data; const { data: vizData = {}, metadata: { fields = [] } = {} } = data?.rawVizData; + const { dataConfig = {} } = data?.userConfigs; const addButtonText = ADD_BUTTON_TEXT; const getColorThemeRow = () => ({ ctid: htmlIdGenerator('ct')(), @@ -36,7 +38,12 @@ export const ConfigColorTheme = ({ color: '#FC0505', }); - const options = fields.map((item) => ({ + const options = (dataConfig?.valueOptions?.metrics && dataConfig.valueOptions.metrics.length !== 0 + ? dataConfig.valueOptions.metrics + : vis.name === visChartTypes.Histogram + ? defaultAxes.yaxis ?? [] + : fields + ).map((item) => ({ ...item, label: item.name, })); diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_number_input.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_number_input.tsx index 79cb59a31..f9d283493 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_number_input.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_number_input.tsx @@ -3,7 +3,7 @@ * SPDX-License-Identifier: Apache-2.0 */ -import React, { useState } from 'react'; +import React, { useState, useEffect } from 'react'; import { EuiFieldNumber, EuiTitle, EuiSpacer, htmlIdGenerator } from '@elastic/eui'; interface InputFieldProps { @@ -19,6 +19,13 @@ export const InputFieldItem: React.FC = ({ }) => { const [fieldValue, setFieldValue] = useState(numValue); + useEffect(() => { + setFieldValue(''); + if (numValue !== undefined || numValue !== '') { + setFieldValue(numValue); + } + }, [numValue]); + return ( <> diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx index 70e42ae8a..f554be39b 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx @@ -71,6 +71,18 @@ const getStandardedOuiField = (name?: string, type?: string) => ({ type, }); +const initialDimensionEntry = { + label: '', + name: '', +}; + +const initialMetricEntry = { + alias: '', + label: '', + name: '', + aggregation: 'count', +}; + export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => { const dispatch = useDispatch(); const { tabId, handleQuerySearch, handleQueryChange, setTempQuery, fetchData } = useContext( @@ -83,6 +95,7 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => indexFields: { availableFields }, } = data; const [configList, setConfigList] = useState({}); + const { userConfigs } = data; useEffect(() => { if ( @@ -145,10 +158,9 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => let listItem = { ...list[name][index] }; listItem = { ...listItem, - [field]: value, + [field === 'custom_label' ? 'alias' : field]: value, }; if (field === 'label') { - listItem.type = value !== '' ? fields.find((x) => x.name === value)?.type : ''; listItem.name = value; } const updatedList = { @@ -182,8 +194,14 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) => }; const handleServiceAdd = (name: string) => { - const updatedList = { ...configList, [name]: [...configList[name], initialConfigEntry] }; - setConfigList(updatedList); + const list = { + ...configList, + [name]: [ + ...configList[name], + name === 'metrics' ? initialMetricEntry : initialDimensionEntry, + ], + }; + setConfigList(list); }; const updateChart = (updatedConfigList = configList) => { @@ -525,10 +543,6 @@ export const DataConfigPanelItem = ({ fieldOptionList, visualizations }: any) =>

        Date Histogram

        {DateHistogram} - {/* -

        Breakdowns

        -
        - {Breakdowns} */} ) : ( <> diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/logs_view_config_panel_item.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/logs_view_config_panel_item.tsx index 7c4c33870..6f9bb5388 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/logs_view_config_panel_item.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/logs_view_config_panel_item.tsx @@ -47,12 +47,12 @@ export const LogsViewConfigPanelItem = ({ fieldOptionList, visualizations }: any const [configList, setConfigList] = useState({}); useEffect(() => { - if (userConfigs && userConfigs.dataConfig && userConfigs.dataConfig.valueOptions) { + if (userConfigs && userConfigs.dataConfig) { setConfigList({ - ...userConfigs.dataConfig.valueOptions, + ...userConfigs.dataConfig, }); } - }, [userConfigs?.dataConfig?.valueOptions, visualizations.vis.name]); + }, [userConfigs?.dataConfig, visualizations.vis.name]); useEffect(() => { if (fieldOptionList.length === 0) { diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/treemap_config_panel_item.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/treemap_config_panel_item.tsx index 06cb1e8f5..895a1708a 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/treemap_config_panel_item.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/treemap_config_panel_item.tsx @@ -13,14 +13,23 @@ import { EuiFormRow, EuiPanel, } from '@elastic/eui'; -import { useDispatch } from 'react-redux'; +import { useDispatch, batch } from 'react-redux'; +import { changeQuery } from '../../../../../redux/slices/query_slice'; +import { + change as changeVizConfig, + selectVisualizationConfig, +} from '../../../../../redux/slices/viualization_config_slice'; import { ConfigTreemapParentFields } from './config_treemap_parents'; -import { numericalTypes } from '../../../../../../../../common/constants/explorer'; +import { numericalTypes, RAW_QUERY } from '../../../../../../../../common/constants/explorer'; import { TabContext } from '../../../../../hooks'; +import { QueryManager } from '../../../../../../../../common/query_manager'; +import { composeAggregations } from '../../../../../../../../common/query_manager/utils'; export const TreemapConfigPanelItem = ({ fieldOptionList, visualizations, tabID }: any) => { const dispatch = useDispatch(); - const { tabId, curVisId, changeVisualizationConfig } = useContext(TabContext); + const { tabId, curVisId, changeVisualizationConfig, fetchData, handleQueryChange } = useContext< + any + >(TabContext); const { data } = visualizations; const { userConfigs } = data; @@ -34,12 +43,12 @@ export const TreemapConfigPanelItem = ({ fieldOptionList, visualizations, tabID }); useEffect(() => { - if (userConfigs && userConfigs.dataConfig && userConfigs.dataConfig.valueOptions) { + if (userConfigs && userConfigs.dataConfig) { setConfigList({ - ...userConfigs.dataConfig.valueOptions, + ...userConfigs.dataConfig, }); } - }, [userConfigs?.dataConfig?.valueOptions, visualizations.vis.name]); + }, [userConfigs?.dataConfig, visualizations.vis.name]); const updateList = (configName: string, fieldName: string, value: string | any[]) => { let list = { ...configList }; @@ -58,23 +67,38 @@ export const TreemapConfigPanelItem = ({ fieldOptionList, visualizations, tabID setConfigList(newList); }; - const updateChart = () => { - dispatch( - changeVisualizationConfig({ - tabId, - vizId: curVisId, - data: { - ...userConfigs, - dataConfig: { - ...userConfigs.dataConfig, - valueOptions: { - dimensions: configList.dimensions, - metrics: configList.metrics, + const updateChart = (updatedConfigList = configList) => { + const qm = new QueryManager(); + const statsTokens = qm.queryParser().parse(data.query.rawQuery).getStats(); + const newQuery = qm + .queryBuilder() + .build(data.query.rawQuery, composeAggregations(updatedConfigList, statsTokens)); + + batch(async () => { + await handleQueryChange(newQuery); + await dispatch( + changeQuery({ + tabId, + query: { + ...data.query, + [RAW_QUERY]: newQuery, + }, + }) + ); + await fetchData(); + await dispatch( + changeVizConfig({ + tabId, + vizId: visualizations.vis.name, + data: { + dataConfig: { + metrics: updatedConfigList.metrics, + dimensions: updatedConfigList.dimensions, }, }, - }, - }) - ); + }) + ); + }); }; const getOptionsAvailable = (sectionName: string) => { @@ -169,7 +193,7 @@ export const TreemapConfigPanelItem = ({ fieldOptionList, visualizations, tabID updateChart()} size="s" > Update chart diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx index 9fadc7f6a..56d784731 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx @@ -53,7 +53,7 @@ export const ExplorerVisualizations = ({ const { data: vizData = {}, metadata: { fields = [] } = {} } = data?.rawVizData; const fieldOptionList = explorerFields.availableFields.map((field) => { - // const fieldOptionList = fields.map((field) => { + // const fieldOptionList = fields.map((field) => { return { ...field, label: field.name }; }); diff --git a/dashboards-observability/public/components/event_analytics/utils/__tests__/utils.test.tsx b/dashboards-observability/public/components/event_analytics/utils/__tests__/utils.test.tsx new file mode 100644 index 000000000..12d9a9cda --- /dev/null +++ b/dashboards-observability/public/components/event_analytics/utils/__tests__/utils.test.tsx @@ -0,0 +1,83 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; + +import { + hexToRgb, + lightenColor, + formatError, + isValidTraceId, + rangeNumDocs, + getHeaders, +} from '../utils'; + +describe('Utils event analytics helper functions', () => { + configure({ adapter: new Adapter() }); + + it('validates hexToRgb function', () => { + expect(hexToRgb()).toBe('rgba(60,161,199,1)'); + expect(hexToRgb('test', 1, true)).toBe('rgba(96,353,409,1)'); + expect(hexToRgb('#000000', 1, true)).toBe('rgba(0,0,0,1)'); + }); + + it('validates lightenColor function', () => { + expect(lightenColor('#00000', 10)).toBe('#1a1a1a'); + }); + + it('validates formatError function', () => { + expect(formatError('Warning', 'This is a warning', 'Test warning description')).toStrictEqual({ + body: { + attributes: { error: { caused_by: { reason: 'Test warning description', type: '' } } }, + }, + message: 'This is a warning', + name: 'Warning', + }); + }); + + it('validates isValidTraceId function', () => { + expect(isValidTraceId('#00000')).toBe(false); + expect(isValidTraceId('abcdefghijklmnopqrstuvwxyzabcdef')).toBe(true); + }); + + it('validates rangeNumDocs function', () => { + expect(rangeNumDocs(11000)).toBe(10000); + expect(rangeNumDocs(-200)).toBe(0); + expect(rangeNumDocs(2000)).toBe(2000); + }); + + it('validates getHeaders function', () => { + expect( + getHeaders( + [ + { + name: 'host', + type: 'text', + }, + { + name: 'ip_count', + type: 'integer', + }, + { + name: 'per_ip_bytes', + type: 'long', + }, + { + name: 'resp_code', + type: 'text', + }, + { + name: 'sum_bytes', + type: 'long', + }, + ], + ['', 'Time', '_source'], + undefined + ) + ).toBeTruthy(); + expect(getHeaders([], ['', 'Time', '_source'], undefined)).toBeTruthy(); + }); +}); diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap index 9a88fe43b..b51fac742 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/bar.test.tsx.snap @@ -199,7 +199,27 @@ exports[`Bar component Renders bar component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap new file mode 100644 index 000000000..ad8e359f1 --- /dev/null +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap @@ -0,0 +1,522 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Gauge component Renders gauge component 1`] = ` + + + +
        + + + +`; diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/heatmap.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/heatmap.test.tsx.snap index 881df5490..f41925f35 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/heatmap.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/heatmap.test.tsx.snap @@ -199,7 +199,27 @@ exports[`Heatmap component Renders heatmap component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/histogram.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/histogram.test.tsx.snap index 16f79ad74..9c199a9ab 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/histogram.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/histogram.test.tsx.snap @@ -199,7 +199,27 @@ exports[`Histogram component Renders histogram component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/line.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/line.test.tsx.snap index 15f4453bf..80aad5341 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/line.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/line.test.tsx.snap @@ -199,7 +199,27 @@ exports[`Line component Renders line component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/logs_view.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/logs_view.test.tsx.snap index bb2936a04..cfdb61c63 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/logs_view.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/logs_view.test.tsx.snap @@ -199,7 +199,27 @@ exports[`Logs View component Renders logs view component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/pie.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/pie.test.tsx.snap index 60d2671fd..e36bda4ca 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/pie.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/pie.test.tsx.snap @@ -199,7 +199,27 @@ exports[`Pie component Renders pie component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, @@ -533,82 +553,177 @@ exports[`Pie component Renders pie component 1`] = ` } } > - -
        - -
        - -
        - - - - - - -
        - -

        - - - No results found - - -

        -
        - -
        - -
        - - + id="explorerPlotComponent" + style={ + Object { + "height": "100%", + "width": "100%", + } + } + /> + + `; diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/text.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/text.test.tsx.snap index 90a14da93..66f79027c 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/text.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/text.test.tsx.snap @@ -182,7 +182,27 @@ exports[`Text component Renders text component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/treemap.test.tsx.snap b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/treemap.test.tsx.snap index 39626b437..f9ebdaabb 100644 --- a/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/treemap.test.tsx.snap +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/__snapshots__/treemap.test.tsx.snap @@ -199,7 +199,27 @@ exports[`Treemap component Renders treemap component 1`] = ` "status": 200, }, }, - "userConfigs": Object {}, + "userConfigs": Object { + "dataConfig": Object { + "valueOptions": Object { + "dimensions": Array [ + Object { + "label": "tags", + "name": "tags", + "type": "text", + }, + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, + }, }, "vis": Object { "barwidth": 0.97, diff --git a/dashboards-observability/public/components/visualizations/charts/__tests__/gauge.test.tsx b/dashboards-observability/public/components/visualizations/charts/__tests__/gauge.test.tsx new file mode 100644 index 000000000..6b539445f --- /dev/null +++ b/dashboards-observability/public/components/visualizations/charts/__tests__/gauge.test.tsx @@ -0,0 +1,30 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { configure, mount } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import React from 'react'; +import { waitFor } from '@testing-library/react'; +import { Gauge } from '../financial/gauge/gauge'; +import { + LAYOUT_CONFIG, + GAUGE_TEST_VISUALIZATIONS_DATA, +} from '../../../../../test/event_analytics_constants'; + +describe('Gauge component', () => { + configure({ adapter: new Adapter() }); + + it('Renders gauge component', async () => { + const wrapper = mount( + + ); + + wrapper.update(); + + await waitFor(() => { + expect(wrapper).toMatchSnapshot(); + }); + }); +}); diff --git a/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx b/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx index f52409b89..ef7aa0b43 100644 --- a/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx +++ b/dashboards-observability/public/components/visualizations/charts/bar/bar.tsx @@ -31,8 +31,6 @@ export const Bar = ({ visualizations, layout, config }: any) => { }: IVisualizationContainerProps = visualizations; const lastIndex = fields.length - 1; const { dataConfig = {}, layoutConfig = {}, availabilityConfig = {} } = userConfigs; - console.log('bar dataConfig: ', dataConfig); - if ( isEmpty(queriedVizData) || !Array.isArray(dataConfig.dimensions) || diff --git a/dashboards-observability/public/components/visualizations/charts/financial/gauge/gauge.tsx b/dashboards-observability/public/components/visualizations/charts/financial/gauge/gauge.tsx index 7882f79c6..b9b9f1549 100644 --- a/dashboards-observability/public/components/visualizations/charts/financial/gauge/gauge.tsx +++ b/dashboards-observability/public/components/visualizations/charts/financial/gauge/gauge.tsx @@ -27,12 +27,10 @@ export const Gauge = ({ visualizations, layout, config }: any) => { // data config parametrs const { dataConfig = {}, layoutConfig = {} } = visualizations.data.userConfigs; - const dimensions = dataConfig?.valueOptions?.dimensions - ? dataConfig.valueOptions.dimensions.filter((item) => item.name !== '') - : []; - const metrics = dataConfig?.valueOptions?.metrics - ? dataConfig.valueOptions.metrics.filter((item) => item.name !== '') + const dimensions = dataConfig?.dimensions + ? dataConfig.dimensions.filter((item) => item.name !== '') : []; + const metrics = dataConfig?.metrics ? dataConfig.metrics.filter((item) => item.name !== '') : []; const dimensionsLength = dimensions.length; const metricsLength = metrics.length; const numberOfGauges = dataConfig?.panelOptions?.numberOfGauges || DisplayDefaultGauges; @@ -70,9 +68,8 @@ export const Gauge = ({ visualizations, layout, config }: any) => { .reduce((prev, cur) => { return prev.map((i, j) => `${i}, ${cur[j]}`); }); - const selectedMetricsData = metrics.map((metric: any) => - data[metric.name].slice(0, numberOfGauges) + data[`${metric.aggregation}(${metric.name})`].slice(0, numberOfGauges) ); selectedMetricsData.map((metricSlice: any, metricSliceIndex: number) => { diff --git a/dashboards-observability/public/components/visualizations/charts/helpers/viz_types.ts b/dashboards-observability/public/components/visualizations/charts/helpers/viz_types.ts index cd79672eb..ef4b0c320 100644 --- a/dashboards-observability/public/components/visualizations/charts/helpers/viz_types.ts +++ b/dashboards-observability/public/components/visualizations/charts/helpers/viz_types.ts @@ -12,7 +12,7 @@ import { ExplorerData, } from '../../../../../common/types/explorer'; import { visChartTypes } from '../../../../../common/constants/shared'; - +import { QueryManager } from '../../../../../common/query_manager'; interface IVizContainerProps { vizId: string; appData?: { fromApp: boolean }; @@ -27,13 +27,16 @@ interface IVizContainerProps { explorer?: ExplorerData; } -const initialConfigEntry = { +const initialDimensionEntry = { + label: '', + name: '', +}; + +const initialMetricEntry = { + alias: '', label: '', - aggregation: '', - custom_label: '', name: '', - side: 'right', - type: '', + aggregation: 'count', }; const initialEntryTreemap = { label: '', name: '' }; @@ -49,7 +52,7 @@ const getDefaultXYAxisLabels = (vizFields: IField[], visName: string) => { const xaxis = vizFieldsWithLabel.filter((field) => field.type === 'timestamp'); return visName === visChartTypes.Line ? xaxis.length === 0 - ? [initialConfigEntry] + ? [initialDimensionEntry] : xaxis : [vizFieldsWithLabel[vizFieldsWithLabel.length - 1]]; }; @@ -65,20 +68,119 @@ const getDefaultXYAxisLabels = (vizFields: IField[], visName: string) => { return { xaxis: mapXaxis(), yaxis: mapYaxis() }; }; -const getUserConfigs = (userSelectedConfigs: object, vizFields: IField[], visName: string) => { +const getStandardedOuiField = (name?: string, type?: string) => ({ + name, + label: name, + type, +}); + +const defaultUserConfigs = (queryString, visualizationName: string) => { + let tempUserConfigs = {}; + const qm = new QueryManager(); + const statsTokens = qm.queryParser().parse(queryString.rawQuery).getStats(); + if (!statsTokens) { + tempUserConfigs = { + metrics: [], + dimensions: [], + }; + } else { + const fieldInfo = statsTokens.groupby?.span?.span_expression?.field; + tempUserConfigs = { + span: { + time_field: statsTokens.groupby?.span?.span_expression?.field + ? [getStandardedOuiField(fieldInfo, 'timestamp')] + : [], + interval: statsTokens.groupby?.span?.span_expression?.literal_value ?? '0', + unit: statsTokens.groupby?.span?.span_expression?.time_unit + ? [getStandardedOuiField(statsTokens.groupby?.span?.span_expression?.time_unit)] + : [], + }, + }; + if (visualizationName === visChartTypes.LogsView) { + tempUserConfigs = { + ...tempUserConfigs, + metrics: [], + dimensions: statsTokens.aggregations + .map((agg) => ({ + label: agg.name ?? '', + name: agg.name ?? '', + })) + .concat( + statsTokens.groupby?.group_fields?.map((agg) => ({ + label: agg.name ?? '', + name: agg.name ?? '', + })) + ), + }; + } else if (visualizationName === visChartTypes.HeatMap) { + tempUserConfigs = { + ...tempUserConfigs, + dimensions: [initialDimensionEntry, initialDimensionEntry], + metrics: [initialMetricEntry], + }; + } else if (visualizationName === visChartTypes.TreeMap) { + tempUserConfigs = { + dimensions: [ + { + childField: { + ...(statsTokens.groupby?.group_fields.length > 0 + ? { + label: statsTokens.groupby?.group_fields[0].name, + name: statsTokens.groupby?.group_fields[0].name, + } + : initialEntryTreemap), + }, + parentFields: [], + }, + ], + metrics: [ + { + valueField: { + ...(statsTokens.aggregations.length > 0 + ? { + label: statsTokens.aggregations[0].function?.value_expression, + name: statsTokens.aggregations[0].function?.value_expression, + } + : initialEntryTreemap), + }, + }, + ], + }; + } else { + tempUserConfigs = { + ...tempUserConfigs, + metrics: statsTokens.aggregations.map((agg) => ({ + alias: agg.alias, + label: agg.function?.value_expression, + name: agg.function?.value_expression, + aggregation: agg.function?.name, + })), + dimensions: statsTokens.groupby?.group_fields?.map((agg) => ({ + label: agg.name ?? '', + name: agg.name ?? '', + })), + }; + } + } + return tempUserConfigs; +}; + +const getUserConfigs = ( + userSelectedConfigs: object, + vizFields: IField[], + visName: string, + query +) => { let configOfUser = userSelectedConfigs; const axesData = getDefaultXYAxisLabels(vizFields, visName); - if (!userSelectedConfigs.dataConfig?.valueOptions) { + if (!(userSelectedConfigs.dataConfig?.dimensions || userSelectedConfigs.dataConfig?.metrics)) { switch (visName) { case visChartTypes.HeatMap: configOfUser = { ...userSelectedConfigs, dataConfig: { ...userSelectedConfigs?.dataConfig, - valueOptions: { - dimensions: [initialConfigEntry, initialConfigEntry], - metrics: [initialConfigEntry], - }, + ...defaultUserConfigs(query, visName), }, }; break; @@ -87,17 +189,7 @@ const getUserConfigs = (userSelectedConfigs: object, vizFields: IField[], visNam ...userSelectedConfigs, dataConfig: { ...userSelectedConfigs?.dataConfig, - valueOptions: { - dimensions: [ - { - childField: { ...(axesData.xaxis ? axesData.xaxis[0] : initialEntryTreemap) }, - parentFields: [], - }, - ], - metrics: [ - { valueField: { ...(axesData.yaxis ? axesData.yaxis[0] : initialEntryTreemap) } }, - ], - }, + ...defaultUserConfigs(query, visName), }, }; break; @@ -118,11 +210,7 @@ const getUserConfigs = (userSelectedConfigs: object, vizFields: IField[], visNam ...userSelectedConfigs, dataConfig: { ...userSelectedConfigs?.dataConfig, - valueOptions: { - dimensions: - axesData.xaxis && axesData.yaxis ? axesData.xaxis.concat(axesData.yaxis) : [], - metrics: [], - }, + ...defaultUserConfigs(query, visName), }, }; break; @@ -131,10 +219,7 @@ const getUserConfigs = (userSelectedConfigs: object, vizFields: IField[], visNam ...userSelectedConfigs, dataConfig: { ...userSelectedConfigs?.dataConfig, - valueOptions: { - metrics: axesData.yaxis ?? [], - dimensions: axesData.xaxis ?? [], - }, + ...defaultUserConfigs(query, visName), }, }; break; @@ -157,6 +242,9 @@ export const getVizContainerProps = ({ ? { ...getVisType(vizId, { type: vizId }) } : { ...getVisType(vizId) }; + const userSetConfigs = isEmpty(query) + ? userConfigs + : getUserConfigs(userConfigs, rawVizData?.metadata?.fields, getVisTypeData().name, query); return { data: { appData: { ...appData }, @@ -164,7 +252,7 @@ export const getVizContainerProps = ({ query: { ...query }, indexFields: { ...indexFields }, userConfigs: { - ...getUserConfigs(userConfigs, rawVizData?.metadata?.fields, getVisTypeData().name), + ...userSetConfigs, }, defaultAxes: { ...getDefaultXYAxisLabels(rawVizData?.metadata?.fields, getVisTypeData().name), diff --git a/dashboards-observability/public/components/visualizations/charts/lines/line.tsx b/dashboards-observability/public/components/visualizations/charts/lines/line.tsx index 80c22b8e8..c5d55ffef 100644 --- a/dashboards-observability/public/components/visualizations/charts/lines/line.tsx +++ b/dashboards-observability/public/components/visualizations/charts/lines/line.tsx @@ -4,7 +4,7 @@ */ import React, { useMemo } from 'react'; -import { take, isEmpty, last } from 'lodash'; +import { take, isEmpty, last, find } from 'lodash'; import { Plt } from '../../plotly/plot'; import { AvailabilityUnitType } from '../../../event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_availability'; import { ThresholdUnitType } from '../../../event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/config_thresholds'; @@ -40,12 +40,8 @@ export const Line = ({ visualizations, layout, config }: any) => { availabilityConfig = {}, } = visualizations?.data?.userConfigs; - const xaxis = dataConfig?.valueOptions?.dimensions - ? dataConfig.valueOptions.dimensions.filter((item) => item.label) - : []; - const yaxis = dataConfig?.valueOptions?.metrics - ? dataConfig.valueOptions.metrics.filter((item) => item.label) - : []; + // const xaxis = dataConfig?.dimensions ? dataConfig.dimensions.filter((item) => item.label) : []; + const yaxis = dataConfig?.metrics ? dataConfig.metrics.filter((item) => item.label) : []; const tooltipMode = dataConfig?.tooltipOptions?.tooltipMode !== undefined ? dataConfig.tooltipOptions.tooltipMode @@ -57,7 +53,7 @@ export const Line = ({ visualizations, layout, config }: any) => { const lastIndex = fields.length - 1; - let visType: string = visualizations.vis.name; + const visType: string = visualizations.vis.name; const mode = dataConfig?.chartStyles?.style || (visType === visChartTypes.Line ? DefaultModeLine : DefaultModeScatter); @@ -81,6 +77,18 @@ export const Line = ({ visualizations, layout, config }: any) => { dataConfig.colorTheme.find((colorSelected) => colorSelected.name.name === field.name) ?.color) || PLOTLY_COLOR[index % PLOTLY_COLOR.length]; + /** + * determine x axis + */ + const xaxis = useMemo(() => { + // span selection + const timestampField = find(fields, (field) => field.type === 'timestamp'); + if (dataConfig.span && dataConfig.span.time_field && timestampField) { + return [timestampField, ...dataConfig.dimensions]; + } + + return dataConfig.dimensions; + }, [dataConfig.dimensions]); if (isEmpty(xaxis) || isEmpty(yaxis)) return ; @@ -128,14 +136,14 @@ export const Line = ({ visualizations, layout, config }: any) => { size: labelSize, }), }, - overlaying: 'y', + ...(index > 0 && { overlaying: 'y' }), side: field.side, }, }; return { x: data[!isEmpty(xaxis) ? xaxis[0]?.label : fields[lastIndex].name], - y: data[field.label], + y: data[`${field.aggregation}(${field.name})`], type: isBarMode ? 'bar' : 'scatter', name: field.label, mode, @@ -154,7 +162,7 @@ export const Line = ({ visualizations, layout, config }: any) => { }; }); - let layoutForBarMode = { + const layoutForBarMode = { barmode: 'group', }; const mergedLayout = { diff --git a/dashboards-observability/public/components/visualizations/charts/maps/heatmap.tsx b/dashboards-observability/public/components/visualizations/charts/maps/heatmap.tsx index 11e6dfe48..30dce8305 100644 --- a/dashboards-observability/public/components/visualizations/charts/maps/heatmap.tsx +++ b/dashboards-observability/public/components/visualizations/charts/maps/heatmap.tsx @@ -27,9 +27,9 @@ export const HeatMap = ({ visualizations, layout, config }: any) => { if (fields.length < 3) return ; - const xaxisField = dataConfig?.valueOptions?.dimensions[0]; - const yaxisField = dataConfig?.valueOptions?.dimensions[1]; - const zMetrics = dataConfig?.valueOptions?.metrics[0]; + const xaxisField = dataConfig?.dimensions[0]; + const yaxisField = dataConfig?.dimensions[1]; + const zMetrics = dataConfig?.metrics[0]; if ( isEmpty(xaxisField) || @@ -37,8 +37,8 @@ export const HeatMap = ({ visualizations, layout, config }: any) => { isEmpty(zMetrics) || isEmpty(data[xaxisField.label]) || isEmpty(data[yaxisField.label]) || - isEmpty(data[zMetrics.label]) || - indexOf(NUMERICAL_FIELDS, zMetrics.type) < 0 + isEmpty(data[`${zMetrics.aggregation}(${zMetrics.name})`]) + // indexOf(NUMERICAL_FIELDS, zMetrics.type) < 0 ) return ; @@ -80,7 +80,7 @@ export const HeatMap = ({ visualizations, layout, config }: any) => { // maps bukcets to metrics for (let i = 0; i < data[xaxisField.label].length; i++) { buckets[`${data[xaxisField.label][i]},${data[yaxisField.label][i]}`] = - data[zMetrics.label][i]; + data[`${zMetrics.aggregation}(${zMetrics.name})`][i]; } // initialize empty 2 dimensional array, inner loop for each xaxis field, outer loop for yaxis @@ -131,11 +131,13 @@ export const HeatMap = ({ visualizations, layout, config }: any) => { title: dataConfig?.panelOptions?.title || layoutConfig.layout?.title || '', }; - - const mergedConfigs = useMemo(() => ({ - ...config, - ...(layoutConfig.config && layoutConfig.config), - }), [config, layoutConfig.config]); + const mergedConfigs = useMemo( + () => ({ + ...config, + ...(layoutConfig.config && layoutConfig.config), + }), + [config, layoutConfig.config] + ); return ; }; diff --git a/dashboards-observability/public/components/visualizations/charts/pie/pie.tsx b/dashboards-observability/public/components/visualizations/charts/pie/pie.tsx index 912f3f6d2..64b1a5cf2 100644 --- a/dashboards-observability/public/components/visualizations/charts/pie/pie.tsx +++ b/dashboards-observability/public/components/visualizations/charts/pie/pie.tsx @@ -17,12 +17,8 @@ export const Pie = ({ visualizations, layout, config }: any) => { } = visualizations.data.rawVizData; const { defaultAxes } = visualizations.data; const { dataConfig = {}, layoutConfig = {} } = visualizations?.data?.userConfigs; - const xaxis = dataConfig?.valueOptions?.dimensions - ? dataConfig.valueOptions.dimensions.filter((item) => item.label) - : []; - const yaxis = dataConfig?.valueOptions?.metrics - ? dataConfig.valueOptions.metrics.filter((item) => item.label) - : []; + const xaxis = dataConfig?.dimensions ? dataConfig.dimensions.filter((item) => item.label) : []; + const yaxis = dataConfig?.metrics ? dataConfig.metrics.filter((item) => item.label) : []; const type = dataConfig?.chartStyles?.mode ? dataConfig?.chartStyles?.mode[0]?.modeId : 'pie'; const lastIndex = fields.length - 1; const colorTheme = dataConfig?.chartStyles?.colorTheme @@ -44,12 +40,12 @@ export const Pie = ({ visualizations, layout, config }: any) => { if (isEmpty(xaxis) || isEmpty(yaxis)) return ; - let valueSeries; - if (!isEmpty(xaxis) && !isEmpty(yaxis)) { - valueSeries = [...yaxis]; - } else { - valueSeries = defaultAxes.yaxis || take(fields, lastIndex > 0 ? lastIndex : 1); - } + let valueSeries; + if (!isEmpty(xaxis) && !isEmpty(yaxis)) { + valueSeries = [...yaxis]; + } else { + valueSeries = defaultAxes.yaxis || take(fields, lastIndex > 0 ? lastIndex : 1); + } const invertHex = (hex: string) => (Number(`0x1${hex}`) ^ HEX_CONTRAST_COLOR).toString(16).substr(1).toUpperCase(); @@ -75,59 +71,63 @@ export const Pie = ({ visualizations, layout, config }: any) => { }, [xaxis, data, fields, createLegendLabels]); const hexColor = invertHex(colorTheme); - const pies = useMemo(() => valueSeries.map((field: any, index: number) => { - const marker = - colorTheme.name !== DEFAULT_PALETTE - ? { - marker: { - colors: [...Array(data[field.name].length).fill(colorTheme.childColor)], - line: { - color: hexColor, - width: 1, - }, + const pies = useMemo( + () => + valueSeries.map((field: any, index: number) => { + const marker = + colorTheme.name !== DEFAULT_PALETTE + ? { + marker: { + colors: [...Array(data[field.name].length).fill(colorTheme.childColor)], + line: { + color: hexColor, + width: 1, + }, + }, + } + : undefined; + return { + labels: labelsOfXAxis, + values: data[field.label], + type: 'pie', + name: field.name, + hole: type === 'pie' ? 0 : 0.5, + text: field.name, + textinfo: 'percent', + hoverinfo: tooltipMode === 'hidden' ? 'none' : tooltipText, + automargin: true, + textposition: 'outside', + domain: { + row: Math.floor(index / 3), + column: index % 3, }, - } - : undefined; - return { - labels: labelsOfXAxis, - values: data[field.label], - type: 'pie', - name: field.name, - hole: type === 'pie' ? 0 : 0.5, - text: field.name, - textinfo: 'percent', - hoverinfo: tooltipMode === 'hidden' ? 'none' : tooltipText, - automargin: true, - textposition: 'outside', - domain: { - row: Math.floor(index / 3), - column: index % 3, - }, - ...marker, - outsidetextfont: { - size: labelSize, - }, - }; - }) - , [valueSeries, valueSeries, data, labelSize, labelsOfXAxis, colorTheme]); + ...marker, + outsidetextfont: { + size: labelSize, + }, + }; + }), + [valueSeries, valueSeries, data, labelSize, labelsOfXAxis, colorTheme] + ); const isAtleastOneFullRow = Math.floor(valueSeries.length / 3) > 0; - const mergedLayout = useMemo(() => ({ - grid: { - rows: Math.floor(valueSeries.length / 3) + 1, - columns: isAtleastOneFullRow ? 3 : valueSeries.length, - }, - ...layout, - ...(layoutConfig.layout && layoutConfig.layout), - title: dataConfig?.panelOptions?.title || layoutConfig.layout?.title || '', - legend: { - ...layout.legend, - orientation: legendPosition, - font: { size: legendSize }, - }, - showlegend: showLegend, - }), + const mergedLayout = useMemo( + () => ({ + grid: { + rows: Math.floor(valueSeries.length / 3) + 1, + columns: isAtleastOneFullRow ? 3 : valueSeries.length, + }, + ...layout, + ...(layoutConfig.layout && layoutConfig.layout), + title: dataConfig?.panelOptions?.title || layoutConfig.layout?.title || '', + legend: { + ...layout.legend, + orientation: legendPosition, + font: { size: legendSize }, + }, + showlegend: showLegend, + }), [ valueSeries, isAtleastOneFullRow, @@ -136,13 +136,17 @@ export const Pie = ({ visualizations, layout, config }: any) => { layoutConfig.layout?.title, layout.legend, legendPosition, - legendSize - ]); + legendSize, + ] + ); - const mergedConfigs = useMemo(() => ({ - ...config, - ...(layoutConfig.config && layoutConfig.config), - }), [config, layoutConfig.config]); + const mergedConfigs = useMemo( + () => ({ + ...config, + ...(layoutConfig.config && layoutConfig.config), + }), + [config, layoutConfig.config] + ); return ; }; diff --git a/dashboards-observability/test/event_analytics_constants.ts b/dashboards-observability/test/event_analytics_constants.ts index f885dd37e..48054dd5e 100644 --- a/dashboards-observability/test/event_analytics_constants.ts +++ b/dashboards-observability/test/event_analytics_constants.ts @@ -5,6 +5,7 @@ import { LONG_CHART_COLOR } from '../common/constants/shared'; import { createBarTypeDefinition } from '../public/components/visualizations/charts/bar/bar_type'; +import { createGaugeTypeDefinition } from '../public/components/visualizations/charts/financial/gauge/gauge_type'; import { SELECTED_FIELDS, AVAILABLE_FIELDS as AVAILABLE_FIELDS_NAME, @@ -15,111 +16,111 @@ import { export const AVAILABLE_FIELDS = [ { name: 'agent', - type: 'string' + type: 'string', }, { name: 'bytes', - type: 'long' + type: 'long', }, { name: 'clientip', - type: 'ip' + type: 'ip', }, { name: 'event', - type: 'struct' + type: 'struct', }, { name: 'extension', - type: 'string' + type: 'string', }, { name: 'geo', - type: 'struct' + type: 'struct', }, { name: 'host', - type: 'string' + type: 'string', }, { name: 'index', - type: 'string' + type: 'string', }, { name: 'ip', - type: 'ip' + type: 'ip', }, { name: 'machine', - type: 'struct' + type: 'struct', }, { name: 'memory', - type: 'double' + type: 'double', }, { name: 'message', - type: 'string' + type: 'string', }, { name: 'phpmemory', - type: 'long' + type: 'long', }, { name: 'referer', - type: 'string' + type: 'string', }, { name: 'request', - type: 'string' + type: 'string', }, { name: 'response', - type: 'string' + type: 'string', }, { name: 'tags', - type: 'string' + type: 'string', }, { name: 'timestamp', - type: 'timestamp' + type: 'timestamp', }, { name: 'url', - type: 'string' + type: 'string', }, { name: 'utc_time', - type: 'timestamp' - } + type: 'timestamp', + }, ]; export const QUERY_FIELDS = [ { name: 'double_per_ip_bytes', - type: 'long' + type: 'long', }, { name: 'host', - type: 'text' + type: 'text', }, { name: 'ip_count', - type: 'integer' + type: 'integer', }, { name: 'per_ip_bytes', - type: 'long' + type: 'long', }, { name: 'resp_code', - type: 'text' + type: 'text', }, { name: 'sum_bytes', - type: 'long' - } + type: 'long', + }, ]; export const JSON_DATA = [ @@ -129,7 +130,7 @@ export const JSON_DATA = [ host: 'artifacts.opensearch.org', resp_code: '404', per_ip_bytes: 5803, - double_per_ip_bytes: 11606 + double_per_ip_bytes: 11606, }, { ip_count: 111, @@ -137,7 +138,7 @@ export const JSON_DATA = [ host: 'www.opensearch.org', resp_code: '404', per_ip_bytes: 5050, - double_per_ip_bytes: 10100 + double_per_ip_bytes: 10100, }, { ip_count: 94, @@ -145,7 +146,7 @@ export const JSON_DATA = [ host: 'artifacts.opensearch.org', resp_code: '503', per_ip_bytes: 0, - double_per_ip_bytes: 0 + double_per_ip_bytes: 0, }, { ip_count: 78, @@ -153,7 +154,7 @@ export const JSON_DATA = [ host: 'www.opensearch.org', resp_code: '503', per_ip_bytes: 0, - double_per_ip_bytes: 0 + double_per_ip_bytes: 0, }, { ip_count: 43, @@ -161,7 +162,7 @@ export const JSON_DATA = [ host: 'cdn.opensearch-opensearch-opensearch.org', resp_code: '404', per_ip_bytes: 5763, - double_per_ip_bytes: 11526 + double_per_ip_bytes: 11526, }, { ip_count: 34, @@ -169,7 +170,7 @@ export const JSON_DATA = [ host: 'cdn.opensearch-opensearch-opensearch.org', resp_code: '503', per_ip_bytes: 0, - double_per_ip_bytes: 0 + double_per_ip_bytes: 0, }, { ip_count: 13, @@ -177,7 +178,7 @@ export const JSON_DATA = [ host: 'opensearch-opensearch-opensearch.org', resp_code: '404', per_ip_bytes: 4441, - double_per_ip_bytes: 8882 + double_per_ip_bytes: 8882, }, { ip_count: 6, @@ -185,8 +186,8 @@ export const JSON_DATA = [ host: 'opensearch-opensearch-opensearch.org', resp_code: '503', per_ip_bytes: 0, - double_per_ip_bytes: 0 - } + double_per_ip_bytes: 0, + }, ]; export const JSON_DATA_ALL = [ @@ -196,7 +197,8 @@ export const JSON_DATA_ALL = [ agent: 'Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1', extension: 'deb', memory: 'null', - geo: '{"srcdest":"IN:US","src":"IN","coordinates":{"lat":39.41042861,"lon":-88.8454325},"dest":"US"}', + geo: + '{"srcdest":"IN:US","src":"IN","coordinates":{"lat":39.41042861,"lon":-88.8454325},"dest":"US"}', utc_time: '2021-11-14 00:39:02.912', clientip: '223.87.60.27', host: 'artifacts.opensearch.org', @@ -205,12 +207,13 @@ export const JSON_DATA_ALL = [ timestamp: '2021-11-14 00:39:02.912', ip: '223.87.60.27', index: 'opensearch_dashboards_sample_data_logs', - message: '223.87.60.27 - - [2018-07-22T00:39:02.912Z] "GET /opensearch/opensearch-1.0.0.deb_1 HTTP/1.1" 200 6219 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1"', + message: + '223.87.60.27 - - [2018-07-22T00:39:02.912Z] "GET /opensearch/opensearch-1.0.0.deb_1 HTTP/1.1" 200 6219 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1"', url: 'https://artifacts.opensearch.org/downloads/opensearch/opensearch-1.0.0.deb_1', tags: 'success', bytes: 6219, machine: '{"os":"win 8","ram":8589934592}', - response: '200' + response: '200', }, { referer: 'http://www.opensearch-opensearch-opensearch.com/success/james-mcdivitt', @@ -218,7 +221,8 @@ export const JSON_DATA_ALL = [ agent: 'Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1', extension: '', memory: 'null', - geo: '{"srcdest":"JP:IN","src":"JP","coordinates":{"lat":38.58338806,"lon":-86.46248778},"dest":"IN"}', + geo: + '{"srcdest":"JP:IN","src":"JP","coordinates":{"lat":38.58338806,"lon":-86.46248778},"dest":"IN"}', utc_time: '2021-11-14 03:26:21.326', clientip: '130.246.123.197', host: 'www.opensearch.org', @@ -227,7 +231,8 @@ export const JSON_DATA_ALL = [ timestamp: '2021-11-14 03:26:21.326', ip: '130.246.123.197', index: 'opensearch_dashboards_sample_data_logs', - message: '130.246.123.197 - - [2018-07-22T03:26:21.326Z] "GET /beats/metricbeat_1 HTTP/1.1" 200 6850 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1"', + message: + '130.246.123.197 - - [2018-07-22T03:26:21.326Z] "GET /beats/metricbeat_1 HTTP/1.1" 200 6850 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:6.0a1) Gecko/20110421 Firefox/6.0a1"', url: 'https://www.opensearch.org/downloads/beats/metricbeat_1', tags: 'success', bytes: 6850, @@ -237,10 +242,12 @@ export const JSON_DATA_ALL = [ { referer: 'http://twitter.com/success/konstantin-feoktistov', request: '/styles/main.css', - agent: 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24', + agent: + 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24', extension: 'css', memory: 'null', - geo: '{"srcdest":"CO:DE","src":"CO","coordinates":{"lat":36.96015,"lon":-78.18499861},"dest":"DE"}', + geo: + '{"srcdest":"CO:DE","src":"CO","coordinates":{"lat":36.96015,"lon":-78.18499861},"dest":"DE"}', utc_time: '2021-11-14 03:30:25.131', clientip: '120.49.143.213', host: 'cdn.opensearch-opensearch-opensearch.org', @@ -249,18 +256,19 @@ export const JSON_DATA_ALL = [ timestamp: '2021-11-14 03:30:25.131', ip: '120.49.143.213', index: 'opensearch_dashboards_sample_data_logs', - message: '120.49.143.213 - - [2018-07-22T03:30:25.131Z] "GET /styles/main.css_1 HTTP/1.1" 503 0 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24"', + message: + '120.49.143.213 - - [2018-07-22T03:30:25.131Z] "GET /styles/main.css_1 HTTP/1.1" 503 0 "-" "Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.50 Safari/534.24"', url: 'https://cdn.opensearch-opensearch-opensearch.org/styles/main.css_1', tags: 'success', bytes: 0, machine: '{"os":"ios","ram":20401094656}', - response: '503' + response: '503', }, ]; export const AGENT_FIELD = { name: 'agent', - type: 'string' + type: 'string', }; export const SAVED_HISTORIES = [ @@ -271,21 +279,22 @@ export const SAVED_HISTORIES = [ savedVisualization: { description: '', name: 'Mock Flight count by destination save to panel', - query: 'source = opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by Carrier', + query: + 'source = opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by Carrier', type: 'bar', selected_date_range: { end: 'now', start: 'now-15m', - text: '' + text: '', }, selected_fields: { text: '', - tokens: [] + tokens: [], }, selected_timestamp: { name: 'timestamp', - type: 'timestamp' - } + type: 'timestamp', + }, }, tenant: '', }, @@ -296,24 +305,25 @@ export const SAVED_HISTORIES = [ savedVisualization: { description: '', name: 'Mock Flight count by destination', - query: 'source = opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by Carrier', + query: + 'source = opensearch_dashboards_sample_data_flights | stats avg(FlightDelayMin) by Carrier', type: 'bar', selected_date_range: { end: 'now', start: 'now-15m', - text: '' + text: '', }, selected_fields: { text: '', - tokens: [] + tokens: [], }, selected_timestamp: { name: 'timestamp', - type: 'timestamp' - } + type: 'timestamp', + }, }, tenant: '', - } + }, ]; export const SELECTED_PANELS_OPTIONS = [ @@ -323,7 +333,7 @@ export const SELECTED_PANELS_OPTIONS = [ dateCreated: 1637781403888, dateModified: 1637781403888, id: 'uRZgU30B661cwDZT-ILw', - name: '[Logs] Web traffic Panel' + name: '[Logs] Web traffic Panel', }, }, { @@ -332,9 +342,9 @@ export const SELECTED_PANELS_OPTIONS = [ dateCreated: 1637781403888, dateModified: 1637781403888, id: 'uRZgU30B661cwDZT-ILw', - name: '[Logs] Web traffic Panel' + name: '[Logs] Web traffic Panel', }, - } + }, ]; export const DATA_GRID_ROWS = [ @@ -346,9 +356,9 @@ export const DATA_GRID_ROWS = [ DestAirportID: 'SYD', DestCityName: 'Sydney', DestCountry: 'AU', - DestLocation: '{\"lat\":-33.94609833,\"lon\":151.177002}', + DestLocation: '{"lat":-33.94609833,"lon":151.177002}', DestRegion: 'SE-BD', - DestWeather: "Rain", + DestWeather: 'Rain', DistanceKilometers: 16492.326, DistanceMiles: 10247.856, FlightDelay: 'false', @@ -358,14 +368,14 @@ export const DATA_GRID_ROWS = [ FlightTimeHour: '17.179506930998397', FlightTimeMin: 1030.7704, Origin: 'Frankfurt am Main Airport', - OriginAirportID: "FRA", + OriginAirportID: 'FRA', OriginCityName: 'Frankfurt am Main', OriginCountry: 'DE', - OriginLocation: '{\"lat\":50.033333,\"lon\":8.570556}', + OriginLocation: '{"lat":50.033333,"lon":8.570556}', OriginRegion: 'DE-HE', OriginWeather: 'Sunny', dayOfWeek: 0, - timestamp: "2021-05-24 00:00:00" + timestamp: '2021-05-24 00:00:00', }, { AvgTicketPrice: 882.98267, @@ -375,9 +385,9 @@ export const DATA_GRID_ROWS = [ DestAirportID: 'VE05', DestCityName: 'Venice', DestCountry: 'IT', - DestLocation: '{\"lat\":45.505299,\"lon\":12.3519}', + DestLocation: '{"lat":45.505299,"lon":12.3519}', DestRegion: 'IT-34', - DestWeather: "Sunny", + DestWeather: 'Sunny', DistanceKilometers: 8823.4, DistanceMiles: 5482.6064, FlightDelay: 'false', @@ -387,52 +397,48 @@ export const DATA_GRID_ROWS = [ FlightTimeHour: '7.73982468459836', FlightTimeMin: 464.3895, Origin: 'Cape Town International Airport', - OriginAirportID: "CPT", + OriginAirportID: 'CPT', OriginCityName: 'Cape Town', OriginCountry: 'ZA', - OriginLocation: '{\"lat\":-33.96480179,\"lon\":18.60169983}', + OriginLocation: '{"lat":-33.96480179,"lon":18.60169983}', OriginRegion: 'SE-BD', OriginWeather: 'Clear', dayOfWeek: 0, - timestamp: "2021-05-24 18:27:00" - } + timestamp: '2021-05-24 18:27:00', + }, ]; export const SAMPLE_VISUALIZATIONS = { data: { 'count()': [2549, 9337, 1173], - 'span(timestamp,1M)': [ - '2021-05-01 00:00:00', - '2021-06-01 00:00:00', - '2021-07-01 00:00:00' - ], + 'span(timestamp,1M)': ['2021-05-01 00:00:00', '2021-06-01 00:00:00', '2021-07-01 00:00:00'], }, jsonData: [ { 'count()': 2549, - 'span(timestamp,1M)': '2021-05-01 00:00:00' + 'span(timestamp,1M)': '2021-05-01 00:00:00', }, { 'count()': 9337, - 'span(timestamp,1M)': '2021-06-01 00:00:00' + 'span(timestamp,1M)': '2021-06-01 00:00:00', }, { 'count()': 2549, - 'span(timestamp,1M)': '2021-07-01 00:00:00' - } + 'span(timestamp,1M)': '2021-07-01 00:00:00', + }, ], metadata: { fields: [ { name: 'count()', - type: 'integer' + type: 'integer', }, { name: 'span(timestamp,1M)', - type: 'timestamp' - } - ] - } + type: 'timestamp', + }, + ], + }, }; export const VISUALIZATION_TYPES = [ @@ -441,28 +447,28 @@ export const VISUALIZATION_TYPES = [ id: 'bar', label: 'bar', selection: { - dataLoss: 'nothing' + dataLoss: 'nothing', }, - visualizationid: 'vis-bar-6636' + visualizationid: 'vis-bar-6636', }, { fulllabel: 'H. Bar', id: 'horizontal_bar', label: 'H. Bar', selection: { - dataLoss: 'nothing' + dataLoss: 'nothing', }, - visualizationid: 'vis-bar-6637' + visualizationid: 'vis-bar-6637', }, { fulllabel: 'Line', id: 'line', label: 'line', selection: { - dataLoss: 'nothing' + dataLoss: 'nothing', }, - visualizationid: 'vis-bar-6638' - } + visualizationid: 'vis-bar-6638', + }, ]; export const LAYOUT_CONFIG = { @@ -488,47 +494,61 @@ export const EXPLORER_FIELDS = { export const EXPLORER_VISUALIZATIONS = { data: { 'count()': [154, 1753, 116, 468, 1964, 219], - tags:["error", "info", "login", "security", "success", "warning"], + tags: ['error', 'info', 'login', 'security', 'success', 'warning'], }, jsonData: [ - {'count()': 154, tags: "error"}, - {'count()': 1753, tags: "info"}, - {'count()': 116, tags: "login"}, - {'count()': 468, tags: "security"}, - {'count()': 1964, tags: "success"}, - {'count()': 219, tags: "warning"} + { 'count()': 154, tags: 'error' }, + { 'count()': 1753, tags: 'info' }, + { 'count()': 116, tags: 'login' }, + { 'count()': 468, tags: 'security' }, + { 'count()': 1964, tags: 'success' }, + { 'count()': 219, tags: 'warning' }, ], metadata: { fields: [ - {name: "count()", type: "integer"}, - {name: "tags", type: "text"} + { name: 'count()', type: 'integer' }, + { name: 'tags', type: 'text' }, ], size: 6, - status: 200 + status: 200, }, }; +export const VALUE_OPTIONS = { + dimensions: [{ name: 'tags', type: 'text', label: 'tags' }], + metrics: [{ name: 'count()', type: 'integer', label: 'count()', side: 'left' }], +}; + export const TEST_VISUALIZATIONS_DATA = { data: { - appData: {fromApp: false}, + appData: { fromApp: false }, defaultAxes: {}, indexFields: EXPLORER_FIELDS, query: {}, rawVizData: EXPLORER_VISUALIZATIONS, - userConfigs: {} + userConfigs: { + dataConfig: { + valueOptions: VALUE_OPTIONS, + }, + }, }, - vis: createBarTypeDefinition({}) + vis: createBarTypeDefinition({}), }; export const PIE_TEST_VISUALIZATIONS_DATA = { data: { ...TEST_VISUALIZATIONS_DATA.data, defaultAxes: { - xaxis: [{name: "tags", type: "text"}], - yaxis: [{name: "count()", type: "integer"}] - } + xaxis: [{ name: 'tags', type: 'text' }], + yaxis: [{ name: 'count()', type: 'integer' }], + }, }, vis: { - ...TEST_VISUALIZATIONS_DATA.vis - } + ...TEST_VISUALIZATIONS_DATA.vis, + }, +}; + +export const GAUGE_TEST_VISUALIZATIONS_DATA = { + ...TEST_VISUALIZATIONS_DATA, + vis: createGaugeTypeDefinition(), }; diff --git a/release-notes/opensearch-observability.release-notes-2.3.0.0.md b/release-notes/opensearch-observability.release-notes-2.3.0.0.md new file mode 100644 index 000000000..1aab83838 --- /dev/null +++ b/release-notes/opensearch-observability.release-notes-2.3.0.0.md @@ -0,0 +1,5 @@ +## Version 2.3.0.0 Release Notes +Compatible with OpenSearch and OpenSearch Dashboards Version 2.3.0 + +### Maintenance +* Bump version to 2.3.0 ([#997](https://github.com/opensearch-project/observability/pull/997)) \ No newline at end of file From 697dd25a496ef2587495ee88be1b264aae907a69 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Mon, 26 Sep 2022 15:18:23 -0700 Subject: [PATCH 25/29] field selector fix, viz selector restyling Signed-off-by: Eric Wei --- .../event_analytics/explorer/explorer.scss | 4 + .../explorer/visualizations/app.scss | 110 ++++++++++-------- .../config_panel/config_panel.scss | 9 ++ .../explorer/visualizations/index.tsx | 3 +- .../workspace_panel/workspace_panel.scss | 5 - .../workspace_panel/workspace_panel.tsx | 40 +------ 6 files changed, 75 insertions(+), 96 deletions(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/explorer.scss b/dashboards-observability/public/components/event_analytics/explorer/explorer.scss index 9f2d60198..1b9696545 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/explorer.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/explorer.scss @@ -3,6 +3,10 @@ * SPDX-License-Identifier: Apache-2.0 */ +#opensearch-dashboards-body { + overflow-y: hidden; +} + .liveStream { margin : 8px; height: 40px; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss index 38f37db2c..4fcebbb85 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss @@ -3,70 +3,78 @@ * SPDX-License-Identifier: Apache-2.0 */ -.lnsAppWrapper { - display: flex; - flex-direction: column; - flex-grow: 1; -} +// .lnsAppWrapper { +// display: flex; +// flex-direction: column; +// flex-grow: 1; +// } -.lnsApp { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - display: flex; - flex-direction: column; - height: 100%; - overflow: hidden; -} +// .lnsApp { +// position: absolute; +// top: 0; +// bottom: 0; +// left: 0; +// right: 0; +// display: flex; +// flex-direction: column; +// height: 100%; +// overflow: hidden; +// } -.lnsApp__header { - border-bottom: $euiBorderThin; -} +// .lnsApp__header { +// border-bottom: $euiBorderThin; +// } -.lnsApp__frame { - position: relative; - display: flex; - flex-direction: column; - flex-grow: 1; -} +// .lnsApp__frame { +// position: relative; +// display: flex; +// flex-direction: column; +// flex-grow: 1; +// } .dataConfigContainer { height: 1242px; overflow: auto; } -::-webkit-scrollbar { - width: 10px; -} +// ::-webkit-scrollbar { +// width: 10px; +// } -::-webkit-scrollbar-track { - background: #f1f1f1; -} +// ::-webkit-scrollbar-track { +// background: #f1f1f1; +// } -::-webkit-scrollbar-thumb { - background: #c2c2c2; -} +// ::-webkit-scrollbar-thumb { +// background: #c2c2c2; +// } -.euiResizableToggleButton:not(:focus):not(:active):not(.euiResizableToggleButton-isVisible):not(.euiResizableToggleButton-isCollapsed) { - height: 24px; - width: 24px; - top: 0; - left: inherit; - box-shadow: none; -} +// .euiResizableToggleButton:not(:focus):not(:active):not(.euiResizableToggleButton-isVisible):not(.euiResizableToggleButton-isCollapsed) { +// height: 24px; +// width: 24px; +// top: 0; +// left: inherit; +// box-shadow: none; +// } -.lensChartIcon__subdued { - fill: $euiTextSubduedColor; +// .lensChartIcon__subdued { +// fill: $euiTextSubduedColor; - // Not great, but the easiest way to fix the gray fill when stuck in a button with a fill - // Like when selected in a button group - .euiButton--fill & { - fill: currentColor; - } -} +// // Not great, but the easiest way to fix the gray fill when stuck in a button with a fill +// // Like when selected in a button group +// .euiButton--fill & { +// fill: currentColor; +// } +// } + +// .lensChartIcon__accent { +// fill: $euiColorVis0; +// } -.lensChartIcon__accent { - fill: $euiColorVis0; +.explorerViz__commonPanel { + display: grid; + grid-template-rows: auto 1fr; + grid-area: workspace; + background-color: #FFF; + height: 100%; } diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss index d08cc4c43..c5175843b 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panel.scss @@ -142,6 +142,11 @@ $vis-editor-sidebar-min-width: 350px; .cp__rightHeader { border-bottom: 1px solid #D3DAE6; + .euiBadge { + background: transparent; + border: none; + font-size: 14px; + } } .cp__rightSettings { @@ -151,3 +156,7 @@ $vis-editor-sidebar-min-width: 350px; } } +#vis__mainContent .vis__leftPanel { + overflow-y: unset; // unset default setting +} + diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx index 56d784731..8baa88ca6 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx @@ -14,7 +14,7 @@ import { IField, IQuery, IVisualizationContainerProps } from '../../../../../com import { WorkspacePanel } from './workspace_panel'; import { ConfigPanel } from './config_panel'; import { Sidebar } from '../sidebar'; -import { DataConfigPanelItem } from './config_panel/config_panes/config_controls/data_config_panel_item'; +import { DataConfigPanelItem } from './config_panel/config_panes/config_controls/data_configurations_panel'; import { TabContext } from '../../hooks'; import { PPL_STATS_REGEX, visChartTypes } from '../../../../../common/constants/shared'; import { TreemapConfigPanelItem } from './config_panel/config_panes/config_controls/treemap_config_panel_item'; @@ -96,6 +96,7 @@ export const ExplorerVisualizations = ({ minSize="17%" mode={['collapsible', { position: 'top' }]} paddingSize="none" + className="vis__leftPanel" >
        diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss index eda6760d5..56c95de24 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.scss @@ -8,13 +8,8 @@ } .ws__visCanvas { - display: grid; - grid-template-rows: auto 1fr; - grid-area: workspace; grid-gap: 12px; padding: 12px; - background-color: #FFF; - height: 100%; .ws__visCanvasControl { height: 40px; width: 140px; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx index 377c78d64..28273c44b 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/workspace_panel/workspace_panel.tsx @@ -27,7 +27,7 @@ export function WorkspacePanel({ visualizations }: IWorkSpacePanel) { }, [visualizations]); return ( -
        +
        : VisualizationPanel}
        - // - // - // - // { - // setIsTableViewOn((staleState) => !staleState); - // }} - // aria-describedby="table view switcher" - // data-test-subj="workspace__dataTableViewSwitch" - // compressed - // /> - // - // - // - // - // - // {isTableViewOn ? : VisualizationPanel} - // - // - // ); } From 764a7189e27bd87e02d264d654578e9da24c36e6 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Mon, 26 Sep 2022 15:30:44 -0700 Subject: [PATCH 26/29] path issue Signed-off-by: Eric Wei --- .../event_analytics/explorer/visualizations/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx index 8baa88ca6..f488b7cd4 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx @@ -14,7 +14,7 @@ import { IField, IQuery, IVisualizationContainerProps } from '../../../../../com import { WorkspacePanel } from './workspace_panel'; import { ConfigPanel } from './config_panel'; import { Sidebar } from '../sidebar'; -import { DataConfigPanelItem } from './config_panel/config_panes/config_controls/data_configurations_panel'; +import { DataConfigPanelItem } from './config_panel/config_panes/config_controls/data_config_panel_item'; import { TabContext } from '../../hooks'; import { PPL_STATS_REGEX, visChartTypes } from '../../../../../common/constants/shared'; import { TreemapConfigPanelItem } from './config_panel/config_panes/config_controls/treemap_config_panel_item'; From 5a46f8a920ae891f7f622f70229463a922e56f33 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Mon, 26 Sep 2022 16:14:15 -0700 Subject: [PATCH 27/29] event sidebar, one renaming Signed-off-by: Eric Wei --- .../common/field_button/field_button.scss | 22 ++++-- .../explorer/sidebar/field.tsx | 2 +- .../explorer/sidebar/sidebar.scss | 70 ++++++++----------- .../explorer/visualizations/app.scss | 63 ----------------- ...item.tsx => data_configurations_panel.tsx} | 0 .../explorer/visualizations/index.tsx | 2 +- 6 files changed, 49 insertions(+), 110 deletions(-) rename dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/{data_config_panel_item.tsx => data_configurations_panel.tsx} (100%) diff --git a/dashboards-observability/public/components/common/field_button/field_button.scss b/dashboards-observability/public/components/common/field_button/field_button.scss index 2063ca48c..e9fdd6a30 100644 --- a/dashboards-observability/public/components/common/field_button/field_button.scss +++ b/dashboards-observability/public/components/common/field_button/field_button.scss @@ -79,12 +79,14 @@ } } -.explorer__fieldSelectorField { - @include euiBottomShadowSmall; - - background-color: $euiColorEmptyShade; - border: $euiBorderThin; - margin-top: $euiSizeS; +.shard__fieldSelectorField { + &:hover, + &:focus-within, + &[class*='-isActive'] { + .dscSidebarItem__action { + opacity: 1; + } + } & > .osdFieldButton__button { padding: 0; @@ -110,3 +112,11 @@ margin-right: 8px; } } + +#vis__mainContent .explorer__fieldSelectorField { + @include euiBottomShadowSmall; + + background-color: $euiColorEmptyShade; + border: $euiBorderThin; + margin-top: $euiSizeS; +} diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx b/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx index 9809f23c6..1c88f60cf 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx @@ -151,7 +151,7 @@ export const Field = (props: IFieldProps) => { button={ } diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss index b99918e6b..c29dc31d7 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/sidebar.scss @@ -37,25 +37,11 @@ background-color: lightOrDarkTheme(tint($euiColorPrimary, 90%), $euiColorLightShade); } -.explorerFieldSelector { - padding: 0; -} - .dscFieldChooser__toggle { color: $euiColorMediumShade; margin-left: $euiSizeS !important; } -.dscSidebarItem { - &:hover, - &:focus-within, - &[class*='-isActive'] { - .dscSidebarItem__action { - opacity: 1; - } - } -} - /** * 1. Only visually hide the action, so that it's still accessible to screen readers. * 2. When tabbed to, this element needs to be visible for keyboard accessibility. @@ -111,34 +97,40 @@ vertical-align: middle; } -.explorer__insights { - min-height: 0; - display: grid; - grid-template-columns: 50% 50%; - height: 100%; - .explorerFieldSelector, .explorer__vizDataConfig { - padding: $euiSizeS; - - &__fieldGroups { - @include euiYScrollWithShadows; - - overflow-y: auto; - margin-right: -$euiSizeS; - padding-right: $euiSizeS; - margin-top: $euiSizeS; - } - - &__fieldGroup { - margin-top: $euiSizeS; +.explorerFieldSelector { + padding: $euiSizeS; +} - &:first-child { - margin-top: 0; +#vis__mainContent { + .explorer__insights { + min-height: 0; + display: grid; + grid-template-columns: 50% 50%; + height: 100%; + .explorerFieldSelector, .explorer__vizDataConfig { + padding: $euiSizeS; + + &__fieldGroups { + @include euiYScrollWithShadows; + + overflow-y: auto; + margin-right: -$euiSizeS; + padding-right: $euiSizeS; + margin-top: $euiSizeS; + } + + &__fieldGroup { + margin-top: $euiSizeS; + + &:first-child { + margin-top: 0; + } } } - } - .explorerFieldSelector { - .sidebar-list { - height: 100%; + .explorerFieldSelector { + .sidebar-list { + height: 100%; + } } } } \ No newline at end of file diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss b/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss index 4fcebbb85..8f4e129e9 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/app.scss @@ -3,74 +3,11 @@ * SPDX-License-Identifier: Apache-2.0 */ -// .lnsAppWrapper { -// display: flex; -// flex-direction: column; -// flex-grow: 1; -// } - -// .lnsApp { -// position: absolute; -// top: 0; -// bottom: 0; -// left: 0; -// right: 0; -// display: flex; -// flex-direction: column; -// height: 100%; -// overflow: hidden; -// } - -// .lnsApp__header { -// border-bottom: $euiBorderThin; -// } - -// .lnsApp__frame { -// position: relative; -// display: flex; -// flex-direction: column; -// flex-grow: 1; -// } - .dataConfigContainer { height: 1242px; overflow: auto; } -// ::-webkit-scrollbar { -// width: 10px; -// } - -// ::-webkit-scrollbar-track { -// background: #f1f1f1; -// } - -// ::-webkit-scrollbar-thumb { -// background: #c2c2c2; -// } - -// .euiResizableToggleButton:not(:focus):not(:active):not(.euiResizableToggleButton-isVisible):not(.euiResizableToggleButton-isCollapsed) { -// height: 24px; -// width: 24px; -// top: 0; -// left: inherit; -// box-shadow: none; -// } - -// .lensChartIcon__subdued { -// fill: $euiTextSubduedColor; - -// // Not great, but the easiest way to fix the gray fill when stuck in a button with a fill -// // Like when selected in a button group -// .euiButton--fill & { -// fill: currentColor; -// } -// } - -// .lensChartIcon__accent { -// fill: $euiColorVis0; -// } - .explorerViz__commonPanel { display: grid; grid-template-rows: auto 1fr; diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.tsx similarity index 100% rename from dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_config_panel_item.tsx rename to dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/config_panes/config_controls/data_configurations_panel.tsx diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx index 97cd57ebc..03efbee63 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/index.tsx @@ -20,7 +20,7 @@ import { import { WorkspacePanel } from './workspace_panel'; import { ConfigPanel } from './config_panel'; import { Sidebar } from '../sidebar'; -import { DataConfigPanelItem } from './config_panel/config_panes/config_controls/data_config_panel_item'; +import { DataConfigPanelItem } from './config_panel/config_panes/config_controls/data_configurations_panel'; import { TabContext } from '../../hooks'; import { PPL_STATS_REGEX, VIS_CHART_TYPES } from '../../../../../common/constants/shared'; import { TreemapConfigPanelItem } from './config_panel/config_panes/config_controls/treemap_config_panel_item'; From 210918a9bd753da2fe84ca4ca3fa64cda7c8fc85 Mon Sep 17 00:00:00 2001 From: Eric Wei Date: Mon, 26 Sep 2022 16:33:02 -0700 Subject: [PATCH 28/29] run tests and update snapshots Signed-off-by: Eric Wei --- .../common/types/explorer.ts | 8 +- .../public/components/app.tsx | 6 +- .../event_analytics/explorer/explorer.tsx | 6 +- .../event_analytics/explorer/log_explorer.tsx | 4 +- .../__snapshots__/field.test.tsx.snap | 20 +- .../__snapshots__/sidebar.test.tsx.snap | 15243 +++++---- .../explorer/sidebar/field.tsx | 3 - .../__snapshots__/config_panel.test.tsx.snap | 28536 ++++++++-------- .../data_configurations_panel.tsx | 22 +- .../treemap_config_panel_item.tsx | 11 +- .../explorer/visualizations/index.tsx | 16 +- .../workspace_panel/workspace_panel.tsx | 9 +- .../components/event_analytics/index.tsx | 4 +- .../public/components/index.tsx | 4 +- .../__tests__/__snapshots__/bar.test.tsx.snap | 9 +- .../__tests__/__snapshots__/pie.test.tsx.snap | 243 +- 16 files changed, 22021 insertions(+), 22123 deletions(-) diff --git a/dashboards-observability/common/types/explorer.ts b/dashboards-observability/common/types/explorer.ts index 34087e24b..d3c6ad1f2 100644 --- a/dashboards-observability/common/types/explorer.ts +++ b/dashboards-observability/common/types/explorer.ts @@ -99,7 +99,7 @@ export interface ILogExplorerProps { ) => void; savedObjectId: string; getExistingEmptyTab: (params: EmptyTabParams) => string; - qm: QueryManager; + queryManager: QueryManager; } export interface IExplorerProps { @@ -130,7 +130,7 @@ export interface IExplorerProps { appBaseQuery?: string; callback?: any; callbackInApp?: any; - qm: QueryManager; + queryManager: QueryManager; } export interface SavedQuery { @@ -316,13 +316,13 @@ export interface EventAnalyticsProps { timestampUtils: TimestampUtils; http: HttpStart; notifications: NotificationsStart; - qm: QueryManager; + queryManager: QueryManager; } export interface DataConfigPanelProps { fieldOptionList: IField[]; visualizations: IVisualizationContainerProps; - qm?: QueryManager; + queryManager?: QueryManager; } export interface GetTooltipHoverInfoType { tooltipMode: string; diff --git a/dashboards-observability/public/components/app.tsx b/dashboards-observability/public/components/app.tsx index 6e69cd69d..307a0edcf 100644 --- a/dashboards-observability/public/components/app.tsx +++ b/dashboards-observability/public/components/app.tsx @@ -25,7 +25,7 @@ interface ObservabilityAppDeps { dslService: any; savedObjects: any; timestampUtils: any; - qm: QueryManager; + queryManager: QueryManager; } // for cypress to test redux store @@ -40,7 +40,7 @@ export const App = ({ dslService, savedObjects, timestampUtils, - qm, + queryManager, }: ObservabilityAppDeps) => { const { chrome, http, notifications } = CoreStartProp; const parentBreadcrumb = { @@ -133,7 +133,7 @@ export const App = ({ timestampUtils={timestampUtils} http={http} notifications={notifications} - qm={qm} + queryManager={queryManager} {...props} /> ); diff --git a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx index 61c85e459..2c01a585c 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/explorer.tsx @@ -110,7 +110,7 @@ export const Explorer = ({ setEndTime, callback, callbackInApp, - qm, + queryManager, }: IExplorerProps) => { const dispatch = useDispatch(); const requestParams = { tabId }; @@ -769,7 +769,7 @@ export const Explorer = ({ handleOverrideTimestamp={handleOverrideTimestamp} callback={callbackForConfig} changeIsValidConfigOptionState={changeIsValidConfigOptionState} - qm={qm} + queryManager={queryManager} /> ); }; @@ -926,7 +926,7 @@ export const Explorer = ({ if (selectedContentTabId === TAB_CHART_ID) { // parse stats section on every search - const statsTokens = qm.queryParser().parse(tempQuery).getStats(); + const statsTokens = queryManager.queryParser().parse(tempQuery).getStats(); const updatedDataConfig = getUpdatedDataConfig(statsTokens); await dispatch( diff --git a/dashboards-observability/public/components/event_analytics/explorer/log_explorer.tsx b/dashboards-observability/public/components/event_analytics/explorer/log_explorer.tsx index 1d84a5815..9996b1948 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/log_explorer.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/log_explorer.tsx @@ -49,7 +49,7 @@ export const LogExplorer = ({ history, notifications, http, - qm, + queryManager, }: ILogExplorerProps) => { const dispatch = useDispatch(); const tabIds = useSelector(selectQueryTabs).queryTabIds.filter( @@ -185,7 +185,7 @@ export const LogExplorer = ({ curSelectedTabId={curSelectedTabIdRef} http={http} searchBarConfigs={searchBarConfigs} - qm={qm} + queryManager={queryManager} /> ), diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap b/dashboards-observability/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap index 30d744eb9..f2c5f5cb9 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap @@ -21,7 +21,7 @@ exports[`Field component Renders a sidebar field 1`] = ` anchorPosition="rightUp" button={ @@ -67,7 +67,7 @@ exports[`Field component Renders a sidebar field 1`] = ` } isActive={false} onClick={[Function]} - size="s" + size="m" /> } closePopover={[Function]} @@ -85,7 +85,7 @@ exports[`Field component Renders a sidebar field 1`] = ` className="euiPopover__anchor" > @@ -131,10 +131,10 @@ exports[`Field component Renders a sidebar field 1`] = ` } isActive={false} onClick={[Function]} - size="s" + size="m" >
        -
        - - - - - - - - - - -
        -
        -
        -
        -
        - - - -
      • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - host - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
        + + + -
        - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - host - - } - isActive={false} - onClick={[Function]} - size="s" + -
        - -
        - - - - - - - - - - -
        -
        -
        -
        -
        -
        -
        -
      • -
      • - + + + +
      • +
        - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - ip_count - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" + -
        +
        - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - ip_count - - } - isActive={false} - onClick={[Function]} - size="s" +
          -
          - -
          - - - - - + + + + + + + + + + + + + + + + double_per_ip_bytes + + + +
          + + + + + + + + + + +
          +
          + +
          +
        + + + +
      • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + host + + } + isActive={false} + onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
        - - - - - -
        -
      • - -
        -
        - - - -
      • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + host + + + +
        + + + + + + + + + + +
        +
      • + +
        +
        + + + +
      • - per_ip_bytes - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
        -
        - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + ip_count + + } + isActive={false} + onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - per_ip_bytes - - } - isActive={false} - onClick={[Function]} - size="s" - > -
        - -
        - - - - - + + + + + + + + + + + + + + + + ip_count + + + +
        + + + + + + + + + + +
        +
        + +
        +
        + + +
      • +
      • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + per_ip_bytes + + } + isActive={false} + onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
        - - - - - -
        -
- -
-
- - - -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + per_ip_bytes + + + +
    + + + + + + + + + + +
    +
  • + +
    +
    + +
    + +
  • - resp_code - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + resp_code + + } + isActive={false} + onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - resp_code - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - + + + + + + + + + + + + + + + + resp_code + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + sum_bytes + + } + isActive={false} + onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    - - - - - -
    - - + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • + - -
    - -
  • + + + + +
    + + + + Selected Fields + + + } + id="fieldSelector__selectedFields" + initialIsOpen={true} + isLoading={false} + isLoadingMessage={false} + paddingSize="xs" + > +
    - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - sum_bytes - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" + -
    - - - - - - - - - - -
    -
    - + + + + + + + + Selected Fields + + + + +
    +
    + +
    +
    +
    - - -
  • - - -

    - - Selected Fields - -

    -
    + + + +
    -
      -
      - -

      - + Available Fields - -

      -
      + + + } + id="fieldSelector__availableFields" + initialIsOpen={true} + isLoading={false} + isLoadingMessage={false} + paddingSize="xs" + >
      - - -
      -
      -
        -
      • - +
        - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - agent - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" + -
        +
        - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - agent - - } - isActive={false} - onClick={[Function]} - size="s" +
          -
          - -
          - - - - - - + + + + + + + + + + + + + + + + agent + + + +
          + + + + + + + + + + +
          +
          + +
          +
        + + +
      • +
      • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + bytes + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
        +
        - - - - -
        -
        - -
    - - - - -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + bytes + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - bytes - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + clientip + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - bytes - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - + + + + + + + + + + + + + + + + clientip + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + event + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - - - -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + event + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - clientip - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + extension + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - clientip - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - + + + + + + + + + + + + + + + extension + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + geo + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - - - -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + geo + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - event - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + host + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - event - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - + + + + + + + + + + + + + + + + host + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + index + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - - - -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + index + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - extension - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - extension - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    - - -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - geo - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - geo - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - host - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - host - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - index - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - index - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - ip - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - ip - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - machine - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - machine - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - memory - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - memory - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - message - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - message - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - phpmemory - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - phpmemory - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - referer - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - referer - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - request - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - - request - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + ip + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - -
    -
    - - -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + ip + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - response - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + machine + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - response - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - + + + + + + + + + + + + + + + + machine + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + memory + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - - - -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + memory + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - tags - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + message + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - tags - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - + + + + + + + + + + + + + + + + message + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + phpmemory + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - - - -
    -
    -
  • -
  • - - - - - - Default Timestamp - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + phpmemory + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - timestamp - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - Default Timestamp - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + referer + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - timestamp - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - Default Timestamp - - - - - - - + + + + + + + + + + + + + + + + referer + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + request + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - - - -
    -
    -
  • -
  • - - - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + request + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - url - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - - - + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + response + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - url - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - - - - + + + + + + + + + + + + + + + + response + + + +
    + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + tags + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - - - -
    -
    -
  • -
  • - - - - - - Override - - - - - - - - - - } - fieldIcon={ - - } - fieldName={ - + + + + + + + + + + + + + + + + tags + + + +
    + + + + + + + + + + +
    + + + + +
    +
    +
  • +
  • - utc_time - - } - isActive={false} - onClick={[Function]} - size="s" - /> - } - closePopover={[Function]} - display="block" - hasArrow={true} - isOpen={false} - ownFocus={true} - panelClassName="dscSidebarItem__fieldPopoverPanel" - panelPaddingSize="m" - > -
    -
    - - - - - Override - - - - - - + + + + + Default Timestamp + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + timestamp + + } + isActive={false} onClick={[Function]} + size="m" /> - - - - } - fieldIcon={ - - } - fieldName={ - - utc_time - - } - isActive={false} - onClick={[Function]} - size="s" - > -
    - -
    - - - + + + + + + + + + + + + + + + + timestamp + + + +
    + + + + + Default Timestamp + + + + + + + + + + + +
    +
    + +
    +
    + + +
  • +
  • + + + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + url + + } + isActive={false} onClick={[Function]} - size="s" + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - - - - + + + + + + + + + + + + + + + + url + + + +
    + + + + + + + + + + +
    +
    + +
    + +
    +
    +
  • +
  • + + + + + + Override + + + + + + + + + + } + fieldIcon={ + + } + fieldName={ + + utc_time + + } + isActive={false} onClick={[Function]} + size="m" + /> + } + closePopover={[Function]} + display="block" + hasArrow={true} + isOpen={false} + ownFocus={true} + panelClassName="dscSidebarItem__fieldPopoverPanel" + panelPaddingSize="m" + > +
    +
    - - - - -
    -
    - + +
    + + + + + + + + + + + + + + +
    + + + + +
    +
    +
  • + - - - - + + + + diff --git a/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx b/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx index 1c88f60cf..14ef7ddbe 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx +++ b/dashboards-observability/public/components/event_analytics/explorer/sidebar/field.tsx @@ -10,11 +10,8 @@ import { EuiPopover, EuiButtonIcon, EuiToolTip, - EuiButton, EuiMark, EuiLoadingSpinner, - EuiPopoverTitle, - EuiPanel, EuiFlexGroup, EuiFlexItem, EuiTitle, diff --git a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap index 3a5752339..2ab71e6a1 100644 --- a/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap +++ b/dashboards-observability/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap @@ -552,7375 +552,7816 @@ exports[`Config panel component Renders config panel with visualization data 1`] } } > -
    - -
    - -
    - - -
    - +
    + - -
    -
    -
    - + +
    +
    +
    + - + - - + + - - - Vertical bar - - - - - - - - - - - - -
    - -
    -
    - -
    - -
    - - - -
    -
    -
    -
    - - -
    - - -
    - -
    - - -
    - -
    - + + + Vertical bar + + + + + + + + + + + + +
    + +
    +
    + +
    + +
    + + + +
    +
    +
    +
    +
    + +
    + +
    +
    + , - "id": "data-panel", - "name": "Style", - } - } - tabs={ - Array [ + }, + Object { + "component": null, + "mapTo": "position", + "name": "Position", + "props": Object { + "defaultSelections": Array [ + Object { + "id": "v", + "name": "Right", + }, + ], + "options": Array [ + Object { + "id": "v", + "name": "Right", + }, + Object { + "id": "h", + "name": "Bottom", + }, + ], + }, + }, + ], + }, Object { - "content": , - "id": "data-panel", - "name": "Style", + ], + }, + }, + Object { + "component": [Function], + "defaultState": 0.7, + "eleType": "slider", + "mapTo": "groupWidth", + "name": "Group width", + "props": Object { + "max": 1, + "step": 0.01, + }, + }, + Object { + "component": [Function], + "defaultState": 0.97, + "eleType": "slider", + "mapTo": "barWidth", + "name": "Bar width", + "props": Object { + "max": 1, + "step": 0.01, + }, + }, + Object { + "component": [Function], + "defaultState": 1, + "eleType": "slider", + "mapTo": "lineWidth", + "name": "Line width", + "props": Object { + "max": 10, + }, + }, + Object { + "component": [Function], + "defaultState": 80, + "eleType": "slider", + "mapTo": "fillOpacity", + "name": "Fill opacity", + "props": Object { + "max": 100, + }, + }, + ], }, Object { - "content": , - "id": "style-panel", - "name": "Layout", + "editor": [Function], + "id": "color-theme", + "mapTo": "colorTheme", + "name": "Color theme", + "schemas": Array [], }, - Object { - "content": , + "id": "data-panel", + "name": "Style", + } + } + tabs={ + Array [ + Object { + "content": , + "id": "data-panel", + "name": "Style", + }, + Object { + "content": , + "id": "style-panel", + "name": "Layout", + }, + Object { + "content": , + "id": "availability-panel", + "name": "Availability", + }, + ] + } + > +
    + +
    + + + + + + + + + +
    +
    +
    + , - "id": "availability-panel", - "name": "Availability", + ], + "metrics": Array [ + Object { + "label": "count()", + "name": "count()", + "side": "left", + "type": "integer", + }, + ], + }, + }, }, - ] - } - > -
    - -
    - - - - - - - - - -
    -
    -
    - +
    + +
    +
    - -
    - -
    -
    - + +
    +
    + +
    +
    + +
    -
    - -
    -
    - -
    - -
    - -
    -
    - - - -
    -
    - - -
    -
    - - - - -
    -
    -
    -
    - -
    - Name your visualization. -
    -
    -
    -
    -
    - + +
    +
    + +
    - - - -
    -
    - - -