diff --git a/docs/changelog/135744.yaml b/docs/changelog/135744.yaml
new file mode 100644
index 0000000000000..a3525e06b4dcf
--- /dev/null
+++ b/docs/changelog/135744.yaml
@@ -0,0 +1,5 @@
+pr: 135744
+summary: Non-Correlated Subquery in FROM command
+area: ES|QL
+type: enhancement
+issues: []
diff --git a/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/Attribute.java b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/Attribute.java
index b7af6041ea56a..b875627f55c13 100644
--- a/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/Attribute.java
+++ b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/Attribute.java
@@ -35,7 +35,9 @@ public abstract class Attribute extends NamedExpression {
/**
* Changing this will break bwc with 8.15, see {@link FieldAttribute#fieldName()}.
*/
- protected static final String SYNTHETIC_ATTRIBUTE_NAME_PREFIX = "$$";
+ public static final String SYNTHETIC_ATTRIBUTE_NAME_PREFIX = "$$";
+
+ public static final String SYNTHETIC_ATTRIBUTE_NAME_SEPARATOR = "$";
private static final TransportVersion ESQL_QUALIFIERS_IN_ATTRIBUTES = TransportVersion.fromName("esql_qualifiers_in_attributes");
@@ -77,7 +79,7 @@ public Attribute(
}
public static String rawTemporaryName(String... parts) {
- var name = String.join("$", parts);
+ var name = String.join(SYNTHETIC_ATTRIBUTE_NAME_SEPARATOR, parts);
return name.isEmpty() || name.startsWith(SYNTHETIC_ATTRIBUTE_NAME_PREFIX) ? name : SYNTHETIC_ATTRIBUTE_NAME_PREFIX + name;
}
diff --git a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java
index 2df8d40e0a095..4e3a779f51981 100644
--- a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java
+++ b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java
@@ -56,6 +56,7 @@
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.JOIN_LOOKUP_V12;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.JOIN_PLANNING_V1;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.METADATA_FIELDS_REMOTE_TEST;
+import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.UNMAPPED_FIELDS;
import static org.elasticsearch.xpack.esql.qa.rest.RestEsqlTestCase.hasCapabilities;
import static org.mockito.ArgumentMatchers.any;
@@ -172,6 +173,12 @@ protected void shouldSkipTest(String testName) throws IOException {
hasCapabilities(adminClient(), List.of(ENABLE_FORK_FOR_REMOTE_INDICES.capabilityName()))
);
}
+ // Subqueries in FROM are not fully tested in CCS yet
+ // And convertToRemoteIndices does not generate correct queries with subqueries in the FROM command yet
+ assumeFalse(
+ "Subqueries in FROM command not yet supported in CCS",
+ testCase.requiredCapabilities.contains(SUBQUERY_IN_FROM_COMMAND.capabilityName())
+ );
}
private TestFeatureService remoteFeaturesService() throws IOException {
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
index 717d0d563658c..2653a652c0eca 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
@@ -1317,6 +1317,23 @@ public void testTopLevelFilterBoolMerged() throws IOException {
}
}
+ public void testTopLevelFilterWithSubqueriesInFromCommand() throws IOException {
+ bulkLoadTestData(10);
+
+ String query = format(null, "FROM {} , (FROM {} | WHERE integer < 8) | STATS count(*)", testIndexName(), testIndexName());
+
+ RequestObjectBuilder builder = requestObjectBuilder().filter(b -> {
+ b.startObject("range");
+ {
+ b.startObject("integer").field("gte", "5").endObject();
+ }
+ b.endObject();
+ }).query(query);
+
+ Map result = runEsql(builder);
+ assertResultMap(result, matchesList().item(matchesMap().entry("name", "count(*)").entry("type", "long")), List.of(List.of(8)));
+ }
+
private static String queryWithComplexFieldNames(int field) {
StringBuilder query = new StringBuilder();
query.append(" | keep ").append(randomAlphaOfLength(10)).append(1);
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeForkRestTest.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeForkRestTest.java
index 5b2ea9a525489..291de3d413417 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeForkRestTest.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/GenerativeForkRestTest.java
@@ -55,6 +55,11 @@ protected void shouldSkipTest(String testName) throws IOException {
testCase.requiredCapabilities.contains(UNMAPPED_FIELDS.capabilityName())
);
+ assumeFalse(
+ "Tests using subqueries are skipped since we don't support nested subqueries",
+ testCase.requiredCapabilities.contains(SUBQUERY_IN_FROM_COMMAND.capabilityName())
+ );
+
assumeTrue("Cluster needs to support FORK", hasCapabilities(adminClient(), List.of(FORK_V9.capabilityName())));
}
}
diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/subquery.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/subquery.csv-spec
new file mode 100644
index 0000000000000..d18118210f431
--- /dev/null
+++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/subquery.csv-spec
@@ -0,0 +1,871 @@
+//
+// CSV spec for subqueries
+//
+
+subqueryInFrom
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data)
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no, client_ip
+| KEEP emp_no, languages, client_ip
+;
+
+emp_no:integer | languages:integer | client_ip:ip
+10091 | 3 | null
+10092 | 1 | null
+10093 | 3 | null
+null | null | 172.21.0.5
+null | null | 172.21.2.113
+null | null | 172.21.2.162
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+;
+
+subqueryInFromWithIdenticalIndexPatternsInMainAndSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees)
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT emp_no
+| KEEP emp_no, languages
+;
+
+emp_no:integer | languages:integer
+10091 | 3
+10091 | 3
+10092 | 1
+10092 | 1
+10093 | 3
+10093 | 3
+;
+
+subqueryInFromWithEvalInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data | EVAL x = client_ip::keyword ) metadata _index
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no, client_ip
+| KEEP _index, emp_no, languages, client_ip, x
+;
+
+_index:keyword | emp_no:integer | languages:integer | client_ip:ip | x:keyword
+employees | 10091 | 3 | null | null
+employees | 10092 | 1 | null | null
+employees | 10093 | 3 | null | null
+null | null | null | 172.21.0.5 | 172.21.0.5
+null | null | null | 172.21.2.113 | 172.21.2.113
+null | null | null | 172.21.2.162 | 172.21.2.162
+null | null | null | 172.21.3.15 | 172.21.3.15
+null | null | null | 172.21.3.15 | 172.21.3.15
+null | null | null | 172.21.3.15 | 172.21.3.15
+null | null | null | 172.21.3.15 | 172.21.3.15
+;
+
+subqueryInFromWithWhereInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data metadata _index
+ | WHERE client_ip == "172.21.3.15" )
+ metadata _index
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no
+| KEEP _index, emp_no, languages, client_ip
+;
+
+_index:keyword | emp_no:integer | languages:integer | client_ip:ip
+employees | 10091 | 3 | null
+employees | 10092 | 1 | null
+employees | 10093 | 3 | null
+sample_data | null | null | 172.21.3.15
+sample_data | null | null | 172.21.3.15
+sample_data | null | null | 172.21.3.15
+sample_data | null | null | 172.21.3.15
+;
+
+subqueryInFromWithStatsInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data metadata _index
+ | STATS cnt = count(*) by client_ip )
+ metadata _index
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no, client_ip
+| KEEP _index, emp_no, languages, cnt, client_ip
+;
+
+_index:keyword | emp_no:integer | languages:integer | cnt:long | client_ip:ip
+employees | 10091 | 3 | null | null
+employees | 10092 | 1 | null | null
+employees | 10093 | 3 | null | null
+null | null | null | 1 | 172.21.0.5
+null | null | null | 1 | 172.21.2.113
+null | null | null | 1 | 172.21.2.162
+null | null | null | 4 | 172.21.3.15
+;
+
+subqueryInFromWithStatsInSubqueryConjunctiveFilterInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data
+ | STATS cnt = count(*) by client_ip )
+ , (FROM sample_data_str
+ | STATS cnt = count(*) by client_ip )
+ metadata _index
+| EVAL client_ip = client_ip::ip
+| WHERE client_ip == "172.21.3.15" AND cnt >0
+| SORT emp_no, client_ip
+| KEEP _index, emp_no, languages, cnt, client_ip
+;
+
+_index:keyword | emp_no:integer | languages:integer | cnt:long | client_ip:ip
+null | null | null | 4 | 172.21.3.15
+null | null | null | 4 | 172.21.3.15
+;
+
+subqueryInFromWithStatsInSubqueryDisjunctiveFilterInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data
+ | STATS cnt = count(*) by client_ip )
+ , (FROM sample_data_str
+ | STATS cnt = count(*) by client_ip )
+ metadata _index
+| EVAL client_ip = client_ip::ip
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR client_ip == "172.21.3.15"
+| SORT emp_no, client_ip
+| KEEP _index, emp_no, languages, cnt, client_ip
+;
+
+_index:keyword | emp_no:integer | languages:integer | cnt:long | client_ip:ip
+employees | 10091 | 3 | null | null
+employees | 10092 | 1 | null | null
+employees | 10093 | 3 | null | null
+null | null | null | 4 | 172.21.3.15
+null | null | null | 4 | 172.21.3.15
+;
+
+subqueryInFromWithStatsInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM sample_data, sample_data_str,
+ (FROM sample_data_ts_nanos metadata _index
+ | WHERE client_ip == "172.21.3.15") ,
+ (FROM sample_data_ts_long metadata _index
+ | EVAL @timestamp = @timestamp::date_nanos
+ | WHERE client_ip == "172.21.0.5")
+ metadata _index
+| EVAL client_ip = client_ip::ip
+| STATS cnt = count(*) BY _index, client_ip
+| SORT _index, client_ip
+;
+
+cnt:long | _index:keyword | client_ip:ip
+1 | sample_data | 172.21.0.5
+1 | sample_data | 172.21.2.113
+1 | sample_data | 172.21.2.162
+4 | sample_data | 172.21.3.15
+1 | sample_data_str | 172.21.0.5
+1 | sample_data_str | 172.21.2.113
+1 | sample_data_str | 172.21.2.162
+4 | sample_data_str | 172.21.3.15
+1 | sample_data_ts_long | 172.21.0.5
+4 | sample_data_ts_nanos | 172.21.3.15
+;
+
+subqueryInFromWithLookupJoinInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data metadata _index
+ | EVAL client_ip = client_ip::keyword
+ | LOOKUP JOIN clientips_lookup ON client_ip )
+ metadata _index
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no, client_ip
+| KEEP _index, emp_no, languages, client_ip, env
+;
+
+_index:keyword | emp_no:integer | languages:integer | client_ip:keyword | env:keyword
+employees | 10091 | 3 | null | null
+employees | 10092 | 1 | null | null
+employees | 10093 | 3 | null | null
+sample_data | null | null | 172.21.0.5 | Development
+sample_data | null | null | 172.21.2.113 | QA
+sample_data | null | null | 172.21.2.162 | QA
+sample_data | null | null | 172.21.3.15 | Production
+sample_data | null | null | 172.21.3.15 | Production
+sample_data | null | null | 172.21.3.15 | Production
+sample_data | null | null | 172.21.3.15 | Production
+;
+
+subqueryInFromWithLookupJoinInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data metadata _index
+ | EVAL client_ip = client_ip::keyword )
+ metadata _index
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| LOOKUP JOIN clientips_lookup ON client_ip
+| SORT emp_no, client_ip
+| KEEP _index, emp_no, languages, client_ip, env
+;
+
+_index:keyword | emp_no:integer | languages:integer | client_ip:keyword | env:keyword
+employees | 10091 | 3 | null | null
+employees | 10092 | 1 | null | null
+employees | 10093 | 3 | null | null
+sample_data | null | null | 172.21.0.5 | Development
+sample_data | null | null | 172.21.2.113 | QA
+sample_data | null | null | 172.21.2.162 | QA
+sample_data | null | null | 172.21.3.15 | Production
+sample_data | null | null | 172.21.3.15 | Production
+sample_data | null | null | 172.21.3.15 | Production
+sample_data | null | null | 172.21.3.15 | Production
+;
+
+subqueryInFromWithEnrichInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees_incompatible
+ | ENRICH languages_policy on languages with language_name )
+ metadata _index
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT _index, emp_no
+| KEEP _index, emp_no, languages, language_name
+;
+
+_index:keyword | emp_no:long | languages:integer | language_name:keyword
+employees | 10091 | 3 | null
+employees | 10092 | 1 | null
+employees | 10093 | 3 | null
+null | 10091 | 3 | Spanish
+null | 10092 | 1 | English
+null | 10093 | 3 | Spanish
+;
+
+subqueryInFromWithEnrichInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees_incompatible
+ | KEEP emp_no, languages)
+ metadata _index
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| ENRICH languages_policy on languages with language_name
+| SORT _index, emp_no
+| KEEP _index, emp_no, languages, language_name
+;
+
+_index:keyword | emp_no:long | languages:integer | language_name:keyword
+employees | 10091 | 3 | Spanish
+employees | 10092 | 1 | English
+employees | 10093 | 3 | Spanish
+null | 10091 | 3 | Spanish
+null | 10092 | 1 | English
+null | 10093 | 3 | Spanish
+;
+
+subqueryInFromWithSortInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data
+ | STATS cnt = count(*) by client_ip
+ | SORT cnt DESC
+ | LIMIT 1 )
+ metadata _index
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no, client_ip
+| KEEP _index, emp_no, languages, cnt, client_ip
+;
+
+_index:keyword | emp_no:integer | languages:integer | cnt:long | client_ip:ip
+employees | 10091 | 3 | null | null
+employees | 10092 | 1 | null | null
+employees | 10093 | 3 | null | null
+null | null | null | 4 | 172.21.3.15
+;
+
+subqueryInFromWithGrokInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees_incompatible, (FROM employees
+ | GROK concat(first_name, " ", last_name) "%{WORD:a} %{WORD:b}"
+ | KEEP emp_no, a, b )
+ metadata _index
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT emp_no, a, b
+| KEEP emp_no, a, b
+;
+
+emp_no:long | a:keyword | b:keyword
+10091 | Amabile | Gomatam
+10091 | null | null
+10092 | Valdiodio | Niizuma
+10092 | null | null
+10093 | Sailaja | Desikan
+10093 | null | null
+;
+
+subqueryInFromWithGrokInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees_incompatible, (FROM employees
+ | WHERE emp_no > 10091 AND emp_no < 10094
+ | KEEP emp_no, first_name, last_name )
+ metadata _index
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| GROK concat(first_name, " ", last_name) "%{WORD:a} %{WORD:b}"
+| SORT emp_no, a, b
+| KEEP emp_no, a, b
+;
+
+emp_no:long | a:keyword | b:keyword
+10091 | Amabile | Gomatam
+10092 | Valdiodio | Niizuma
+10092 | Valdiodio | Niizuma
+10093 | Sailaja | Desikan
+10093 | Sailaja | Desikan
+;
+
+subqueryInFromWithDissectInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees_incompatible
+ | EVAL name = concat(first_name, "1 ", last_name)
+ | DISSECT name "%{a} %{b}"
+ | KEEP emp_no, a, b )
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT emp_no, a, b
+| KEEP emp_no, a, b
+;
+
+emp_no:long | a:keyword | b:keyword
+10091 | Amabile1 | Gomatam
+10091 | null | null
+10092 | Valdiodio1 | Niizuma
+10092 | null | null
+10093 | Sailaja1 | Desikan
+10093 | null | null
+;
+
+subqueryInFromWithDissectInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees_incompatible
+ | WHERE emp_no > 10091 AND emp_no < 10094
+ | KEEP emp_no, first_name, last_name )
+ metadata _index
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| EVAL name = concat(first_name, "1 ", last_name)
+| DISSECT name "%{a} %{b}"
+| SORT emp_no, a, b
+| KEEP emp_no, a, b
+;
+
+emp_no:long | a:keyword | b:keyword
+10091 | Amabile1 | Gomatam
+10092 | Valdiodio1 | Niizuma
+10092 | Valdiodio1 | Niizuma
+10093 | Sailaja1 | Desikan
+10093 | Sailaja1 | Desikan
+;
+
+subqueryInFromWithMvExpandInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees_incompatible, (FROM employees
+ | MV_EXPAND job_positions
+ | KEEP emp_no, first_name, last_name, job_positions)
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT emp_no, first_name, last_name, job_positions
+| KEEP emp_no, first_name, last_name, job_positions
+;
+ignoreOrder:true
+
+emp_no:long | first_name:keyword | last_name:keyword | job_positions:keyword
+10091 | Amabile | Gomatam | Python Developer
+10091 | Amabile | Gomatam | [Reporting Analyst, Python Developer]
+10091 | Amabile | Gomatam | Reporting Analyst
+10092 | Valdiodio | Niizuma | Accountant
+10092 | Valdiodio | Niizuma | [Junior Developer, Accountant]
+10092 | Valdiodio | Niizuma | Junior Developer
+10093 | Sailaja | Desikan | Principal Support Engineer
+10093 | Sailaja | Desikan | Purchase Manager
+10093 | Sailaja | Desikan | [Reporting Analyst, Tech Lead, Principal Support Engineer, Purchase Manager]
+10093 | Sailaja | Desikan | Reporting Analyst
+10093 | Sailaja | Desikan | Tech Lead
+;
+
+subqueryInFromWithMvExpandInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees_incompatible, (FROM employees
+ | KEEP emp_no, first_name, last_name, job_positions)
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| MV_EXPAND job_positions
+| SORT emp_no, first_name, last_name, job_positions
+| KEEP emp_no, first_name, last_name, job_positions
+;
+ignoreOrder:true
+
+emp_no:long | first_name:keyword | last_name:keyword | job_positions:text
+ 10091 | Amabile | Gomatam | Python Developer
+ 10091 | Amabile | Gomatam | Python Developer
+ 10091 | Amabile | Gomatam | Reporting Analyst
+ 10091 | Amabile | Gomatam | Reporting Analyst
+ 10092 | Valdiodio | Niizuma | Accountant
+ 10092 | Valdiodio | Niizuma | Accountant
+ 10092 | Valdiodio | Niizuma | Junior Developer
+ 10092 | Valdiodio | Niizuma | Junior Developer
+ 10093 | Sailaja | Desikan | Principal Support Engineer
+ 10093 | Sailaja | Desikan | Principal Support Engineer
+ 10093 | Sailaja | Desikan | Purchase Manager
+ 10093 | Sailaja | Desikan | Purchase Manager
+ 10093 | Sailaja | Desikan | Reporting Analyst
+ 10093 | Sailaja | Desikan | Reporting Analyst
+ 10093 | Sailaja | Desikan | Tech Lead
+ 10093 | Sailaja | Desikan | Tech Lead
+;
+
+subqueryInFromWithInlineStatsInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees_incompatible
+ | INLINE STATS cnt = count(*) by gender
+ | KEEP emp_no, first_name, last_name, cnt, gender)
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT emp_no, first_name, last_name, cnt, gender
+| KEEP emp_no, first_name, last_name, cnt, gender
+;
+
+emp_no:long | first_name:keyword | last_name:keyword | cnt:long | gender:keyword
+10091 | Amabile | Gomatam | 57 | M
+10091 | Amabile | Gomatam | null | M
+10092 | Valdiodio | Niizuma | 33 | F
+10092 | Valdiodio | Niizuma | null | F
+10093 | Sailaja | Desikan | 57 | M
+10093 | Sailaja | Desikan | null | M
+;
+
+subqueryInFromWithInlineStatsInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM sample_data, sample_data_str,
+ (FROM sample_data_ts_nanos
+ | WHERE client_ip == "172.21.3.15") ,
+ (FROM sample_data_ts_long
+ | EVAL @timestamp = @timestamp::date_nanos
+ | WHERE client_ip == "172.21.0.5")
+ metadata _index
+| EVAL client_ip = client_ip::ip
+| INLINE STATS cnt = count(*) BY _index, client_ip
+| SORT _index, @timestamp
+;
+
+@timestamp:date_nanos | event_duration:long | message:keyword | cnt:long | _index:keyword | client_ip:ip
+2023-10-23T12:15:03.360Z | 3450233 | Connected to 10.1.0.3 | 1 | sample_data | 172.21.2.162
+2023-10-23T12:27:28.948Z | 2764889 | Connected to 10.1.0.2 | 1 | sample_data | 172.21.2.113
+2023-10-23T13:33:34.937Z | 1232382 | Disconnected | 1 | sample_data | 172.21.0.5
+2023-10-23T13:51:54.732Z | 725448 | Connection error | 4 | sample_data | 172.21.3.15
+2023-10-23T13:52:55.015Z | 8268153 | Connection error | 4 | sample_data | 172.21.3.15
+2023-10-23T13:53:55.832Z | 5033755 | Connection error | 4 | sample_data | 172.21.3.15
+2023-10-23T13:55:01.543Z | 1756467 | Connected to 10.1.0.1 | 4 | sample_data | 172.21.3.15
+2023-10-23T12:15:03.360Z | 3450233 | Connected to 10.1.0.3 | 1 | sample_data_str | 172.21.2.162
+2023-10-23T12:27:28.948Z | 2764889 | Connected to 10.1.0.2 | 1 | sample_data_str | 172.21.2.113
+2023-10-23T13:33:34.937Z | 1232382 | Disconnected | 1 | sample_data_str | 172.21.0.5
+2023-10-23T13:51:54.732Z | 725448 | Connection error | 4 | sample_data_str | 172.21.3.15
+2023-10-23T13:52:55.015Z | 8268153 | Connection error | 4 | sample_data_str | 172.21.3.15
+2023-10-23T13:53:55.832Z | 5033755 | Connection error | 4 | sample_data_str | 172.21.3.15
+2023-10-23T13:55:01.543Z | 1756467 | Connected to 10.1.0.1 | 4 | sample_data_str | 172.21.3.15
+1970-01-01T00:28:18.068014937Z | 1232382 | Disconnected | 1 | null | 172.21.0.5
+2023-10-23T13:51:54.732123456Z | 725448 | Connection error | 4 | null | 172.21.3.15
+2023-10-23T13:52:55.015123456Z | 8268153 | Connection error | 4 | null | 172.21.3.15
+2023-10-23T13:53:55.832123456Z | 5033755 | Connection error | 4 | null | 172.21.3.15
+2023-10-23T13:55:01.543123456Z | 1756467 | Connected to 10.1.0.1 | 4 | null | 172.21.3.15
+;
+
+subqueryInFromWithRenameInSubquery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees_incompatible, (FROM employees
+ | RENAME first_name AS a, last_name AS b
+ | KEEP emp_no, a, b )
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT emp_no, a, b
+| KEEP emp_no, first_name, last_name, a, b
+;
+
+emp_no:long | first_name:text | last_name:text | a:keyword | b:keyword
+10091 | null | null | Amabile | Gomatam
+10091 | Amabile | Gomatam | null | null
+10092 | null | null | Valdiodio | Niizuma
+10092 | Valdiodio | Niizuma | null | null
+10093 | null | null | Sailaja | Desikan
+10093 | Sailaja | Desikan | null | null
+;
+
+subqueryInFromWithRenameInMainQuery
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM sample_data, sample_data_str,
+ (FROM sample_data_ts_nanos
+ | WHERE client_ip == "172.21.3.15") ,
+ (FROM sample_data_ts_long
+ | EVAL @timestamp = @timestamp::date_nanos
+ | WHERE client_ip == "172.21.0.5")
+ metadata _index
+| EVAL client_ip = client_ip::ip
+| DROP event_duration, message
+| RENAME client_ip AS clientip
+| SORT _index, @timestamp
+;
+
+@timestamp:date_nanos | _index:keyword | clientip:ip
+2023-10-23T12:15:03.360Z | sample_data | 172.21.2.162
+2023-10-23T12:27:28.948Z | sample_data | 172.21.2.113
+2023-10-23T13:33:34.937Z | sample_data | 172.21.0.5
+2023-10-23T13:51:54.732Z | sample_data | 172.21.3.15
+2023-10-23T13:52:55.015Z | sample_data | 172.21.3.15
+2023-10-23T13:53:55.832Z | sample_data | 172.21.3.15
+2023-10-23T13:55:01.543Z | sample_data | 172.21.3.15
+2023-10-23T12:15:03.360Z | sample_data_str | 172.21.2.162
+2023-10-23T12:27:28.948Z | sample_data_str | 172.21.2.113
+2023-10-23T13:33:34.937Z | sample_data_str | 172.21.0.5
+2023-10-23T13:51:54.732Z | sample_data_str | 172.21.3.15
+2023-10-23T13:52:55.015Z | sample_data_str | 172.21.3.15
+2023-10-23T13:53:55.832Z | sample_data_str | 172.21.3.15
+2023-10-23T13:55:01.543Z | sample_data_str | 172.21.3.15
+1970-01-01T00:28:18.068014937Z | null | 172.21.0.5
+2023-10-23T13:51:54.732123456Z | null | 172.21.3.15
+2023-10-23T13:52:55.015123456Z | null | 172.21.3.15
+2023-10-23T13:53:55.832123456Z | null | 172.21.3.15
+2023-10-23T13:55:01.543123456Z | null | 172.21.3.15
+;
+
+subqueryInFromWithSampleInSubquery
+required_capability: fork_v9
+required_capability: sample_v3
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data | SAMPLE 0.999999)
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no, client_ip
+| KEEP emp_no, languages, client_ip
+;
+
+emp_no:integer | languages:integer | client_ip:ip
+10091 | 3 | null
+10092 | 1 | null
+10093 | 3 | null
+null | null | 172.21.0.5
+null | null | 172.21.2.113
+null | null | 172.21.2.162
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+;
+
+subqueryInFromWithSampleInMainQuery
+required_capability: fork_v9
+required_capability: sample_v3
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM sample_data | SAMPLE 0.999999)
+| SAMPLE 0.999999
+| WHERE ( emp_no >= 10091 AND emp_no < 10094) OR emp_no IS NULL
+| SORT emp_no, client_ip
+| KEEP emp_no, languages, client_ip
+;
+
+emp_no:integer | languages:integer | client_ip:ip
+10091 | 3 | null
+10092 | 1 | null
+10093 | 3 | null
+null | null | 172.21.0.5
+null | null | 172.21.2.113
+null | null | 172.21.2.162
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+null | null | 172.21.3.15
+;
+
+subqueryInFromWithChangePointInSubquery
+required_capability: fork_v9
+required_capability: change_point
+required_capability: subquery_in_from_command
+
+FROM employees_incompatible, (FROM employees
+ | EVAL salary = CASE(emp_no==10022, 100000, salary)
+ | EVAL salary = CASE(emp_no==10023, 1000000, salary)
+ | KEEP emp_no, salary
+ | CHANGE_POINT salary ON emp_no AS type, pvalue)
+ metadata _index
+| WHERE pvalue is not null and type is not null
+| SORT _index, emp_no
+| KEEP _index, emp_no, salary, type, pvalue
+;
+
+_index:keyword | emp_no:long | salary:long | type:keyword | pvalue:double
+null | 10023 | 1000000 | spike | 0.0
+;
+
+subqueryInFromWithChangePointInMainQuery
+required_capability: fork_v9
+required_capability: change_point
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees_incompatible
+ | KEEP emp_no, salary)
+| EVAL salary = CASE(emp_no==10022, 100000::long, salary)
+| EVAL salary = CASE(emp_no==10023, 1000000::long, salary)
+| CHANGE_POINT salary ON emp_no AS type, pvalue
+| WHERE pvalue is not null and type is not null
+| SORT emp_no
+| KEEP emp_no, salary, type, pvalue
+;
+
+emp_no:long | salary:long | type:keyword | pvalue:double
+10023 | 1000000 | spike | 0.0
+;
+
+subqueryInFromWithCompletionInSubquery
+required_capability: fork_v9
+required_capability: completion
+required_capability: match_operator_colon
+required_capability: subquery_in_from_command
+
+FROM sample_data, (FROM books metadata _score
+ | WHERE title:"war and peace" AND author:"Tolstoy"
+ | SORT _score DESC
+ | LIMIT 2
+ | COMPLETION title WITH { "inference_id" : "test_completion" }
+ | KEEP title, completion)
+| WHERE client_ip == "172.21.0.5" or client_ip IS NULL
+| KEEP title, completion, @timestamp, client_ip
+;
+ignoreOrder:true
+
+title:text | completion:keyword | @timestamp:datetime | client_ip:ip
+War and Peace | WAR AND PEACE | null | null
+War and Peace (Signet Classics) | WAR AND PEACE (SIGNET CLASSICS) | null | null
+null | null | 2023-10-23T13:33:34.937Z | 172.21.0.5
+;
+
+subqueryInFromWithCompletionInMainQuery
+required_capability: fork_v9
+required_capability: completion
+required_capability: subquery_in_from_command
+
+FROM books, (FROM sample_data
+ | WHERE client_ip == "172.21.0.5"
+ | KEEP @timestamp, client_ip)
+| SORT book_no
+| LIMIT 2
+| COMPLETION title WITH { "inference_id" : "test_completion" }
+| KEEP title, completion, @timestamp, client_ip
+;
+ignoreOrder:true
+
+title:text | completion:keyword | @timestamp:datetime | client_ip:ip
+Realms of Tolkien: Images of Middle-earth | REALMS OF TOLKIEN: IMAGES OF MIDDLE-EARTH | null | null
+The brothers Karamazov | THE BROTHERS KARAMAZOV | null | null
+;
+
+subqueryInFromWithRerankInSubquery
+required_capability: fork_v9
+required_capability: rerank
+required_capability: match_operator_colon
+required_capability: subquery_in_from_command
+
+FROM sample_data, (FROM books METADATA _score
+ | WHERE title:"war and peace" AND author:"Tolstoy"
+ | SORT _score DESC, book_no ASC
+ | LIMIT 2
+ | RERANK "war and peace" ON title WITH { "inference_id" : "test_reranker" }
+ | EVAL _score=ROUND(_score, 2)
+ | KEEP book_no, title, author, _score)
+| WHERE client_ip == "172.21.0.5" or client_ip IS NULL
+| KEEP book_no, title, author, _score, @timestamp
+;
+ignoreOrder:true
+
+book_no:keyword | title:text | author:text | _score:double | @timestamp:datetime
+4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03 | null
+5327 | War and Peace | Leo Tolstoy | 0.08 | null
+null | null | null | null | 2023-10-23T13:33:34.937Z
+;
+
+subqueryInFromWithRerankInMainQuery
+required_capability: fork_v9
+required_capability: rerank
+required_capability: subquery_in_from_command
+
+FROM books, (FROM sample_data
+ | WHERE client_ip == "172.21.0.5"
+ | KEEP @timestamp, client_ip)
+| SORT book_no ASC
+| LIMIT 2
+| RERANK "war and peace" ON title WITH { "inference_id" : "test_reranker" }
+| EVAL _score=ROUND(_score, 2)
+| KEEP book_no, title, author, _score, @timestamp
+;
+ignoreOrder:true
+
+book_no:keyword | title:text | author:text | _score:double | @timestamp:datetime
+1211 | The brothers Karamazov | Fyodor Dostoevsky | 0.05 | null
+1463 | Realms of Tolkien: Images of Middle-earth | J. R. R. Tolkien | 0.02 | null
+;
+
+subqueryInFromWithUnionTypesWithCommonTypes
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM employees, (FROM employees_incompatible, employees
+ | EVAL emp_no = emp_no::integer
+ , first_name = first_name::keyword
+ , last_name = last_name::keyword
+ | WHERE emp_no < 10093
+ | KEEP emp_no, first_name, last_name)
+ metadata _index
+| WHERE emp_no >= 10091 AND emp_no < 10094
+| SORT _index, emp_no
+| KEEP _index, emp_no, first_name, last_name
+;
+
+_index:keyword | emp_no:integer | first_name:keyword | last_name:keyword
+employees | 10091 | Amabile | Gomatam
+employees | 10092 | Valdiodio | Niizuma
+employees | 10093 | Sailaja | Desikan
+null | 10091 | Amabile | Gomatam
+null | 10091 | Amabile | Gomatam
+null | 10092 | Valdiodio | Niizuma
+null | 10092 | Valdiodio | Niizuma
+;
+
+subqueryInFromWithUnionTypesWithoutKeepingFieldsWithCommonTypes
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM sample_data,
+ (FROM sample_data_ts_nanos
+ | WHERE client_ip == "172.21.3.15") ,
+ (FROM sample_data_ts_long
+ | EVAL @timestamp = @timestamp::date_nanos
+ | WHERE client_ip == "172.21.0.5")
+ metadata _index
+| SORT _index, @timestamp
+;
+
+@timestamp:date_nanos | client_ip:ip | event_duration:long | message:keyword | _index:keyword
+2023-10-23T12:15:03.360Z | 172.21.2.162 | 3450233 | Connected to 10.1.0.3 | sample_data
+2023-10-23T12:27:28.948Z | 172.21.2.113 | 2764889 | Connected to 10.1.0.2 | sample_data
+2023-10-23T13:33:34.937Z | 172.21.0.5 | 1232382 | Disconnected | sample_data
+2023-10-23T13:51:54.732Z | 172.21.3.15 | 725448 | Connection error | sample_data
+2023-10-23T13:52:55.015Z | 172.21.3.15 | 8268153 | Connection error | sample_data
+2023-10-23T13:53:55.832Z | 172.21.3.15 | 5033755 | Connection error | sample_data
+2023-10-23T13:55:01.543Z | 172.21.3.15 | 1756467 | Connected to 10.1.0.1 | sample_data
+1970-01-01T00:28:18.068014937Z | 172.21.0.5 | 1232382 | Disconnected | null
+2023-10-23T13:51:54.732123456Z | 172.21.3.15 | 725448 | Connection error | null
+2023-10-23T13:52:55.015123456Z | 172.21.3.15 | 8268153 | Connection error | null
+2023-10-23T13:53:55.832123456Z | 172.21.3.15 | 5033755 | Connection error | null
+2023-10-23T13:55:01.543123456Z | 172.21.3.15 | 1756467 | Connected to 10.1.0.1 | null
+;
+
+subqueryInFromWithUnionTypesWithoutCommonTypesExplicitCasting
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM sample_data, sample_data_str,
+ (FROM sample_data_ts_nanos
+ | WHERE client_ip == "172.21.3.15") ,
+ (FROM sample_data_ts_long
+ | EVAL @timestamp = @timestamp::date_nanos
+ | WHERE client_ip == "172.21.0.5")
+ metadata _index
+| EVAL client_ip = client_ip::ip
+| SORT _index, @timestamp
+;
+
+@timestamp:date_nanos | event_duration:long | message:keyword | _index:keyword | client_ip:ip
+2023-10-23T12:15:03.360Z | 3450233 | Connected to 10.1.0.3 | sample_data | 172.21.2.162
+2023-10-23T12:27:28.948Z | 2764889 | Connected to 10.1.0.2 | sample_data | 172.21.2.113
+2023-10-23T13:33:34.937Z | 1232382 | Disconnected | sample_data | 172.21.0.5
+2023-10-23T13:51:54.732Z | 725448 | Connection error | sample_data | 172.21.3.15
+2023-10-23T13:52:55.015Z | 8268153 | Connection error | sample_data | 172.21.3.15
+2023-10-23T13:53:55.832Z | 5033755 | Connection error | sample_data | 172.21.3.15
+2023-10-23T13:55:01.543Z | 1756467 | Connected to 10.1.0.1 | sample_data | 172.21.3.15
+2023-10-23T12:15:03.360Z | 3450233 | Connected to 10.1.0.3 | sample_data_str | 172.21.2.162
+2023-10-23T12:27:28.948Z | 2764889 | Connected to 10.1.0.2 | sample_data_str | 172.21.2.113
+2023-10-23T13:33:34.937Z | 1232382 | Disconnected | sample_data_str | 172.21.0.5
+2023-10-23T13:51:54.732Z | 725448 | Connection error | sample_data_str | 172.21.3.15
+2023-10-23T13:52:55.015Z | 8268153 | Connection error | sample_data_str | 172.21.3.15
+2023-10-23T13:53:55.832Z | 5033755 | Connection error | sample_data_str | 172.21.3.15
+2023-10-23T13:55:01.543Z | 1756467 | Connected to 10.1.0.1 | sample_data_str | 172.21.3.15
+1970-01-01T00:28:18.068014937Z | 1232382 | Disconnected | null | 172.21.0.5
+2023-10-23T13:51:54.732123456Z | 725448 | Connection error | null | 172.21.3.15
+2023-10-23T13:52:55.015123456Z | 8268153 | Connection error | null | 172.21.3.15
+2023-10-23T13:53:55.832123456Z | 5033755 | Connection error | null | 172.21.3.15
+2023-10-23T13:55:01.543123456Z | 1756467 | Connected to 10.1.0.1 | null | 172.21.3.15
+;
+
+subqueryInFromWithUnionTypesWithoutCommonTypesWithoutExplicitCasting
+required_capability: fork_v9
+required_capability: subquery_in_from_command
+
+FROM sample_data, sample_data_str,
+ (FROM sample_data_ts_nanos
+ | WHERE client_ip == "172.21.3.15") ,
+ (FROM sample_data_ts_long
+ | EVAL @timestamp = @timestamp::date_nanos
+ | WHERE client_ip == "172.21.0.5")
+ metadata _index
+| SORT _index, @timestamp
+;
+
+@timestamp:date_nanos | event_duration:long | message:keyword | _index:keyword | client_ip:keyword
+2023-10-23T12:15:03.360Z | 3450233 | Connected to 10.1.0.3 | sample_data | null
+2023-10-23T12:27:28.948Z | 2764889 | Connected to 10.1.0.2 | sample_data | null
+2023-10-23T13:33:34.937Z | 1232382 | Disconnected | sample_data | null
+2023-10-23T13:51:54.732Z | 725448 | Connection error | sample_data | null
+2023-10-23T13:52:55.015Z | 8268153 | Connection error | sample_data | null
+2023-10-23T13:53:55.832Z | 5033755 | Connection error | sample_data | null
+2023-10-23T13:55:01.543Z | 1756467 | Connected to 10.1.0.1 | sample_data | null
+2023-10-23T12:15:03.360Z | 3450233 | Connected to 10.1.0.3 | sample_data_str | null
+2023-10-23T12:27:28.948Z | 2764889 | Connected to 10.1.0.2 | sample_data_str | null
+2023-10-23T13:33:34.937Z | 1232382 | Disconnected | sample_data_str | null
+2023-10-23T13:51:54.732Z | 725448 | Connection error | sample_data_str | null
+2023-10-23T13:52:55.015Z | 8268153 | Connection error | sample_data_str | null
+2023-10-23T13:53:55.832Z | 5033755 | Connection error | sample_data_str | null
+2023-10-23T13:55:01.543Z | 1756467 | Connected to 10.1.0.1 | sample_data_str | null
+1970-01-01T00:28:18.068014937Z | 1232382 | Disconnected | null | null
+2023-10-23T13:51:54.732123456Z | 725448 | Connection error | null | null
+2023-10-23T13:52:55.015123456Z | 8268153 | Connection error | null | null
+2023-10-23T13:53:55.832123456Z | 5033755 | Connection error | null | null
+2023-10-23T13:55:01.543123456Z | 1756467 | Connected to 10.1.0.1 | null | null
+;
diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java
index 4c6c69f979466..70614afa05356 100644
--- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java
+++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java
@@ -1116,7 +1116,7 @@ public void testDataStreamInvalidPatterns() throws Exception {
// Selectors must be outside of date math expressions or else they trip up the selector parsing
testCases.put("", "Invalid index name [ parameters() {
? Map.ofEntries(Map.entry("MAX", 1), Map.entry("TO_IP", 1), Map.entry("TO_STRING", 2))
: Collections.emptyMap(),
EsqlCapabilities.Cap.INLINE_STATS.isEnabled()
+ ) },
+ new Object[] {
+ new Test(
+ """
+ FROM idx, (FROM idx | WHERE host =="127.0.0.1")
+ | WHERE id > 10
+ """,
+ EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled()
+ ? Map.of("FROM", 2, "UNIONALL", 1, "WHERE", 2)
+ : Collections.emptyMap(),
+ Collections.emptyMap(),
+ EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled()
) }
);
}
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index 1353ad9e4a12e..5548249c324c7 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -108,8 +108,21 @@ timeSeriesCommand
: TS indexPatternAndMetadataFields
;
-indexPatternAndMetadataFields:
- indexPattern (COMMA indexPattern)* metadata?
+indexPatternAndMetadataFields
+ : indexPatternOrSubquery (COMMA indexPatternOrSubquery)* metadata?
+ ;
+
+indexPatternOrSubquery
+ : indexPattern
+ | {this.isDevVersion()}? subquery
+ ;
+
+subquery
+ : LP fromCommand (PIPE subqueryProcessingCommand)* RP
+ ;
+
+subqueryProcessingCommand
+ : processingCommand
;
indexPattern
diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/From.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/From.g4
index cfaf8624d98af..025b2055361d9 100644
--- a/x-pack/plugin/esql/src/main/antlr/lexer/From.g4
+++ b/x-pack/plugin/esql/src/main/antlr/lexer/From.g4
@@ -23,7 +23,11 @@ FROM_ASSIGN : ASSIGN -> type(ASSIGN);
METADATA : 'metadata';
// we need this for EXPLAIN
-FROM_RP : RP -> type(RP), popMode;
+// change to double popMode to accommodate subquerys in FROM, when see ')' pop out of subquery(default) mode and from mode
+FROM_RP : RP -> type(RP), popMode, popMode;
+
+// accommodate subQuery inside FROM
+FROM_LP : LP -> type(LP), pushMode(DEFAULT_MODE);
// in 8.14 ` were not allowed
// this has been relaxed in 8.15 since " is used for quoting
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java
index 3cfd1deea10d3..e4e6adf343f05 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java
@@ -1137,6 +1137,11 @@ public enum Cap {
*/
FORK_UNION_TYPES,
+ /**
+ * Support non-correlated subqueries in the FROM clause.
+ */
+ SUBQUERY_IN_FROM_COMMAND(Build.current().isSnapshot()),
+
/**
* Support for the {@code leading_zeros} named parameter.
*/
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlExecutionInfo.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlExecutionInfo.java
index bdcbdd7f38422..3a33e15aed8f7 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlExecutionInfo.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlExecutionInfo.java
@@ -151,6 +151,10 @@ public boolean includeCCSMetadata() {
return includeCCSMetadata;
}
+ public Predicate skipOnFailurePredicate() {
+ return skipOnFailurePredicate;
+ }
+
/**
* Call when ES|QL "planning" phase is complete and query execution (in ComputeService) is about to start.
* Note this is currently only built for a single phase planning/execution model. When INLINE STATS
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java
index 58d74d0907c48..bee94bee44fe5 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java
@@ -33,6 +33,7 @@
import org.elasticsearch.xpack.esql.core.expression.FoldContext;
import org.elasticsearch.xpack.esql.core.expression.Literal;
import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute;
+import org.elasticsearch.xpack.esql.core.expression.NameId;
import org.elasticsearch.xpack.esql.core.expression.NamedExpression;
import org.elasticsearch.xpack.esql.core.expression.Nullability;
import org.elasticsearch.xpack.esql.core.expression.ReferenceAttribute;
@@ -120,6 +121,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.Rename;
import org.elasticsearch.xpack.esql.plan.logical.TimeSeriesAggregate;
+import org.elasticsearch.xpack.esql.plan.logical.UnionAll;
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse;
import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval;
@@ -213,7 +215,8 @@ public class Analyzer extends ParameterizedRuleExecutor("Finish Analysis", Limiter.ONCE, new AddImplicitLimit(), new AddImplicitForkLimit(), new UnionTypesCleanup())
);
@@ -247,12 +250,20 @@ private static class ResolveTable extends ParameterizedAnalyzerRule childrenOutput) {
@@ -2261,4 +2274,329 @@ private static AggregateMetricDoubleBlockBuilder.Metric getMetric(AggregateFunct
return null;
}
}
+
+ /**
+ * Handle union types in UnionAll:
+ * 1. Push down explicit conversion functions into the UnionAll branches
+ * 2. Replace the explicit conversion functions with the corresponding attributes in the UnionAll output
+ * 3. Implicitly cast the outputs of the UnionAll branches to the common type if necessary
+ * 4. Update the attributes referencing the updated UnionAll output
+ */
+ private static class ResolveUnionTypesInUnionAll extends Rule {
+ // The mapping between explicit conversion functions and the corresponding attributes in the UnionAll output
+ private Map convertFunctionsToAttributes;
+ // The list of attributes in the UnionAll output that have been updated. The parent plans
+ // that reference these attributes need to be updated accordingly
+ private List updatedUnionAllOutput;
+
+ @Override
+ public LogicalPlan apply(LogicalPlan plan) {
+ convertFunctionsToAttributes = new HashMap<>();
+ updatedUnionAllOutput = new ArrayList<>();
+ // First push down the conversion functions into the UnionAll branches
+ LogicalPlan planWithConvertFunctionsPushedDown = plan.transformUp(
+ UnionAll.class,
+ unionAll -> maybePushDownConvertFunctions(unionAll, plan)
+ );
+
+ // Then replace the conversion functions with the corresponding attributes in the UnionAll output
+ LogicalPlan planWithConvertFunctionsReplaced = replaceConvertFunctions(planWithConvertFunctionsPushedDown);
+
+ // Next implicitly cast the outputs of the UnionAll branches to the common type if necessary
+ LogicalPlan planWithImplicitCasting = planWithConvertFunctionsReplaced.transformUp(
+ UnionAll.class,
+ unionAll -> unionAll.resolved() ? implicitCastingUnionAllOutput(unionAll, plan) : unionAll
+ );
+
+ // Finally update the attributes referencing the updated UnionAll output
+ return updatedUnionAllOutput.isEmpty()
+ ? planWithImplicitCasting
+ : updateAttributesReferencingUpdatedUnionAllOutput(planWithImplicitCasting);
+ }
+
+ private LogicalPlan maybePushDownConvertFunctions(UnionAll unionAll, LogicalPlan plan) {
+ // collect all conversion functions in the plan that convert the unionAll outputs to a different type
+ Map convertFunctions = collectConvertFunctions(unionAll, plan);
+ if (convertFunctions.isEmpty()) {
+ // nothing to push down
+ return unionAll;
+ }
+
+ // push down the conversion functions into the unionAll branches
+ List newChildren = new ArrayList<>(unionAll.children().size());
+ boolean outputChanged = false;
+ for (LogicalPlan child : unionAll.children()) {
+ List childOutput = child.output();
+ List newAliases = new ArrayList<>();
+ List newChildOutput = new ArrayList<>(childOutput.size());
+ for (Attribute oldAttr : childOutput) {
+ AbstractConvertFunction convertFunction = convertFunctions.get(oldAttr.name());
+ // if the name of the attribute matches, and the data type is different, we need to add a conversion function
+ if (convertFunction != null && oldAttr.dataType() != convertFunction.dataType()) {
+ // create a new alias for the conversion function
+ Alias newAlias = new Alias(
+ oldAttr.source(),
+ oldAttr.name(),
+ convertFunction.replaceChildren(Collections.singletonList(oldAttr))
+ );
+ newAliases.add(newAlias);
+ newChildOutput.add(newAlias.toAttribute());
+ outputChanged = true;
+ } else {
+ newChildOutput.add(oldAttr);
+ }
+ }
+ newChildren.add(maybePushDownConvertFunctionsToChild(child, newAliases, newChildOutput));
+ }
+
+ return outputChanged ? rebuildUnionAllOutput(unionAll, newChildren, convertFunctions) : unionAll;
+ }
+
+ private Map collectConvertFunctions(UnionAll unionAll, LogicalPlan plan) {
+ Map convertFunctions = new HashMap<>();
+ plan.forEachDown(p -> p.forEachExpression(AbstractConvertFunction.class, f -> {
+ if (f.field() instanceof Attribute attr && unionAll.output().contains(attr)) {
+ convertFunctions.putIfAbsent(attr.name(), f);
+ }
+ }));
+ return convertFunctions;
+ }
+
+ private LogicalPlan maybePushDownConvertFunctionsToChild(LogicalPlan child, List aliases, List output) {
+ // Fork/UnionAll adds an EsqlProject on top of each child plan during resolveFork, check this pattern before pushing down
+ if (aliases.isEmpty() == false && child instanceof EsqlProject esqlProject) {
+ LogicalPlan childOfProject = esqlProject.child();
+ Eval eval = new Eval(childOfProject.source(), childOfProject, aliases);
+ return new EsqlProject(esqlProject.source(), eval, output);
+ }
+ return child;
+ }
+
+ private LogicalPlan rebuildUnionAllOutput(
+ UnionAll unionAll,
+ List newChildren,
+ Map convertFunctions
+ ) {
+ List newOutput = new ArrayList<>();
+ for (Attribute oldAttr : unionAll.output()) {
+ DataType targetType = convertFunctions.containsKey(oldAttr.name())
+ ? convertFunctions.get(oldAttr.name()).dataType()
+ : oldAttr.dataType();
+ if (oldAttr.dataType() != targetType) {
+ ReferenceAttribute newAttr = new ReferenceAttribute(
+ oldAttr.source(),
+ null,
+ oldAttr.name(),
+ targetType,
+ oldAttr.nullable(),
+ oldAttr.id(),
+ oldAttr.synthetic()
+ );
+ newOutput.add(newAttr);
+ convertFunctionsToAttributes.putIfAbsent(convertFunctions.get(oldAttr.name()), newAttr);
+ } else {
+ newOutput.add(oldAttr);
+ }
+ }
+ return new UnionAll(unionAll.source(), newChildren, newOutput);
+ }
+
+ private LogicalPlan replaceConvertFunctions(LogicalPlan plan) {
+ if (convertFunctionsToAttributes.isEmpty()) {
+ return plan;
+ }
+ return plan.transformExpressionsUp(AbstractConvertFunction.class, expr -> {
+ Attribute attr = convertFunctionsToAttributes.get(expr);
+ return attr != null ? attr : expr;
+ });
+ }
+
+ private LogicalPlan implicitCastingUnionAllOutput(UnionAll unionAll, LogicalPlan plan) {
+ // build a map of UnionAll output to a list of LogicalPlan that reference this output
+ Map> outputToPlans = outputToPlans(unionAll, plan);
+
+ List> outputs = unionAll.children().stream().map(LogicalPlan::output).toList();
+ List commonTypes = commonTypes(outputs);
+
+ Map indexToCommonType = new HashMap<>();
+
+ // Cast each branch's output to the common type
+ List newChildren = new ArrayList<>(unionAll.children().size());
+ boolean outputChanged = false;
+ for (LogicalPlan child : unionAll.children()) {
+ List newAliases = new ArrayList<>();
+ List oldChildOutput = child.output();
+ List newChildOutput = new ArrayList<>(oldChildOutput.size());
+ for (int i = 0; i < oldChildOutput.size(); i++) {
+ Attribute oldOutput = oldChildOutput.get(i);
+ DataType targetType = commonTypes.get(i);
+ Attribute resolved = resolveAttribute(
+ oldOutput,
+ targetType,
+ i,
+ outputs,
+ unionAll,
+ outputToPlans,
+ newAliases,
+ indexToCommonType
+ );
+ newChildOutput.add(resolved);
+ if (resolved != oldOutput) {
+ outputChanged = true;
+ }
+ }
+ // create a new eval for the casting expressions, and push it down under the EsqlProject
+ newChildren.add(maybePushDownConvertFunctionsToChild(child, newAliases, newChildOutput));
+ }
+
+ // Update common types with overrides
+ indexToCommonType.forEach(commonTypes::set);
+
+ return outputChanged ? rebuildUnionAllOutput(unionAll, newChildren, commonTypes) : unionAll;
+ }
+
+ private Map> outputToPlans(UnionAll unionAll, LogicalPlan plan) {
+ Map> outputToPlans = new HashMap<>();
+ plan.forEachDown(p -> p.forEachExpression(Attribute.class, attr -> {
+ if (p instanceof UnionAll == false && p instanceof Project == false && unionAll.output().contains(attr)) {
+ outputToPlans.computeIfAbsent(attr, k -> new ArrayList<>()).add(p);
+ }
+ }));
+ return outputToPlans;
+ }
+
+ private List commonTypes(List> outputs) {
+ int columnCount = outputs.get(0).size();
+ List commonTypes = new ArrayList<>(columnCount);
+ for (int i = 0; i < columnCount; i++) {
+ DataType type = outputs.get(0).get(i).dataType();
+ for (List out : outputs) {
+ type = commonType(type, out.get(i).dataType());
+ }
+ commonTypes.add(type);
+ }
+ return commonTypes;
+ }
+
+ private DataType commonType(DataType t1, DataType t2) {
+ if (t1 == null || t2 == null) {
+ return null;
+ }
+ if (t1.isDate() && t2.isDate() && t1 != t2) {
+ return DATE_NANOS;
+ }
+ return EsqlDataTypeConverter.commonType(t1, t2);
+ }
+
+ private Attribute resolveAttribute(
+ Attribute oldAttr,
+ DataType targetType,
+ int columnIndex,
+ List> outputs,
+ UnionAll unionAll,
+ Map> outputToPlans,
+ List newAliases,
+ Map indexToCommonType
+ ) {
+ if (targetType == null) {
+ return createUnsupportedOrNull(oldAttr, columnIndex, outputs, unionAll, outputToPlans, newAliases, indexToCommonType);
+ }
+
+ if (targetType != NULL && oldAttr.dataType() != targetType) {
+ var converterFactory = EsqlDataTypeConverter.converterFunctionFactory(targetType);
+ if (converterFactory != null) {
+ var converter = converterFactory.apply(oldAttr.source(), oldAttr);
+ if (converter != null) {
+ Alias alias = new Alias(oldAttr.source(), oldAttr.name(), converter);
+ newAliases.add(alias);
+ return alias.toAttribute();
+ }
+ }
+ }
+ return oldAttr;
+ }
+
+ private Attribute createUnsupportedOrNull(
+ Attribute oldAttr,
+ int columnIndex,
+ List> outputs,
+ UnionAll unionAll,
+ Map> outputToPlans,
+ List newAliases,
+ Map indexToCommonType
+ ) {
+ Attribute unionAttr = unionAll.output().get(columnIndex);
+
+ if (outputToPlans.containsKey(unionAttr)) {
+ // Unsupported attribute
+ List dataTypes = collectIncompatibleTypes(columnIndex, outputs);
+ UnsupportedAttribute unsupported = new UnsupportedAttribute(
+ oldAttr.source(),
+ oldAttr.name(),
+ new UnsupportedEsField(oldAttr.name(), dataTypes),
+ "Column [" + oldAttr.name() + "] has conflicting data types in subqueries: " + dataTypes,
+ oldAttr.id()
+ );
+ newAliases.add(new Alias(oldAttr.source(), oldAttr.name(), unsupported));
+ indexToCommonType.putIfAbsent(columnIndex, UNSUPPORTED);
+ return unsupported;
+ } else {
+ // Null alias with keyword type
+ Alias nullAlias = new Alias(oldAttr.source(), oldAttr.name(), new Literal(oldAttr.source(), null, KEYWORD));
+ newAliases.add(nullAlias);
+ indexToCommonType.putIfAbsent(columnIndex, KEYWORD);
+ return nullAlias.toAttribute();
+ }
+ }
+
+ private List collectIncompatibleTypes(int columnIndex, List> outputs) {
+ List dataTypes = new ArrayList<>();
+ for (List out : outputs) {
+ Attribute attr = out.get(columnIndex);
+ if (attr instanceof FieldAttribute fa && fa.field() instanceof InvalidMappedField imf) {
+ dataTypes.addAll(imf.types().stream().map(DataType::typeName).toList());
+ } else {
+ dataTypes.add(attr.dataType().typeName());
+ }
+ }
+ return dataTypes;
+ }
+
+ private UnionAll rebuildUnionAllOutput(UnionAll unionAll, List newChildren, List commonTypes) {
+ // Rebuild the newUnionAll's output to ensure the correct attributes are used
+ List oldOutput = unionAll.output();
+ List newOutput = new ArrayList<>(oldOutput.size());
+
+ for (int i = 0; i < oldOutput.size(); i++) {
+ Attribute oldAttr = oldOutput.get(i);
+ DataType commonType = commonTypes.get(i);
+
+ if (oldAttr.dataType() != commonType) {
+ // keep the id unchanged, otherwise the downstream operators won't recognize the attribute
+ ReferenceAttribute newAttr = new ReferenceAttribute(
+ oldAttr.source(),
+ null,
+ oldAttr.name(),
+ commonType,
+ oldAttr.nullable(),
+ oldAttr.id(),
+ oldAttr.synthetic()
+ );
+ newOutput.add(newAttr);
+ updatedUnionAllOutput.add(newAttr);
+ } else {
+ newOutput.add(oldAttr);
+ }
+ }
+ return new UnionAll(unionAll.source(), newChildren, newOutput);
+ }
+
+ private LogicalPlan updateAttributesReferencingUpdatedUnionAllOutput(LogicalPlan plan) {
+ Map idToUpdatedAttr = updatedUnionAllOutput.stream().collect(Collectors.toMap(Attribute::id, attr -> attr));
+ return plan.transformExpressionsUp(Attribute.class, expr -> {
+ Attribute updated = idToUpdatedAttr.get(expr.id());
+ return (updated != null && expr.dataType() != updated.dataType()) ? updated : expr;
+ });
+ }
+ }
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java
index b941bce429579..65da6a3a54a38 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java
@@ -20,7 +20,8 @@ public record AnalyzerContext(
IndexResolution indexResolution,
Map lookupResolution,
EnrichResolution enrichResolution,
- InferenceResolution inferenceResolution
+ InferenceResolution inferenceResolution,
+ Map subqueryResolution
) {
// Currently for tests only, since most do not test lookups
// TODO: make this even simpler, remove the enrichResolution for tests that do not require it (most tests)
@@ -31,6 +32,17 @@ public AnalyzerContext(
EnrichResolution enrichResolution,
InferenceResolution inferenceResolution
) {
- this(configuration, functionRegistry, indexResolution, Map.of(), enrichResolution, inferenceResolution);
+ this(configuration, functionRegistry, indexResolution, Map.of(), enrichResolution, inferenceResolution, Map.of());
+ }
+
+ public AnalyzerContext(
+ Configuration configuration,
+ EsqlFunctionRegistry functionRegistry,
+ IndexResolution indexResolution,
+ Map lookupResolution,
+ EnrichResolution enrichResolution,
+ InferenceResolution inferenceResolution
+ ) {
+ this(configuration, functionRegistry, indexResolution, lookupResolution, enrichResolution, inferenceResolution, Map.of());
}
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java
index fba3fa3b966c3..8b36714ca3c9a 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java
@@ -8,6 +8,7 @@
package org.elasticsearch.xpack.esql.analysis;
import org.elasticsearch.index.IndexMode;
+import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
import org.elasticsearch.xpack.esql.core.util.Holder;
import org.elasticsearch.xpack.esql.expression.function.UnresolvedFunction;
import org.elasticsearch.xpack.esql.plan.IndexPattern;
@@ -16,7 +17,9 @@
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
import java.util.ArrayList;
+import java.util.HashSet;
import java.util.List;
+import java.util.Set;
/**
* This class is part of the planner. Acts somewhat like a linker, to find the indices and enrich policies referenced by the query.
@@ -29,9 +32,10 @@ public record PreAnalysis(
List enriches,
List lookupIndices,
boolean supportsAggregateMetricDouble,
- boolean supportsDenseVector
+ boolean supportsDenseVector,
+ Set subqueryIndices
) {
- public static final PreAnalysis EMPTY = new PreAnalysis(null, null, List.of(), List.of(), false, false);
+ public static final PreAnalysis EMPTY = new PreAnalysis(null, null, List.of(), List.of(), false, false, Set.of());
}
public PreAnalysis preAnalyze(LogicalPlan plan) {
@@ -46,12 +50,18 @@ protected PreAnalysis doPreAnalyze(LogicalPlan plan) {
Holder indexMode = new Holder<>();
Holder index = new Holder<>();
List lookupIndices = new ArrayList<>();
+ Set subqueryIndices = new HashSet<>();
plan.forEachUp(UnresolvedRelation.class, p -> {
if (p.indexMode() == IndexMode.LOOKUP) {
lookupIndices.add(p.indexPattern());
} else if (indexMode.get() == null || indexMode.get() == p.indexMode()) {
indexMode.set(p.indexMode());
- index.set(p.indexPattern());
+ // the index pattern from main query is always the first to be seen
+ index.setIfAbsent(p.indexPattern());
+ // collect subquery index patterns
+ if (EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled()) {
+ collectSubqueryIndexPattern(p, subqueryIndices, index.get());
+ }
} else {
throw new IllegalStateException("index mode is already set");
}
@@ -96,7 +106,26 @@ protected PreAnalysis doPreAnalyze(LogicalPlan plan) {
unresolvedEnriches,
lookupIndices,
indexMode.get() == IndexMode.TIME_SERIES || supportsAggregateMetricDouble.get(),
- supportsDenseVector.get()
+ supportsDenseVector.get(),
+ subqueryIndices
);
}
+
+ private void collectSubqueryIndexPattern(
+ UnresolvedRelation relation,
+ Set subqueryIndices,
+ IndexPattern mainIndexPattern
+ ) {
+ IndexPattern pattern = relation.indexPattern();
+ boolean isLookup = relation.indexMode() == IndexMode.LOOKUP;
+ boolean isMainIndexPattern = pattern == mainIndexPattern;
+ /*if the subquery's index pattern is the same as the main query, it won't be added
+ * to the subquery indices set, if Analyzer doesn't find the subquery' indexResolution,
+ * it falls back to the main query's indexResolution
+ */
+ if (isLookup || isMainIndexPattern) {
+ return;
+ }
+ subqueryIndices.add(pattern);
+ }
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
index ae346e4d52449..473011ee611cc 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
@@ -42,6 +42,7 @@
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownConjunctionsToKnnPrefilters;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEnrich;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEval;
+import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownFilterAndLimitIntoUnionAll;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownInferencePlan;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownJoinPastProject;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownRegexExtract;
@@ -203,6 +204,7 @@ protected static Batch operators(boolean local) {
new PushDownEnrich(),
new PushDownJoinPastProject(),
new PushDownAndCombineOrderBy(),
+ new PushDownFilterAndLimitIntoUnionAll(),
new PruneRedundantOrderBy(),
new PruneRedundantSortClauses(),
new PruneLeftJoinOnNullMatchingField(),
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownFilterAndLimitIntoUnionAll.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownFilterAndLimitIntoUnionAll.java
new file mode 100644
index 0000000000000..0a5130ee454a0
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownFilterAndLimitIntoUnionAll.java
@@ -0,0 +1,295 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.optimizer.rules.logical;
+
+import org.elasticsearch.core.Tuple;
+import org.elasticsearch.xpack.esql.core.expression.Alias;
+import org.elasticsearch.xpack.esql.core.expression.Attribute;
+import org.elasticsearch.xpack.esql.core.expression.AttributeMap;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.expression.NamedExpression;
+import org.elasticsearch.xpack.esql.expression.predicate.Predicates;
+import org.elasticsearch.xpack.esql.plan.logical.Eval;
+import org.elasticsearch.xpack.esql.plan.logical.Filter;
+import org.elasticsearch.xpack.esql.plan.logical.Limit;
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.Project;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
+import org.elasticsearch.xpack.esql.plan.logical.UnionAll;
+import org.elasticsearch.xpack.esql.rule.Rule;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.function.Predicate;
+
+import static org.elasticsearch.xpack.esql.core.expression.Attribute.SYNTHETIC_ATTRIBUTE_NAME_SEPARATOR;
+import static org.elasticsearch.xpack.esql.core.expression.Attribute.rawTemporaryName;
+
+/**
+ * Push down filters that can be evaluated by the UnionAll child to each child, below the added
+ * {@code Limit} and {@code Subquery}, so that the filters can be pushed down further to the
+ * data source when possible. Filters that cannot be pushed down remain above the UnionAll.
+ *
+ * Also push down the {@code Limit} added by {@code AddImplicitForkLimit} below the
+ * {@code Subquery}, so that the other rules related to {@code Limit} optimization can be applied.
+ */
+public final class PushDownFilterAndLimitIntoUnionAll extends Rule {
+
+ @Override
+ public LogicalPlan apply(LogicalPlan logicalPlan) {
+ // push down filter below UnionAll if possible
+ LogicalPlan planWithFilterPushedDownPastUnionAll = logicalPlan.transformDown(
+ Filter.class,
+ filter -> filter.child() instanceof UnionAll unionAll ? maybePushDownPastUnionAll(filter, unionAll) : filter
+ );
+ // push down limit or limit + filter below Subquery
+ return planWithFilterPushedDownPastUnionAll.transformDown(
+ Limit.class,
+ PushDownFilterAndLimitIntoUnionAll::pushLimitAndFilterPastSubquery
+ );
+ }
+
+ /* Push down filters that can be evaluated by the UnionAll branch to each branch,
+ * so that the filters can be pushed down further to the data source when possible.
+ * Filters that cannot be pushed down remain above the UnionAll.
+ *
+ * The children of a UnionAll/Fork plan has a similar pattern, as Fork adds EsqlProject,
+ * an optional Eval and Limit on top of its actual children.
+ * UnionAll
+ * EsqlProject
+ * Eval (optional) - added by Fork when the output of each UnionAll child are not exactly the same
+ * Limit
+ * EsRelation
+ * EsqlProject
+ * Eval (optional)
+ * Limit
+ * Subquery
+ * Limit - CombineProjections may remove the EsqlProject on top of the limit
+ * Subquery
+ *
+ * Push down the filter below limit when possible
+ */
+ private static LogicalPlan maybePushDownPastUnionAll(Filter filter, UnionAll unionAll) {
+ List pushable = new ArrayList<>();
+ List nonPushable = new ArrayList<>();
+ for (Expression exp : Predicates.splitAnd(filter.condition())) {
+ if (exp.references().subsetOf(unionAll.outputSet())) {
+ pushable.add(exp);
+ } else {
+ nonPushable.add(exp);
+ }
+ }
+ if (pushable.isEmpty()) {
+ return filter; // nothing to push down
+ }
+ // Push the filter down to each child of the UnionAll, the child of a UnionAll is always
+ // a project followed by an optional eval and then limit or a limit added by fork and
+ // then the real child, if there is unknown pattern, keep the filter and UnionAll plan unchanged
+ List newChildren = new ArrayList<>();
+ boolean changed = false;
+ for (LogicalPlan child : unionAll.children()) {
+ LogicalPlan newChild = switch (child) {
+ case Project project -> maybePushDownFilterPastProjectForUnionAllChild(pushable, project);
+ case Limit limit -> maybePushDownFilterPastLimitForUnionAllChild(pushable, limit);
+ default -> null; // TODO add a general push down for unexpected pattern
+ };
+
+ if (newChild == null) {
+ // Unexpected pattern, keep plan unchanged without pushing down filters
+ return filter;
+ }
+
+ if (newChild != child) {
+ changed = true;
+ newChildren.add(newChild);
+ } else {
+ // Theoretically, all the pushable predicates should be pushed down into each child,
+ // in case one child is not changed, preserve the filter on top of UnionAll to make sure
+ // correct results are returned and avoid infinite loop of the rule.
+ return filter;
+ }
+ }
+
+ if (changed == false) { // nothing changed, return the original plan
+ return filter;
+ }
+
+ LogicalPlan newUnionAll = unionAll.replaceChildren(newChildren);
+ if (nonPushable.isEmpty()) {
+ return newUnionAll;
+ } else {
+ return filter.with(newUnionAll, Predicates.combineAnd(nonPushable));
+ }
+ }
+
+ private static LogicalPlan maybePushDownFilterPastProjectForUnionAllChild(List pushable, Project project) {
+ List resolvedPushable = resolvePushableAgainstOutput(pushable, project.projections());
+ if (resolvedPushable == null) {
+ return project;
+ }
+ LogicalPlan child = project.child();
+ if (child instanceof Eval eval) {
+ return pushDownFilterPastEvalForUnionAllChild(resolvedPushable, project, eval);
+ } else if (child instanceof Limit limit) {
+ LogicalPlan newLimit = pushDownFilterPastLimitForUnionAllChild(resolvedPushable, limit);
+ return project.replaceChild(newLimit);
+ }
+ return project;
+ }
+
+ private static LogicalPlan maybePushDownFilterPastLimitForUnionAllChild(List pushable, Limit limit) {
+ List resolvedPushable = resolvePushableAgainstOutput(pushable, limit.output());
+ if (resolvedPushable == null) {
+ return limit;
+ }
+ return pushDownFilterPastLimitForUnionAllChild(resolvedPushable, limit);
+ }
+
+ /**
+ * Attempts to resolve all pushable expressions against the given output attributes.
+ * Returns a fully resolved list if successful, or null if any expression cannot be resolved.
+ */
+ private static List resolvePushableAgainstOutput(List pushable, List extends NamedExpression> output) {
+ List resolved = new ArrayList<>();
+ for (Expression exp : pushable) {
+ Expression replaced = resolveUnionAllOutputByName(exp, output);
+ // Make sure the pushable predicates can find their corresponding attributes in the output
+ if (replaced == null || replaced == exp) {
+ // cannot find the attribute in the child project, cannot push down this filter
+ return null;
+ }
+ resolved.add(replaced);
+ }
+ // If some pushable predicates cannot be resolved against the output, cannot push filter down.
+ // This should not happen, however we need to be cautious here, if the predicate is removed from
+ // the main query, and it is not pushed down into the UnionAll child, the result will be incorrect.
+ return resolved.size() == pushable.size() ? resolved : null;
+ }
+
+ private static LogicalPlan pushDownFilterPastEvalForUnionAllChild(List pushable, Project project, Eval eval) {
+ // if the pushable references any attribute created by the eval, we cannot push down
+ AttributeMap evalAliases = buildEvaAliases(eval);
+ Tuple, List> pushablesAndNonPushables = splitPushableAndNonPushablePredicates(
+ pushable,
+ exp -> exp.references().stream().anyMatch(evalAliases::containsKey)
+ );
+ List pushables = pushablesAndNonPushables.v1();
+ List nonPushables = pushablesAndNonPushables.v2();
+
+ LogicalPlan evalChild = eval.child();
+
+ // Nothing to push down under eval and limit
+ if (pushables.isEmpty()) {
+ return nonPushables.isEmpty()
+ ? project // nothing at all
+ : withFilter(project, eval, nonPushables); // Push down filter references eval created attributes below project, above eval
+ }
+
+ // Push down all pushable predicates below eval and limit
+ if (evalChild instanceof Limit limit) {
+ LogicalPlan newLimit = pushDownFilterPastLimitForUnionAllChild(pushables, limit);
+ LogicalPlan newEval = eval.replaceChild(newLimit);
+
+ return nonPushables.isEmpty() ? project.replaceChild(newEval) : withFilter(project, newEval, nonPushables);
+ }
+
+ return project;
+ }
+
+ private static LogicalPlan withFilter(Project project, LogicalPlan child, List predicates) {
+ Expression combined = Predicates.combineAnd(predicates);
+ return project.replaceChild(new Filter(project.source(), child, combined));
+ }
+
+ /**
+ * limit does not create any new attributes, so we should push down all pushable predicates,
+ * the caller should make sure the pushable is really pushable.
+ */
+ private static LogicalPlan pushDownFilterPastLimitForUnionAllChild(List pushable, Limit limit) {
+ if (pushable.isEmpty()) {
+ return limit;
+ }
+ Expression combined = Predicates.combineAnd(pushable);
+ Filter pushed = new Filter(limit.source(), limit.child(), combined);
+ return limit.replaceChild(pushed);
+ }
+
+ private static AttributeMap buildEvaAliases(Eval eval) {
+ AttributeMap.Builder builder = AttributeMap.builder();
+ for (Alias alias : eval.fields()) {
+ builder.put(alias.toAttribute(), alias.child());
+ }
+ return builder.build();
+ }
+
+ private static Tuple, List> splitPushableAndNonPushablePredicates(
+ List predicates,
+ Predicate nonPushableCheck
+ ) {
+ List pushable = new ArrayList<>();
+ List nonPushable = new ArrayList<>();
+ for (Expression exp : predicates) {
+ if (nonPushableCheck.test(exp)) {
+ nonPushable.add(exp);
+ } else {
+ pushable.add(exp);
+ }
+ }
+ return Tuple.tuple(pushable, nonPushable);
+ }
+
+ /**
+ * The UnionAll/Fork outputs have the same names as it children's outputs, however they have different ids.
+ * Convert the pushable predicates to use the child's attributes, so that they can be pushed down further.
+ */
+ private static Expression resolveUnionAllOutputByName(Expression expr, List extends NamedExpression> namedExpressions) {
+ // A temporary expression is created with temporary attributes names, as sometimes transform expression does not transform
+ // one ReferenceAttribute to another ReferenceAttribute with the same name, different id successfully.
+ String UNIONALL = "unionall";
+ // rename the output of the UnionAll to a temporary name with a prefix
+ Expression renamed = expr.transformUp(Attribute.class, attr -> {
+ for (NamedExpression ne : namedExpressions) {
+ if (ne.name().equals(attr.name())) {
+ // $$subquery$attr.name()
+ return attr.withName(rawTemporaryName(UNIONALL, ne.name()));
+ }
+ }
+ return attr;
+ });
+
+ String prefix = Attribute.SYNTHETIC_ATTRIBUTE_NAME_PREFIX + UNIONALL + SYNTHETIC_ATTRIBUTE_NAME_SEPARATOR;
+ return renamed.transformUp(Attribute.class, attr -> {
+ String originalName = attr.name().startsWith(prefix) ? attr.name().substring(prefix.length()) : attr.name();
+ for (NamedExpression ne : namedExpressions) {
+ if (ne.name().equals(originalName)) {
+ return ne.toAttribute();
+ }
+ }
+ return attr;
+ });
+ }
+
+ /**
+ * Subquery does not create any new attributes, so limit or limit + filter can be pushed down safely.
+ */
+ private static LogicalPlan pushLimitAndFilterPastSubquery(Limit limit) {
+ LogicalPlan child = limit.child();
+ if (child instanceof Subquery subquery) {
+ // push limit - added by AddImplicitForkLimit, below subquery
+ Limit newLimit = limit.replaceChild(subquery.child());
+ return subquery.replaceChild(newLimit);
+ }
+ if (child instanceof Filter filter && filter.child() instanceof Subquery subquery) {
+ // push down both limit - added by AddImplicitForkLimit and filter below subquery
+ Filter newFilter = filter.replaceChild(subquery.child());
+ Limit newLimit = limit.replaceChild(newFilter);
+ return subquery.replaceChild(newLimit);
+ }
+ return limit;
+ }
+}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp
index 9a0de8cf2243e..232043030159a 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp
@@ -463,6 +463,7 @@ FROM_COMMA
FROM_ASSIGN
METADATA
FROM_RP
+FROM_LP
UNQUOTED_SOURCE_PART
UNQUOTED_SOURCE
FROM_UNQUOTED_SOURCE
@@ -627,4 +628,4 @@ SET_MODE
SHOW_MODE
atn:
-[4, 0, 151, 2150, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 611, 8, 0, 10, 0, 12, 0, 614, 9, 0, 1, 0, 3, 0, 617, 8, 0, 1, 0, 3, 0, 620, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 629, 8, 1, 10, 1, 12, 1, 632, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 640, 8, 2, 11, 2, 12, 2, 641, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 4, 35, 929, 8, 35, 11, 35, 12, 35, 930, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 4, 54, 1014, 8, 54, 11, 54, 12, 54, 1015, 1, 54, 1, 54, 3, 54, 1020, 8, 54, 1, 54, 4, 54, 1023, 8, 54, 11, 54, 12, 54, 1024, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 1157, 8, 87, 1, 87, 4, 87, 1160, 8, 87, 11, 87, 12, 87, 1161, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 3, 90, 1171, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 1178, 8, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1183, 8, 93, 10, 93, 12, 93, 1186, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 1194, 8, 93, 10, 93, 12, 93, 1197, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1204, 8, 93, 1, 93, 3, 93, 1207, 8, 93, 3, 93, 1209, 8, 93, 1, 94, 4, 94, 1212, 8, 94, 11, 94, 12, 94, 1213, 1, 95, 4, 95, 1217, 8, 95, 11, 95, 12, 95, 1218, 1, 95, 1, 95, 5, 95, 1223, 8, 95, 10, 95, 12, 95, 1226, 9, 95, 1, 95, 1, 95, 4, 95, 1230, 8, 95, 11, 95, 12, 95, 1231, 1, 95, 4, 95, 1235, 8, 95, 11, 95, 12, 95, 1236, 1, 95, 1, 95, 5, 95, 1241, 8, 95, 10, 95, 12, 95, 1244, 9, 95, 3, 95, 1246, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 4, 95, 1252, 8, 95, 11, 95, 12, 95, 1253, 1, 95, 1, 95, 3, 95, 1258, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 1399, 8, 137, 1, 137, 5, 137, 1402, 8, 137, 10, 137, 12, 137, 1405, 9, 137, 1, 137, 1, 137, 4, 137, 1409, 8, 137, 11, 137, 12, 137, 1410, 3, 137, 1413, 8, 137, 1, 138, 1, 138, 1, 138, 3, 138, 1418, 8, 138, 1, 138, 5, 138, 1421, 8, 138, 10, 138, 12, 138, 1424, 9, 138, 1, 138, 1, 138, 4, 138, 1428, 8, 138, 11, 138, 12, 138, 1429, 3, 138, 1432, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 5, 143, 1456, 8, 143, 10, 143, 12, 143, 1459, 9, 143, 1, 143, 1, 143, 3, 143, 1463, 8, 143, 1, 143, 4, 143, 1466, 8, 143, 11, 143, 12, 143, 1467, 3, 143, 1470, 8, 143, 1, 144, 1, 144, 4, 144, 1474, 8, 144, 11, 144, 12, 144, 1475, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, 1532, 8, 156, 1, 157, 4, 157, 1535, 8, 157, 11, 157, 12, 157, 1536, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 1933, 8, 245, 1, 246, 1, 246, 3, 246, 1937, 8, 246, 1, 246, 5, 246, 1940, 8, 246, 10, 246, 12, 246, 1943, 9, 246, 1, 246, 1, 246, 3, 246, 1947, 8, 246, 1, 246, 4, 246, 1950, 8, 246, 11, 246, 12, 246, 1951, 3, 246, 1954, 8, 246, 1, 247, 1, 247, 4, 247, 1958, 8, 247, 11, 247, 12, 247, 1959, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 2, 630, 1195, 0, 294, 18, 1, 20, 2, 22, 3, 24, 4, 26, 5, 28, 6, 30, 7, 32, 8, 34, 9, 36, 10, 38, 11, 40, 12, 42, 13, 44, 14, 46, 15, 48, 16, 50, 17, 52, 18, 54, 19, 56, 20, 58, 21, 60, 22, 62, 23, 64, 24, 66, 25, 68, 26, 70, 27, 72, 28, 74, 29, 76, 30, 78, 31, 80, 32, 82, 33, 84, 34, 86, 35, 88, 36, 90, 0, 92, 0, 94, 0, 96, 0, 98, 0, 100, 0, 102, 0, 104, 0, 106, 0, 108, 0, 110, 37, 112, 38, 114, 39, 116, 0, 118, 0, 120, 0, 122, 0, 124, 0, 126, 40, 128, 0, 130, 0, 132, 41, 134, 42, 136, 43, 138, 0, 140, 0, 142, 0, 144, 0, 146, 0, 148, 0, 150, 0, 152, 0, 154, 0, 156, 0, 158, 0, 160, 0, 162, 0, 164, 0, 166, 44, 168, 45, 170, 46, 172, 0, 174, 0, 176, 47, 178, 48, 180, 49, 182, 50, 184, 0, 186, 0, 188, 0, 190, 0, 192, 0, 194, 0, 196, 0, 198, 0, 200, 0, 202, 0, 204, 51, 206, 52, 208, 53, 210, 54, 212, 55, 214, 56, 216, 57, 218, 58, 220, 59, 222, 60, 224, 61, 226, 62, 228, 63, 230, 64, 232, 65, 234, 66, 236, 67, 238, 68, 240, 69, 242, 70, 244, 71, 246, 72, 248, 73, 250, 74, 252, 75, 254, 76, 256, 77, 258, 78, 260, 79, 262, 80, 264, 81, 266, 82, 268, 83, 270, 84, 272, 85, 274, 86, 276, 87, 278, 88, 280, 89, 282, 90, 284, 91, 286, 92, 288, 93, 290, 0, 292, 94, 294, 95, 296, 96, 298, 97, 300, 98, 302, 99, 304, 100, 306, 0, 308, 101, 310, 102, 312, 103, 314, 104, 316, 0, 318, 0, 320, 0, 322, 0, 324, 0, 326, 105, 328, 0, 330, 0, 332, 106, 334, 0, 336, 0, 338, 107, 340, 108, 342, 109, 344, 0, 346, 0, 348, 0, 350, 110, 352, 111, 354, 112, 356, 0, 358, 0, 360, 113, 362, 114, 364, 115, 366, 0, 368, 0, 370, 0, 372, 0, 374, 0, 376, 0, 378, 0, 380, 0, 382, 0, 384, 0, 386, 116, 388, 117, 390, 118, 392, 119, 394, 120, 396, 121, 398, 122, 400, 0, 402, 123, 404, 0, 406, 0, 408, 124, 410, 0, 412, 0, 414, 0, 416, 125, 418, 126, 420, 127, 422, 0, 424, 0, 426, 0, 428, 0, 430, 0, 432, 0, 434, 0, 436, 0, 438, 128, 440, 129, 442, 130, 444, 0, 446, 0, 448, 0, 450, 0, 452, 0, 454, 131, 456, 132, 458, 133, 460, 0, 462, 0, 464, 0, 466, 0, 468, 0, 470, 0, 472, 0, 474, 0, 476, 0, 478, 0, 480, 0, 482, 134, 484, 135, 486, 136, 488, 0, 490, 0, 492, 0, 494, 0, 496, 0, 498, 0, 500, 0, 502, 0, 504, 0, 506, 0, 508, 0, 510, 0, 512, 137, 514, 138, 516, 139, 518, 140, 520, 0, 522, 0, 524, 0, 526, 0, 528, 0, 530, 0, 532, 0, 534, 0, 536, 0, 538, 0, 540, 0, 542, 141, 544, 0, 546, 142, 548, 143, 550, 144, 552, 0, 554, 0, 556, 0, 558, 0, 560, 0, 562, 0, 564, 0, 566, 0, 568, 0, 570, 0, 572, 0, 574, 0, 576, 0, 578, 0, 580, 0, 582, 0, 584, 0, 586, 0, 588, 0, 590, 145, 592, 146, 594, 147, 596, 0, 598, 148, 600, 149, 602, 150, 604, 151, 18, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 36, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 67, 67, 99, 99, 2, 0, 72, 72, 104, 104, 2, 0, 65, 65, 97, 97, 2, 0, 78, 78, 110, 110, 2, 0, 71, 71, 103, 103, 2, 0, 69, 69, 101, 101, 2, 0, 80, 80, 112, 112, 2, 0, 79, 79, 111, 111, 2, 0, 73, 73, 105, 105, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 88, 88, 120, 120, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 68, 68, 100, 100, 2, 0, 83, 83, 115, 115, 2, 0, 86, 86, 118, 118, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 70, 70, 102, 102, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 12, 0, 9, 10, 13, 13, 32, 32, 34, 35, 40, 41, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 12, 0, 9, 10, 13, 13, 32, 32, 34, 34, 40, 41, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 2, 0, 74, 74, 106, 106, 2174, 0, 18, 1, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 28, 1, 0, 0, 0, 0, 30, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 46, 1, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 52, 1, 0, 0, 0, 0, 54, 1, 0, 0, 0, 0, 56, 1, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 68, 1, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 0, 80, 1, 0, 0, 0, 0, 82, 1, 0, 0, 0, 0, 84, 1, 0, 0, 0, 0, 86, 1, 0, 0, 0, 0, 88, 1, 0, 0, 0, 1, 90, 1, 0, 0, 0, 1, 92, 1, 0, 0, 0, 1, 94, 1, 0, 0, 0, 1, 96, 1, 0, 0, 0, 1, 98, 1, 0, 0, 0, 1, 100, 1, 0, 0, 0, 1, 102, 1, 0, 0, 0, 1, 104, 1, 0, 0, 0, 1, 106, 1, 0, 0, 0, 1, 108, 1, 0, 0, 0, 1, 110, 1, 0, 0, 0, 1, 112, 1, 0, 0, 0, 1, 114, 1, 0, 0, 0, 2, 116, 1, 0, 0, 0, 2, 118, 1, 0, 0, 0, 2, 120, 1, 0, 0, 0, 2, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 2, 128, 1, 0, 0, 0, 2, 130, 1, 0, 0, 0, 2, 132, 1, 0, 0, 0, 2, 134, 1, 0, 0, 0, 2, 136, 1, 0, 0, 0, 3, 138, 1, 0, 0, 0, 3, 140, 1, 0, 0, 0, 3, 142, 1, 0, 0, 0, 3, 144, 1, 0, 0, 0, 3, 146, 1, 0, 0, 0, 3, 148, 1, 0, 0, 0, 3, 150, 1, 0, 0, 0, 3, 152, 1, 0, 0, 0, 3, 154, 1, 0, 0, 0, 3, 156, 1, 0, 0, 0, 3, 158, 1, 0, 0, 0, 3, 160, 1, 0, 0, 0, 3, 162, 1, 0, 0, 0, 3, 164, 1, 0, 0, 0, 3, 166, 1, 0, 0, 0, 3, 168, 1, 0, 0, 0, 3, 170, 1, 0, 0, 0, 4, 172, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 4, 176, 1, 0, 0, 0, 4, 178, 1, 0, 0, 0, 4, 180, 1, 0, 0, 0, 5, 182, 1, 0, 0, 0, 5, 204, 1, 0, 0, 0, 5, 206, 1, 0, 0, 0, 5, 208, 1, 0, 0, 0, 5, 210, 1, 0, 0, 0, 5, 212, 1, 0, 0, 0, 5, 214, 1, 0, 0, 0, 5, 216, 1, 0, 0, 0, 5, 218, 1, 0, 0, 0, 5, 220, 1, 0, 0, 0, 5, 222, 1, 0, 0, 0, 5, 224, 1, 0, 0, 0, 5, 226, 1, 0, 0, 0, 5, 228, 1, 0, 0, 0, 5, 230, 1, 0, 0, 0, 5, 232, 1, 0, 0, 0, 5, 234, 1, 0, 0, 0, 5, 236, 1, 0, 0, 0, 5, 238, 1, 0, 0, 0, 5, 240, 1, 0, 0, 0, 5, 242, 1, 0, 0, 0, 5, 244, 1, 0, 0, 0, 5, 246, 1, 0, 0, 0, 5, 248, 1, 0, 0, 0, 5, 250, 1, 0, 0, 0, 5, 252, 1, 0, 0, 0, 5, 254, 1, 0, 0, 0, 5, 256, 1, 0, 0, 0, 5, 258, 1, 0, 0, 0, 5, 260, 1, 0, 0, 0, 5, 262, 1, 0, 0, 0, 5, 264, 1, 0, 0, 0, 5, 266, 1, 0, 0, 0, 5, 268, 1, 0, 0, 0, 5, 270, 1, 0, 0, 0, 5, 272, 1, 0, 0, 0, 5, 274, 1, 0, 0, 0, 5, 276, 1, 0, 0, 0, 5, 278, 1, 0, 0, 0, 5, 280, 1, 0, 0, 0, 5, 282, 1, 0, 0, 0, 5, 284, 1, 0, 0, 0, 5, 286, 1, 0, 0, 0, 5, 288, 1, 0, 0, 0, 5, 290, 1, 0, 0, 0, 5, 292, 1, 0, 0, 0, 5, 294, 1, 0, 0, 0, 5, 296, 1, 0, 0, 0, 5, 298, 1, 0, 0, 0, 5, 300, 1, 0, 0, 0, 5, 302, 1, 0, 0, 0, 5, 304, 1, 0, 0, 0, 5, 308, 1, 0, 0, 0, 5, 310, 1, 0, 0, 0, 5, 312, 1, 0, 0, 0, 5, 314, 1, 0, 0, 0, 6, 316, 1, 0, 0, 0, 6, 318, 1, 0, 0, 0, 6, 320, 1, 0, 0, 0, 6, 322, 1, 0, 0, 0, 6, 324, 1, 0, 0, 0, 6, 326, 1, 0, 0, 0, 6, 328, 1, 0, 0, 0, 6, 332, 1, 0, 0, 0, 6, 334, 1, 0, 0, 0, 6, 336, 1, 0, 0, 0, 6, 338, 1, 0, 0, 0, 6, 340, 1, 0, 0, 0, 6, 342, 1, 0, 0, 0, 7, 344, 1, 0, 0, 0, 7, 346, 1, 0, 0, 0, 7, 348, 1, 0, 0, 0, 7, 350, 1, 0, 0, 0, 7, 352, 1, 0, 0, 0, 7, 354, 1, 0, 0, 0, 8, 356, 1, 0, 0, 0, 8, 358, 1, 0, 0, 0, 8, 360, 1, 0, 0, 0, 8, 362, 1, 0, 0, 0, 8, 364, 1, 0, 0, 0, 8, 366, 1, 0, 0, 0, 8, 368, 1, 0, 0, 0, 8, 370, 1, 0, 0, 0, 8, 372, 1, 0, 0, 0, 8, 374, 1, 0, 0, 0, 8, 376, 1, 0, 0, 0, 8, 378, 1, 0, 0, 0, 8, 380, 1, 0, 0, 0, 8, 382, 1, 0, 0, 0, 8, 384, 1, 0, 0, 0, 8, 386, 1, 0, 0, 0, 8, 388, 1, 0, 0, 0, 8, 390, 1, 0, 0, 0, 9, 392, 1, 0, 0, 0, 9, 394, 1, 0, 0, 0, 9, 396, 1, 0, 0, 0, 9, 398, 1, 0, 0, 0, 10, 400, 1, 0, 0, 0, 10, 402, 1, 0, 0, 0, 10, 404, 1, 0, 0, 0, 10, 406, 1, 0, 0, 0, 10, 408, 1, 0, 0, 0, 10, 410, 1, 0, 0, 0, 10, 412, 1, 0, 0, 0, 10, 414, 1, 0, 0, 0, 10, 416, 1, 0, 0, 0, 10, 418, 1, 0, 0, 0, 10, 420, 1, 0, 0, 0, 11, 422, 1, 0, 0, 0, 11, 424, 1, 0, 0, 0, 11, 426, 1, 0, 0, 0, 11, 428, 1, 0, 0, 0, 11, 430, 1, 0, 0, 0, 11, 432, 1, 0, 0, 0, 11, 434, 1, 0, 0, 0, 11, 436, 1, 0, 0, 0, 11, 438, 1, 0, 0, 0, 11, 440, 1, 0, 0, 0, 11, 442, 1, 0, 0, 0, 12, 444, 1, 0, 0, 0, 12, 446, 1, 0, 0, 0, 12, 448, 1, 0, 0, 0, 12, 450, 1, 0, 0, 0, 12, 452, 1, 0, 0, 0, 12, 454, 1, 0, 0, 0, 12, 456, 1, 0, 0, 0, 12, 458, 1, 0, 0, 0, 13, 460, 1, 0, 0, 0, 13, 462, 1, 0, 0, 0, 13, 464, 1, 0, 0, 0, 13, 466, 1, 0, 0, 0, 13, 468, 1, 0, 0, 0, 13, 470, 1, 0, 0, 0, 13, 472, 1, 0, 0, 0, 13, 474, 1, 0, 0, 0, 13, 476, 1, 0, 0, 0, 13, 478, 1, 0, 0, 0, 13, 480, 1, 0, 0, 0, 13, 482, 1, 0, 0, 0, 13, 484, 1, 0, 0, 0, 13, 486, 1, 0, 0, 0, 14, 488, 1, 0, 0, 0, 14, 490, 1, 0, 0, 0, 14, 492, 1, 0, 0, 0, 14, 494, 1, 0, 0, 0, 14, 496, 1, 0, 0, 0, 14, 498, 1, 0, 0, 0, 14, 500, 1, 0, 0, 0, 14, 502, 1, 0, 0, 0, 14, 504, 1, 0, 0, 0, 14, 506, 1, 0, 0, 0, 14, 512, 1, 0, 0, 0, 14, 514, 1, 0, 0, 0, 14, 516, 1, 0, 0, 0, 14, 518, 1, 0, 0, 0, 15, 520, 1, 0, 0, 0, 15, 522, 1, 0, 0, 0, 15, 524, 1, 0, 0, 0, 15, 526, 1, 0, 0, 0, 15, 528, 1, 0, 0, 0, 15, 530, 1, 0, 0, 0, 15, 532, 1, 0, 0, 0, 15, 534, 1, 0, 0, 0, 15, 536, 1, 0, 0, 0, 15, 538, 1, 0, 0, 0, 15, 540, 1, 0, 0, 0, 15, 542, 1, 0, 0, 0, 15, 544, 1, 0, 0, 0, 15, 546, 1, 0, 0, 0, 15, 548, 1, 0, 0, 0, 15, 550, 1, 0, 0, 0, 16, 552, 1, 0, 0, 0, 16, 554, 1, 0, 0, 0, 16, 556, 1, 0, 0, 0, 16, 558, 1, 0, 0, 0, 16, 560, 1, 0, 0, 0, 16, 562, 1, 0, 0, 0, 16, 564, 1, 0, 0, 0, 16, 566, 1, 0, 0, 0, 16, 568, 1, 0, 0, 0, 16, 570, 1, 0, 0, 0, 16, 572, 1, 0, 0, 0, 16, 574, 1, 0, 0, 0, 16, 576, 1, 0, 0, 0, 16, 578, 1, 0, 0, 0, 16, 580, 1, 0, 0, 0, 16, 582, 1, 0, 0, 0, 16, 584, 1, 0, 0, 0, 16, 586, 1, 0, 0, 0, 16, 588, 1, 0, 0, 0, 16, 590, 1, 0, 0, 0, 16, 592, 1, 0, 0, 0, 16, 594, 1, 0, 0, 0, 17, 596, 1, 0, 0, 0, 17, 598, 1, 0, 0, 0, 17, 600, 1, 0, 0, 0, 17, 602, 1, 0, 0, 0, 17, 604, 1, 0, 0, 0, 18, 606, 1, 0, 0, 0, 20, 623, 1, 0, 0, 0, 22, 639, 1, 0, 0, 0, 24, 645, 1, 0, 0, 0, 26, 660, 1, 0, 0, 0, 28, 669, 1, 0, 0, 0, 30, 680, 1, 0, 0, 0, 32, 693, 1, 0, 0, 0, 34, 703, 1, 0, 0, 0, 36, 710, 1, 0, 0, 0, 38, 717, 1, 0, 0, 0, 40, 725, 1, 0, 0, 0, 42, 734, 1, 0, 0, 0, 44, 740, 1, 0, 0, 0, 46, 749, 1, 0, 0, 0, 48, 756, 1, 0, 0, 0, 50, 764, 1, 0, 0, 0, 52, 772, 1, 0, 0, 0, 54, 779, 1, 0, 0, 0, 56, 784, 1, 0, 0, 0, 58, 791, 1, 0, 0, 0, 60, 798, 1, 0, 0, 0, 62, 807, 1, 0, 0, 0, 64, 821, 1, 0, 0, 0, 66, 830, 1, 0, 0, 0, 68, 838, 1, 0, 0, 0, 70, 846, 1, 0, 0, 0, 72, 855, 1, 0, 0, 0, 74, 867, 1, 0, 0, 0, 76, 879, 1, 0, 0, 0, 78, 886, 1, 0, 0, 0, 80, 893, 1, 0, 0, 0, 82, 905, 1, 0, 0, 0, 84, 914, 1, 0, 0, 0, 86, 920, 1, 0, 0, 0, 88, 928, 1, 0, 0, 0, 90, 934, 1, 0, 0, 0, 92, 939, 1, 0, 0, 0, 94, 945, 1, 0, 0, 0, 96, 949, 1, 0, 0, 0, 98, 953, 1, 0, 0, 0, 100, 957, 1, 0, 0, 0, 102, 961, 1, 0, 0, 0, 104, 965, 1, 0, 0, 0, 106, 969, 1, 0, 0, 0, 108, 973, 1, 0, 0, 0, 110, 977, 1, 0, 0, 0, 112, 981, 1, 0, 0, 0, 114, 985, 1, 0, 0, 0, 116, 989, 1, 0, 0, 0, 118, 994, 1, 0, 0, 0, 120, 1000, 1, 0, 0, 0, 122, 1005, 1, 0, 0, 0, 124, 1010, 1, 0, 0, 0, 126, 1019, 1, 0, 0, 0, 128, 1026, 1, 0, 0, 0, 130, 1030, 1, 0, 0, 0, 132, 1034, 1, 0, 0, 0, 134, 1038, 1, 0, 0, 0, 136, 1042, 1, 0, 0, 0, 138, 1046, 1, 0, 0, 0, 140, 1052, 1, 0, 0, 0, 142, 1059, 1, 0, 0, 0, 144, 1063, 1, 0, 0, 0, 146, 1067, 1, 0, 0, 0, 148, 1071, 1, 0, 0, 0, 150, 1075, 1, 0, 0, 0, 152, 1079, 1, 0, 0, 0, 154, 1083, 1, 0, 0, 0, 156, 1087, 1, 0, 0, 0, 158, 1091, 1, 0, 0, 0, 160, 1095, 1, 0, 0, 0, 162, 1099, 1, 0, 0, 0, 164, 1103, 1, 0, 0, 0, 166, 1107, 1, 0, 0, 0, 168, 1111, 1, 0, 0, 0, 170, 1115, 1, 0, 0, 0, 172, 1119, 1, 0, 0, 0, 174, 1124, 1, 0, 0, 0, 176, 1129, 1, 0, 0, 0, 178, 1133, 1, 0, 0, 0, 180, 1137, 1, 0, 0, 0, 182, 1141, 1, 0, 0, 0, 184, 1145, 1, 0, 0, 0, 186, 1147, 1, 0, 0, 0, 188, 1149, 1, 0, 0, 0, 190, 1152, 1, 0, 0, 0, 192, 1154, 1, 0, 0, 0, 194, 1163, 1, 0, 0, 0, 196, 1165, 1, 0, 0, 0, 198, 1170, 1, 0, 0, 0, 200, 1172, 1, 0, 0, 0, 202, 1177, 1, 0, 0, 0, 204, 1208, 1, 0, 0, 0, 206, 1211, 1, 0, 0, 0, 208, 1257, 1, 0, 0, 0, 210, 1259, 1, 0, 0, 0, 212, 1263, 1, 0, 0, 0, 214, 1267, 1, 0, 0, 0, 216, 1269, 1, 0, 0, 0, 218, 1272, 1, 0, 0, 0, 220, 1275, 1, 0, 0, 0, 222, 1277, 1, 0, 0, 0, 224, 1279, 1, 0, 0, 0, 226, 1281, 1, 0, 0, 0, 228, 1286, 1, 0, 0, 0, 230, 1288, 1, 0, 0, 0, 232, 1294, 1, 0, 0, 0, 234, 1300, 1, 0, 0, 0, 236, 1303, 1, 0, 0, 0, 238, 1306, 1, 0, 0, 0, 240, 1311, 1, 0, 0, 0, 242, 1316, 1, 0, 0, 0, 244, 1320, 1, 0, 0, 0, 246, 1325, 1, 0, 0, 0, 248, 1331, 1, 0, 0, 0, 250, 1334, 1, 0, 0, 0, 252, 1337, 1, 0, 0, 0, 254, 1339, 1, 0, 0, 0, 256, 1345, 1, 0, 0, 0, 258, 1350, 1, 0, 0, 0, 260, 1355, 1, 0, 0, 0, 262, 1358, 1, 0, 0, 0, 264, 1361, 1, 0, 0, 0, 266, 1364, 1, 0, 0, 0, 268, 1366, 1, 0, 0, 0, 270, 1369, 1, 0, 0, 0, 272, 1371, 1, 0, 0, 0, 274, 1374, 1, 0, 0, 0, 276, 1376, 1, 0, 0, 0, 278, 1378, 1, 0, 0, 0, 280, 1380, 1, 0, 0, 0, 282, 1382, 1, 0, 0, 0, 284, 1384, 1, 0, 0, 0, 286, 1386, 1, 0, 0, 0, 288, 1388, 1, 0, 0, 0, 290, 1391, 1, 0, 0, 0, 292, 1412, 1, 0, 0, 0, 294, 1431, 1, 0, 0, 0, 296, 1433, 1, 0, 0, 0, 298, 1438, 1, 0, 0, 0, 300, 1443, 1, 0, 0, 0, 302, 1448, 1, 0, 0, 0, 304, 1469, 1, 0, 0, 0, 306, 1471, 1, 0, 0, 0, 308, 1479, 1, 0, 0, 0, 310, 1481, 1, 0, 0, 0, 312, 1485, 1, 0, 0, 0, 314, 1489, 1, 0, 0, 0, 316, 1493, 1, 0, 0, 0, 318, 1498, 1, 0, 0, 0, 320, 1502, 1, 0, 0, 0, 322, 1506, 1, 0, 0, 0, 324, 1510, 1, 0, 0, 0, 326, 1514, 1, 0, 0, 0, 328, 1523, 1, 0, 0, 0, 330, 1531, 1, 0, 0, 0, 332, 1534, 1, 0, 0, 0, 334, 1538, 1, 0, 0, 0, 336, 1542, 1, 0, 0, 0, 338, 1546, 1, 0, 0, 0, 340, 1550, 1, 0, 0, 0, 342, 1554, 1, 0, 0, 0, 344, 1558, 1, 0, 0, 0, 346, 1563, 1, 0, 0, 0, 348, 1569, 1, 0, 0, 0, 350, 1574, 1, 0, 0, 0, 352, 1578, 1, 0, 0, 0, 354, 1582, 1, 0, 0, 0, 356, 1586, 1, 0, 0, 0, 358, 1591, 1, 0, 0, 0, 360, 1597, 1, 0, 0, 0, 362, 1603, 1, 0, 0, 0, 364, 1609, 1, 0, 0, 0, 366, 1613, 1, 0, 0, 0, 368, 1619, 1, 0, 0, 0, 370, 1623, 1, 0, 0, 0, 372, 1627, 1, 0, 0, 0, 374, 1631, 1, 0, 0, 0, 376, 1635, 1, 0, 0, 0, 378, 1639, 1, 0, 0, 0, 380, 1643, 1, 0, 0, 0, 382, 1647, 1, 0, 0, 0, 384, 1651, 1, 0, 0, 0, 386, 1655, 1, 0, 0, 0, 388, 1659, 1, 0, 0, 0, 390, 1663, 1, 0, 0, 0, 392, 1667, 1, 0, 0, 0, 394, 1676, 1, 0, 0, 0, 396, 1680, 1, 0, 0, 0, 398, 1684, 1, 0, 0, 0, 400, 1688, 1, 0, 0, 0, 402, 1693, 1, 0, 0, 0, 404, 1698, 1, 0, 0, 0, 406, 1702, 1, 0, 0, 0, 408, 1708, 1, 0, 0, 0, 410, 1717, 1, 0, 0, 0, 412, 1721, 1, 0, 0, 0, 414, 1725, 1, 0, 0, 0, 416, 1729, 1, 0, 0, 0, 418, 1733, 1, 0, 0, 0, 420, 1737, 1, 0, 0, 0, 422, 1741, 1, 0, 0, 0, 424, 1746, 1, 0, 0, 0, 426, 1752, 1, 0, 0, 0, 428, 1756, 1, 0, 0, 0, 430, 1760, 1, 0, 0, 0, 432, 1764, 1, 0, 0, 0, 434, 1769, 1, 0, 0, 0, 436, 1773, 1, 0, 0, 0, 438, 1777, 1, 0, 0, 0, 440, 1781, 1, 0, 0, 0, 442, 1785, 1, 0, 0, 0, 444, 1789, 1, 0, 0, 0, 446, 1795, 1, 0, 0, 0, 448, 1802, 1, 0, 0, 0, 450, 1806, 1, 0, 0, 0, 452, 1810, 1, 0, 0, 0, 454, 1814, 1, 0, 0, 0, 456, 1818, 1, 0, 0, 0, 458, 1822, 1, 0, 0, 0, 460, 1826, 1, 0, 0, 0, 462, 1831, 1, 0, 0, 0, 464, 1837, 1, 0, 0, 0, 466, 1841, 1, 0, 0, 0, 468, 1845, 1, 0, 0, 0, 470, 1849, 1, 0, 0, 0, 472, 1853, 1, 0, 0, 0, 474, 1857, 1, 0, 0, 0, 476, 1861, 1, 0, 0, 0, 478, 1865, 1, 0, 0, 0, 480, 1869, 1, 0, 0, 0, 482, 1873, 1, 0, 0, 0, 484, 1877, 1, 0, 0, 0, 486, 1881, 1, 0, 0, 0, 488, 1885, 1, 0, 0, 0, 490, 1890, 1, 0, 0, 0, 492, 1896, 1, 0, 0, 0, 494, 1900, 1, 0, 0, 0, 496, 1904, 1, 0, 0, 0, 498, 1908, 1, 0, 0, 0, 500, 1912, 1, 0, 0, 0, 502, 1916, 1, 0, 0, 0, 504, 1920, 1, 0, 0, 0, 506, 1924, 1, 0, 0, 0, 508, 1932, 1, 0, 0, 0, 510, 1953, 1, 0, 0, 0, 512, 1957, 1, 0, 0, 0, 514, 1961, 1, 0, 0, 0, 516, 1965, 1, 0, 0, 0, 518, 1969, 1, 0, 0, 0, 520, 1973, 1, 0, 0, 0, 522, 1978, 1, 0, 0, 0, 524, 1984, 1, 0, 0, 0, 526, 1988, 1, 0, 0, 0, 528, 1992, 1, 0, 0, 0, 530, 1996, 1, 0, 0, 0, 532, 2000, 1, 0, 0, 0, 534, 2004, 1, 0, 0, 0, 536, 2008, 1, 0, 0, 0, 538, 2012, 1, 0, 0, 0, 540, 2016, 1, 0, 0, 0, 542, 2020, 1, 0, 0, 0, 544, 2023, 1, 0, 0, 0, 546, 2027, 1, 0, 0, 0, 548, 2031, 1, 0, 0, 0, 550, 2035, 1, 0, 0, 0, 552, 2039, 1, 0, 0, 0, 554, 2043, 1, 0, 0, 0, 556, 2047, 1, 0, 0, 0, 558, 2051, 1, 0, 0, 0, 560, 2056, 1, 0, 0, 0, 562, 2060, 1, 0, 0, 0, 564, 2064, 1, 0, 0, 0, 566, 2068, 1, 0, 0, 0, 568, 2072, 1, 0, 0, 0, 570, 2076, 1, 0, 0, 0, 572, 2080, 1, 0, 0, 0, 574, 2084, 1, 0, 0, 0, 576, 2088, 1, 0, 0, 0, 578, 2092, 1, 0, 0, 0, 580, 2096, 1, 0, 0, 0, 582, 2100, 1, 0, 0, 0, 584, 2104, 1, 0, 0, 0, 586, 2108, 1, 0, 0, 0, 588, 2112, 1, 0, 0, 0, 590, 2116, 1, 0, 0, 0, 592, 2120, 1, 0, 0, 0, 594, 2124, 1, 0, 0, 0, 596, 2128, 1, 0, 0, 0, 598, 2133, 1, 0, 0, 0, 600, 2138, 1, 0, 0, 0, 602, 2142, 1, 0, 0, 0, 604, 2146, 1, 0, 0, 0, 606, 607, 5, 47, 0, 0, 607, 608, 5, 47, 0, 0, 608, 612, 1, 0, 0, 0, 609, 611, 8, 0, 0, 0, 610, 609, 1, 0, 0, 0, 611, 614, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 616, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 615, 617, 5, 13, 0, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 619, 1, 0, 0, 0, 618, 620, 5, 10, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 6, 0, 0, 0, 622, 19, 1, 0, 0, 0, 623, 624, 5, 47, 0, 0, 624, 625, 5, 42, 0, 0, 625, 630, 1, 0, 0, 0, 626, 629, 3, 20, 1, 0, 627, 629, 9, 0, 0, 0, 628, 626, 1, 0, 0, 0, 628, 627, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 631, 633, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 42, 0, 0, 634, 635, 5, 47, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 6, 1, 0, 0, 637, 21, 1, 0, 0, 0, 638, 640, 7, 1, 0, 0, 639, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 6, 2, 0, 0, 644, 23, 1, 0, 0, 0, 645, 646, 7, 2, 0, 0, 646, 647, 7, 3, 0, 0, 647, 648, 7, 4, 0, 0, 648, 649, 7, 5, 0, 0, 649, 650, 7, 6, 0, 0, 650, 651, 7, 7, 0, 0, 651, 652, 5, 95, 0, 0, 652, 653, 7, 8, 0, 0, 653, 654, 7, 9, 0, 0, 654, 655, 7, 10, 0, 0, 655, 656, 7, 5, 0, 0, 656, 657, 7, 11, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 6, 3, 1, 0, 659, 25, 1, 0, 0, 0, 660, 661, 7, 7, 0, 0, 661, 662, 7, 5, 0, 0, 662, 663, 7, 12, 0, 0, 663, 664, 7, 10, 0, 0, 664, 665, 7, 2, 0, 0, 665, 666, 7, 3, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 6, 4, 2, 0, 668, 27, 1, 0, 0, 0, 669, 670, 4, 5, 0, 0, 670, 671, 7, 7, 0, 0, 671, 672, 7, 13, 0, 0, 672, 673, 7, 8, 0, 0, 673, 674, 7, 14, 0, 0, 674, 675, 7, 4, 0, 0, 675, 676, 7, 10, 0, 0, 676, 677, 7, 5, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 6, 5, 3, 0, 679, 29, 1, 0, 0, 0, 680, 681, 7, 2, 0, 0, 681, 682, 7, 9, 0, 0, 682, 683, 7, 15, 0, 0, 683, 684, 7, 8, 0, 0, 684, 685, 7, 14, 0, 0, 685, 686, 7, 7, 0, 0, 686, 687, 7, 11, 0, 0, 687, 688, 7, 10, 0, 0, 688, 689, 7, 9, 0, 0, 689, 690, 7, 5, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 6, 6, 4, 0, 692, 31, 1, 0, 0, 0, 693, 694, 7, 16, 0, 0, 694, 695, 7, 10, 0, 0, 695, 696, 7, 17, 0, 0, 696, 697, 7, 17, 0, 0, 697, 698, 7, 7, 0, 0, 698, 699, 7, 2, 0, 0, 699, 700, 7, 11, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 6, 7, 4, 0, 702, 33, 1, 0, 0, 0, 703, 704, 7, 7, 0, 0, 704, 705, 7, 18, 0, 0, 705, 706, 7, 4, 0, 0, 706, 707, 7, 14, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 6, 8, 4, 0, 709, 35, 1, 0, 0, 0, 710, 711, 7, 6, 0, 0, 711, 712, 7, 12, 0, 0, 712, 713, 7, 9, 0, 0, 713, 714, 7, 19, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 6, 9, 4, 0, 716, 37, 1, 0, 0, 0, 717, 718, 7, 14, 0, 0, 718, 719, 7, 10, 0, 0, 719, 720, 7, 15, 0, 0, 720, 721, 7, 10, 0, 0, 721, 722, 7, 11, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 6, 10, 4, 0, 724, 39, 1, 0, 0, 0, 725, 726, 7, 12, 0, 0, 726, 727, 7, 7, 0, 0, 727, 728, 7, 12, 0, 0, 728, 729, 7, 4, 0, 0, 729, 730, 7, 5, 0, 0, 730, 731, 7, 19, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 6, 11, 4, 0, 733, 41, 1, 0, 0, 0, 734, 735, 7, 12, 0, 0, 735, 736, 7, 9, 0, 0, 736, 737, 7, 20, 0, 0, 737, 738, 1, 0, 0, 0, 738, 739, 6, 12, 4, 0, 739, 43, 1, 0, 0, 0, 740, 741, 7, 17, 0, 0, 741, 742, 7, 4, 0, 0, 742, 743, 7, 15, 0, 0, 743, 744, 7, 8, 0, 0, 744, 745, 7, 14, 0, 0, 745, 746, 7, 7, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 6, 13, 4, 0, 748, 45, 1, 0, 0, 0, 749, 750, 7, 17, 0, 0, 750, 751, 7, 9, 0, 0, 751, 752, 7, 12, 0, 0, 752, 753, 7, 11, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 6, 14, 4, 0, 755, 47, 1, 0, 0, 0, 756, 757, 7, 17, 0, 0, 757, 758, 7, 11, 0, 0, 758, 759, 7, 4, 0, 0, 759, 760, 7, 11, 0, 0, 760, 761, 7, 17, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 6, 15, 4, 0, 763, 49, 1, 0, 0, 0, 764, 765, 7, 20, 0, 0, 765, 766, 7, 3, 0, 0, 766, 767, 7, 7, 0, 0, 767, 768, 7, 12, 0, 0, 768, 769, 7, 7, 0, 0, 769, 770, 1, 0, 0, 0, 770, 771, 6, 16, 4, 0, 771, 51, 1, 0, 0, 0, 772, 773, 7, 21, 0, 0, 773, 774, 7, 12, 0, 0, 774, 775, 7, 9, 0, 0, 775, 776, 7, 15, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 6, 17, 5, 0, 778, 53, 1, 0, 0, 0, 779, 780, 7, 11, 0, 0, 780, 781, 7, 17, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 6, 18, 5, 0, 783, 55, 1, 0, 0, 0, 784, 785, 7, 21, 0, 0, 785, 786, 7, 9, 0, 0, 786, 787, 7, 12, 0, 0, 787, 788, 7, 19, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 6, 19, 6, 0, 790, 57, 1, 0, 0, 0, 791, 792, 7, 21, 0, 0, 792, 793, 7, 22, 0, 0, 793, 794, 7, 17, 0, 0, 794, 795, 7, 7, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 6, 20, 7, 0, 797, 59, 1, 0, 0, 0, 798, 799, 7, 10, 0, 0, 799, 800, 7, 5, 0, 0, 800, 801, 7, 14, 0, 0, 801, 802, 7, 10, 0, 0, 802, 803, 7, 5, 0, 0, 803, 804, 7, 7, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 6, 21, 8, 0, 806, 61, 1, 0, 0, 0, 807, 808, 7, 10, 0, 0, 808, 809, 7, 5, 0, 0, 809, 810, 7, 14, 0, 0, 810, 811, 7, 10, 0, 0, 811, 812, 7, 5, 0, 0, 812, 813, 7, 7, 0, 0, 813, 814, 7, 17, 0, 0, 814, 815, 7, 11, 0, 0, 815, 816, 7, 4, 0, 0, 816, 817, 7, 11, 0, 0, 817, 818, 7, 17, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 6, 22, 4, 0, 820, 63, 1, 0, 0, 0, 821, 822, 7, 14, 0, 0, 822, 823, 7, 9, 0, 0, 823, 824, 7, 9, 0, 0, 824, 825, 7, 19, 0, 0, 825, 826, 7, 22, 0, 0, 826, 827, 7, 8, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 6, 23, 9, 0, 829, 65, 1, 0, 0, 0, 830, 831, 4, 24, 1, 0, 831, 832, 7, 21, 0, 0, 832, 833, 7, 22, 0, 0, 833, 834, 7, 14, 0, 0, 834, 835, 7, 14, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 6, 24, 9, 0, 837, 67, 1, 0, 0, 0, 838, 839, 4, 25, 2, 0, 839, 840, 7, 14, 0, 0, 840, 841, 7, 7, 0, 0, 841, 842, 7, 21, 0, 0, 842, 843, 7, 11, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 6, 25, 9, 0, 845, 69, 1, 0, 0, 0, 846, 847, 4, 26, 3, 0, 847, 848, 7, 12, 0, 0, 848, 849, 7, 10, 0, 0, 849, 850, 7, 6, 0, 0, 850, 851, 7, 3, 0, 0, 851, 852, 7, 11, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 6, 26, 9, 0, 854, 71, 1, 0, 0, 0, 855, 856, 4, 27, 4, 0, 856, 857, 7, 14, 0, 0, 857, 858, 7, 9, 0, 0, 858, 859, 7, 9, 0, 0, 859, 860, 7, 19, 0, 0, 860, 861, 7, 22, 0, 0, 861, 862, 7, 8, 0, 0, 862, 863, 5, 95, 0, 0, 863, 864, 5, 128020, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 6, 27, 10, 0, 866, 73, 1, 0, 0, 0, 867, 868, 7, 15, 0, 0, 868, 869, 7, 18, 0, 0, 869, 870, 5, 95, 0, 0, 870, 871, 7, 7, 0, 0, 871, 872, 7, 13, 0, 0, 872, 873, 7, 8, 0, 0, 873, 874, 7, 4, 0, 0, 874, 875, 7, 5, 0, 0, 875, 876, 7, 16, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 6, 28, 11, 0, 878, 75, 1, 0, 0, 0, 879, 880, 7, 16, 0, 0, 880, 881, 7, 12, 0, 0, 881, 882, 7, 9, 0, 0, 882, 883, 7, 8, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 6, 29, 12, 0, 885, 77, 1, 0, 0, 0, 886, 887, 7, 19, 0, 0, 887, 888, 7, 7, 0, 0, 888, 889, 7, 7, 0, 0, 889, 890, 7, 8, 0, 0, 890, 891, 1, 0, 0, 0, 891, 892, 6, 30, 12, 0, 892, 79, 1, 0, 0, 0, 893, 894, 4, 31, 5, 0, 894, 895, 7, 10, 0, 0, 895, 896, 7, 5, 0, 0, 896, 897, 7, 17, 0, 0, 897, 898, 7, 10, 0, 0, 898, 899, 7, 17, 0, 0, 899, 900, 7, 11, 0, 0, 900, 901, 5, 95, 0, 0, 901, 902, 5, 128020, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 6, 31, 12, 0, 904, 81, 1, 0, 0, 0, 905, 906, 7, 12, 0, 0, 906, 907, 7, 7, 0, 0, 907, 908, 7, 5, 0, 0, 908, 909, 7, 4, 0, 0, 909, 910, 7, 15, 0, 0, 910, 911, 7, 7, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 6, 32, 13, 0, 913, 83, 1, 0, 0, 0, 914, 915, 7, 17, 0, 0, 915, 916, 7, 7, 0, 0, 916, 917, 7, 11, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 6, 33, 14, 0, 919, 85, 1, 0, 0, 0, 920, 921, 7, 17, 0, 0, 921, 922, 7, 3, 0, 0, 922, 923, 7, 9, 0, 0, 923, 924, 7, 20, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 6, 34, 15, 0, 926, 87, 1, 0, 0, 0, 927, 929, 8, 23, 0, 0, 928, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 6, 35, 4, 0, 933, 89, 1, 0, 0, 0, 934, 935, 3, 182, 82, 0, 935, 936, 1, 0, 0, 0, 936, 937, 6, 36, 16, 0, 937, 938, 6, 36, 17, 0, 938, 91, 1, 0, 0, 0, 939, 940, 3, 302, 142, 0, 940, 941, 1, 0, 0, 0, 941, 942, 6, 37, 18, 0, 942, 943, 6, 37, 17, 0, 943, 944, 6, 37, 17, 0, 944, 93, 1, 0, 0, 0, 945, 946, 3, 248, 115, 0, 946, 947, 1, 0, 0, 0, 947, 948, 6, 38, 19, 0, 948, 95, 1, 0, 0, 0, 949, 950, 3, 542, 262, 0, 950, 951, 1, 0, 0, 0, 951, 952, 6, 39, 20, 0, 952, 97, 1, 0, 0, 0, 953, 954, 3, 228, 105, 0, 954, 955, 1, 0, 0, 0, 955, 956, 6, 40, 21, 0, 956, 99, 1, 0, 0, 0, 957, 958, 3, 224, 103, 0, 958, 959, 1, 0, 0, 0, 959, 960, 6, 41, 22, 0, 960, 101, 1, 0, 0, 0, 961, 962, 3, 296, 139, 0, 962, 963, 1, 0, 0, 0, 963, 964, 6, 42, 23, 0, 964, 103, 1, 0, 0, 0, 965, 966, 3, 298, 140, 0, 966, 967, 1, 0, 0, 0, 967, 968, 6, 43, 24, 0, 968, 105, 1, 0, 0, 0, 969, 970, 3, 308, 145, 0, 970, 971, 1, 0, 0, 0, 971, 972, 6, 44, 25, 0, 972, 107, 1, 0, 0, 0, 973, 974, 3, 304, 143, 0, 974, 975, 1, 0, 0, 0, 975, 976, 6, 45, 26, 0, 976, 109, 1, 0, 0, 0, 977, 978, 3, 18, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 6, 46, 0, 0, 980, 111, 1, 0, 0, 0, 981, 982, 3, 20, 1, 0, 982, 983, 1, 0, 0, 0, 983, 984, 6, 47, 0, 0, 984, 113, 1, 0, 0, 0, 985, 986, 3, 22, 2, 0, 986, 987, 1, 0, 0, 0, 987, 988, 6, 48, 0, 0, 988, 115, 1, 0, 0, 0, 989, 990, 3, 182, 82, 0, 990, 991, 1, 0, 0, 0, 991, 992, 6, 49, 16, 0, 992, 993, 6, 49, 17, 0, 993, 117, 1, 0, 0, 0, 994, 995, 3, 302, 142, 0, 995, 996, 1, 0, 0, 0, 996, 997, 6, 50, 18, 0, 997, 998, 6, 50, 17, 0, 998, 999, 6, 50, 17, 0, 999, 119, 1, 0, 0, 0, 1000, 1001, 3, 248, 115, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 6, 51, 19, 0, 1003, 1004, 6, 51, 27, 0, 1004, 121, 1, 0, 0, 0, 1005, 1006, 3, 258, 120, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1008, 6, 52, 28, 0, 1008, 1009, 6, 52, 27, 0, 1009, 123, 1, 0, 0, 0, 1010, 1011, 8, 24, 0, 0, 1011, 125, 1, 0, 0, 0, 1012, 1014, 3, 124, 53, 0, 1013, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1013, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 3, 220, 101, 0, 1018, 1020, 1, 0, 0, 0, 1019, 1013, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1022, 1, 0, 0, 0, 1021, 1023, 3, 124, 53, 0, 1022, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 127, 1, 0, 0, 0, 1026, 1027, 3, 126, 54, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 6, 55, 29, 0, 1029, 129, 1, 0, 0, 0, 1030, 1031, 3, 204, 93, 0, 1031, 1032, 1, 0, 0, 0, 1032, 1033, 6, 56, 30, 0, 1033, 131, 1, 0, 0, 0, 1034, 1035, 3, 18, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 6, 57, 0, 0, 1037, 133, 1, 0, 0, 0, 1038, 1039, 3, 20, 1, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 6, 58, 0, 0, 1041, 135, 1, 0, 0, 0, 1042, 1043, 3, 22, 2, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 6, 59, 0, 0, 1045, 137, 1, 0, 0, 0, 1046, 1047, 3, 182, 82, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 6, 60, 16, 0, 1049, 1050, 6, 60, 17, 0, 1050, 1051, 6, 60, 17, 0, 1051, 139, 1, 0, 0, 0, 1052, 1053, 3, 302, 142, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 6, 61, 18, 0, 1055, 1056, 6, 61, 17, 0, 1056, 1057, 6, 61, 17, 0, 1057, 1058, 6, 61, 17, 0, 1058, 141, 1, 0, 0, 0, 1059, 1060, 3, 296, 139, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 6, 62, 23, 0, 1062, 143, 1, 0, 0, 0, 1063, 1064, 3, 298, 140, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 6, 63, 24, 0, 1066, 145, 1, 0, 0, 0, 1067, 1068, 3, 214, 98, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 6, 64, 31, 0, 1070, 147, 1, 0, 0, 0, 1071, 1072, 3, 224, 103, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 6, 65, 22, 0, 1074, 149, 1, 0, 0, 0, 1075, 1076, 3, 228, 105, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 6, 66, 21, 0, 1078, 151, 1, 0, 0, 0, 1079, 1080, 3, 258, 120, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 6, 67, 28, 0, 1082, 153, 1, 0, 0, 0, 1083, 1084, 3, 512, 247, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 6, 68, 32, 0, 1086, 155, 1, 0, 0, 0, 1087, 1088, 3, 308, 145, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 6, 69, 25, 0, 1090, 157, 1, 0, 0, 0, 1091, 1092, 3, 252, 117, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 6, 70, 33, 0, 1094, 159, 1, 0, 0, 0, 1095, 1096, 3, 292, 137, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 6, 71, 34, 0, 1098, 161, 1, 0, 0, 0, 1099, 1100, 3, 288, 135, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 6, 72, 35, 0, 1102, 163, 1, 0, 0, 0, 1103, 1104, 3, 294, 138, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 6, 73, 36, 0, 1106, 165, 1, 0, 0, 0, 1107, 1108, 3, 18, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 6, 74, 0, 0, 1110, 167, 1, 0, 0, 0, 1111, 1112, 3, 20, 1, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 6, 75, 0, 0, 1114, 169, 1, 0, 0, 0, 1115, 1116, 3, 22, 2, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 6, 76, 0, 0, 1118, 171, 1, 0, 0, 0, 1119, 1120, 3, 300, 141, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 6, 77, 37, 0, 1122, 1123, 6, 77, 38, 0, 1123, 173, 1, 0, 0, 0, 1124, 1125, 3, 182, 82, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 6, 78, 16, 0, 1127, 1128, 6, 78, 17, 0, 1128, 175, 1, 0, 0, 0, 1129, 1130, 3, 22, 2, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 6, 79, 0, 0, 1132, 177, 1, 0, 0, 0, 1133, 1134, 3, 18, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 6, 80, 0, 0, 1136, 179, 1, 0, 0, 0, 1137, 1138, 3, 20, 1, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 6, 81, 0, 0, 1140, 181, 1, 0, 0, 0, 1141, 1142, 5, 124, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1144, 6, 82, 17, 0, 1144, 183, 1, 0, 0, 0, 1145, 1146, 7, 25, 0, 0, 1146, 185, 1, 0, 0, 0, 1147, 1148, 7, 26, 0, 0, 1148, 187, 1, 0, 0, 0, 1149, 1150, 5, 92, 0, 0, 1150, 1151, 7, 27, 0, 0, 1151, 189, 1, 0, 0, 0, 1152, 1153, 8, 28, 0, 0, 1153, 191, 1, 0, 0, 0, 1154, 1156, 7, 7, 0, 0, 1155, 1157, 7, 29, 0, 0, 1156, 1155, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1160, 3, 184, 83, 0, 1159, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 193, 1, 0, 0, 0, 1163, 1164, 5, 64, 0, 0, 1164, 195, 1, 0, 0, 0, 1165, 1166, 5, 96, 0, 0, 1166, 197, 1, 0, 0, 0, 1167, 1171, 8, 30, 0, 0, 1168, 1169, 5, 96, 0, 0, 1169, 1171, 5, 96, 0, 0, 1170, 1167, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1171, 199, 1, 0, 0, 0, 1172, 1173, 5, 95, 0, 0, 1173, 201, 1, 0, 0, 0, 1174, 1178, 3, 186, 84, 0, 1175, 1178, 3, 184, 83, 0, 1176, 1178, 3, 200, 91, 0, 1177, 1174, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1178, 203, 1, 0, 0, 0, 1179, 1184, 5, 34, 0, 0, 1180, 1183, 3, 188, 85, 0, 1181, 1183, 3, 190, 86, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1181, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1209, 5, 34, 0, 0, 1188, 1189, 5, 34, 0, 0, 1189, 1190, 5, 34, 0, 0, 1190, 1191, 5, 34, 0, 0, 1191, 1195, 1, 0, 0, 0, 1192, 1194, 8, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1194, 1197, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1198, 1199, 5, 34, 0, 0, 1199, 1200, 5, 34, 0, 0, 1200, 1201, 5, 34, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1204, 5, 34, 0, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 1, 0, 0, 0, 1205, 1207, 5, 34, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1179, 1, 0, 0, 0, 1208, 1188, 1, 0, 0, 0, 1209, 205, 1, 0, 0, 0, 1210, 1212, 3, 184, 83, 0, 1211, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 207, 1, 0, 0, 0, 1215, 1217, 3, 184, 83, 0, 1216, 1215, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1224, 3, 228, 105, 0, 1221, 1223, 3, 184, 83, 0, 1222, 1221, 1, 0, 0, 0, 1223, 1226, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1258, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1227, 1229, 3, 228, 105, 0, 1228, 1230, 3, 184, 83, 0, 1229, 1228, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1258, 1, 0, 0, 0, 1233, 1235, 3, 184, 83, 0, 1234, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1245, 1, 0, 0, 0, 1238, 1242, 3, 228, 105, 0, 1239, 1241, 3, 184, 83, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1244, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1238, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 3, 192, 87, 0, 1248, 1258, 1, 0, 0, 0, 1249, 1251, 3, 228, 105, 0, 1250, 1252, 3, 184, 83, 0, 1251, 1250, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1256, 3, 192, 87, 0, 1256, 1258, 1, 0, 0, 0, 1257, 1216, 1, 0, 0, 0, 1257, 1227, 1, 0, 0, 0, 1257, 1234, 1, 0, 0, 0, 1257, 1249, 1, 0, 0, 0, 1258, 209, 1, 0, 0, 0, 1259, 1260, 7, 4, 0, 0, 1260, 1261, 7, 5, 0, 0, 1261, 1262, 7, 16, 0, 0, 1262, 211, 1, 0, 0, 0, 1263, 1264, 7, 4, 0, 0, 1264, 1265, 7, 17, 0, 0, 1265, 1266, 7, 2, 0, 0, 1266, 213, 1, 0, 0, 0, 1267, 1268, 5, 61, 0, 0, 1268, 215, 1, 0, 0, 0, 1269, 1270, 7, 31, 0, 0, 1270, 1271, 7, 32, 0, 0, 1271, 217, 1, 0, 0, 0, 1272, 1273, 5, 58, 0, 0, 1273, 1274, 5, 58, 0, 0, 1274, 219, 1, 0, 0, 0, 1275, 1276, 5, 58, 0, 0, 1276, 221, 1, 0, 0, 0, 1277, 1278, 5, 59, 0, 0, 1278, 223, 1, 0, 0, 0, 1279, 1280, 5, 44, 0, 0, 1280, 225, 1, 0, 0, 0, 1281, 1282, 7, 16, 0, 0, 1282, 1283, 7, 7, 0, 0, 1283, 1284, 7, 17, 0, 0, 1284, 1285, 7, 2, 0, 0, 1285, 227, 1, 0, 0, 0, 1286, 1287, 5, 46, 0, 0, 1287, 229, 1, 0, 0, 0, 1288, 1289, 7, 21, 0, 0, 1289, 1290, 7, 4, 0, 0, 1290, 1291, 7, 14, 0, 0, 1291, 1292, 7, 17, 0, 0, 1292, 1293, 7, 7, 0, 0, 1293, 231, 1, 0, 0, 0, 1294, 1295, 7, 21, 0, 0, 1295, 1296, 7, 10, 0, 0, 1296, 1297, 7, 12, 0, 0, 1297, 1298, 7, 17, 0, 0, 1298, 1299, 7, 11, 0, 0, 1299, 233, 1, 0, 0, 0, 1300, 1301, 7, 10, 0, 0, 1301, 1302, 7, 5, 0, 0, 1302, 235, 1, 0, 0, 0, 1303, 1304, 7, 10, 0, 0, 1304, 1305, 7, 17, 0, 0, 1305, 237, 1, 0, 0, 0, 1306, 1307, 7, 14, 0, 0, 1307, 1308, 7, 4, 0, 0, 1308, 1309, 7, 17, 0, 0, 1309, 1310, 7, 11, 0, 0, 1310, 239, 1, 0, 0, 0, 1311, 1312, 7, 14, 0, 0, 1312, 1313, 7, 10, 0, 0, 1313, 1314, 7, 19, 0, 0, 1314, 1315, 7, 7, 0, 0, 1315, 241, 1, 0, 0, 0, 1316, 1317, 7, 5, 0, 0, 1317, 1318, 7, 9, 0, 0, 1318, 1319, 7, 11, 0, 0, 1319, 243, 1, 0, 0, 0, 1320, 1321, 7, 5, 0, 0, 1321, 1322, 7, 22, 0, 0, 1322, 1323, 7, 14, 0, 0, 1323, 1324, 7, 14, 0, 0, 1324, 245, 1, 0, 0, 0, 1325, 1326, 7, 5, 0, 0, 1326, 1327, 7, 22, 0, 0, 1327, 1328, 7, 14, 0, 0, 1328, 1329, 7, 14, 0, 0, 1329, 1330, 7, 17, 0, 0, 1330, 247, 1, 0, 0, 0, 1331, 1332, 7, 9, 0, 0, 1332, 1333, 7, 5, 0, 0, 1333, 249, 1, 0, 0, 0, 1334, 1335, 7, 9, 0, 0, 1335, 1336, 7, 12, 0, 0, 1336, 251, 1, 0, 0, 0, 1337, 1338, 5, 63, 0, 0, 1338, 253, 1, 0, 0, 0, 1339, 1340, 7, 12, 0, 0, 1340, 1341, 7, 14, 0, 0, 1341, 1342, 7, 10, 0, 0, 1342, 1343, 7, 19, 0, 0, 1343, 1344, 7, 7, 0, 0, 1344, 255, 1, 0, 0, 0, 1345, 1346, 7, 11, 0, 0, 1346, 1347, 7, 12, 0, 0, 1347, 1348, 7, 22, 0, 0, 1348, 1349, 7, 7, 0, 0, 1349, 257, 1, 0, 0, 0, 1350, 1351, 7, 20, 0, 0, 1351, 1352, 7, 10, 0, 0, 1352, 1353, 7, 11, 0, 0, 1353, 1354, 7, 3, 0, 0, 1354, 259, 1, 0, 0, 0, 1355, 1356, 5, 61, 0, 0, 1356, 1357, 5, 61, 0, 0, 1357, 261, 1, 0, 0, 0, 1358, 1359, 5, 61, 0, 0, 1359, 1360, 5, 126, 0, 0, 1360, 263, 1, 0, 0, 0, 1361, 1362, 5, 33, 0, 0, 1362, 1363, 5, 61, 0, 0, 1363, 265, 1, 0, 0, 0, 1364, 1365, 5, 60, 0, 0, 1365, 267, 1, 0, 0, 0, 1366, 1367, 5, 60, 0, 0, 1367, 1368, 5, 61, 0, 0, 1368, 269, 1, 0, 0, 0, 1369, 1370, 5, 62, 0, 0, 1370, 271, 1, 0, 0, 0, 1371, 1372, 5, 62, 0, 0, 1372, 1373, 5, 61, 0, 0, 1373, 273, 1, 0, 0, 0, 1374, 1375, 5, 43, 0, 0, 1375, 275, 1, 0, 0, 0, 1376, 1377, 5, 45, 0, 0, 1377, 277, 1, 0, 0, 0, 1378, 1379, 5, 42, 0, 0, 1379, 279, 1, 0, 0, 0, 1380, 1381, 5, 47, 0, 0, 1381, 281, 1, 0, 0, 0, 1382, 1383, 5, 37, 0, 0, 1383, 283, 1, 0, 0, 0, 1384, 1385, 5, 123, 0, 0, 1385, 285, 1, 0, 0, 0, 1386, 1387, 5, 125, 0, 0, 1387, 287, 1, 0, 0, 0, 1388, 1389, 5, 63, 0, 0, 1389, 1390, 5, 63, 0, 0, 1390, 289, 1, 0, 0, 0, 1391, 1392, 3, 50, 16, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1394, 6, 136, 39, 0, 1394, 291, 1, 0, 0, 0, 1395, 1398, 3, 252, 117, 0, 1396, 1399, 3, 186, 84, 0, 1397, 1399, 3, 200, 91, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 1403, 1, 0, 0, 0, 1400, 1402, 3, 202, 92, 0, 1401, 1400, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1413, 1, 0, 0, 0, 1405, 1403, 1, 0, 0, 0, 1406, 1408, 3, 252, 117, 0, 1407, 1409, 3, 184, 83, 0, 1408, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1413, 1, 0, 0, 0, 1412, 1395, 1, 0, 0, 0, 1412, 1406, 1, 0, 0, 0, 1413, 293, 1, 0, 0, 0, 1414, 1417, 3, 288, 135, 0, 1415, 1418, 3, 186, 84, 0, 1416, 1418, 3, 200, 91, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1416, 1, 0, 0, 0, 1418, 1422, 1, 0, 0, 0, 1419, 1421, 3, 202, 92, 0, 1420, 1419, 1, 0, 0, 0, 1421, 1424, 1, 0, 0, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1432, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1425, 1427, 3, 288, 135, 0, 1426, 1428, 3, 184, 83, 0, 1427, 1426, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1414, 1, 0, 0, 0, 1431, 1425, 1, 0, 0, 0, 1432, 295, 1, 0, 0, 0, 1433, 1434, 5, 91, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1436, 6, 139, 4, 0, 1436, 1437, 6, 139, 4, 0, 1437, 297, 1, 0, 0, 0, 1438, 1439, 5, 93, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 6, 140, 17, 0, 1441, 1442, 6, 140, 17, 0, 1442, 299, 1, 0, 0, 0, 1443, 1444, 5, 40, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 6, 141, 4, 0, 1446, 1447, 6, 141, 4, 0, 1447, 301, 1, 0, 0, 0, 1448, 1449, 5, 41, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 142, 17, 0, 1451, 1452, 6, 142, 17, 0, 1452, 303, 1, 0, 0, 0, 1453, 1457, 3, 186, 84, 0, 1454, 1456, 3, 202, 92, 0, 1455, 1454, 1, 0, 0, 0, 1456, 1459, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1470, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1460, 1463, 3, 200, 91, 0, 1461, 1463, 3, 194, 88, 0, 1462, 1460, 1, 0, 0, 0, 1462, 1461, 1, 0, 0, 0, 1463, 1465, 1, 0, 0, 0, 1464, 1466, 3, 202, 92, 0, 1465, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1470, 1, 0, 0, 0, 1469, 1453, 1, 0, 0, 0, 1469, 1462, 1, 0, 0, 0, 1470, 305, 1, 0, 0, 0, 1471, 1473, 3, 196, 89, 0, 1472, 1474, 3, 198, 90, 0, 1473, 1472, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 3, 196, 89, 0, 1478, 307, 1, 0, 0, 0, 1479, 1480, 3, 306, 144, 0, 1480, 309, 1, 0, 0, 0, 1481, 1482, 3, 18, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 6, 146, 0, 0, 1484, 311, 1, 0, 0, 0, 1485, 1486, 3, 20, 1, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 6, 147, 0, 0, 1488, 313, 1, 0, 0, 0, 1489, 1490, 3, 22, 2, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 6, 148, 0, 0, 1492, 315, 1, 0, 0, 0, 1493, 1494, 3, 182, 82, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 6, 149, 16, 0, 1496, 1497, 6, 149, 17, 0, 1497, 317, 1, 0, 0, 0, 1498, 1499, 3, 220, 101, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 6, 150, 40, 0, 1501, 319, 1, 0, 0, 0, 1502, 1503, 3, 218, 100, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 6, 151, 41, 0, 1505, 321, 1, 0, 0, 0, 1506, 1507, 3, 224, 103, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 6, 152, 22, 0, 1509, 323, 1, 0, 0, 0, 1510, 1511, 3, 214, 98, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1513, 6, 153, 31, 0, 1513, 325, 1, 0, 0, 0, 1514, 1515, 7, 15, 0, 0, 1515, 1516, 7, 7, 0, 0, 1516, 1517, 7, 11, 0, 0, 1517, 1518, 7, 4, 0, 0, 1518, 1519, 7, 16, 0, 0, 1519, 1520, 7, 4, 0, 0, 1520, 1521, 7, 11, 0, 0, 1521, 1522, 7, 4, 0, 0, 1522, 327, 1, 0, 0, 0, 1523, 1524, 3, 302, 142, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 6, 155, 18, 0, 1526, 1527, 6, 155, 17, 0, 1527, 329, 1, 0, 0, 0, 1528, 1532, 8, 33, 0, 0, 1529, 1530, 5, 47, 0, 0, 1530, 1532, 8, 34, 0, 0, 1531, 1528, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1532, 331, 1, 0, 0, 0, 1533, 1535, 3, 330, 156, 0, 1534, 1533, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 333, 1, 0, 0, 0, 1538, 1539, 3, 332, 157, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 6, 158, 42, 0, 1541, 335, 1, 0, 0, 0, 1542, 1543, 3, 204, 93, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 6, 159, 30, 0, 1545, 337, 1, 0, 0, 0, 1546, 1547, 3, 18, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 6, 160, 0, 0, 1549, 339, 1, 0, 0, 0, 1550, 1551, 3, 20, 1, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 6, 161, 0, 0, 1553, 341, 1, 0, 0, 0, 1554, 1555, 3, 22, 2, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 6, 162, 0, 0, 1557, 343, 1, 0, 0, 0, 1558, 1559, 3, 300, 141, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 6, 163, 37, 0, 1561, 1562, 6, 163, 38, 0, 1562, 345, 1, 0, 0, 0, 1563, 1564, 3, 302, 142, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 6, 164, 18, 0, 1566, 1567, 6, 164, 17, 0, 1567, 1568, 6, 164, 17, 0, 1568, 347, 1, 0, 0, 0, 1569, 1570, 3, 182, 82, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 6, 165, 16, 0, 1572, 1573, 6, 165, 17, 0, 1573, 349, 1, 0, 0, 0, 1574, 1575, 3, 22, 2, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 6, 166, 0, 0, 1577, 351, 1, 0, 0, 0, 1578, 1579, 3, 18, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 6, 167, 0, 0, 1581, 353, 1, 0, 0, 0, 1582, 1583, 3, 20, 1, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 6, 168, 0, 0, 1585, 355, 1, 0, 0, 0, 1586, 1587, 3, 182, 82, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 169, 16, 0, 1589, 1590, 6, 169, 17, 0, 1590, 357, 1, 0, 0, 0, 1591, 1592, 3, 302, 142, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1594, 6, 170, 18, 0, 1594, 1595, 6, 170, 17, 0, 1595, 1596, 6, 170, 17, 0, 1596, 359, 1, 0, 0, 0, 1597, 1598, 7, 6, 0, 0, 1598, 1599, 7, 12, 0, 0, 1599, 1600, 7, 9, 0, 0, 1600, 1601, 7, 22, 0, 0, 1601, 1602, 7, 8, 0, 0, 1602, 361, 1, 0, 0, 0, 1603, 1604, 7, 17, 0, 0, 1604, 1605, 7, 2, 0, 0, 1605, 1606, 7, 9, 0, 0, 1606, 1607, 7, 12, 0, 0, 1607, 1608, 7, 7, 0, 0, 1608, 363, 1, 0, 0, 0, 1609, 1610, 7, 19, 0, 0, 1610, 1611, 7, 7, 0, 0, 1611, 1612, 7, 32, 0, 0, 1612, 365, 1, 0, 0, 0, 1613, 1614, 3, 258, 120, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 6, 174, 28, 0, 1616, 1617, 6, 174, 17, 0, 1617, 1618, 6, 174, 4, 0, 1618, 367, 1, 0, 0, 0, 1619, 1620, 3, 224, 103, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1622, 6, 175, 22, 0, 1622, 369, 1, 0, 0, 0, 1623, 1624, 3, 228, 105, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 6, 176, 21, 0, 1626, 371, 1, 0, 0, 0, 1627, 1628, 3, 252, 117, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 6, 177, 33, 0, 1630, 373, 1, 0, 0, 0, 1631, 1632, 3, 292, 137, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 178, 34, 0, 1634, 375, 1, 0, 0, 0, 1635, 1636, 3, 288, 135, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 179, 35, 0, 1638, 377, 1, 0, 0, 0, 1639, 1640, 3, 294, 138, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 180, 36, 0, 1642, 379, 1, 0, 0, 0, 1643, 1644, 3, 216, 99, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 6, 181, 43, 0, 1646, 381, 1, 0, 0, 0, 1647, 1648, 3, 308, 145, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1650, 6, 182, 25, 0, 1650, 383, 1, 0, 0, 0, 1651, 1652, 3, 304, 143, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 6, 183, 26, 0, 1654, 385, 1, 0, 0, 0, 1655, 1656, 3, 18, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 6, 184, 0, 0, 1658, 387, 1, 0, 0, 0, 1659, 1660, 3, 20, 1, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 6, 185, 0, 0, 1662, 389, 1, 0, 0, 0, 1663, 1664, 3, 22, 2, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 6, 186, 0, 0, 1666, 391, 1, 0, 0, 0, 1667, 1668, 7, 17, 0, 0, 1668, 1669, 7, 11, 0, 0, 1669, 1670, 7, 4, 0, 0, 1670, 1671, 7, 11, 0, 0, 1671, 1672, 7, 17, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 6, 187, 17, 0, 1674, 1675, 6, 187, 4, 0, 1675, 393, 1, 0, 0, 0, 1676, 1677, 3, 18, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1679, 6, 188, 0, 0, 1679, 395, 1, 0, 0, 0, 1680, 1681, 3, 20, 1, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1683, 6, 189, 0, 0, 1683, 397, 1, 0, 0, 0, 1684, 1685, 3, 22, 2, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1687, 6, 190, 0, 0, 1687, 399, 1, 0, 0, 0, 1688, 1689, 3, 182, 82, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 6, 191, 16, 0, 1691, 1692, 6, 191, 17, 0, 1692, 401, 1, 0, 0, 0, 1693, 1694, 7, 35, 0, 0, 1694, 1695, 7, 9, 0, 0, 1695, 1696, 7, 10, 0, 0, 1696, 1697, 7, 5, 0, 0, 1697, 403, 1, 0, 0, 0, 1698, 1699, 3, 542, 262, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 6, 193, 20, 0, 1701, 405, 1, 0, 0, 0, 1702, 1703, 3, 248, 115, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 6, 194, 19, 0, 1705, 1706, 6, 194, 17, 0, 1706, 1707, 6, 194, 4, 0, 1707, 407, 1, 0, 0, 0, 1708, 1709, 7, 22, 0, 0, 1709, 1710, 7, 17, 0, 0, 1710, 1711, 7, 10, 0, 0, 1711, 1712, 7, 5, 0, 0, 1712, 1713, 7, 6, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 6, 195, 17, 0, 1715, 1716, 6, 195, 4, 0, 1716, 409, 1, 0, 0, 0, 1717, 1718, 3, 332, 157, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 6, 196, 42, 0, 1720, 411, 1, 0, 0, 0, 1721, 1722, 3, 204, 93, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 6, 197, 30, 0, 1724, 413, 1, 0, 0, 0, 1725, 1726, 3, 220, 101, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 6, 198, 40, 0, 1728, 415, 1, 0, 0, 0, 1729, 1730, 3, 18, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 6, 199, 0, 0, 1732, 417, 1, 0, 0, 0, 1733, 1734, 3, 20, 1, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 6, 200, 0, 0, 1736, 419, 1, 0, 0, 0, 1737, 1738, 3, 22, 2, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 201, 0, 0, 1740, 421, 1, 0, 0, 0, 1741, 1742, 3, 182, 82, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 6, 202, 16, 0, 1744, 1745, 6, 202, 17, 0, 1745, 423, 1, 0, 0, 0, 1746, 1747, 3, 302, 142, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 6, 203, 18, 0, 1749, 1750, 6, 203, 17, 0, 1750, 1751, 6, 203, 17, 0, 1751, 425, 1, 0, 0, 0, 1752, 1753, 3, 220, 101, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 6, 204, 40, 0, 1755, 427, 1, 0, 0, 0, 1756, 1757, 3, 224, 103, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 6, 205, 22, 0, 1759, 429, 1, 0, 0, 0, 1760, 1761, 3, 228, 105, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 6, 206, 21, 0, 1763, 431, 1, 0, 0, 0, 1764, 1765, 3, 248, 115, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 6, 207, 19, 0, 1767, 1768, 6, 207, 44, 0, 1768, 433, 1, 0, 0, 0, 1769, 1770, 3, 332, 157, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 6, 208, 42, 0, 1772, 435, 1, 0, 0, 0, 1773, 1774, 3, 204, 93, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 6, 209, 30, 0, 1776, 437, 1, 0, 0, 0, 1777, 1778, 3, 18, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 6, 210, 0, 0, 1780, 439, 1, 0, 0, 0, 1781, 1782, 3, 20, 1, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 6, 211, 0, 0, 1784, 441, 1, 0, 0, 0, 1785, 1786, 3, 22, 2, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 6, 212, 0, 0, 1788, 443, 1, 0, 0, 0, 1789, 1790, 3, 182, 82, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 6, 213, 16, 0, 1792, 1793, 6, 213, 17, 0, 1793, 1794, 6, 213, 17, 0, 1794, 445, 1, 0, 0, 0, 1795, 1796, 3, 302, 142, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 6, 214, 18, 0, 1798, 1799, 6, 214, 17, 0, 1799, 1800, 6, 214, 17, 0, 1800, 1801, 6, 214, 17, 0, 1801, 447, 1, 0, 0, 0, 1802, 1803, 3, 224, 103, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 6, 215, 22, 0, 1805, 449, 1, 0, 0, 0, 1806, 1807, 3, 228, 105, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 6, 216, 21, 0, 1809, 451, 1, 0, 0, 0, 1810, 1811, 3, 512, 247, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 6, 217, 32, 0, 1813, 453, 1, 0, 0, 0, 1814, 1815, 3, 18, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 6, 218, 0, 0, 1817, 455, 1, 0, 0, 0, 1818, 1819, 3, 20, 1, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 6, 219, 0, 0, 1821, 457, 1, 0, 0, 0, 1822, 1823, 3, 22, 2, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 6, 220, 0, 0, 1825, 459, 1, 0, 0, 0, 1826, 1827, 3, 182, 82, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 6, 221, 16, 0, 1829, 1830, 6, 221, 17, 0, 1830, 461, 1, 0, 0, 0, 1831, 1832, 3, 302, 142, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 6, 222, 18, 0, 1834, 1835, 6, 222, 17, 0, 1835, 1836, 6, 222, 17, 0, 1836, 463, 1, 0, 0, 0, 1837, 1838, 3, 296, 139, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 6, 223, 23, 0, 1840, 465, 1, 0, 0, 0, 1841, 1842, 3, 298, 140, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 6, 224, 24, 0, 1844, 467, 1, 0, 0, 0, 1845, 1846, 3, 228, 105, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 6, 225, 21, 0, 1848, 469, 1, 0, 0, 0, 1849, 1850, 3, 252, 117, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1852, 6, 226, 33, 0, 1852, 471, 1, 0, 0, 0, 1853, 1854, 3, 292, 137, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 6, 227, 34, 0, 1856, 473, 1, 0, 0, 0, 1857, 1858, 3, 288, 135, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1860, 6, 228, 35, 0, 1860, 475, 1, 0, 0, 0, 1861, 1862, 3, 294, 138, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 6, 229, 36, 0, 1864, 477, 1, 0, 0, 0, 1865, 1866, 3, 308, 145, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 6, 230, 25, 0, 1868, 479, 1, 0, 0, 0, 1869, 1870, 3, 304, 143, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1872, 6, 231, 26, 0, 1872, 481, 1, 0, 0, 0, 1873, 1874, 3, 18, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1876, 6, 232, 0, 0, 1876, 483, 1, 0, 0, 0, 1877, 1878, 3, 20, 1, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 6, 233, 0, 0, 1880, 485, 1, 0, 0, 0, 1881, 1882, 3, 22, 2, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1884, 6, 234, 0, 0, 1884, 487, 1, 0, 0, 0, 1885, 1886, 3, 182, 82, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 6, 235, 16, 0, 1888, 1889, 6, 235, 17, 0, 1889, 489, 1, 0, 0, 0, 1890, 1891, 3, 302, 142, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1893, 6, 236, 18, 0, 1893, 1894, 6, 236, 17, 0, 1894, 1895, 6, 236, 17, 0, 1895, 491, 1, 0, 0, 0, 1896, 1897, 3, 228, 105, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 6, 237, 21, 0, 1899, 493, 1, 0, 0, 0, 1900, 1901, 3, 296, 139, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 6, 238, 23, 0, 1903, 495, 1, 0, 0, 0, 1904, 1905, 3, 298, 140, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 6, 239, 24, 0, 1907, 497, 1, 0, 0, 0, 1908, 1909, 3, 224, 103, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 6, 240, 22, 0, 1911, 499, 1, 0, 0, 0, 1912, 1913, 3, 252, 117, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 6, 241, 33, 0, 1915, 501, 1, 0, 0, 0, 1916, 1917, 3, 292, 137, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 6, 242, 34, 0, 1919, 503, 1, 0, 0, 0, 1920, 1921, 3, 288, 135, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 6, 243, 35, 0, 1923, 505, 1, 0, 0, 0, 1924, 1925, 3, 294, 138, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 6, 244, 36, 0, 1927, 507, 1, 0, 0, 0, 1928, 1933, 3, 186, 84, 0, 1929, 1933, 3, 184, 83, 0, 1930, 1933, 3, 200, 91, 0, 1931, 1933, 3, 278, 130, 0, 1932, 1928, 1, 0, 0, 0, 1932, 1929, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1931, 1, 0, 0, 0, 1933, 509, 1, 0, 0, 0, 1934, 1937, 3, 186, 84, 0, 1935, 1937, 3, 278, 130, 0, 1936, 1934, 1, 0, 0, 0, 1936, 1935, 1, 0, 0, 0, 1937, 1941, 1, 0, 0, 0, 1938, 1940, 3, 508, 245, 0, 1939, 1938, 1, 0, 0, 0, 1940, 1943, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1954, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1944, 1947, 3, 200, 91, 0, 1945, 1947, 3, 194, 88, 0, 1946, 1944, 1, 0, 0, 0, 1946, 1945, 1, 0, 0, 0, 1947, 1949, 1, 0, 0, 0, 1948, 1950, 3, 508, 245, 0, 1949, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1936, 1, 0, 0, 0, 1953, 1946, 1, 0, 0, 0, 1954, 511, 1, 0, 0, 0, 1955, 1958, 3, 510, 246, 0, 1956, 1958, 3, 306, 144, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 513, 1, 0, 0, 0, 1961, 1962, 3, 18, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 6, 248, 0, 0, 1964, 515, 1, 0, 0, 0, 1965, 1966, 3, 20, 1, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 6, 249, 0, 0, 1968, 517, 1, 0, 0, 0, 1969, 1970, 3, 22, 2, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 6, 250, 0, 0, 1972, 519, 1, 0, 0, 0, 1973, 1974, 3, 182, 82, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 6, 251, 16, 0, 1976, 1977, 6, 251, 17, 0, 1977, 521, 1, 0, 0, 0, 1978, 1979, 3, 302, 142, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 6, 252, 18, 0, 1981, 1982, 6, 252, 17, 0, 1982, 1983, 6, 252, 17, 0, 1983, 523, 1, 0, 0, 0, 1984, 1985, 3, 296, 139, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 6, 253, 23, 0, 1987, 525, 1, 0, 0, 0, 1988, 1989, 3, 298, 140, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 6, 254, 24, 0, 1991, 527, 1, 0, 0, 0, 1992, 1993, 3, 214, 98, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 6, 255, 31, 0, 1995, 529, 1, 0, 0, 0, 1996, 1997, 3, 224, 103, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 6, 256, 22, 0, 1999, 531, 1, 0, 0, 0, 2000, 2001, 3, 228, 105, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 6, 257, 21, 0, 2003, 533, 1, 0, 0, 0, 2004, 2005, 3, 252, 117, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 6, 258, 33, 0, 2007, 535, 1, 0, 0, 0, 2008, 2009, 3, 292, 137, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 6, 259, 34, 0, 2011, 537, 1, 0, 0, 0, 2012, 2013, 3, 288, 135, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 6, 260, 35, 0, 2015, 539, 1, 0, 0, 0, 2016, 2017, 3, 294, 138, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 6, 261, 36, 0, 2019, 541, 1, 0, 0, 0, 2020, 2021, 7, 4, 0, 0, 2021, 2022, 7, 17, 0, 0, 2022, 543, 1, 0, 0, 0, 2023, 2024, 3, 512, 247, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 6, 263, 32, 0, 2026, 545, 1, 0, 0, 0, 2027, 2028, 3, 18, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 6, 264, 0, 0, 2030, 547, 1, 0, 0, 0, 2031, 2032, 3, 20, 1, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 6, 265, 0, 0, 2034, 549, 1, 0, 0, 0, 2035, 2036, 3, 22, 2, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2038, 6, 266, 0, 0, 2038, 551, 1, 0, 0, 0, 2039, 2040, 3, 256, 119, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 6, 267, 45, 0, 2042, 553, 1, 0, 0, 0, 2043, 2044, 3, 230, 106, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2046, 6, 268, 46, 0, 2046, 555, 1, 0, 0, 0, 2047, 2048, 3, 244, 113, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 6, 269, 47, 0, 2050, 557, 1, 0, 0, 0, 2051, 2052, 3, 222, 102, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2054, 6, 270, 48, 0, 2054, 2055, 6, 270, 17, 0, 2055, 559, 1, 0, 0, 0, 2056, 2057, 3, 214, 98, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 6, 271, 31, 0, 2059, 561, 1, 0, 0, 0, 2060, 2061, 3, 204, 93, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 6, 272, 30, 0, 2063, 563, 1, 0, 0, 0, 2064, 2065, 3, 304, 143, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 6, 273, 26, 0, 2067, 565, 1, 0, 0, 0, 2068, 2069, 3, 308, 145, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2071, 6, 274, 25, 0, 2071, 567, 1, 0, 0, 0, 2072, 2073, 3, 208, 95, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 6, 275, 49, 0, 2075, 569, 1, 0, 0, 0, 2076, 2077, 3, 206, 94, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2079, 6, 276, 50, 0, 2079, 571, 1, 0, 0, 0, 2080, 2081, 3, 224, 103, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2083, 6, 277, 22, 0, 2083, 573, 1, 0, 0, 0, 2084, 2085, 3, 228, 105, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 6, 278, 21, 0, 2087, 575, 1, 0, 0, 0, 2088, 2089, 3, 252, 117, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 6, 279, 33, 0, 2091, 577, 1, 0, 0, 0, 2092, 2093, 3, 292, 137, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2095, 6, 280, 34, 0, 2095, 579, 1, 0, 0, 0, 2096, 2097, 3, 288, 135, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 6, 281, 35, 0, 2099, 581, 1, 0, 0, 0, 2100, 2101, 3, 294, 138, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 6, 282, 36, 0, 2103, 583, 1, 0, 0, 0, 2104, 2105, 3, 296, 139, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 6, 283, 23, 0, 2107, 585, 1, 0, 0, 0, 2108, 2109, 3, 298, 140, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2111, 6, 284, 24, 0, 2111, 587, 1, 0, 0, 0, 2112, 2113, 3, 512, 247, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 6, 285, 32, 0, 2115, 589, 1, 0, 0, 0, 2116, 2117, 3, 18, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2119, 6, 286, 0, 0, 2119, 591, 1, 0, 0, 0, 2120, 2121, 3, 20, 1, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2123, 6, 287, 0, 0, 2123, 593, 1, 0, 0, 0, 2124, 2125, 3, 22, 2, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2127, 6, 288, 0, 0, 2127, 595, 1, 0, 0, 0, 2128, 2129, 3, 182, 82, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2131, 6, 289, 16, 0, 2131, 2132, 6, 289, 17, 0, 2132, 597, 1, 0, 0, 0, 2133, 2134, 7, 10, 0, 0, 2134, 2135, 7, 5, 0, 0, 2135, 2136, 7, 21, 0, 0, 2136, 2137, 7, 9, 0, 0, 2137, 599, 1, 0, 0, 0, 2138, 2139, 3, 18, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2141, 6, 291, 0, 0, 2141, 601, 1, 0, 0, 0, 2142, 2143, 3, 20, 1, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2145, 6, 292, 0, 0, 2145, 603, 1, 0, 0, 0, 2146, 2147, 3, 22, 2, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2149, 6, 293, 0, 0, 2149, 605, 1, 0, 0, 0, 70, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 612, 616, 619, 628, 630, 641, 930, 1015, 1019, 1024, 1156, 1161, 1170, 1177, 1182, 1184, 1195, 1203, 1206, 1208, 1213, 1218, 1224, 1231, 1236, 1242, 1245, 1253, 1257, 1398, 1403, 1410, 1412, 1417, 1422, 1429, 1431, 1457, 1462, 1467, 1469, 1475, 1531, 1536, 1932, 1936, 1941, 1946, 1951, 1953, 1957, 1959, 51, 0, 1, 0, 5, 1, 0, 5, 2, 0, 5, 4, 0, 5, 5, 0, 5, 6, 0, 5, 7, 0, 5, 8, 0, 5, 9, 0, 5, 10, 0, 5, 11, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 5, 16, 0, 5, 17, 0, 7, 50, 0, 4, 0, 0, 7, 99, 0, 7, 73, 0, 7, 141, 0, 7, 63, 0, 7, 61, 0, 7, 96, 0, 7, 97, 0, 7, 101, 0, 7, 100, 0, 5, 3, 0, 7, 78, 0, 7, 40, 0, 7, 51, 0, 7, 56, 0, 7, 137, 0, 7, 75, 0, 7, 94, 0, 7, 93, 0, 7, 95, 0, 7, 98, 0, 5, 0, 0, 7, 17, 0, 7, 59, 0, 7, 58, 0, 7, 106, 0, 7, 57, 0, 5, 12, 0, 7, 77, 0, 7, 64, 0, 7, 71, 0, 7, 60, 0, 7, 53, 0, 7, 52, 0]
\ No newline at end of file
+[4, 0, 151, 2158, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 613, 8, 0, 10, 0, 12, 0, 616, 9, 0, 1, 0, 3, 0, 619, 8, 0, 1, 0, 3, 0, 622, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 631, 8, 1, 10, 1, 12, 1, 634, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 642, 8, 2, 11, 2, 12, 2, 643, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 4, 35, 931, 8, 35, 11, 35, 12, 35, 932, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 4, 54, 1016, 8, 54, 11, 54, 12, 54, 1017, 1, 54, 1, 54, 3, 54, 1022, 8, 54, 1, 54, 4, 54, 1025, 8, 54, 11, 54, 12, 54, 1026, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 1159, 8, 87, 1, 87, 4, 87, 1162, 8, 87, 11, 87, 12, 87, 1163, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 3, 90, 1173, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 1180, 8, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1185, 8, 93, 10, 93, 12, 93, 1188, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 1196, 8, 93, 10, 93, 12, 93, 1199, 9, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1206, 8, 93, 1, 93, 3, 93, 1209, 8, 93, 3, 93, 1211, 8, 93, 1, 94, 4, 94, 1214, 8, 94, 11, 94, 12, 94, 1215, 1, 95, 4, 95, 1219, 8, 95, 11, 95, 12, 95, 1220, 1, 95, 1, 95, 5, 95, 1225, 8, 95, 10, 95, 12, 95, 1228, 9, 95, 1, 95, 1, 95, 4, 95, 1232, 8, 95, 11, 95, 12, 95, 1233, 1, 95, 4, 95, 1237, 8, 95, 11, 95, 12, 95, 1238, 1, 95, 1, 95, 5, 95, 1243, 8, 95, 10, 95, 12, 95, 1246, 9, 95, 3, 95, 1248, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 4, 95, 1254, 8, 95, 11, 95, 12, 95, 1255, 1, 95, 1, 95, 3, 95, 1260, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 1401, 8, 137, 1, 137, 5, 137, 1404, 8, 137, 10, 137, 12, 137, 1407, 9, 137, 1, 137, 1, 137, 4, 137, 1411, 8, 137, 11, 137, 12, 137, 1412, 3, 137, 1415, 8, 137, 1, 138, 1, 138, 1, 138, 3, 138, 1420, 8, 138, 1, 138, 5, 138, 1423, 8, 138, 10, 138, 12, 138, 1426, 9, 138, 1, 138, 1, 138, 4, 138, 1430, 8, 138, 11, 138, 12, 138, 1431, 3, 138, 1434, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 5, 143, 1458, 8, 143, 10, 143, 12, 143, 1461, 9, 143, 1, 143, 1, 143, 3, 143, 1465, 8, 143, 1, 143, 4, 143, 1468, 8, 143, 11, 143, 12, 143, 1469, 3, 143, 1472, 8, 143, 1, 144, 1, 144, 4, 144, 1476, 8, 144, 11, 144, 12, 144, 1477, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 1540, 8, 157, 1, 158, 4, 158, 1543, 8, 158, 11, 158, 12, 158, 1544, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 1941, 8, 246, 1, 247, 1, 247, 3, 247, 1945, 8, 247, 1, 247, 5, 247, 1948, 8, 247, 10, 247, 12, 247, 1951, 9, 247, 1, 247, 1, 247, 3, 247, 1955, 8, 247, 1, 247, 4, 247, 1958, 8, 247, 11, 247, 12, 247, 1959, 3, 247, 1962, 8, 247, 1, 248, 1, 248, 4, 248, 1966, 8, 248, 11, 248, 12, 248, 1967, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 2, 632, 1197, 0, 295, 18, 1, 20, 2, 22, 3, 24, 4, 26, 5, 28, 6, 30, 7, 32, 8, 34, 9, 36, 10, 38, 11, 40, 12, 42, 13, 44, 14, 46, 15, 48, 16, 50, 17, 52, 18, 54, 19, 56, 20, 58, 21, 60, 22, 62, 23, 64, 24, 66, 25, 68, 26, 70, 27, 72, 28, 74, 29, 76, 30, 78, 31, 80, 32, 82, 33, 84, 34, 86, 35, 88, 36, 90, 0, 92, 0, 94, 0, 96, 0, 98, 0, 100, 0, 102, 0, 104, 0, 106, 0, 108, 0, 110, 37, 112, 38, 114, 39, 116, 0, 118, 0, 120, 0, 122, 0, 124, 0, 126, 40, 128, 0, 130, 0, 132, 41, 134, 42, 136, 43, 138, 0, 140, 0, 142, 0, 144, 0, 146, 0, 148, 0, 150, 0, 152, 0, 154, 0, 156, 0, 158, 0, 160, 0, 162, 0, 164, 0, 166, 44, 168, 45, 170, 46, 172, 0, 174, 0, 176, 47, 178, 48, 180, 49, 182, 50, 184, 0, 186, 0, 188, 0, 190, 0, 192, 0, 194, 0, 196, 0, 198, 0, 200, 0, 202, 0, 204, 51, 206, 52, 208, 53, 210, 54, 212, 55, 214, 56, 216, 57, 218, 58, 220, 59, 222, 60, 224, 61, 226, 62, 228, 63, 230, 64, 232, 65, 234, 66, 236, 67, 238, 68, 240, 69, 242, 70, 244, 71, 246, 72, 248, 73, 250, 74, 252, 75, 254, 76, 256, 77, 258, 78, 260, 79, 262, 80, 264, 81, 266, 82, 268, 83, 270, 84, 272, 85, 274, 86, 276, 87, 278, 88, 280, 89, 282, 90, 284, 91, 286, 92, 288, 93, 290, 0, 292, 94, 294, 95, 296, 96, 298, 97, 300, 98, 302, 99, 304, 100, 306, 0, 308, 101, 310, 102, 312, 103, 314, 104, 316, 0, 318, 0, 320, 0, 322, 0, 324, 0, 326, 105, 328, 0, 330, 0, 332, 0, 334, 106, 336, 0, 338, 0, 340, 107, 342, 108, 344, 109, 346, 0, 348, 0, 350, 0, 352, 110, 354, 111, 356, 112, 358, 0, 360, 0, 362, 113, 364, 114, 366, 115, 368, 0, 370, 0, 372, 0, 374, 0, 376, 0, 378, 0, 380, 0, 382, 0, 384, 0, 386, 0, 388, 116, 390, 117, 392, 118, 394, 119, 396, 120, 398, 121, 400, 122, 402, 0, 404, 123, 406, 0, 408, 0, 410, 124, 412, 0, 414, 0, 416, 0, 418, 125, 420, 126, 422, 127, 424, 0, 426, 0, 428, 0, 430, 0, 432, 0, 434, 0, 436, 0, 438, 0, 440, 128, 442, 129, 444, 130, 446, 0, 448, 0, 450, 0, 452, 0, 454, 0, 456, 131, 458, 132, 460, 133, 462, 0, 464, 0, 466, 0, 468, 0, 470, 0, 472, 0, 474, 0, 476, 0, 478, 0, 480, 0, 482, 0, 484, 134, 486, 135, 488, 136, 490, 0, 492, 0, 494, 0, 496, 0, 498, 0, 500, 0, 502, 0, 504, 0, 506, 0, 508, 0, 510, 0, 512, 0, 514, 137, 516, 138, 518, 139, 520, 140, 522, 0, 524, 0, 526, 0, 528, 0, 530, 0, 532, 0, 534, 0, 536, 0, 538, 0, 540, 0, 542, 0, 544, 141, 546, 0, 548, 142, 550, 143, 552, 144, 554, 0, 556, 0, 558, 0, 560, 0, 562, 0, 564, 0, 566, 0, 568, 0, 570, 0, 572, 0, 574, 0, 576, 0, 578, 0, 580, 0, 582, 0, 584, 0, 586, 0, 588, 0, 590, 0, 592, 145, 594, 146, 596, 147, 598, 0, 600, 148, 602, 149, 604, 150, 606, 151, 18, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 36, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 67, 67, 99, 99, 2, 0, 72, 72, 104, 104, 2, 0, 65, 65, 97, 97, 2, 0, 78, 78, 110, 110, 2, 0, 71, 71, 103, 103, 2, 0, 69, 69, 101, 101, 2, 0, 80, 80, 112, 112, 2, 0, 79, 79, 111, 111, 2, 0, 73, 73, 105, 105, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 88, 88, 120, 120, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 68, 68, 100, 100, 2, 0, 83, 83, 115, 115, 2, 0, 86, 86, 118, 118, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 70, 70, 102, 102, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 12, 0, 9, 10, 13, 13, 32, 32, 34, 35, 40, 41, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 12, 0, 9, 10, 13, 13, 32, 32, 34, 34, 40, 41, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 2, 0, 74, 74, 106, 106, 2182, 0, 18, 1, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 28, 1, 0, 0, 0, 0, 30, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 46, 1, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 52, 1, 0, 0, 0, 0, 54, 1, 0, 0, 0, 0, 56, 1, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 68, 1, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 0, 80, 1, 0, 0, 0, 0, 82, 1, 0, 0, 0, 0, 84, 1, 0, 0, 0, 0, 86, 1, 0, 0, 0, 0, 88, 1, 0, 0, 0, 1, 90, 1, 0, 0, 0, 1, 92, 1, 0, 0, 0, 1, 94, 1, 0, 0, 0, 1, 96, 1, 0, 0, 0, 1, 98, 1, 0, 0, 0, 1, 100, 1, 0, 0, 0, 1, 102, 1, 0, 0, 0, 1, 104, 1, 0, 0, 0, 1, 106, 1, 0, 0, 0, 1, 108, 1, 0, 0, 0, 1, 110, 1, 0, 0, 0, 1, 112, 1, 0, 0, 0, 1, 114, 1, 0, 0, 0, 2, 116, 1, 0, 0, 0, 2, 118, 1, 0, 0, 0, 2, 120, 1, 0, 0, 0, 2, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 2, 128, 1, 0, 0, 0, 2, 130, 1, 0, 0, 0, 2, 132, 1, 0, 0, 0, 2, 134, 1, 0, 0, 0, 2, 136, 1, 0, 0, 0, 3, 138, 1, 0, 0, 0, 3, 140, 1, 0, 0, 0, 3, 142, 1, 0, 0, 0, 3, 144, 1, 0, 0, 0, 3, 146, 1, 0, 0, 0, 3, 148, 1, 0, 0, 0, 3, 150, 1, 0, 0, 0, 3, 152, 1, 0, 0, 0, 3, 154, 1, 0, 0, 0, 3, 156, 1, 0, 0, 0, 3, 158, 1, 0, 0, 0, 3, 160, 1, 0, 0, 0, 3, 162, 1, 0, 0, 0, 3, 164, 1, 0, 0, 0, 3, 166, 1, 0, 0, 0, 3, 168, 1, 0, 0, 0, 3, 170, 1, 0, 0, 0, 4, 172, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 4, 176, 1, 0, 0, 0, 4, 178, 1, 0, 0, 0, 4, 180, 1, 0, 0, 0, 5, 182, 1, 0, 0, 0, 5, 204, 1, 0, 0, 0, 5, 206, 1, 0, 0, 0, 5, 208, 1, 0, 0, 0, 5, 210, 1, 0, 0, 0, 5, 212, 1, 0, 0, 0, 5, 214, 1, 0, 0, 0, 5, 216, 1, 0, 0, 0, 5, 218, 1, 0, 0, 0, 5, 220, 1, 0, 0, 0, 5, 222, 1, 0, 0, 0, 5, 224, 1, 0, 0, 0, 5, 226, 1, 0, 0, 0, 5, 228, 1, 0, 0, 0, 5, 230, 1, 0, 0, 0, 5, 232, 1, 0, 0, 0, 5, 234, 1, 0, 0, 0, 5, 236, 1, 0, 0, 0, 5, 238, 1, 0, 0, 0, 5, 240, 1, 0, 0, 0, 5, 242, 1, 0, 0, 0, 5, 244, 1, 0, 0, 0, 5, 246, 1, 0, 0, 0, 5, 248, 1, 0, 0, 0, 5, 250, 1, 0, 0, 0, 5, 252, 1, 0, 0, 0, 5, 254, 1, 0, 0, 0, 5, 256, 1, 0, 0, 0, 5, 258, 1, 0, 0, 0, 5, 260, 1, 0, 0, 0, 5, 262, 1, 0, 0, 0, 5, 264, 1, 0, 0, 0, 5, 266, 1, 0, 0, 0, 5, 268, 1, 0, 0, 0, 5, 270, 1, 0, 0, 0, 5, 272, 1, 0, 0, 0, 5, 274, 1, 0, 0, 0, 5, 276, 1, 0, 0, 0, 5, 278, 1, 0, 0, 0, 5, 280, 1, 0, 0, 0, 5, 282, 1, 0, 0, 0, 5, 284, 1, 0, 0, 0, 5, 286, 1, 0, 0, 0, 5, 288, 1, 0, 0, 0, 5, 290, 1, 0, 0, 0, 5, 292, 1, 0, 0, 0, 5, 294, 1, 0, 0, 0, 5, 296, 1, 0, 0, 0, 5, 298, 1, 0, 0, 0, 5, 300, 1, 0, 0, 0, 5, 302, 1, 0, 0, 0, 5, 304, 1, 0, 0, 0, 5, 308, 1, 0, 0, 0, 5, 310, 1, 0, 0, 0, 5, 312, 1, 0, 0, 0, 5, 314, 1, 0, 0, 0, 6, 316, 1, 0, 0, 0, 6, 318, 1, 0, 0, 0, 6, 320, 1, 0, 0, 0, 6, 322, 1, 0, 0, 0, 6, 324, 1, 0, 0, 0, 6, 326, 1, 0, 0, 0, 6, 328, 1, 0, 0, 0, 6, 330, 1, 0, 0, 0, 6, 334, 1, 0, 0, 0, 6, 336, 1, 0, 0, 0, 6, 338, 1, 0, 0, 0, 6, 340, 1, 0, 0, 0, 6, 342, 1, 0, 0, 0, 6, 344, 1, 0, 0, 0, 7, 346, 1, 0, 0, 0, 7, 348, 1, 0, 0, 0, 7, 350, 1, 0, 0, 0, 7, 352, 1, 0, 0, 0, 7, 354, 1, 0, 0, 0, 7, 356, 1, 0, 0, 0, 8, 358, 1, 0, 0, 0, 8, 360, 1, 0, 0, 0, 8, 362, 1, 0, 0, 0, 8, 364, 1, 0, 0, 0, 8, 366, 1, 0, 0, 0, 8, 368, 1, 0, 0, 0, 8, 370, 1, 0, 0, 0, 8, 372, 1, 0, 0, 0, 8, 374, 1, 0, 0, 0, 8, 376, 1, 0, 0, 0, 8, 378, 1, 0, 0, 0, 8, 380, 1, 0, 0, 0, 8, 382, 1, 0, 0, 0, 8, 384, 1, 0, 0, 0, 8, 386, 1, 0, 0, 0, 8, 388, 1, 0, 0, 0, 8, 390, 1, 0, 0, 0, 8, 392, 1, 0, 0, 0, 9, 394, 1, 0, 0, 0, 9, 396, 1, 0, 0, 0, 9, 398, 1, 0, 0, 0, 9, 400, 1, 0, 0, 0, 10, 402, 1, 0, 0, 0, 10, 404, 1, 0, 0, 0, 10, 406, 1, 0, 0, 0, 10, 408, 1, 0, 0, 0, 10, 410, 1, 0, 0, 0, 10, 412, 1, 0, 0, 0, 10, 414, 1, 0, 0, 0, 10, 416, 1, 0, 0, 0, 10, 418, 1, 0, 0, 0, 10, 420, 1, 0, 0, 0, 10, 422, 1, 0, 0, 0, 11, 424, 1, 0, 0, 0, 11, 426, 1, 0, 0, 0, 11, 428, 1, 0, 0, 0, 11, 430, 1, 0, 0, 0, 11, 432, 1, 0, 0, 0, 11, 434, 1, 0, 0, 0, 11, 436, 1, 0, 0, 0, 11, 438, 1, 0, 0, 0, 11, 440, 1, 0, 0, 0, 11, 442, 1, 0, 0, 0, 11, 444, 1, 0, 0, 0, 12, 446, 1, 0, 0, 0, 12, 448, 1, 0, 0, 0, 12, 450, 1, 0, 0, 0, 12, 452, 1, 0, 0, 0, 12, 454, 1, 0, 0, 0, 12, 456, 1, 0, 0, 0, 12, 458, 1, 0, 0, 0, 12, 460, 1, 0, 0, 0, 13, 462, 1, 0, 0, 0, 13, 464, 1, 0, 0, 0, 13, 466, 1, 0, 0, 0, 13, 468, 1, 0, 0, 0, 13, 470, 1, 0, 0, 0, 13, 472, 1, 0, 0, 0, 13, 474, 1, 0, 0, 0, 13, 476, 1, 0, 0, 0, 13, 478, 1, 0, 0, 0, 13, 480, 1, 0, 0, 0, 13, 482, 1, 0, 0, 0, 13, 484, 1, 0, 0, 0, 13, 486, 1, 0, 0, 0, 13, 488, 1, 0, 0, 0, 14, 490, 1, 0, 0, 0, 14, 492, 1, 0, 0, 0, 14, 494, 1, 0, 0, 0, 14, 496, 1, 0, 0, 0, 14, 498, 1, 0, 0, 0, 14, 500, 1, 0, 0, 0, 14, 502, 1, 0, 0, 0, 14, 504, 1, 0, 0, 0, 14, 506, 1, 0, 0, 0, 14, 508, 1, 0, 0, 0, 14, 514, 1, 0, 0, 0, 14, 516, 1, 0, 0, 0, 14, 518, 1, 0, 0, 0, 14, 520, 1, 0, 0, 0, 15, 522, 1, 0, 0, 0, 15, 524, 1, 0, 0, 0, 15, 526, 1, 0, 0, 0, 15, 528, 1, 0, 0, 0, 15, 530, 1, 0, 0, 0, 15, 532, 1, 0, 0, 0, 15, 534, 1, 0, 0, 0, 15, 536, 1, 0, 0, 0, 15, 538, 1, 0, 0, 0, 15, 540, 1, 0, 0, 0, 15, 542, 1, 0, 0, 0, 15, 544, 1, 0, 0, 0, 15, 546, 1, 0, 0, 0, 15, 548, 1, 0, 0, 0, 15, 550, 1, 0, 0, 0, 15, 552, 1, 0, 0, 0, 16, 554, 1, 0, 0, 0, 16, 556, 1, 0, 0, 0, 16, 558, 1, 0, 0, 0, 16, 560, 1, 0, 0, 0, 16, 562, 1, 0, 0, 0, 16, 564, 1, 0, 0, 0, 16, 566, 1, 0, 0, 0, 16, 568, 1, 0, 0, 0, 16, 570, 1, 0, 0, 0, 16, 572, 1, 0, 0, 0, 16, 574, 1, 0, 0, 0, 16, 576, 1, 0, 0, 0, 16, 578, 1, 0, 0, 0, 16, 580, 1, 0, 0, 0, 16, 582, 1, 0, 0, 0, 16, 584, 1, 0, 0, 0, 16, 586, 1, 0, 0, 0, 16, 588, 1, 0, 0, 0, 16, 590, 1, 0, 0, 0, 16, 592, 1, 0, 0, 0, 16, 594, 1, 0, 0, 0, 16, 596, 1, 0, 0, 0, 17, 598, 1, 0, 0, 0, 17, 600, 1, 0, 0, 0, 17, 602, 1, 0, 0, 0, 17, 604, 1, 0, 0, 0, 17, 606, 1, 0, 0, 0, 18, 608, 1, 0, 0, 0, 20, 625, 1, 0, 0, 0, 22, 641, 1, 0, 0, 0, 24, 647, 1, 0, 0, 0, 26, 662, 1, 0, 0, 0, 28, 671, 1, 0, 0, 0, 30, 682, 1, 0, 0, 0, 32, 695, 1, 0, 0, 0, 34, 705, 1, 0, 0, 0, 36, 712, 1, 0, 0, 0, 38, 719, 1, 0, 0, 0, 40, 727, 1, 0, 0, 0, 42, 736, 1, 0, 0, 0, 44, 742, 1, 0, 0, 0, 46, 751, 1, 0, 0, 0, 48, 758, 1, 0, 0, 0, 50, 766, 1, 0, 0, 0, 52, 774, 1, 0, 0, 0, 54, 781, 1, 0, 0, 0, 56, 786, 1, 0, 0, 0, 58, 793, 1, 0, 0, 0, 60, 800, 1, 0, 0, 0, 62, 809, 1, 0, 0, 0, 64, 823, 1, 0, 0, 0, 66, 832, 1, 0, 0, 0, 68, 840, 1, 0, 0, 0, 70, 848, 1, 0, 0, 0, 72, 857, 1, 0, 0, 0, 74, 869, 1, 0, 0, 0, 76, 881, 1, 0, 0, 0, 78, 888, 1, 0, 0, 0, 80, 895, 1, 0, 0, 0, 82, 907, 1, 0, 0, 0, 84, 916, 1, 0, 0, 0, 86, 922, 1, 0, 0, 0, 88, 930, 1, 0, 0, 0, 90, 936, 1, 0, 0, 0, 92, 941, 1, 0, 0, 0, 94, 947, 1, 0, 0, 0, 96, 951, 1, 0, 0, 0, 98, 955, 1, 0, 0, 0, 100, 959, 1, 0, 0, 0, 102, 963, 1, 0, 0, 0, 104, 967, 1, 0, 0, 0, 106, 971, 1, 0, 0, 0, 108, 975, 1, 0, 0, 0, 110, 979, 1, 0, 0, 0, 112, 983, 1, 0, 0, 0, 114, 987, 1, 0, 0, 0, 116, 991, 1, 0, 0, 0, 118, 996, 1, 0, 0, 0, 120, 1002, 1, 0, 0, 0, 122, 1007, 1, 0, 0, 0, 124, 1012, 1, 0, 0, 0, 126, 1021, 1, 0, 0, 0, 128, 1028, 1, 0, 0, 0, 130, 1032, 1, 0, 0, 0, 132, 1036, 1, 0, 0, 0, 134, 1040, 1, 0, 0, 0, 136, 1044, 1, 0, 0, 0, 138, 1048, 1, 0, 0, 0, 140, 1054, 1, 0, 0, 0, 142, 1061, 1, 0, 0, 0, 144, 1065, 1, 0, 0, 0, 146, 1069, 1, 0, 0, 0, 148, 1073, 1, 0, 0, 0, 150, 1077, 1, 0, 0, 0, 152, 1081, 1, 0, 0, 0, 154, 1085, 1, 0, 0, 0, 156, 1089, 1, 0, 0, 0, 158, 1093, 1, 0, 0, 0, 160, 1097, 1, 0, 0, 0, 162, 1101, 1, 0, 0, 0, 164, 1105, 1, 0, 0, 0, 166, 1109, 1, 0, 0, 0, 168, 1113, 1, 0, 0, 0, 170, 1117, 1, 0, 0, 0, 172, 1121, 1, 0, 0, 0, 174, 1126, 1, 0, 0, 0, 176, 1131, 1, 0, 0, 0, 178, 1135, 1, 0, 0, 0, 180, 1139, 1, 0, 0, 0, 182, 1143, 1, 0, 0, 0, 184, 1147, 1, 0, 0, 0, 186, 1149, 1, 0, 0, 0, 188, 1151, 1, 0, 0, 0, 190, 1154, 1, 0, 0, 0, 192, 1156, 1, 0, 0, 0, 194, 1165, 1, 0, 0, 0, 196, 1167, 1, 0, 0, 0, 198, 1172, 1, 0, 0, 0, 200, 1174, 1, 0, 0, 0, 202, 1179, 1, 0, 0, 0, 204, 1210, 1, 0, 0, 0, 206, 1213, 1, 0, 0, 0, 208, 1259, 1, 0, 0, 0, 210, 1261, 1, 0, 0, 0, 212, 1265, 1, 0, 0, 0, 214, 1269, 1, 0, 0, 0, 216, 1271, 1, 0, 0, 0, 218, 1274, 1, 0, 0, 0, 220, 1277, 1, 0, 0, 0, 222, 1279, 1, 0, 0, 0, 224, 1281, 1, 0, 0, 0, 226, 1283, 1, 0, 0, 0, 228, 1288, 1, 0, 0, 0, 230, 1290, 1, 0, 0, 0, 232, 1296, 1, 0, 0, 0, 234, 1302, 1, 0, 0, 0, 236, 1305, 1, 0, 0, 0, 238, 1308, 1, 0, 0, 0, 240, 1313, 1, 0, 0, 0, 242, 1318, 1, 0, 0, 0, 244, 1322, 1, 0, 0, 0, 246, 1327, 1, 0, 0, 0, 248, 1333, 1, 0, 0, 0, 250, 1336, 1, 0, 0, 0, 252, 1339, 1, 0, 0, 0, 254, 1341, 1, 0, 0, 0, 256, 1347, 1, 0, 0, 0, 258, 1352, 1, 0, 0, 0, 260, 1357, 1, 0, 0, 0, 262, 1360, 1, 0, 0, 0, 264, 1363, 1, 0, 0, 0, 266, 1366, 1, 0, 0, 0, 268, 1368, 1, 0, 0, 0, 270, 1371, 1, 0, 0, 0, 272, 1373, 1, 0, 0, 0, 274, 1376, 1, 0, 0, 0, 276, 1378, 1, 0, 0, 0, 278, 1380, 1, 0, 0, 0, 280, 1382, 1, 0, 0, 0, 282, 1384, 1, 0, 0, 0, 284, 1386, 1, 0, 0, 0, 286, 1388, 1, 0, 0, 0, 288, 1390, 1, 0, 0, 0, 290, 1393, 1, 0, 0, 0, 292, 1414, 1, 0, 0, 0, 294, 1433, 1, 0, 0, 0, 296, 1435, 1, 0, 0, 0, 298, 1440, 1, 0, 0, 0, 300, 1445, 1, 0, 0, 0, 302, 1450, 1, 0, 0, 0, 304, 1471, 1, 0, 0, 0, 306, 1473, 1, 0, 0, 0, 308, 1481, 1, 0, 0, 0, 310, 1483, 1, 0, 0, 0, 312, 1487, 1, 0, 0, 0, 314, 1491, 1, 0, 0, 0, 316, 1495, 1, 0, 0, 0, 318, 1500, 1, 0, 0, 0, 320, 1504, 1, 0, 0, 0, 322, 1508, 1, 0, 0, 0, 324, 1512, 1, 0, 0, 0, 326, 1516, 1, 0, 0, 0, 328, 1525, 1, 0, 0, 0, 330, 1531, 1, 0, 0, 0, 332, 1539, 1, 0, 0, 0, 334, 1542, 1, 0, 0, 0, 336, 1546, 1, 0, 0, 0, 338, 1550, 1, 0, 0, 0, 340, 1554, 1, 0, 0, 0, 342, 1558, 1, 0, 0, 0, 344, 1562, 1, 0, 0, 0, 346, 1566, 1, 0, 0, 0, 348, 1571, 1, 0, 0, 0, 350, 1577, 1, 0, 0, 0, 352, 1582, 1, 0, 0, 0, 354, 1586, 1, 0, 0, 0, 356, 1590, 1, 0, 0, 0, 358, 1594, 1, 0, 0, 0, 360, 1599, 1, 0, 0, 0, 362, 1605, 1, 0, 0, 0, 364, 1611, 1, 0, 0, 0, 366, 1617, 1, 0, 0, 0, 368, 1621, 1, 0, 0, 0, 370, 1627, 1, 0, 0, 0, 372, 1631, 1, 0, 0, 0, 374, 1635, 1, 0, 0, 0, 376, 1639, 1, 0, 0, 0, 378, 1643, 1, 0, 0, 0, 380, 1647, 1, 0, 0, 0, 382, 1651, 1, 0, 0, 0, 384, 1655, 1, 0, 0, 0, 386, 1659, 1, 0, 0, 0, 388, 1663, 1, 0, 0, 0, 390, 1667, 1, 0, 0, 0, 392, 1671, 1, 0, 0, 0, 394, 1675, 1, 0, 0, 0, 396, 1684, 1, 0, 0, 0, 398, 1688, 1, 0, 0, 0, 400, 1692, 1, 0, 0, 0, 402, 1696, 1, 0, 0, 0, 404, 1701, 1, 0, 0, 0, 406, 1706, 1, 0, 0, 0, 408, 1710, 1, 0, 0, 0, 410, 1716, 1, 0, 0, 0, 412, 1725, 1, 0, 0, 0, 414, 1729, 1, 0, 0, 0, 416, 1733, 1, 0, 0, 0, 418, 1737, 1, 0, 0, 0, 420, 1741, 1, 0, 0, 0, 422, 1745, 1, 0, 0, 0, 424, 1749, 1, 0, 0, 0, 426, 1754, 1, 0, 0, 0, 428, 1760, 1, 0, 0, 0, 430, 1764, 1, 0, 0, 0, 432, 1768, 1, 0, 0, 0, 434, 1772, 1, 0, 0, 0, 436, 1777, 1, 0, 0, 0, 438, 1781, 1, 0, 0, 0, 440, 1785, 1, 0, 0, 0, 442, 1789, 1, 0, 0, 0, 444, 1793, 1, 0, 0, 0, 446, 1797, 1, 0, 0, 0, 448, 1803, 1, 0, 0, 0, 450, 1810, 1, 0, 0, 0, 452, 1814, 1, 0, 0, 0, 454, 1818, 1, 0, 0, 0, 456, 1822, 1, 0, 0, 0, 458, 1826, 1, 0, 0, 0, 460, 1830, 1, 0, 0, 0, 462, 1834, 1, 0, 0, 0, 464, 1839, 1, 0, 0, 0, 466, 1845, 1, 0, 0, 0, 468, 1849, 1, 0, 0, 0, 470, 1853, 1, 0, 0, 0, 472, 1857, 1, 0, 0, 0, 474, 1861, 1, 0, 0, 0, 476, 1865, 1, 0, 0, 0, 478, 1869, 1, 0, 0, 0, 480, 1873, 1, 0, 0, 0, 482, 1877, 1, 0, 0, 0, 484, 1881, 1, 0, 0, 0, 486, 1885, 1, 0, 0, 0, 488, 1889, 1, 0, 0, 0, 490, 1893, 1, 0, 0, 0, 492, 1898, 1, 0, 0, 0, 494, 1904, 1, 0, 0, 0, 496, 1908, 1, 0, 0, 0, 498, 1912, 1, 0, 0, 0, 500, 1916, 1, 0, 0, 0, 502, 1920, 1, 0, 0, 0, 504, 1924, 1, 0, 0, 0, 506, 1928, 1, 0, 0, 0, 508, 1932, 1, 0, 0, 0, 510, 1940, 1, 0, 0, 0, 512, 1961, 1, 0, 0, 0, 514, 1965, 1, 0, 0, 0, 516, 1969, 1, 0, 0, 0, 518, 1973, 1, 0, 0, 0, 520, 1977, 1, 0, 0, 0, 522, 1981, 1, 0, 0, 0, 524, 1986, 1, 0, 0, 0, 526, 1992, 1, 0, 0, 0, 528, 1996, 1, 0, 0, 0, 530, 2000, 1, 0, 0, 0, 532, 2004, 1, 0, 0, 0, 534, 2008, 1, 0, 0, 0, 536, 2012, 1, 0, 0, 0, 538, 2016, 1, 0, 0, 0, 540, 2020, 1, 0, 0, 0, 542, 2024, 1, 0, 0, 0, 544, 2028, 1, 0, 0, 0, 546, 2031, 1, 0, 0, 0, 548, 2035, 1, 0, 0, 0, 550, 2039, 1, 0, 0, 0, 552, 2043, 1, 0, 0, 0, 554, 2047, 1, 0, 0, 0, 556, 2051, 1, 0, 0, 0, 558, 2055, 1, 0, 0, 0, 560, 2059, 1, 0, 0, 0, 562, 2064, 1, 0, 0, 0, 564, 2068, 1, 0, 0, 0, 566, 2072, 1, 0, 0, 0, 568, 2076, 1, 0, 0, 0, 570, 2080, 1, 0, 0, 0, 572, 2084, 1, 0, 0, 0, 574, 2088, 1, 0, 0, 0, 576, 2092, 1, 0, 0, 0, 578, 2096, 1, 0, 0, 0, 580, 2100, 1, 0, 0, 0, 582, 2104, 1, 0, 0, 0, 584, 2108, 1, 0, 0, 0, 586, 2112, 1, 0, 0, 0, 588, 2116, 1, 0, 0, 0, 590, 2120, 1, 0, 0, 0, 592, 2124, 1, 0, 0, 0, 594, 2128, 1, 0, 0, 0, 596, 2132, 1, 0, 0, 0, 598, 2136, 1, 0, 0, 0, 600, 2141, 1, 0, 0, 0, 602, 2146, 1, 0, 0, 0, 604, 2150, 1, 0, 0, 0, 606, 2154, 1, 0, 0, 0, 608, 609, 5, 47, 0, 0, 609, 610, 5, 47, 0, 0, 610, 614, 1, 0, 0, 0, 611, 613, 8, 0, 0, 0, 612, 611, 1, 0, 0, 0, 613, 616, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 618, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 619, 5, 13, 0, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 621, 1, 0, 0, 0, 620, 622, 5, 10, 0, 0, 621, 620, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 6, 0, 0, 0, 624, 19, 1, 0, 0, 0, 625, 626, 5, 47, 0, 0, 626, 627, 5, 42, 0, 0, 627, 632, 1, 0, 0, 0, 628, 631, 3, 20, 1, 0, 629, 631, 9, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 629, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 635, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 5, 42, 0, 0, 636, 637, 5, 47, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 6, 1, 0, 0, 639, 21, 1, 0, 0, 0, 640, 642, 7, 1, 0, 0, 641, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 6, 2, 0, 0, 646, 23, 1, 0, 0, 0, 647, 648, 7, 2, 0, 0, 648, 649, 7, 3, 0, 0, 649, 650, 7, 4, 0, 0, 650, 651, 7, 5, 0, 0, 651, 652, 7, 6, 0, 0, 652, 653, 7, 7, 0, 0, 653, 654, 5, 95, 0, 0, 654, 655, 7, 8, 0, 0, 655, 656, 7, 9, 0, 0, 656, 657, 7, 10, 0, 0, 657, 658, 7, 5, 0, 0, 658, 659, 7, 11, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 6, 3, 1, 0, 661, 25, 1, 0, 0, 0, 662, 663, 7, 7, 0, 0, 663, 664, 7, 5, 0, 0, 664, 665, 7, 12, 0, 0, 665, 666, 7, 10, 0, 0, 666, 667, 7, 2, 0, 0, 667, 668, 7, 3, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 6, 4, 2, 0, 670, 27, 1, 0, 0, 0, 671, 672, 4, 5, 0, 0, 672, 673, 7, 7, 0, 0, 673, 674, 7, 13, 0, 0, 674, 675, 7, 8, 0, 0, 675, 676, 7, 14, 0, 0, 676, 677, 7, 4, 0, 0, 677, 678, 7, 10, 0, 0, 678, 679, 7, 5, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 6, 5, 3, 0, 681, 29, 1, 0, 0, 0, 682, 683, 7, 2, 0, 0, 683, 684, 7, 9, 0, 0, 684, 685, 7, 15, 0, 0, 685, 686, 7, 8, 0, 0, 686, 687, 7, 14, 0, 0, 687, 688, 7, 7, 0, 0, 688, 689, 7, 11, 0, 0, 689, 690, 7, 10, 0, 0, 690, 691, 7, 9, 0, 0, 691, 692, 7, 5, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 6, 6, 4, 0, 694, 31, 1, 0, 0, 0, 695, 696, 7, 16, 0, 0, 696, 697, 7, 10, 0, 0, 697, 698, 7, 17, 0, 0, 698, 699, 7, 17, 0, 0, 699, 700, 7, 7, 0, 0, 700, 701, 7, 2, 0, 0, 701, 702, 7, 11, 0, 0, 702, 703, 1, 0, 0, 0, 703, 704, 6, 7, 4, 0, 704, 33, 1, 0, 0, 0, 705, 706, 7, 7, 0, 0, 706, 707, 7, 18, 0, 0, 707, 708, 7, 4, 0, 0, 708, 709, 7, 14, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 6, 8, 4, 0, 711, 35, 1, 0, 0, 0, 712, 713, 7, 6, 0, 0, 713, 714, 7, 12, 0, 0, 714, 715, 7, 9, 0, 0, 715, 716, 7, 19, 0, 0, 716, 717, 1, 0, 0, 0, 717, 718, 6, 9, 4, 0, 718, 37, 1, 0, 0, 0, 719, 720, 7, 14, 0, 0, 720, 721, 7, 10, 0, 0, 721, 722, 7, 15, 0, 0, 722, 723, 7, 10, 0, 0, 723, 724, 7, 11, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 6, 10, 4, 0, 726, 39, 1, 0, 0, 0, 727, 728, 7, 12, 0, 0, 728, 729, 7, 7, 0, 0, 729, 730, 7, 12, 0, 0, 730, 731, 7, 4, 0, 0, 731, 732, 7, 5, 0, 0, 732, 733, 7, 19, 0, 0, 733, 734, 1, 0, 0, 0, 734, 735, 6, 11, 4, 0, 735, 41, 1, 0, 0, 0, 736, 737, 7, 12, 0, 0, 737, 738, 7, 9, 0, 0, 738, 739, 7, 20, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 6, 12, 4, 0, 741, 43, 1, 0, 0, 0, 742, 743, 7, 17, 0, 0, 743, 744, 7, 4, 0, 0, 744, 745, 7, 15, 0, 0, 745, 746, 7, 8, 0, 0, 746, 747, 7, 14, 0, 0, 747, 748, 7, 7, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 6, 13, 4, 0, 750, 45, 1, 0, 0, 0, 751, 752, 7, 17, 0, 0, 752, 753, 7, 9, 0, 0, 753, 754, 7, 12, 0, 0, 754, 755, 7, 11, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 6, 14, 4, 0, 757, 47, 1, 0, 0, 0, 758, 759, 7, 17, 0, 0, 759, 760, 7, 11, 0, 0, 760, 761, 7, 4, 0, 0, 761, 762, 7, 11, 0, 0, 762, 763, 7, 17, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 6, 15, 4, 0, 765, 49, 1, 0, 0, 0, 766, 767, 7, 20, 0, 0, 767, 768, 7, 3, 0, 0, 768, 769, 7, 7, 0, 0, 769, 770, 7, 12, 0, 0, 770, 771, 7, 7, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 6, 16, 4, 0, 773, 51, 1, 0, 0, 0, 774, 775, 7, 21, 0, 0, 775, 776, 7, 12, 0, 0, 776, 777, 7, 9, 0, 0, 777, 778, 7, 15, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 6, 17, 5, 0, 780, 53, 1, 0, 0, 0, 781, 782, 7, 11, 0, 0, 782, 783, 7, 17, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 6, 18, 5, 0, 785, 55, 1, 0, 0, 0, 786, 787, 7, 21, 0, 0, 787, 788, 7, 9, 0, 0, 788, 789, 7, 12, 0, 0, 789, 790, 7, 19, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 6, 19, 6, 0, 792, 57, 1, 0, 0, 0, 793, 794, 7, 21, 0, 0, 794, 795, 7, 22, 0, 0, 795, 796, 7, 17, 0, 0, 796, 797, 7, 7, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 6, 20, 7, 0, 799, 59, 1, 0, 0, 0, 800, 801, 7, 10, 0, 0, 801, 802, 7, 5, 0, 0, 802, 803, 7, 14, 0, 0, 803, 804, 7, 10, 0, 0, 804, 805, 7, 5, 0, 0, 805, 806, 7, 7, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 6, 21, 8, 0, 808, 61, 1, 0, 0, 0, 809, 810, 7, 10, 0, 0, 810, 811, 7, 5, 0, 0, 811, 812, 7, 14, 0, 0, 812, 813, 7, 10, 0, 0, 813, 814, 7, 5, 0, 0, 814, 815, 7, 7, 0, 0, 815, 816, 7, 17, 0, 0, 816, 817, 7, 11, 0, 0, 817, 818, 7, 4, 0, 0, 818, 819, 7, 11, 0, 0, 819, 820, 7, 17, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 6, 22, 4, 0, 822, 63, 1, 0, 0, 0, 823, 824, 7, 14, 0, 0, 824, 825, 7, 9, 0, 0, 825, 826, 7, 9, 0, 0, 826, 827, 7, 19, 0, 0, 827, 828, 7, 22, 0, 0, 828, 829, 7, 8, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 6, 23, 9, 0, 831, 65, 1, 0, 0, 0, 832, 833, 4, 24, 1, 0, 833, 834, 7, 21, 0, 0, 834, 835, 7, 22, 0, 0, 835, 836, 7, 14, 0, 0, 836, 837, 7, 14, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 6, 24, 9, 0, 839, 67, 1, 0, 0, 0, 840, 841, 4, 25, 2, 0, 841, 842, 7, 14, 0, 0, 842, 843, 7, 7, 0, 0, 843, 844, 7, 21, 0, 0, 844, 845, 7, 11, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 6, 25, 9, 0, 847, 69, 1, 0, 0, 0, 848, 849, 4, 26, 3, 0, 849, 850, 7, 12, 0, 0, 850, 851, 7, 10, 0, 0, 851, 852, 7, 6, 0, 0, 852, 853, 7, 3, 0, 0, 853, 854, 7, 11, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 6, 26, 9, 0, 856, 71, 1, 0, 0, 0, 857, 858, 4, 27, 4, 0, 858, 859, 7, 14, 0, 0, 859, 860, 7, 9, 0, 0, 860, 861, 7, 9, 0, 0, 861, 862, 7, 19, 0, 0, 862, 863, 7, 22, 0, 0, 863, 864, 7, 8, 0, 0, 864, 865, 5, 95, 0, 0, 865, 866, 5, 128020, 0, 0, 866, 867, 1, 0, 0, 0, 867, 868, 6, 27, 10, 0, 868, 73, 1, 0, 0, 0, 869, 870, 7, 15, 0, 0, 870, 871, 7, 18, 0, 0, 871, 872, 5, 95, 0, 0, 872, 873, 7, 7, 0, 0, 873, 874, 7, 13, 0, 0, 874, 875, 7, 8, 0, 0, 875, 876, 7, 4, 0, 0, 876, 877, 7, 5, 0, 0, 877, 878, 7, 16, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 6, 28, 11, 0, 880, 75, 1, 0, 0, 0, 881, 882, 7, 16, 0, 0, 882, 883, 7, 12, 0, 0, 883, 884, 7, 9, 0, 0, 884, 885, 7, 8, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 6, 29, 12, 0, 887, 77, 1, 0, 0, 0, 888, 889, 7, 19, 0, 0, 889, 890, 7, 7, 0, 0, 890, 891, 7, 7, 0, 0, 891, 892, 7, 8, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 6, 30, 12, 0, 894, 79, 1, 0, 0, 0, 895, 896, 4, 31, 5, 0, 896, 897, 7, 10, 0, 0, 897, 898, 7, 5, 0, 0, 898, 899, 7, 17, 0, 0, 899, 900, 7, 10, 0, 0, 900, 901, 7, 17, 0, 0, 901, 902, 7, 11, 0, 0, 902, 903, 5, 95, 0, 0, 903, 904, 5, 128020, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 6, 31, 12, 0, 906, 81, 1, 0, 0, 0, 907, 908, 7, 12, 0, 0, 908, 909, 7, 7, 0, 0, 909, 910, 7, 5, 0, 0, 910, 911, 7, 4, 0, 0, 911, 912, 7, 15, 0, 0, 912, 913, 7, 7, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 6, 32, 13, 0, 915, 83, 1, 0, 0, 0, 916, 917, 7, 17, 0, 0, 917, 918, 7, 7, 0, 0, 918, 919, 7, 11, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 6, 33, 14, 0, 921, 85, 1, 0, 0, 0, 922, 923, 7, 17, 0, 0, 923, 924, 7, 3, 0, 0, 924, 925, 7, 9, 0, 0, 925, 926, 7, 20, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 34, 15, 0, 928, 87, 1, 0, 0, 0, 929, 931, 8, 23, 0, 0, 930, 929, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 6, 35, 4, 0, 935, 89, 1, 0, 0, 0, 936, 937, 3, 182, 82, 0, 937, 938, 1, 0, 0, 0, 938, 939, 6, 36, 16, 0, 939, 940, 6, 36, 17, 0, 940, 91, 1, 0, 0, 0, 941, 942, 3, 302, 142, 0, 942, 943, 1, 0, 0, 0, 943, 944, 6, 37, 18, 0, 944, 945, 6, 37, 17, 0, 945, 946, 6, 37, 17, 0, 946, 93, 1, 0, 0, 0, 947, 948, 3, 248, 115, 0, 948, 949, 1, 0, 0, 0, 949, 950, 6, 38, 19, 0, 950, 95, 1, 0, 0, 0, 951, 952, 3, 544, 263, 0, 952, 953, 1, 0, 0, 0, 953, 954, 6, 39, 20, 0, 954, 97, 1, 0, 0, 0, 955, 956, 3, 228, 105, 0, 956, 957, 1, 0, 0, 0, 957, 958, 6, 40, 21, 0, 958, 99, 1, 0, 0, 0, 959, 960, 3, 224, 103, 0, 960, 961, 1, 0, 0, 0, 961, 962, 6, 41, 22, 0, 962, 101, 1, 0, 0, 0, 963, 964, 3, 296, 139, 0, 964, 965, 1, 0, 0, 0, 965, 966, 6, 42, 23, 0, 966, 103, 1, 0, 0, 0, 967, 968, 3, 298, 140, 0, 968, 969, 1, 0, 0, 0, 969, 970, 6, 43, 24, 0, 970, 105, 1, 0, 0, 0, 971, 972, 3, 308, 145, 0, 972, 973, 1, 0, 0, 0, 973, 974, 6, 44, 25, 0, 974, 107, 1, 0, 0, 0, 975, 976, 3, 304, 143, 0, 976, 977, 1, 0, 0, 0, 977, 978, 6, 45, 26, 0, 978, 109, 1, 0, 0, 0, 979, 980, 3, 18, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 6, 46, 0, 0, 982, 111, 1, 0, 0, 0, 983, 984, 3, 20, 1, 0, 984, 985, 1, 0, 0, 0, 985, 986, 6, 47, 0, 0, 986, 113, 1, 0, 0, 0, 987, 988, 3, 22, 2, 0, 988, 989, 1, 0, 0, 0, 989, 990, 6, 48, 0, 0, 990, 115, 1, 0, 0, 0, 991, 992, 3, 182, 82, 0, 992, 993, 1, 0, 0, 0, 993, 994, 6, 49, 16, 0, 994, 995, 6, 49, 17, 0, 995, 117, 1, 0, 0, 0, 996, 997, 3, 302, 142, 0, 997, 998, 1, 0, 0, 0, 998, 999, 6, 50, 18, 0, 999, 1000, 6, 50, 17, 0, 1000, 1001, 6, 50, 17, 0, 1001, 119, 1, 0, 0, 0, 1002, 1003, 3, 248, 115, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 6, 51, 19, 0, 1005, 1006, 6, 51, 27, 0, 1006, 121, 1, 0, 0, 0, 1007, 1008, 3, 258, 120, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 6, 52, 28, 0, 1010, 1011, 6, 52, 27, 0, 1011, 123, 1, 0, 0, 0, 1012, 1013, 8, 24, 0, 0, 1013, 125, 1, 0, 0, 0, 1014, 1016, 3, 124, 53, 0, 1015, 1014, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 3, 220, 101, 0, 1020, 1022, 1, 0, 0, 0, 1021, 1015, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1024, 1, 0, 0, 0, 1023, 1025, 3, 124, 53, 0, 1024, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 127, 1, 0, 0, 0, 1028, 1029, 3, 126, 54, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 6, 55, 29, 0, 1031, 129, 1, 0, 0, 0, 1032, 1033, 3, 204, 93, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 6, 56, 30, 0, 1035, 131, 1, 0, 0, 0, 1036, 1037, 3, 18, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 6, 57, 0, 0, 1039, 133, 1, 0, 0, 0, 1040, 1041, 3, 20, 1, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 6, 58, 0, 0, 1043, 135, 1, 0, 0, 0, 1044, 1045, 3, 22, 2, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 6, 59, 0, 0, 1047, 137, 1, 0, 0, 0, 1048, 1049, 3, 182, 82, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 6, 60, 16, 0, 1051, 1052, 6, 60, 17, 0, 1052, 1053, 6, 60, 17, 0, 1053, 139, 1, 0, 0, 0, 1054, 1055, 3, 302, 142, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 6, 61, 18, 0, 1057, 1058, 6, 61, 17, 0, 1058, 1059, 6, 61, 17, 0, 1059, 1060, 6, 61, 17, 0, 1060, 141, 1, 0, 0, 0, 1061, 1062, 3, 296, 139, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 6, 62, 23, 0, 1064, 143, 1, 0, 0, 0, 1065, 1066, 3, 298, 140, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 6, 63, 24, 0, 1068, 145, 1, 0, 0, 0, 1069, 1070, 3, 214, 98, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 6, 64, 31, 0, 1072, 147, 1, 0, 0, 0, 1073, 1074, 3, 224, 103, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 6, 65, 22, 0, 1076, 149, 1, 0, 0, 0, 1077, 1078, 3, 228, 105, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 6, 66, 21, 0, 1080, 151, 1, 0, 0, 0, 1081, 1082, 3, 258, 120, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 6, 67, 28, 0, 1084, 153, 1, 0, 0, 0, 1085, 1086, 3, 514, 248, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 6, 68, 32, 0, 1088, 155, 1, 0, 0, 0, 1089, 1090, 3, 308, 145, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 6, 69, 25, 0, 1092, 157, 1, 0, 0, 0, 1093, 1094, 3, 252, 117, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 6, 70, 33, 0, 1096, 159, 1, 0, 0, 0, 1097, 1098, 3, 292, 137, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 6, 71, 34, 0, 1100, 161, 1, 0, 0, 0, 1101, 1102, 3, 288, 135, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 6, 72, 35, 0, 1104, 163, 1, 0, 0, 0, 1105, 1106, 3, 294, 138, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 6, 73, 36, 0, 1108, 165, 1, 0, 0, 0, 1109, 1110, 3, 18, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 6, 74, 0, 0, 1112, 167, 1, 0, 0, 0, 1113, 1114, 3, 20, 1, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 6, 75, 0, 0, 1116, 169, 1, 0, 0, 0, 1117, 1118, 3, 22, 2, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 6, 76, 0, 0, 1120, 171, 1, 0, 0, 0, 1121, 1122, 3, 300, 141, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 6, 77, 37, 0, 1124, 1125, 6, 77, 38, 0, 1125, 173, 1, 0, 0, 0, 1126, 1127, 3, 182, 82, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 6, 78, 16, 0, 1129, 1130, 6, 78, 17, 0, 1130, 175, 1, 0, 0, 0, 1131, 1132, 3, 22, 2, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 6, 79, 0, 0, 1134, 177, 1, 0, 0, 0, 1135, 1136, 3, 18, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 6, 80, 0, 0, 1138, 179, 1, 0, 0, 0, 1139, 1140, 3, 20, 1, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 6, 81, 0, 0, 1142, 181, 1, 0, 0, 0, 1143, 1144, 5, 124, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 6, 82, 17, 0, 1146, 183, 1, 0, 0, 0, 1147, 1148, 7, 25, 0, 0, 1148, 185, 1, 0, 0, 0, 1149, 1150, 7, 26, 0, 0, 1150, 187, 1, 0, 0, 0, 1151, 1152, 5, 92, 0, 0, 1152, 1153, 7, 27, 0, 0, 1153, 189, 1, 0, 0, 0, 1154, 1155, 8, 28, 0, 0, 1155, 191, 1, 0, 0, 0, 1156, 1158, 7, 7, 0, 0, 1157, 1159, 7, 29, 0, 0, 1158, 1157, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 1, 0, 0, 0, 1160, 1162, 3, 184, 83, 0, 1161, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 193, 1, 0, 0, 0, 1165, 1166, 5, 64, 0, 0, 1166, 195, 1, 0, 0, 0, 1167, 1168, 5, 96, 0, 0, 1168, 197, 1, 0, 0, 0, 1169, 1173, 8, 30, 0, 0, 1170, 1171, 5, 96, 0, 0, 1171, 1173, 5, 96, 0, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1173, 199, 1, 0, 0, 0, 1174, 1175, 5, 95, 0, 0, 1175, 201, 1, 0, 0, 0, 1176, 1180, 3, 186, 84, 0, 1177, 1180, 3, 184, 83, 0, 1178, 1180, 3, 200, 91, 0, 1179, 1176, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1179, 1178, 1, 0, 0, 0, 1180, 203, 1, 0, 0, 0, 1181, 1186, 5, 34, 0, 0, 1182, 1185, 3, 188, 85, 0, 1183, 1185, 3, 190, 86, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1183, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1211, 5, 34, 0, 0, 1190, 1191, 5, 34, 0, 0, 1191, 1192, 5, 34, 0, 0, 1192, 1193, 5, 34, 0, 0, 1193, 1197, 1, 0, 0, 0, 1194, 1196, 8, 0, 0, 0, 1195, 1194, 1, 0, 0, 0, 1196, 1199, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1198, 1200, 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1200, 1201, 5, 34, 0, 0, 1201, 1202, 5, 34, 0, 0, 1202, 1203, 5, 34, 0, 0, 1203, 1205, 1, 0, 0, 0, 1204, 1206, 5, 34, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1208, 1, 0, 0, 0, 1207, 1209, 5, 34, 0, 0, 1208, 1207, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1211, 1, 0, 0, 0, 1210, 1181, 1, 0, 0, 0, 1210, 1190, 1, 0, 0, 0, 1211, 205, 1, 0, 0, 0, 1212, 1214, 3, 184, 83, 0, 1213, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 207, 1, 0, 0, 0, 1217, 1219, 3, 184, 83, 0, 1218, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1218, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1226, 3, 228, 105, 0, 1223, 1225, 3, 184, 83, 0, 1224, 1223, 1, 0, 0, 0, 1225, 1228, 1, 0, 0, 0, 1226, 1224, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1260, 1, 0, 0, 0, 1228, 1226, 1, 0, 0, 0, 1229, 1231, 3, 228, 105, 0, 1230, 1232, 3, 184, 83, 0, 1231, 1230, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1260, 1, 0, 0, 0, 1235, 1237, 3, 184, 83, 0, 1236, 1235, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1247, 1, 0, 0, 0, 1240, 1244, 3, 228, 105, 0, 1241, 1243, 3, 184, 83, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1240, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1250, 3, 192, 87, 0, 1250, 1260, 1, 0, 0, 0, 1251, 1253, 3, 228, 105, 0, 1252, 1254, 3, 184, 83, 0, 1253, 1252, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 3, 192, 87, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1218, 1, 0, 0, 0, 1259, 1229, 1, 0, 0, 0, 1259, 1236, 1, 0, 0, 0, 1259, 1251, 1, 0, 0, 0, 1260, 209, 1, 0, 0, 0, 1261, 1262, 7, 4, 0, 0, 1262, 1263, 7, 5, 0, 0, 1263, 1264, 7, 16, 0, 0, 1264, 211, 1, 0, 0, 0, 1265, 1266, 7, 4, 0, 0, 1266, 1267, 7, 17, 0, 0, 1267, 1268, 7, 2, 0, 0, 1268, 213, 1, 0, 0, 0, 1269, 1270, 5, 61, 0, 0, 1270, 215, 1, 0, 0, 0, 1271, 1272, 7, 31, 0, 0, 1272, 1273, 7, 32, 0, 0, 1273, 217, 1, 0, 0, 0, 1274, 1275, 5, 58, 0, 0, 1275, 1276, 5, 58, 0, 0, 1276, 219, 1, 0, 0, 0, 1277, 1278, 5, 58, 0, 0, 1278, 221, 1, 0, 0, 0, 1279, 1280, 5, 59, 0, 0, 1280, 223, 1, 0, 0, 0, 1281, 1282, 5, 44, 0, 0, 1282, 225, 1, 0, 0, 0, 1283, 1284, 7, 16, 0, 0, 1284, 1285, 7, 7, 0, 0, 1285, 1286, 7, 17, 0, 0, 1286, 1287, 7, 2, 0, 0, 1287, 227, 1, 0, 0, 0, 1288, 1289, 5, 46, 0, 0, 1289, 229, 1, 0, 0, 0, 1290, 1291, 7, 21, 0, 0, 1291, 1292, 7, 4, 0, 0, 1292, 1293, 7, 14, 0, 0, 1293, 1294, 7, 17, 0, 0, 1294, 1295, 7, 7, 0, 0, 1295, 231, 1, 0, 0, 0, 1296, 1297, 7, 21, 0, 0, 1297, 1298, 7, 10, 0, 0, 1298, 1299, 7, 12, 0, 0, 1299, 1300, 7, 17, 0, 0, 1300, 1301, 7, 11, 0, 0, 1301, 233, 1, 0, 0, 0, 1302, 1303, 7, 10, 0, 0, 1303, 1304, 7, 5, 0, 0, 1304, 235, 1, 0, 0, 0, 1305, 1306, 7, 10, 0, 0, 1306, 1307, 7, 17, 0, 0, 1307, 237, 1, 0, 0, 0, 1308, 1309, 7, 14, 0, 0, 1309, 1310, 7, 4, 0, 0, 1310, 1311, 7, 17, 0, 0, 1311, 1312, 7, 11, 0, 0, 1312, 239, 1, 0, 0, 0, 1313, 1314, 7, 14, 0, 0, 1314, 1315, 7, 10, 0, 0, 1315, 1316, 7, 19, 0, 0, 1316, 1317, 7, 7, 0, 0, 1317, 241, 1, 0, 0, 0, 1318, 1319, 7, 5, 0, 0, 1319, 1320, 7, 9, 0, 0, 1320, 1321, 7, 11, 0, 0, 1321, 243, 1, 0, 0, 0, 1322, 1323, 7, 5, 0, 0, 1323, 1324, 7, 22, 0, 0, 1324, 1325, 7, 14, 0, 0, 1325, 1326, 7, 14, 0, 0, 1326, 245, 1, 0, 0, 0, 1327, 1328, 7, 5, 0, 0, 1328, 1329, 7, 22, 0, 0, 1329, 1330, 7, 14, 0, 0, 1330, 1331, 7, 14, 0, 0, 1331, 1332, 7, 17, 0, 0, 1332, 247, 1, 0, 0, 0, 1333, 1334, 7, 9, 0, 0, 1334, 1335, 7, 5, 0, 0, 1335, 249, 1, 0, 0, 0, 1336, 1337, 7, 9, 0, 0, 1337, 1338, 7, 12, 0, 0, 1338, 251, 1, 0, 0, 0, 1339, 1340, 5, 63, 0, 0, 1340, 253, 1, 0, 0, 0, 1341, 1342, 7, 12, 0, 0, 1342, 1343, 7, 14, 0, 0, 1343, 1344, 7, 10, 0, 0, 1344, 1345, 7, 19, 0, 0, 1345, 1346, 7, 7, 0, 0, 1346, 255, 1, 0, 0, 0, 1347, 1348, 7, 11, 0, 0, 1348, 1349, 7, 12, 0, 0, 1349, 1350, 7, 22, 0, 0, 1350, 1351, 7, 7, 0, 0, 1351, 257, 1, 0, 0, 0, 1352, 1353, 7, 20, 0, 0, 1353, 1354, 7, 10, 0, 0, 1354, 1355, 7, 11, 0, 0, 1355, 1356, 7, 3, 0, 0, 1356, 259, 1, 0, 0, 0, 1357, 1358, 5, 61, 0, 0, 1358, 1359, 5, 61, 0, 0, 1359, 261, 1, 0, 0, 0, 1360, 1361, 5, 61, 0, 0, 1361, 1362, 5, 126, 0, 0, 1362, 263, 1, 0, 0, 0, 1363, 1364, 5, 33, 0, 0, 1364, 1365, 5, 61, 0, 0, 1365, 265, 1, 0, 0, 0, 1366, 1367, 5, 60, 0, 0, 1367, 267, 1, 0, 0, 0, 1368, 1369, 5, 60, 0, 0, 1369, 1370, 5, 61, 0, 0, 1370, 269, 1, 0, 0, 0, 1371, 1372, 5, 62, 0, 0, 1372, 271, 1, 0, 0, 0, 1373, 1374, 5, 62, 0, 0, 1374, 1375, 5, 61, 0, 0, 1375, 273, 1, 0, 0, 0, 1376, 1377, 5, 43, 0, 0, 1377, 275, 1, 0, 0, 0, 1378, 1379, 5, 45, 0, 0, 1379, 277, 1, 0, 0, 0, 1380, 1381, 5, 42, 0, 0, 1381, 279, 1, 0, 0, 0, 1382, 1383, 5, 47, 0, 0, 1383, 281, 1, 0, 0, 0, 1384, 1385, 5, 37, 0, 0, 1385, 283, 1, 0, 0, 0, 1386, 1387, 5, 123, 0, 0, 1387, 285, 1, 0, 0, 0, 1388, 1389, 5, 125, 0, 0, 1389, 287, 1, 0, 0, 0, 1390, 1391, 5, 63, 0, 0, 1391, 1392, 5, 63, 0, 0, 1392, 289, 1, 0, 0, 0, 1393, 1394, 3, 50, 16, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 6, 136, 39, 0, 1396, 291, 1, 0, 0, 0, 1397, 1400, 3, 252, 117, 0, 1398, 1401, 3, 186, 84, 0, 1399, 1401, 3, 200, 91, 0, 1400, 1398, 1, 0, 0, 0, 1400, 1399, 1, 0, 0, 0, 1401, 1405, 1, 0, 0, 0, 1402, 1404, 3, 202, 92, 0, 1403, 1402, 1, 0, 0, 0, 1404, 1407, 1, 0, 0, 0, 1405, 1403, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1415, 1, 0, 0, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1410, 3, 252, 117, 0, 1409, 1411, 3, 184, 83, 0, 1410, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1410, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1415, 1, 0, 0, 0, 1414, 1397, 1, 0, 0, 0, 1414, 1408, 1, 0, 0, 0, 1415, 293, 1, 0, 0, 0, 1416, 1419, 3, 288, 135, 0, 1417, 1420, 3, 186, 84, 0, 1418, 1420, 3, 200, 91, 0, 1419, 1417, 1, 0, 0, 0, 1419, 1418, 1, 0, 0, 0, 1420, 1424, 1, 0, 0, 0, 1421, 1423, 3, 202, 92, 0, 1422, 1421, 1, 0, 0, 0, 1423, 1426, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1434, 1, 0, 0, 0, 1426, 1424, 1, 0, 0, 0, 1427, 1429, 3, 288, 135, 0, 1428, 1430, 3, 184, 83, 0, 1429, 1428, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1429, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1416, 1, 0, 0, 0, 1433, 1427, 1, 0, 0, 0, 1434, 295, 1, 0, 0, 0, 1435, 1436, 5, 91, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 6, 139, 4, 0, 1438, 1439, 6, 139, 4, 0, 1439, 297, 1, 0, 0, 0, 1440, 1441, 5, 93, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 6, 140, 17, 0, 1443, 1444, 6, 140, 17, 0, 1444, 299, 1, 0, 0, 0, 1445, 1446, 5, 40, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1448, 6, 141, 4, 0, 1448, 1449, 6, 141, 4, 0, 1449, 301, 1, 0, 0, 0, 1450, 1451, 5, 41, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 6, 142, 17, 0, 1453, 1454, 6, 142, 17, 0, 1454, 303, 1, 0, 0, 0, 1455, 1459, 3, 186, 84, 0, 1456, 1458, 3, 202, 92, 0, 1457, 1456, 1, 0, 0, 0, 1458, 1461, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1472, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1462, 1465, 3, 200, 91, 0, 1463, 1465, 3, 194, 88, 0, 1464, 1462, 1, 0, 0, 0, 1464, 1463, 1, 0, 0, 0, 1465, 1467, 1, 0, 0, 0, 1466, 1468, 3, 202, 92, 0, 1467, 1466, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1455, 1, 0, 0, 0, 1471, 1464, 1, 0, 0, 0, 1472, 305, 1, 0, 0, 0, 1473, 1475, 3, 196, 89, 0, 1474, 1476, 3, 198, 90, 0, 1475, 1474, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 3, 196, 89, 0, 1480, 307, 1, 0, 0, 0, 1481, 1482, 3, 306, 144, 0, 1482, 309, 1, 0, 0, 0, 1483, 1484, 3, 18, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 6, 146, 0, 0, 1486, 311, 1, 0, 0, 0, 1487, 1488, 3, 20, 1, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 6, 147, 0, 0, 1490, 313, 1, 0, 0, 0, 1491, 1492, 3, 22, 2, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 6, 148, 0, 0, 1494, 315, 1, 0, 0, 0, 1495, 1496, 3, 182, 82, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 6, 149, 16, 0, 1498, 1499, 6, 149, 17, 0, 1499, 317, 1, 0, 0, 0, 1500, 1501, 3, 220, 101, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 6, 150, 40, 0, 1503, 319, 1, 0, 0, 0, 1504, 1505, 3, 218, 100, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 6, 151, 41, 0, 1507, 321, 1, 0, 0, 0, 1508, 1509, 3, 224, 103, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 6, 152, 22, 0, 1511, 323, 1, 0, 0, 0, 1512, 1513, 3, 214, 98, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 6, 153, 31, 0, 1515, 325, 1, 0, 0, 0, 1516, 1517, 7, 15, 0, 0, 1517, 1518, 7, 7, 0, 0, 1518, 1519, 7, 11, 0, 0, 1519, 1520, 7, 4, 0, 0, 1520, 1521, 7, 16, 0, 0, 1521, 1522, 7, 4, 0, 0, 1522, 1523, 7, 11, 0, 0, 1523, 1524, 7, 4, 0, 0, 1524, 327, 1, 0, 0, 0, 1525, 1526, 3, 302, 142, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 6, 155, 18, 0, 1528, 1529, 6, 155, 17, 0, 1529, 1530, 6, 155, 17, 0, 1530, 329, 1, 0, 0, 0, 1531, 1532, 3, 300, 141, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 6, 156, 37, 0, 1534, 1535, 6, 156, 38, 0, 1535, 331, 1, 0, 0, 0, 1536, 1540, 8, 33, 0, 0, 1537, 1538, 5, 47, 0, 0, 1538, 1540, 8, 34, 0, 0, 1539, 1536, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1540, 333, 1, 0, 0, 0, 1541, 1543, 3, 332, 157, 0, 1542, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 335, 1, 0, 0, 0, 1546, 1547, 3, 334, 158, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 6, 159, 42, 0, 1549, 337, 1, 0, 0, 0, 1550, 1551, 3, 204, 93, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 6, 160, 30, 0, 1553, 339, 1, 0, 0, 0, 1554, 1555, 3, 18, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 6, 161, 0, 0, 1557, 341, 1, 0, 0, 0, 1558, 1559, 3, 20, 1, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 6, 162, 0, 0, 1561, 343, 1, 0, 0, 0, 1562, 1563, 3, 22, 2, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1565, 6, 163, 0, 0, 1565, 345, 1, 0, 0, 0, 1566, 1567, 3, 300, 141, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 6, 164, 37, 0, 1569, 1570, 6, 164, 38, 0, 1570, 347, 1, 0, 0, 0, 1571, 1572, 3, 302, 142, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 6, 165, 18, 0, 1574, 1575, 6, 165, 17, 0, 1575, 1576, 6, 165, 17, 0, 1576, 349, 1, 0, 0, 0, 1577, 1578, 3, 182, 82, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 6, 166, 16, 0, 1580, 1581, 6, 166, 17, 0, 1581, 351, 1, 0, 0, 0, 1582, 1583, 3, 22, 2, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 6, 167, 0, 0, 1585, 353, 1, 0, 0, 0, 1586, 1587, 3, 18, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 168, 0, 0, 1589, 355, 1, 0, 0, 0, 1590, 1591, 3, 20, 1, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 6, 169, 0, 0, 1593, 357, 1, 0, 0, 0, 1594, 1595, 3, 182, 82, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 170, 16, 0, 1597, 1598, 6, 170, 17, 0, 1598, 359, 1, 0, 0, 0, 1599, 1600, 3, 302, 142, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1602, 6, 171, 18, 0, 1602, 1603, 6, 171, 17, 0, 1603, 1604, 6, 171, 17, 0, 1604, 361, 1, 0, 0, 0, 1605, 1606, 7, 6, 0, 0, 1606, 1607, 7, 12, 0, 0, 1607, 1608, 7, 9, 0, 0, 1608, 1609, 7, 22, 0, 0, 1609, 1610, 7, 8, 0, 0, 1610, 363, 1, 0, 0, 0, 1611, 1612, 7, 17, 0, 0, 1612, 1613, 7, 2, 0, 0, 1613, 1614, 7, 9, 0, 0, 1614, 1615, 7, 12, 0, 0, 1615, 1616, 7, 7, 0, 0, 1616, 365, 1, 0, 0, 0, 1617, 1618, 7, 19, 0, 0, 1618, 1619, 7, 7, 0, 0, 1619, 1620, 7, 32, 0, 0, 1620, 367, 1, 0, 0, 0, 1621, 1622, 3, 258, 120, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1624, 6, 175, 28, 0, 1624, 1625, 6, 175, 17, 0, 1625, 1626, 6, 175, 4, 0, 1626, 369, 1, 0, 0, 0, 1627, 1628, 3, 224, 103, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 6, 176, 22, 0, 1630, 371, 1, 0, 0, 0, 1631, 1632, 3, 228, 105, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 177, 21, 0, 1634, 373, 1, 0, 0, 0, 1635, 1636, 3, 252, 117, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 178, 33, 0, 1638, 375, 1, 0, 0, 0, 1639, 1640, 3, 292, 137, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 179, 34, 0, 1642, 377, 1, 0, 0, 0, 1643, 1644, 3, 288, 135, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 6, 180, 35, 0, 1646, 379, 1, 0, 0, 0, 1647, 1648, 3, 294, 138, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1650, 6, 181, 36, 0, 1650, 381, 1, 0, 0, 0, 1651, 1652, 3, 216, 99, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 6, 182, 43, 0, 1654, 383, 1, 0, 0, 0, 1655, 1656, 3, 308, 145, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 6, 183, 25, 0, 1658, 385, 1, 0, 0, 0, 1659, 1660, 3, 304, 143, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 6, 184, 26, 0, 1662, 387, 1, 0, 0, 0, 1663, 1664, 3, 18, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 6, 185, 0, 0, 1666, 389, 1, 0, 0, 0, 1667, 1668, 3, 20, 1, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1670, 6, 186, 0, 0, 1670, 391, 1, 0, 0, 0, 1671, 1672, 3, 22, 2, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 6, 187, 0, 0, 1674, 393, 1, 0, 0, 0, 1675, 1676, 7, 17, 0, 0, 1676, 1677, 7, 11, 0, 0, 1677, 1678, 7, 4, 0, 0, 1678, 1679, 7, 11, 0, 0, 1679, 1680, 7, 17, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 6, 188, 17, 0, 1682, 1683, 6, 188, 4, 0, 1683, 395, 1, 0, 0, 0, 1684, 1685, 3, 18, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1687, 6, 189, 0, 0, 1687, 397, 1, 0, 0, 0, 1688, 1689, 3, 20, 1, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 6, 190, 0, 0, 1691, 399, 1, 0, 0, 0, 1692, 1693, 3, 22, 2, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 6, 191, 0, 0, 1695, 401, 1, 0, 0, 0, 1696, 1697, 3, 182, 82, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1699, 6, 192, 16, 0, 1699, 1700, 6, 192, 17, 0, 1700, 403, 1, 0, 0, 0, 1701, 1702, 7, 35, 0, 0, 1702, 1703, 7, 9, 0, 0, 1703, 1704, 7, 10, 0, 0, 1704, 1705, 7, 5, 0, 0, 1705, 405, 1, 0, 0, 0, 1706, 1707, 3, 544, 263, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 6, 194, 20, 0, 1709, 407, 1, 0, 0, 0, 1710, 1711, 3, 248, 115, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 6, 195, 19, 0, 1713, 1714, 6, 195, 17, 0, 1714, 1715, 6, 195, 4, 0, 1715, 409, 1, 0, 0, 0, 1716, 1717, 7, 22, 0, 0, 1717, 1718, 7, 17, 0, 0, 1718, 1719, 7, 10, 0, 0, 1719, 1720, 7, 5, 0, 0, 1720, 1721, 7, 6, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 6, 196, 17, 0, 1723, 1724, 6, 196, 4, 0, 1724, 411, 1, 0, 0, 0, 1725, 1726, 3, 334, 158, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 6, 197, 42, 0, 1728, 413, 1, 0, 0, 0, 1729, 1730, 3, 204, 93, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 6, 198, 30, 0, 1732, 415, 1, 0, 0, 0, 1733, 1734, 3, 220, 101, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 6, 199, 40, 0, 1736, 417, 1, 0, 0, 0, 1737, 1738, 3, 18, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 200, 0, 0, 1740, 419, 1, 0, 0, 0, 1741, 1742, 3, 20, 1, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 6, 201, 0, 0, 1744, 421, 1, 0, 0, 0, 1745, 1746, 3, 22, 2, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 6, 202, 0, 0, 1748, 423, 1, 0, 0, 0, 1749, 1750, 3, 182, 82, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 6, 203, 16, 0, 1752, 1753, 6, 203, 17, 0, 1753, 425, 1, 0, 0, 0, 1754, 1755, 3, 302, 142, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1757, 6, 204, 18, 0, 1757, 1758, 6, 204, 17, 0, 1758, 1759, 6, 204, 17, 0, 1759, 427, 1, 0, 0, 0, 1760, 1761, 3, 220, 101, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 6, 205, 40, 0, 1763, 429, 1, 0, 0, 0, 1764, 1765, 3, 224, 103, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 6, 206, 22, 0, 1767, 431, 1, 0, 0, 0, 1768, 1769, 3, 228, 105, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 6, 207, 21, 0, 1771, 433, 1, 0, 0, 0, 1772, 1773, 3, 248, 115, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 6, 208, 19, 0, 1775, 1776, 6, 208, 44, 0, 1776, 435, 1, 0, 0, 0, 1777, 1778, 3, 334, 158, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 6, 209, 42, 0, 1780, 437, 1, 0, 0, 0, 1781, 1782, 3, 204, 93, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 6, 210, 30, 0, 1784, 439, 1, 0, 0, 0, 1785, 1786, 3, 18, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 6, 211, 0, 0, 1788, 441, 1, 0, 0, 0, 1789, 1790, 3, 20, 1, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 6, 212, 0, 0, 1792, 443, 1, 0, 0, 0, 1793, 1794, 3, 22, 2, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 6, 213, 0, 0, 1796, 445, 1, 0, 0, 0, 1797, 1798, 3, 182, 82, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 6, 214, 16, 0, 1800, 1801, 6, 214, 17, 0, 1801, 1802, 6, 214, 17, 0, 1802, 447, 1, 0, 0, 0, 1803, 1804, 3, 302, 142, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 6, 215, 18, 0, 1806, 1807, 6, 215, 17, 0, 1807, 1808, 6, 215, 17, 0, 1808, 1809, 6, 215, 17, 0, 1809, 449, 1, 0, 0, 0, 1810, 1811, 3, 224, 103, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 6, 216, 22, 0, 1813, 451, 1, 0, 0, 0, 1814, 1815, 3, 228, 105, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 6, 217, 21, 0, 1817, 453, 1, 0, 0, 0, 1818, 1819, 3, 514, 248, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 6, 218, 32, 0, 1821, 455, 1, 0, 0, 0, 1822, 1823, 3, 18, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 6, 219, 0, 0, 1825, 457, 1, 0, 0, 0, 1826, 1827, 3, 20, 1, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 6, 220, 0, 0, 1829, 459, 1, 0, 0, 0, 1830, 1831, 3, 22, 2, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 6, 221, 0, 0, 1833, 461, 1, 0, 0, 0, 1834, 1835, 3, 182, 82, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 6, 222, 16, 0, 1837, 1838, 6, 222, 17, 0, 1838, 463, 1, 0, 0, 0, 1839, 1840, 3, 302, 142, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 6, 223, 18, 0, 1842, 1843, 6, 223, 17, 0, 1843, 1844, 6, 223, 17, 0, 1844, 465, 1, 0, 0, 0, 1845, 1846, 3, 296, 139, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 6, 224, 23, 0, 1848, 467, 1, 0, 0, 0, 1849, 1850, 3, 298, 140, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1852, 6, 225, 24, 0, 1852, 469, 1, 0, 0, 0, 1853, 1854, 3, 228, 105, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 6, 226, 21, 0, 1856, 471, 1, 0, 0, 0, 1857, 1858, 3, 252, 117, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1860, 6, 227, 33, 0, 1860, 473, 1, 0, 0, 0, 1861, 1862, 3, 292, 137, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 6, 228, 34, 0, 1864, 475, 1, 0, 0, 0, 1865, 1866, 3, 288, 135, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 6, 229, 35, 0, 1868, 477, 1, 0, 0, 0, 1869, 1870, 3, 294, 138, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1872, 6, 230, 36, 0, 1872, 479, 1, 0, 0, 0, 1873, 1874, 3, 308, 145, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1876, 6, 231, 25, 0, 1876, 481, 1, 0, 0, 0, 1877, 1878, 3, 304, 143, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 6, 232, 26, 0, 1880, 483, 1, 0, 0, 0, 1881, 1882, 3, 18, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1884, 6, 233, 0, 0, 1884, 485, 1, 0, 0, 0, 1885, 1886, 3, 20, 1, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 6, 234, 0, 0, 1888, 487, 1, 0, 0, 0, 1889, 1890, 3, 22, 2, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 6, 235, 0, 0, 1892, 489, 1, 0, 0, 0, 1893, 1894, 3, 182, 82, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 6, 236, 16, 0, 1896, 1897, 6, 236, 17, 0, 1897, 491, 1, 0, 0, 0, 1898, 1899, 3, 302, 142, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 6, 237, 18, 0, 1901, 1902, 6, 237, 17, 0, 1902, 1903, 6, 237, 17, 0, 1903, 493, 1, 0, 0, 0, 1904, 1905, 3, 228, 105, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 6, 238, 21, 0, 1907, 495, 1, 0, 0, 0, 1908, 1909, 3, 296, 139, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 6, 239, 23, 0, 1911, 497, 1, 0, 0, 0, 1912, 1913, 3, 298, 140, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 6, 240, 24, 0, 1915, 499, 1, 0, 0, 0, 1916, 1917, 3, 224, 103, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 6, 241, 22, 0, 1919, 501, 1, 0, 0, 0, 1920, 1921, 3, 252, 117, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 6, 242, 33, 0, 1923, 503, 1, 0, 0, 0, 1924, 1925, 3, 292, 137, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 6, 243, 34, 0, 1927, 505, 1, 0, 0, 0, 1928, 1929, 3, 288, 135, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1931, 6, 244, 35, 0, 1931, 507, 1, 0, 0, 0, 1932, 1933, 3, 294, 138, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 6, 245, 36, 0, 1935, 509, 1, 0, 0, 0, 1936, 1941, 3, 186, 84, 0, 1937, 1941, 3, 184, 83, 0, 1938, 1941, 3, 200, 91, 0, 1939, 1941, 3, 278, 130, 0, 1940, 1936, 1, 0, 0, 0, 1940, 1937, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1939, 1, 0, 0, 0, 1941, 511, 1, 0, 0, 0, 1942, 1945, 3, 186, 84, 0, 1943, 1945, 3, 278, 130, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1943, 1, 0, 0, 0, 1945, 1949, 1, 0, 0, 0, 1946, 1948, 3, 510, 246, 0, 1947, 1946, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1962, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1955, 3, 200, 91, 0, 1953, 1955, 3, 194, 88, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 1957, 1, 0, 0, 0, 1956, 1958, 3, 510, 246, 0, 1957, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1962, 1, 0, 0, 0, 1961, 1944, 1, 0, 0, 0, 1961, 1954, 1, 0, 0, 0, 1962, 513, 1, 0, 0, 0, 1963, 1966, 3, 512, 247, 0, 1964, 1966, 3, 306, 144, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 515, 1, 0, 0, 0, 1969, 1970, 3, 18, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 6, 249, 0, 0, 1972, 517, 1, 0, 0, 0, 1973, 1974, 3, 20, 1, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 6, 250, 0, 0, 1976, 519, 1, 0, 0, 0, 1977, 1978, 3, 22, 2, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1980, 6, 251, 0, 0, 1980, 521, 1, 0, 0, 0, 1981, 1982, 3, 182, 82, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1984, 6, 252, 16, 0, 1984, 1985, 6, 252, 17, 0, 1985, 523, 1, 0, 0, 0, 1986, 1987, 3, 302, 142, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1989, 6, 253, 18, 0, 1989, 1990, 6, 253, 17, 0, 1990, 1991, 6, 253, 17, 0, 1991, 525, 1, 0, 0, 0, 1992, 1993, 3, 296, 139, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 6, 254, 23, 0, 1995, 527, 1, 0, 0, 0, 1996, 1997, 3, 298, 140, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 6, 255, 24, 0, 1999, 529, 1, 0, 0, 0, 2000, 2001, 3, 214, 98, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 6, 256, 31, 0, 2003, 531, 1, 0, 0, 0, 2004, 2005, 3, 224, 103, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 6, 257, 22, 0, 2007, 533, 1, 0, 0, 0, 2008, 2009, 3, 228, 105, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 6, 258, 21, 0, 2011, 535, 1, 0, 0, 0, 2012, 2013, 3, 252, 117, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 6, 259, 33, 0, 2015, 537, 1, 0, 0, 0, 2016, 2017, 3, 292, 137, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 6, 260, 34, 0, 2019, 539, 1, 0, 0, 0, 2020, 2021, 3, 288, 135, 0, 2021, 2022, 1, 0, 0, 0, 2022, 2023, 6, 261, 35, 0, 2023, 541, 1, 0, 0, 0, 2024, 2025, 3, 294, 138, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 6, 262, 36, 0, 2027, 543, 1, 0, 0, 0, 2028, 2029, 7, 4, 0, 0, 2029, 2030, 7, 17, 0, 0, 2030, 545, 1, 0, 0, 0, 2031, 2032, 3, 514, 248, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 6, 264, 32, 0, 2034, 547, 1, 0, 0, 0, 2035, 2036, 3, 18, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2038, 6, 265, 0, 0, 2038, 549, 1, 0, 0, 0, 2039, 2040, 3, 20, 1, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 6, 266, 0, 0, 2042, 551, 1, 0, 0, 0, 2043, 2044, 3, 22, 2, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2046, 6, 267, 0, 0, 2046, 553, 1, 0, 0, 0, 2047, 2048, 3, 256, 119, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 6, 268, 45, 0, 2050, 555, 1, 0, 0, 0, 2051, 2052, 3, 230, 106, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2054, 6, 269, 46, 0, 2054, 557, 1, 0, 0, 0, 2055, 2056, 3, 244, 113, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2058, 6, 270, 47, 0, 2058, 559, 1, 0, 0, 0, 2059, 2060, 3, 222, 102, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2062, 6, 271, 48, 0, 2062, 2063, 6, 271, 17, 0, 2063, 561, 1, 0, 0, 0, 2064, 2065, 3, 214, 98, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 6, 272, 31, 0, 2067, 563, 1, 0, 0, 0, 2068, 2069, 3, 204, 93, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2071, 6, 273, 30, 0, 2071, 565, 1, 0, 0, 0, 2072, 2073, 3, 304, 143, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 6, 274, 26, 0, 2075, 567, 1, 0, 0, 0, 2076, 2077, 3, 308, 145, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2079, 6, 275, 25, 0, 2079, 569, 1, 0, 0, 0, 2080, 2081, 3, 208, 95, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2083, 6, 276, 49, 0, 2083, 571, 1, 0, 0, 0, 2084, 2085, 3, 206, 94, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 6, 277, 50, 0, 2087, 573, 1, 0, 0, 0, 2088, 2089, 3, 224, 103, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 6, 278, 22, 0, 2091, 575, 1, 0, 0, 0, 2092, 2093, 3, 228, 105, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2095, 6, 279, 21, 0, 2095, 577, 1, 0, 0, 0, 2096, 2097, 3, 252, 117, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 6, 280, 33, 0, 2099, 579, 1, 0, 0, 0, 2100, 2101, 3, 292, 137, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 6, 281, 34, 0, 2103, 581, 1, 0, 0, 0, 2104, 2105, 3, 288, 135, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 6, 282, 35, 0, 2107, 583, 1, 0, 0, 0, 2108, 2109, 3, 294, 138, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2111, 6, 283, 36, 0, 2111, 585, 1, 0, 0, 0, 2112, 2113, 3, 296, 139, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 6, 284, 23, 0, 2115, 587, 1, 0, 0, 0, 2116, 2117, 3, 298, 140, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2119, 6, 285, 24, 0, 2119, 589, 1, 0, 0, 0, 2120, 2121, 3, 514, 248, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2123, 6, 286, 32, 0, 2123, 591, 1, 0, 0, 0, 2124, 2125, 3, 18, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2127, 6, 287, 0, 0, 2127, 593, 1, 0, 0, 0, 2128, 2129, 3, 20, 1, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2131, 6, 288, 0, 0, 2131, 595, 1, 0, 0, 0, 2132, 2133, 3, 22, 2, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 6, 289, 0, 0, 2135, 597, 1, 0, 0, 0, 2136, 2137, 3, 182, 82, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2139, 6, 290, 16, 0, 2139, 2140, 6, 290, 17, 0, 2140, 599, 1, 0, 0, 0, 2141, 2142, 7, 10, 0, 0, 2142, 2143, 7, 5, 0, 0, 2143, 2144, 7, 21, 0, 0, 2144, 2145, 7, 9, 0, 0, 2145, 601, 1, 0, 0, 0, 2146, 2147, 3, 18, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2149, 6, 292, 0, 0, 2149, 603, 1, 0, 0, 0, 2150, 2151, 3, 20, 1, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2153, 6, 293, 0, 0, 2153, 605, 1, 0, 0, 0, 2154, 2155, 3, 22, 2, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2157, 6, 294, 0, 0, 2157, 607, 1, 0, 0, 0, 70, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 614, 618, 621, 630, 632, 643, 932, 1017, 1021, 1026, 1158, 1163, 1172, 1179, 1184, 1186, 1197, 1205, 1208, 1210, 1215, 1220, 1226, 1233, 1238, 1244, 1247, 1255, 1259, 1400, 1405, 1412, 1414, 1419, 1424, 1431, 1433, 1459, 1464, 1469, 1471, 1477, 1539, 1544, 1940, 1944, 1949, 1954, 1959, 1961, 1965, 1967, 51, 0, 1, 0, 5, 1, 0, 5, 2, 0, 5, 4, 0, 5, 5, 0, 5, 6, 0, 5, 7, 0, 5, 8, 0, 5, 9, 0, 5, 10, 0, 5, 11, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 5, 16, 0, 5, 17, 0, 7, 50, 0, 4, 0, 0, 7, 99, 0, 7, 73, 0, 7, 141, 0, 7, 63, 0, 7, 61, 0, 7, 96, 0, 7, 97, 0, 7, 101, 0, 7, 100, 0, 5, 3, 0, 7, 78, 0, 7, 40, 0, 7, 51, 0, 7, 56, 0, 7, 137, 0, 7, 75, 0, 7, 94, 0, 7, 93, 0, 7, 95, 0, 7, 98, 0, 5, 0, 0, 7, 17, 0, 7, 59, 0, 7, 58, 0, 7, 106, 0, 7, 57, 0, 5, 12, 0, 7, 77, 0, 7, 64, 0, 7, 71, 0, 7, 60, 0, 7, 53, 0, 7, 52, 0]
\ No newline at end of file
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
index 4f34f977c99f1..22c4fa8988eee 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
@@ -105,7 +105,7 @@ private static String[] makeRuleNames() {
"LP", "RP", "UNQUOTED_IDENTIFIER", "QUOTED_ID", "QUOTED_IDENTIFIER",
"EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", "FROM_PIPE",
"FROM_COLON", "FROM_SELECTOR", "FROM_COMMA", "FROM_ASSIGN", "METADATA",
- "FROM_RP", "UNQUOTED_SOURCE_PART", "UNQUOTED_SOURCE", "FROM_UNQUOTED_SOURCE",
+ "FROM_RP", "FROM_LP", "UNQUOTED_SOURCE_PART", "UNQUOTED_SOURCE", "FROM_UNQUOTED_SOURCE",
"FROM_QUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT",
"FROM_WS", "FORK_LP", "FORK_RP", "FORK_PIPE", "FORK_WS", "FORK_LINE_COMMENT",
"FORK_MULTILINE_COMMENT", "FUSE_PIPE", "FUSE_RP", "GROUP", "SCORE", "KEY",
@@ -321,7 +321,7 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) {
}
public static final String _serializedATN =
- "\u0004\u0000\u0097\u0866\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
+ "\u0004\u0000\u0097\u086e\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
"\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
"\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
"\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
@@ -410,1344 +410,1349 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) {
"\u011b\u0007\u011b\u0002\u011c\u0007\u011c\u0002\u011d\u0007\u011d\u0002"+
"\u011e\u0007\u011e\u0002\u011f\u0007\u011f\u0002\u0120\u0007\u0120\u0002"+
"\u0121\u0007\u0121\u0002\u0122\u0007\u0122\u0002\u0123\u0007\u0123\u0002"+
- "\u0124\u0007\u0124\u0002\u0125\u0007\u0125\u0001\u0000\u0001\u0000\u0001"+
- "\u0000\u0001\u0000\u0005\u0000\u0263\b\u0000\n\u0000\f\u0000\u0266\t\u0000"+
- "\u0001\u0000\u0003\u0000\u0269\b\u0000\u0001\u0000\u0003\u0000\u026c\b"+
- "\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
- "\u0001\u0001\u0001\u0005\u0001\u0275\b\u0001\n\u0001\f\u0001\u0278\t\u0001"+
- "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002"+
- "\u0004\u0002\u0280\b\u0002\u000b\u0002\f\u0002\u0281\u0001\u0002\u0001"+
- "\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+
- "\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+
- "\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001"+
- "\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
- "\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+
- "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+
- "\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
- "\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
- "\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001"+
- "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b"+
- "\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001"+
- "\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+
- "\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
- "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f"+
- "\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001"+
- "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e"+
- "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f"+
- "\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f"+
- "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010"+
- "\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+
- "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012"+
- "\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
- "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014"+
- "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+
- "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+
- "\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
- "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
- "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017"+
- "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+
- "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+
- "\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+
- "\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a"+
- "\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a"+
- "\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b"+
- "\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b"+
- "\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c"+
- "\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c"+
- "\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d"+
- "\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e"+
- "\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001\u001f"+
- "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+
- "\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0001"+
- " \u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001"+
- "!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001#\u0004"+
- "#\u03a1\b#\u000b#\f#\u03a2\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001"+
- "$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001"+
- "&\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001)\u0001"+
- ")\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001"+
- "+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+
- ".\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u0001"+
- "0\u00011\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u0001"+
- "2\u00012\u00013\u00013\u00013\u00013\u00013\u00014\u00014\u00014\u0001"+
- "4\u00014\u00015\u00015\u00016\u00046\u03f6\b6\u000b6\f6\u03f7\u00016\u0001"+
- "6\u00036\u03fc\b6\u00016\u00046\u03ff\b6\u000b6\f6\u0400\u00017\u0001"+
- "7\u00017\u00017\u00018\u00018\u00018\u00018\u00019\u00019\u00019\u0001"+
- "9\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001<\u0001"+
- "<\u0001<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+
- "=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0001"+
- "@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001"+
- "B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001"+
- "E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001"+
- "G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001"+
- "J\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001K\u0001L\u0001L\u0001"+
- "L\u0001L\u0001M\u0001M\u0001M\u0001M\u0001M\u0001N\u0001N\u0001N\u0001"+
- "N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001P\u0001P\u0001P\u0001P\u0001"+
- "Q\u0001Q\u0001Q\u0001Q\u0001R\u0001R\u0001R\u0001R\u0001S\u0001S\u0001"+
- "T\u0001T\u0001U\u0001U\u0001U\u0001V\u0001V\u0001W\u0001W\u0003W\u0485"+
- "\bW\u0001W\u0004W\u0488\bW\u000bW\fW\u0489\u0001X\u0001X\u0001Y\u0001"+
- "Y\u0001Z\u0001Z\u0001Z\u0003Z\u0493\bZ\u0001[\u0001[\u0001\\\u0001\\\u0001"+
- "\\\u0003\\\u049a\b\\\u0001]\u0001]\u0001]\u0005]\u049f\b]\n]\f]\u04a2"+
- "\t]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0005]\u04aa\b]\n]\f]\u04ad"+
- "\t]\u0001]\u0001]\u0001]\u0001]\u0001]\u0003]\u04b4\b]\u0001]\u0003]\u04b7"+
- "\b]\u0003]\u04b9\b]\u0001^\u0004^\u04bc\b^\u000b^\f^\u04bd\u0001_\u0004"+
- "_\u04c1\b_\u000b_\f_\u04c2\u0001_\u0001_\u0005_\u04c7\b_\n_\f_\u04ca\t"+
- "_\u0001_\u0001_\u0004_\u04ce\b_\u000b_\f_\u04cf\u0001_\u0004_\u04d3\b"+
- "_\u000b_\f_\u04d4\u0001_\u0001_\u0005_\u04d9\b_\n_\f_\u04dc\t_\u0003_"+
- "\u04de\b_\u0001_\u0001_\u0001_\u0001_\u0004_\u04e4\b_\u000b_\f_\u04e5"+
- "\u0001_\u0001_\u0003_\u04ea\b_\u0001`\u0001`\u0001`\u0001`\u0001a\u0001"+
- "a\u0001a\u0001a\u0001b\u0001b\u0001c\u0001c\u0001c\u0001d\u0001d\u0001"+
- "d\u0001e\u0001e\u0001f\u0001f\u0001g\u0001g\u0001h\u0001h\u0001h\u0001"+
- "h\u0001h\u0001i\u0001i\u0001j\u0001j\u0001j\u0001j\u0001j\u0001j\u0001"+
- "k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001m\u0001"+
- "m\u0001m\u0001n\u0001n\u0001n\u0001n\u0001n\u0001o\u0001o\u0001o\u0001"+
- "o\u0001o\u0001p\u0001p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0001"+
- "q\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001"+
- "t\u0001t\u0001t\u0001u\u0001u\u0001v\u0001v\u0001v\u0001v\u0001v\u0001"+
- "v\u0001w\u0001w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001"+
- "x\u0001y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001{\u0001{\u0001{\u0001"+
- "|\u0001|\u0001}\u0001}\u0001}\u0001~\u0001~\u0001\u007f\u0001\u007f\u0001"+
- "\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001\u0081\u0001\u0082\u0001"+
- "\u0082\u0001\u0083\u0001\u0083\u0001\u0084\u0001\u0084\u0001\u0085\u0001"+
- "\u0085\u0001\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001"+
- "\u0088\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001"+
- "\u0089\u0003\u0089\u0577\b\u0089\u0001\u0089\u0005\u0089\u057a\b\u0089"+
- "\n\u0089\f\u0089\u057d\t\u0089\u0001\u0089\u0001\u0089\u0004\u0089\u0581"+
- "\b\u0089\u000b\u0089\f\u0089\u0582\u0003\u0089\u0585\b\u0089\u0001\u008a"+
- "\u0001\u008a\u0001\u008a\u0003\u008a\u058a\b\u008a\u0001\u008a\u0005\u008a"+
- "\u058d\b\u008a\n\u008a\f\u008a\u0590\t\u008a\u0001\u008a\u0001\u008a\u0004"+
- "\u008a\u0594\b\u008a\u000b\u008a\f\u008a\u0595\u0003\u008a\u0598\b\u008a"+
- "\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008c"+
- "\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008d\u0001\u008d"+
- "\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001\u008e"+
- "\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f\u0005\u008f\u05b0\b\u008f"+
- "\n\u008f\f\u008f\u05b3\t\u008f\u0001\u008f\u0001\u008f\u0003\u008f\u05b7"+
- "\b\u008f\u0001\u008f\u0004\u008f\u05ba\b\u008f\u000b\u008f\f\u008f\u05bb"+
- "\u0003\u008f\u05be\b\u008f\u0001\u0090\u0001\u0090\u0004\u0090\u05c2\b"+
- "\u0090\u000b\u0090\f\u0090\u05c3\u0001\u0090\u0001\u0090\u0001\u0091\u0001"+
- "\u0091\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0093\u0001"+
- "\u0093\u0001\u0093\u0001\u0093\u0001\u0094\u0001\u0094\u0001\u0094\u0001"+
- "\u0094\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0095\u0001"+
- "\u0096\u0001\u0096\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0001"+
- "\u0097\u0001\u0097\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001"+
- "\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u009a\u0001\u009a\u0001"+
- "\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001"+
- "\u009a\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001"+
- "\u009c\u0001\u009c\u0001\u009c\u0003\u009c\u05fc\b\u009c\u0001\u009d\u0004"+
- "\u009d\u05ff\b\u009d\u000b\u009d\f\u009d\u0600\u0001\u009e\u0001\u009e"+
- "\u0001\u009e\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u009f"+
- "\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1\u0001\u00a1"+
- "\u0001\u00a1\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2"+
- "\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a4"+
- "\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a5"+
- "\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a6\u0001\u00a6"+
- "\u0001\u00a6\u0001\u00a6\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a7"+
- "\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9"+
- "\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00aa\u0001\u00aa\u0001\u00aa"+
- "\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab"+
- "\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac"+
- "\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ad\u0001\u00ad\u0001\u00ad"+
- "\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae"+
- "\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00b0"+
- "\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001\u00b1"+
- "\u0001\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b3"+
- "\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b4\u0001\u00b4\u0001\u00b4"+
- "\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b6"+
- "\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7"+
- "\u0001\u00b7\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b9"+
- "\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00ba\u0001\u00ba\u0001\u00ba"+
- "\u0001\u00ba\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb"+
- "\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bc\u0001\u00bc"+
- "\u0001\u00bc\u0001\u00bc\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd"+
- "\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00bf\u0001\u00bf"+
- "\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00c0\u0001\u00c0\u0001\u00c0"+
- "\u0001\u00c0\u0001\u00c0\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1"+
- "\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2"+
- "\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3"+
- "\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c4\u0001\u00c4\u0001\u00c4"+
- "\u0001\u00c4\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c6"+
- "\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001\u00c7\u0001\u00c7\u0001\u00c7"+
- "\u0001\u00c7\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c9"+
- "\u0001\u00c9\u0001\u00c9\u0001\u00c9\u0001\u00ca\u0001\u00ca\u0001\u00ca"+
- "\u0001\u00ca\u0001\u00ca\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb"+
- "\u0001\u00cb\u0001\u00cb\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cc"+
- "\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00ce\u0001\u00ce"+
- "\u0001\u00ce\u0001\u00ce\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf"+
- "\u0001\u00cf\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d1"+
- "\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d2\u0001\u00d2\u0001\u00d2"+
- "\u0001\u00d2\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d4"+
- "\u0001\u00d4\u0001\u00d4\u0001\u00d4\u0001\u00d5\u0001\u00d5\u0001\u00d5"+
- "\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d6\u0001\u00d6\u0001\u00d6"+
- "\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d7\u0001\u00d7"+
- "\u0001\u00d7\u0001\u00d7\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8"+
- "\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00da\u0001\u00da"+
- "\u0001\u00da\u0001\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db"+
- "\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dd\u0001\u00dd"+
- "\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00de\u0001\u00de\u0001\u00de"+
- "\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00df\u0001\u00df\u0001\u00df"+
- "\u0001\u00df\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e1"+
- "\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e2\u0001\u00e2\u0001\u00e2"+
- "\u0001\u00e2\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e4"+
- "\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e5\u0001\u00e5\u0001\u00e5"+
- "\u0001\u00e5\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e7"+
- "\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8"+
- "\u0001\u00e8\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00ea"+
- "\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00eb\u0001\u00eb\u0001\u00eb"+
- "\u0001\u00eb\u0001\u00eb\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec"+
- "\u0001\u00ec\u0001\u00ec\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed"+
- "\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ef\u0001\u00ef"+
- "\u0001\u00ef\u0001\u00ef\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f0"+
- "\u0001\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f2\u0001\u00f2"+
- "\u0001\u00f2\u0001\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001\u00f3"+
- "\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f5\u0001\u00f5"+
- "\u0001\u00f5\u0001\u00f5\u0003\u00f5\u078d\b\u00f5\u0001\u00f6\u0001\u00f6"+
- "\u0003\u00f6\u0791\b\u00f6\u0001\u00f6\u0005\u00f6\u0794\b\u00f6\n\u00f6"+
- "\f\u00f6\u0797\t\u00f6\u0001\u00f6\u0001\u00f6\u0003\u00f6\u079b\b\u00f6"+
- "\u0001\u00f6\u0004\u00f6\u079e\b\u00f6\u000b\u00f6\f\u00f6\u079f\u0003"+
- "\u00f6\u07a2\b\u00f6\u0001\u00f7\u0001\u00f7\u0004\u00f7\u07a6\b\u00f7"+
- "\u000b\u00f7\f\u00f7\u07a7\u0001\u00f8\u0001\u00f8\u0001\u00f8\u0001\u00f8"+
- "\u0001\u00f9\u0001\u00f9\u0001\u00f9\u0001\u00f9\u0001\u00fa\u0001\u00fa"+
- "\u0001\u00fa\u0001\u00fa\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fb"+
- "\u0001\u00fb\u0001\u00fc\u0001\u00fc\u0001\u00fc\u0001\u00fc\u0001\u00fc"+
- "\u0001\u00fc\u0001\u00fd\u0001\u00fd\u0001\u00fd\u0001\u00fd\u0001\u00fe"+
- "\u0001\u00fe\u0001\u00fe\u0001\u00fe\u0001\u00ff\u0001\u00ff\u0001\u00ff"+
- "\u0001\u00ff\u0001\u0100\u0001\u0100\u0001\u0100\u0001\u0100\u0001\u0101"+
- "\u0001\u0101\u0001\u0101\u0001\u0101\u0001\u0102\u0001\u0102\u0001\u0102"+
- "\u0001\u0102\u0001\u0103\u0001\u0103\u0001\u0103\u0001\u0103\u0001\u0104"+
- "\u0001\u0104\u0001\u0104\u0001\u0104\u0001\u0105\u0001\u0105\u0001\u0105"+
- "\u0001\u0105\u0001\u0106\u0001\u0106\u0001\u0106\u0001\u0107\u0001\u0107"+
- "\u0001\u0107\u0001\u0107\u0001\u0108\u0001\u0108\u0001\u0108\u0001\u0108"+
- "\u0001\u0109\u0001\u0109\u0001\u0109\u0001\u0109\u0001\u010a\u0001\u010a"+
- "\u0001\u010a\u0001\u010a\u0001\u010b\u0001\u010b\u0001\u010b\u0001\u010b"+
- "\u0001\u010c\u0001\u010c\u0001\u010c\u0001\u010c\u0001\u010d\u0001\u010d"+
- "\u0001\u010d\u0001\u010d\u0001\u010e\u0001\u010e\u0001\u010e\u0001\u010e"+
- "\u0001\u010e\u0001\u010f\u0001\u010f\u0001\u010f\u0001\u010f\u0001\u0110"+
- "\u0001\u0110\u0001\u0110\u0001\u0110\u0001\u0111\u0001\u0111\u0001\u0111"+
- "\u0001\u0111\u0001\u0112\u0001\u0112\u0001\u0112\u0001\u0112\u0001\u0113"+
- "\u0001\u0113\u0001\u0113\u0001\u0113\u0001\u0114\u0001\u0114\u0001\u0114"+
- "\u0001\u0114\u0001\u0115\u0001\u0115\u0001\u0115\u0001\u0115\u0001\u0116"+
- "\u0001\u0116\u0001\u0116\u0001\u0116\u0001\u0117\u0001\u0117\u0001\u0117"+
- "\u0001\u0117\u0001\u0118\u0001\u0118\u0001\u0118\u0001\u0118\u0001\u0119"+
- "\u0001\u0119\u0001\u0119\u0001\u0119\u0001\u011a\u0001\u011a\u0001\u011a"+
- "\u0001\u011a\u0001\u011b\u0001\u011b\u0001\u011b\u0001\u011b\u0001\u011c"+
- "\u0001\u011c\u0001\u011c\u0001\u011c\u0001\u011d\u0001\u011d\u0001\u011d"+
- "\u0001\u011d\u0001\u011e\u0001\u011e\u0001\u011e\u0001\u011e\u0001\u011f"+
- "\u0001\u011f\u0001\u011f\u0001\u011f\u0001\u0120\u0001\u0120\u0001\u0120"+
- "\u0001\u0120\u0001\u0121\u0001\u0121\u0001\u0121\u0001\u0121\u0001\u0121"+
- "\u0001\u0122\u0001\u0122\u0001\u0122\u0001\u0122\u0001\u0122\u0001\u0123"+
- "\u0001\u0123\u0001\u0123\u0001\u0123\u0001\u0124\u0001\u0124\u0001\u0124"+
- "\u0001\u0124\u0001\u0125\u0001\u0125\u0001\u0125\u0001\u0125\u0002\u0276"+
- "\u04ab\u0000\u0126\u0012\u0001\u0014\u0002\u0016\u0003\u0018\u0004\u001a"+
- "\u0005\u001c\u0006\u001e\u0007 \b\"\t$\n&\u000b(\f*\r,\u000e.\u000f0\u0010"+
- "2\u00114\u00126\u00138\u0014:\u0015<\u0016>\u0017@\u0018B\u0019D\u001a"+
- "F\u001bH\u001cJ\u001dL\u001eN\u001fP R!T\"V#X$Z\u0000\\\u0000^\u0000`"+
- "\u0000b\u0000d\u0000f\u0000h\u0000j\u0000l\u0000n%p&r\'t\u0000v\u0000"+
- "x\u0000z\u0000|\u0000~(\u0080\u0000\u0082\u0000\u0084)\u0086*\u0088+\u008a"+
- "\u0000\u008c\u0000\u008e\u0000\u0090\u0000\u0092\u0000\u0094\u0000\u0096"+
- "\u0000\u0098\u0000\u009a\u0000\u009c\u0000\u009e\u0000\u00a0\u0000\u00a2"+
- "\u0000\u00a4\u0000\u00a6,\u00a8-\u00aa.\u00ac\u0000\u00ae\u0000\u00b0"+
- "/\u00b20\u00b41\u00b62\u00b8\u0000\u00ba\u0000\u00bc\u0000\u00be\u0000"+
- "\u00c0\u0000\u00c2\u0000\u00c4\u0000\u00c6\u0000\u00c8\u0000\u00ca\u0000"+
- "\u00cc3\u00ce4\u00d05\u00d26\u00d47\u00d68\u00d89\u00da:\u00dc;\u00de"+
- "<\u00e0=\u00e2>\u00e4?\u00e6@\u00e8A\u00eaB\u00ecC\u00eeD\u00f0E\u00f2"+
- "F\u00f4G\u00f6H\u00f8I\u00faJ\u00fcK\u00feL\u0100M\u0102N\u0104O\u0106"+
- "P\u0108Q\u010aR\u010cS\u010eT\u0110U\u0112V\u0114W\u0116X\u0118Y\u011a"+
- "Z\u011c[\u011e\\\u0120]\u0122\u0000\u0124^\u0126_\u0128`\u012aa\u012c"+
- "b\u012ec\u0130d\u0132\u0000\u0134e\u0136f\u0138g\u013ah\u013c\u0000\u013e"+
- "\u0000\u0140\u0000\u0142\u0000\u0144\u0000\u0146i\u0148\u0000\u014a\u0000"+
- "\u014cj\u014e\u0000\u0150\u0000\u0152k\u0154l\u0156m\u0158\u0000\u015a"+
- "\u0000\u015c\u0000\u015en\u0160o\u0162p\u0164\u0000\u0166\u0000\u0168"+
- "q\u016ar\u016cs\u016e\u0000\u0170\u0000\u0172\u0000\u0174\u0000\u0176"+
- "\u0000\u0178\u0000\u017a\u0000\u017c\u0000\u017e\u0000\u0180\u0000\u0182"+
- "t\u0184u\u0186v\u0188w\u018ax\u018cy\u018ez\u0190\u0000\u0192{\u0194\u0000"+
- "\u0196\u0000\u0198|\u019a\u0000\u019c\u0000\u019e\u0000\u01a0}\u01a2~"+
- "\u01a4\u007f\u01a6\u0000\u01a8\u0000\u01aa\u0000\u01ac\u0000\u01ae\u0000"+
- "\u01b0\u0000\u01b2\u0000\u01b4\u0000\u01b6\u0080\u01b8\u0081\u01ba\u0082"+
- "\u01bc\u0000\u01be\u0000\u01c0\u0000\u01c2\u0000\u01c4\u0000\u01c6\u0083"+
- "\u01c8\u0084\u01ca\u0085\u01cc\u0000\u01ce\u0000\u01d0\u0000\u01d2\u0000"+
- "\u01d4\u0000\u01d6\u0000\u01d8\u0000\u01da\u0000\u01dc\u0000\u01de\u0000"+
- "\u01e0\u0000\u01e2\u0086\u01e4\u0087\u01e6\u0088\u01e8\u0000\u01ea\u0000"+
- "\u01ec\u0000\u01ee\u0000\u01f0\u0000\u01f2\u0000\u01f4\u0000\u01f6\u0000"+
- "\u01f8\u0000\u01fa\u0000\u01fc\u0000\u01fe\u0000\u0200\u0089\u0202\u008a"+
- "\u0204\u008b\u0206\u008c\u0208\u0000\u020a\u0000\u020c\u0000\u020e\u0000"+
- "\u0210\u0000\u0212\u0000\u0214\u0000\u0216\u0000\u0218\u0000\u021a\u0000"+
- "\u021c\u0000\u021e\u008d\u0220\u0000\u0222\u008e\u0224\u008f\u0226\u0090"+
- "\u0228\u0000\u022a\u0000\u022c\u0000\u022e\u0000\u0230\u0000\u0232\u0000"+
- "\u0234\u0000\u0236\u0000\u0238\u0000\u023a\u0000\u023c\u0000\u023e\u0000"+
- "\u0240\u0000\u0242\u0000\u0244\u0000\u0246\u0000\u0248\u0000\u024a\u0000"+
- "\u024c\u0000\u024e\u0091\u0250\u0092\u0252\u0093\u0254\u0000\u0256\u0094"+
- "\u0258\u0095\u025a\u0096\u025c\u0097\u0012\u0000\u0001\u0002\u0003\u0004"+
- "\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011$\u0002\u0000"+
- "\n\n\r\r\u0003\u0000\t\n\r\r \u0002\u0000CCcc\u0002\u0000HHhh\u0002\u0000"+
- "AAaa\u0002\u0000NNnn\u0002\u0000GGgg\u0002\u0000EEee\u0002\u0000PPpp\u0002"+
- "\u0000OOoo\u0002\u0000IIii\u0002\u0000TTtt\u0002\u0000RRrr\u0002\u0000"+
- "XXxx\u0002\u0000LLll\u0002\u0000MMmm\u0002\u0000DDdd\u0002\u0000SSss\u0002"+
- "\u0000VVvv\u0002\u0000KKkk\u0002\u0000WWww\u0002\u0000FFff\u0002\u0000"+
- "UUuu\u0006\u0000\t\n\r\r //[[]]\f\u0000\t\n\r\r \"#(),,//::<<>?\\\\"+
- "||\u0001\u000009\u0002\u0000AZaz\b\u0000\"\"NNRRTT\\\\nnrrtt\u0004\u0000"+
- "\n\n\r\r\"\"\\\\\u0002\u0000++--\u0001\u0000``\u0002\u0000BBbb\u0002\u0000"+
- "YYyy\f\u0000\t\n\r\r \"\"(),,//::==[[]]||\u0002\u0000**//\u0002\u0000"+
- "JJjj\u087e\u0000\u0012\u0001\u0000\u0000\u0000\u0000\u0014\u0001\u0000"+
- "\u0000\u0000\u0000\u0016\u0001\u0000\u0000\u0000\u0000\u0018\u0001\u0000"+
- "\u0000\u0000\u0000\u001a\u0001\u0000\u0000\u0000\u0000\u001c\u0001\u0000"+
- "\u0000\u0000\u0000\u001e\u0001\u0000\u0000\u0000\u0000 \u0001\u0000\u0000"+
- "\u0000\u0000\"\u0001\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\u0000"+
- "\u0000&\u0001\u0000\u0000\u0000\u0000(\u0001\u0000\u0000\u0000\u0000*"+
- "\u0001\u0000\u0000\u0000\u0000,\u0001\u0000\u0000\u0000\u0000.\u0001\u0000"+
- "\u0000\u0000\u00000\u0001\u0000\u0000\u0000\u00002\u0001\u0000\u0000\u0000"+
- "\u00004\u0001\u0000\u0000\u0000\u00006\u0001\u0000\u0000\u0000\u00008"+
- "\u0001\u0000\u0000\u0000\u0000:\u0001\u0000\u0000\u0000\u0000<\u0001\u0000"+
- "\u0000\u0000\u0000>\u0001\u0000\u0000\u0000\u0000@\u0001\u0000\u0000\u0000"+
- "\u0000B\u0001\u0000\u0000\u0000\u0000D\u0001\u0000\u0000\u0000\u0000F"+
- "\u0001\u0000\u0000\u0000\u0000H\u0001\u0000\u0000\u0000\u0000J\u0001\u0000"+
- "\u0000\u0000\u0000L\u0001\u0000\u0000\u0000\u0000N\u0001\u0000\u0000\u0000"+
- "\u0000P\u0001\u0000\u0000\u0000\u0000R\u0001\u0000\u0000\u0000\u0000T"+
- "\u0001\u0000\u0000\u0000\u0000V\u0001\u0000\u0000\u0000\u0000X\u0001\u0000"+
- "\u0000\u0000\u0001Z\u0001\u0000\u0000\u0000\u0001\\\u0001\u0000\u0000"+
- "\u0000\u0001^\u0001\u0000\u0000\u0000\u0001`\u0001\u0000\u0000\u0000\u0001"+
- "b\u0001\u0000\u0000\u0000\u0001d\u0001\u0000\u0000\u0000\u0001f\u0001"+
- "\u0000\u0000\u0000\u0001h\u0001\u0000\u0000\u0000\u0001j\u0001\u0000\u0000"+
- "\u0000\u0001l\u0001\u0000\u0000\u0000\u0001n\u0001\u0000\u0000\u0000\u0001"+
- "p\u0001\u0000\u0000\u0000\u0001r\u0001\u0000\u0000\u0000\u0002t\u0001"+
- "\u0000\u0000\u0000\u0002v\u0001\u0000\u0000\u0000\u0002x\u0001\u0000\u0000"+
- "\u0000\u0002z\u0001\u0000\u0000\u0000\u0002~\u0001\u0000\u0000\u0000\u0002"+
- "\u0080\u0001\u0000\u0000\u0000\u0002\u0082\u0001\u0000\u0000\u0000\u0002"+
- "\u0084\u0001\u0000\u0000\u0000\u0002\u0086\u0001\u0000\u0000\u0000\u0002"+
- "\u0088\u0001\u0000\u0000\u0000\u0003\u008a\u0001\u0000\u0000\u0000\u0003"+
- "\u008c\u0001\u0000\u0000\u0000\u0003\u008e\u0001\u0000\u0000\u0000\u0003"+
- "\u0090\u0001\u0000\u0000\u0000\u0003\u0092\u0001\u0000\u0000\u0000\u0003"+
- "\u0094\u0001\u0000\u0000\u0000\u0003\u0096\u0001\u0000\u0000\u0000\u0003"+
- "\u0098\u0001\u0000\u0000\u0000\u0003\u009a\u0001\u0000\u0000\u0000\u0003"+
- "\u009c\u0001\u0000\u0000\u0000\u0003\u009e\u0001\u0000\u0000\u0000\u0003"+
- "\u00a0\u0001\u0000\u0000\u0000\u0003\u00a2\u0001\u0000\u0000\u0000\u0003"+
- "\u00a4\u0001\u0000\u0000\u0000\u0003\u00a6\u0001\u0000\u0000\u0000\u0003"+
- "\u00a8\u0001\u0000\u0000\u0000\u0003\u00aa\u0001\u0000\u0000\u0000\u0004"+
- "\u00ac\u0001\u0000\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0004"+
- "\u00b0\u0001\u0000\u0000\u0000\u0004\u00b2\u0001\u0000\u0000\u0000\u0004"+
- "\u00b4\u0001\u0000\u0000\u0000\u0005\u00b6\u0001\u0000\u0000\u0000\u0005"+
- "\u00cc\u0001\u0000\u0000\u0000\u0005\u00ce\u0001\u0000\u0000\u0000\u0005"+
- "\u00d0\u0001\u0000\u0000\u0000\u0005\u00d2\u0001\u0000\u0000\u0000\u0005"+
- "\u00d4\u0001\u0000\u0000\u0000\u0005\u00d6\u0001\u0000\u0000\u0000\u0005"+
- "\u00d8\u0001\u0000\u0000\u0000\u0005\u00da\u0001\u0000\u0000\u0000\u0005"+
- "\u00dc\u0001\u0000\u0000\u0000\u0005\u00de\u0001\u0000\u0000\u0000\u0005"+
- "\u00e0\u0001\u0000\u0000\u0000\u0005\u00e2\u0001\u0000\u0000\u0000\u0005"+
- "\u00e4\u0001\u0000\u0000\u0000\u0005\u00e6\u0001\u0000\u0000\u0000\u0005"+
- "\u00e8\u0001\u0000\u0000\u0000\u0005\u00ea\u0001\u0000\u0000\u0000\u0005"+
- "\u00ec\u0001\u0000\u0000\u0000\u0005\u00ee\u0001\u0000\u0000\u0000\u0005"+
- "\u00f0\u0001\u0000\u0000\u0000\u0005\u00f2\u0001\u0000\u0000\u0000\u0005"+
- "\u00f4\u0001\u0000\u0000\u0000\u0005\u00f6\u0001\u0000\u0000\u0000\u0005"+
- "\u00f8\u0001\u0000\u0000\u0000\u0005\u00fa\u0001\u0000\u0000\u0000\u0005"+
- "\u00fc\u0001\u0000\u0000\u0000\u0005\u00fe\u0001\u0000\u0000\u0000\u0005"+
- "\u0100\u0001\u0000\u0000\u0000\u0005\u0102\u0001\u0000\u0000\u0000\u0005"+
- "\u0104\u0001\u0000\u0000\u0000\u0005\u0106\u0001\u0000\u0000\u0000\u0005"+
- "\u0108\u0001\u0000\u0000\u0000\u0005\u010a\u0001\u0000\u0000\u0000\u0005"+
- "\u010c\u0001\u0000\u0000\u0000\u0005\u010e\u0001\u0000\u0000\u0000\u0005"+
- "\u0110\u0001\u0000\u0000\u0000\u0005\u0112\u0001\u0000\u0000\u0000\u0005"+
- "\u0114\u0001\u0000\u0000\u0000\u0005\u0116\u0001\u0000\u0000\u0000\u0005"+
- "\u0118\u0001\u0000\u0000\u0000\u0005\u011a\u0001\u0000\u0000\u0000\u0005"+
- "\u011c\u0001\u0000\u0000\u0000\u0005\u011e\u0001\u0000\u0000\u0000\u0005"+
- "\u0120\u0001\u0000\u0000\u0000\u0005\u0122\u0001\u0000\u0000\u0000\u0005"+
- "\u0124\u0001\u0000\u0000\u0000\u0005\u0126\u0001\u0000\u0000\u0000\u0005"+
- "\u0128\u0001\u0000\u0000\u0000\u0005\u012a\u0001\u0000\u0000\u0000\u0005"+
- "\u012c\u0001\u0000\u0000\u0000\u0005\u012e\u0001\u0000\u0000\u0000\u0005"+
- "\u0130\u0001\u0000\u0000\u0000\u0005\u0134\u0001\u0000\u0000\u0000\u0005"+
- "\u0136\u0001\u0000\u0000\u0000\u0005\u0138\u0001\u0000\u0000\u0000\u0005"+
- "\u013a\u0001\u0000\u0000\u0000\u0006\u013c\u0001\u0000\u0000\u0000\u0006"+
- "\u013e\u0001\u0000\u0000\u0000\u0006\u0140\u0001\u0000\u0000\u0000\u0006"+
- "\u0142\u0001\u0000\u0000\u0000\u0006\u0144\u0001\u0000\u0000\u0000\u0006"+
- "\u0146\u0001\u0000\u0000\u0000\u0006\u0148\u0001\u0000\u0000\u0000\u0006"+
- "\u014c\u0001\u0000\u0000\u0000\u0006\u014e\u0001\u0000\u0000\u0000\u0006"+
- "\u0150\u0001\u0000\u0000\u0000\u0006\u0152\u0001\u0000\u0000\u0000\u0006"+
- "\u0154\u0001\u0000\u0000\u0000\u0006\u0156\u0001\u0000\u0000\u0000\u0007"+
- "\u0158\u0001\u0000\u0000\u0000\u0007\u015a\u0001\u0000\u0000\u0000\u0007"+
- "\u015c\u0001\u0000\u0000\u0000\u0007\u015e\u0001\u0000\u0000\u0000\u0007"+
- "\u0160\u0001\u0000\u0000\u0000\u0007\u0162\u0001\u0000\u0000\u0000\b\u0164"+
- "\u0001\u0000\u0000\u0000\b\u0166\u0001\u0000\u0000\u0000\b\u0168\u0001"+
- "\u0000\u0000\u0000\b\u016a\u0001\u0000\u0000\u0000\b\u016c\u0001\u0000"+
- "\u0000\u0000\b\u016e\u0001\u0000\u0000\u0000\b\u0170\u0001\u0000\u0000"+
- "\u0000\b\u0172\u0001\u0000\u0000\u0000\b\u0174\u0001\u0000\u0000\u0000"+
- "\b\u0176\u0001\u0000\u0000\u0000\b\u0178\u0001\u0000\u0000\u0000\b\u017a"+
- "\u0001\u0000\u0000\u0000\b\u017c\u0001\u0000\u0000\u0000\b\u017e\u0001"+
- "\u0000\u0000\u0000\b\u0180\u0001\u0000\u0000\u0000\b\u0182\u0001\u0000"+
- "\u0000\u0000\b\u0184\u0001\u0000\u0000\u0000\b\u0186\u0001\u0000\u0000"+
- "\u0000\t\u0188\u0001\u0000\u0000\u0000\t\u018a\u0001\u0000\u0000\u0000"+
- "\t\u018c\u0001\u0000\u0000\u0000\t\u018e\u0001\u0000\u0000\u0000\n\u0190"+
- "\u0001\u0000\u0000\u0000\n\u0192\u0001\u0000\u0000\u0000\n\u0194\u0001"+
- "\u0000\u0000\u0000\n\u0196\u0001\u0000\u0000\u0000\n\u0198\u0001\u0000"+
- "\u0000\u0000\n\u019a\u0001\u0000\u0000\u0000\n\u019c\u0001\u0000\u0000"+
- "\u0000\n\u019e\u0001\u0000\u0000\u0000\n\u01a0\u0001\u0000\u0000\u0000"+
- "\n\u01a2\u0001\u0000\u0000\u0000\n\u01a4\u0001\u0000\u0000\u0000\u000b"+
- "\u01a6\u0001\u0000\u0000\u0000\u000b\u01a8\u0001\u0000\u0000\u0000\u000b"+
- "\u01aa\u0001\u0000\u0000\u0000\u000b\u01ac\u0001\u0000\u0000\u0000\u000b"+
- "\u01ae\u0001\u0000\u0000\u0000\u000b\u01b0\u0001\u0000\u0000\u0000\u000b"+
- "\u01b2\u0001\u0000\u0000\u0000\u000b\u01b4\u0001\u0000\u0000\u0000\u000b"+
- "\u01b6\u0001\u0000\u0000\u0000\u000b\u01b8\u0001\u0000\u0000\u0000\u000b"+
- "\u01ba\u0001\u0000\u0000\u0000\f\u01bc\u0001\u0000\u0000\u0000\f\u01be"+
- "\u0001\u0000\u0000\u0000\f\u01c0\u0001\u0000\u0000\u0000\f\u01c2\u0001"+
- "\u0000\u0000\u0000\f\u01c4\u0001\u0000\u0000\u0000\f\u01c6\u0001\u0000"+
- "\u0000\u0000\f\u01c8\u0001\u0000\u0000\u0000\f\u01ca\u0001\u0000\u0000"+
- "\u0000\r\u01cc\u0001\u0000\u0000\u0000\r\u01ce\u0001\u0000\u0000\u0000"+
- "\r\u01d0\u0001\u0000\u0000\u0000\r\u01d2\u0001\u0000\u0000\u0000\r\u01d4"+
- "\u0001\u0000\u0000\u0000\r\u01d6\u0001\u0000\u0000\u0000\r\u01d8\u0001"+
- "\u0000\u0000\u0000\r\u01da\u0001\u0000\u0000\u0000\r\u01dc\u0001\u0000"+
- "\u0000\u0000\r\u01de\u0001\u0000\u0000\u0000\r\u01e0\u0001\u0000\u0000"+
- "\u0000\r\u01e2\u0001\u0000\u0000\u0000\r\u01e4\u0001\u0000\u0000\u0000"+
- "\r\u01e6\u0001\u0000\u0000\u0000\u000e\u01e8\u0001\u0000\u0000\u0000\u000e"+
- "\u01ea\u0001\u0000\u0000\u0000\u000e\u01ec\u0001\u0000\u0000\u0000\u000e"+
- "\u01ee\u0001\u0000\u0000\u0000\u000e\u01f0\u0001\u0000\u0000\u0000\u000e"+
- "\u01f2\u0001\u0000\u0000\u0000\u000e\u01f4\u0001\u0000\u0000\u0000\u000e"+
- "\u01f6\u0001\u0000\u0000\u0000\u000e\u01f8\u0001\u0000\u0000\u0000\u000e"+
- "\u01fa\u0001\u0000\u0000\u0000\u000e\u0200\u0001\u0000\u0000\u0000\u000e"+
- "\u0202\u0001\u0000\u0000\u0000\u000e\u0204\u0001\u0000\u0000\u0000\u000e"+
- "\u0206\u0001\u0000\u0000\u0000\u000f\u0208\u0001\u0000\u0000\u0000\u000f"+
- "\u020a\u0001\u0000\u0000\u0000\u000f\u020c\u0001\u0000\u0000\u0000\u000f"+
- "\u020e\u0001\u0000\u0000\u0000\u000f\u0210\u0001\u0000\u0000\u0000\u000f"+
- "\u0212\u0001\u0000\u0000\u0000\u000f\u0214\u0001\u0000\u0000\u0000\u000f"+
- "\u0216\u0001\u0000\u0000\u0000\u000f\u0218\u0001\u0000\u0000\u0000\u000f"+
- "\u021a\u0001\u0000\u0000\u0000\u000f\u021c\u0001\u0000\u0000\u0000\u000f"+
- "\u021e\u0001\u0000\u0000\u0000\u000f\u0220\u0001\u0000\u0000\u0000\u000f"+
- "\u0222\u0001\u0000\u0000\u0000\u000f\u0224\u0001\u0000\u0000\u0000\u000f"+
- "\u0226\u0001\u0000\u0000\u0000\u0010\u0228\u0001\u0000\u0000\u0000\u0010"+
- "\u022a\u0001\u0000\u0000\u0000\u0010\u022c\u0001\u0000\u0000\u0000\u0010"+
- "\u022e\u0001\u0000\u0000\u0000\u0010\u0230\u0001\u0000\u0000\u0000\u0010"+
- "\u0232\u0001\u0000\u0000\u0000\u0010\u0234\u0001\u0000\u0000\u0000\u0010"+
- "\u0236\u0001\u0000\u0000\u0000\u0010\u0238\u0001\u0000\u0000\u0000\u0010"+
- "\u023a\u0001\u0000\u0000\u0000\u0010\u023c\u0001\u0000\u0000\u0000\u0010"+
- "\u023e\u0001\u0000\u0000\u0000\u0010\u0240\u0001\u0000\u0000\u0000\u0010"+
- "\u0242\u0001\u0000\u0000\u0000\u0010\u0244\u0001\u0000\u0000\u0000\u0010"+
- "\u0246\u0001\u0000\u0000\u0000\u0010\u0248\u0001\u0000\u0000\u0000\u0010"+
- "\u024a\u0001\u0000\u0000\u0000\u0010\u024c\u0001\u0000\u0000\u0000\u0010"+
- "\u024e\u0001\u0000\u0000\u0000\u0010\u0250\u0001\u0000\u0000\u0000\u0010"+
- "\u0252\u0001\u0000\u0000\u0000\u0011\u0254\u0001\u0000\u0000\u0000\u0011"+
- "\u0256\u0001\u0000\u0000\u0000\u0011\u0258\u0001\u0000\u0000\u0000\u0011"+
- "\u025a\u0001\u0000\u0000\u0000\u0011\u025c\u0001\u0000\u0000\u0000\u0012"+
- "\u025e\u0001\u0000\u0000\u0000\u0014\u026f\u0001\u0000\u0000\u0000\u0016"+
- "\u027f\u0001\u0000\u0000\u0000\u0018\u0285\u0001\u0000\u0000\u0000\u001a"+
- "\u0294\u0001\u0000\u0000\u0000\u001c\u029d\u0001\u0000\u0000\u0000\u001e"+
- "\u02a8\u0001\u0000\u0000\u0000 \u02b5\u0001\u0000\u0000\u0000\"\u02bf"+
- "\u0001\u0000\u0000\u0000$\u02c6\u0001\u0000\u0000\u0000&\u02cd\u0001\u0000"+
- "\u0000\u0000(\u02d5\u0001\u0000\u0000\u0000*\u02de\u0001\u0000\u0000\u0000"+
- ",\u02e4\u0001\u0000\u0000\u0000.\u02ed\u0001\u0000\u0000\u00000\u02f4"+
- "\u0001\u0000\u0000\u00002\u02fc\u0001\u0000\u0000\u00004\u0304\u0001\u0000"+
- "\u0000\u00006\u030b\u0001\u0000\u0000\u00008\u0310\u0001\u0000\u0000\u0000"+
- ":\u0317\u0001\u0000\u0000\u0000<\u031e\u0001\u0000\u0000\u0000>\u0327"+
- "\u0001\u0000\u0000\u0000@\u0335\u0001\u0000\u0000\u0000B\u033e\u0001\u0000"+
- "\u0000\u0000D\u0346\u0001\u0000\u0000\u0000F\u034e\u0001\u0000\u0000\u0000"+
- "H\u0357\u0001\u0000\u0000\u0000J\u0363\u0001\u0000\u0000\u0000L\u036f"+
- "\u0001\u0000\u0000\u0000N\u0376\u0001\u0000\u0000\u0000P\u037d\u0001\u0000"+
- "\u0000\u0000R\u0389\u0001\u0000\u0000\u0000T\u0392\u0001\u0000\u0000\u0000"+
- "V\u0398\u0001\u0000\u0000\u0000X\u03a0\u0001\u0000\u0000\u0000Z\u03a6"+
- "\u0001\u0000\u0000\u0000\\\u03ab\u0001\u0000\u0000\u0000^\u03b1\u0001"+
- "\u0000\u0000\u0000`\u03b5\u0001\u0000\u0000\u0000b\u03b9\u0001\u0000\u0000"+
- "\u0000d\u03bd\u0001\u0000\u0000\u0000f\u03c1\u0001\u0000\u0000\u0000h"+
- "\u03c5\u0001\u0000\u0000\u0000j\u03c9\u0001\u0000\u0000\u0000l\u03cd\u0001"+
- "\u0000\u0000\u0000n\u03d1\u0001\u0000\u0000\u0000p\u03d5\u0001\u0000\u0000"+
- "\u0000r\u03d9\u0001\u0000\u0000\u0000t\u03dd\u0001\u0000\u0000\u0000v"+
- "\u03e2\u0001\u0000\u0000\u0000x\u03e8\u0001\u0000\u0000\u0000z\u03ed\u0001"+
- "\u0000\u0000\u0000|\u03f2\u0001\u0000\u0000\u0000~\u03fb\u0001\u0000\u0000"+
- "\u0000\u0080\u0402\u0001\u0000\u0000\u0000\u0082\u0406\u0001\u0000\u0000"+
- "\u0000\u0084\u040a\u0001\u0000\u0000\u0000\u0086\u040e\u0001\u0000\u0000"+
- "\u0000\u0088\u0412\u0001\u0000\u0000\u0000\u008a\u0416\u0001\u0000\u0000"+
- "\u0000\u008c\u041c\u0001\u0000\u0000\u0000\u008e\u0423\u0001\u0000\u0000"+
- "\u0000\u0090\u0427\u0001\u0000\u0000\u0000\u0092\u042b\u0001\u0000\u0000"+
- "\u0000\u0094\u042f\u0001\u0000\u0000\u0000\u0096\u0433\u0001\u0000\u0000"+
- "\u0000\u0098\u0437\u0001\u0000\u0000\u0000\u009a\u043b\u0001\u0000\u0000"+
- "\u0000\u009c\u043f\u0001\u0000\u0000\u0000\u009e\u0443\u0001\u0000\u0000"+
- "\u0000\u00a0\u0447\u0001\u0000\u0000\u0000\u00a2\u044b\u0001\u0000\u0000"+
- "\u0000\u00a4\u044f\u0001\u0000\u0000\u0000\u00a6\u0453\u0001\u0000\u0000"+
- "\u0000\u00a8\u0457\u0001\u0000\u0000\u0000\u00aa\u045b\u0001\u0000\u0000"+
- "\u0000\u00ac\u045f\u0001\u0000\u0000\u0000\u00ae\u0464\u0001\u0000\u0000"+
- "\u0000\u00b0\u0469\u0001\u0000\u0000\u0000\u00b2\u046d\u0001\u0000\u0000"+
- "\u0000\u00b4\u0471\u0001\u0000\u0000\u0000\u00b6\u0475\u0001\u0000\u0000"+
- "\u0000\u00b8\u0479\u0001\u0000\u0000\u0000\u00ba\u047b\u0001\u0000\u0000"+
- "\u0000\u00bc\u047d\u0001\u0000\u0000\u0000\u00be\u0480\u0001\u0000\u0000"+
- "\u0000\u00c0\u0482\u0001\u0000\u0000\u0000\u00c2\u048b\u0001\u0000\u0000"+
- "\u0000\u00c4\u048d\u0001\u0000\u0000\u0000\u00c6\u0492\u0001\u0000\u0000"+
- "\u0000\u00c8\u0494\u0001\u0000\u0000\u0000\u00ca\u0499\u0001\u0000\u0000"+
- "\u0000\u00cc\u04b8\u0001\u0000\u0000\u0000\u00ce\u04bb\u0001\u0000\u0000"+
- "\u0000\u00d0\u04e9\u0001\u0000\u0000\u0000\u00d2\u04eb\u0001\u0000\u0000"+
- "\u0000\u00d4\u04ef\u0001\u0000\u0000\u0000\u00d6\u04f3\u0001\u0000\u0000"+
- "\u0000\u00d8\u04f5\u0001\u0000\u0000\u0000\u00da\u04f8\u0001\u0000\u0000"+
- "\u0000\u00dc\u04fb\u0001\u0000\u0000\u0000\u00de\u04fd\u0001\u0000\u0000"+
- "\u0000\u00e0\u04ff\u0001\u0000\u0000\u0000\u00e2\u0501\u0001\u0000\u0000"+
- "\u0000\u00e4\u0506\u0001\u0000\u0000\u0000\u00e6\u0508\u0001\u0000\u0000"+
- "\u0000\u00e8\u050e\u0001\u0000\u0000\u0000\u00ea\u0514\u0001\u0000\u0000"+
- "\u0000\u00ec\u0517\u0001\u0000\u0000\u0000\u00ee\u051a\u0001\u0000\u0000"+
- "\u0000\u00f0\u051f\u0001\u0000\u0000\u0000\u00f2\u0524\u0001\u0000\u0000"+
- "\u0000\u00f4\u0528\u0001\u0000\u0000\u0000\u00f6\u052d\u0001\u0000\u0000"+
- "\u0000\u00f8\u0533\u0001\u0000\u0000\u0000\u00fa\u0536\u0001\u0000\u0000"+
- "\u0000\u00fc\u0539\u0001\u0000\u0000\u0000\u00fe\u053b\u0001\u0000\u0000"+
- "\u0000\u0100\u0541\u0001\u0000\u0000\u0000\u0102\u0546\u0001\u0000\u0000"+
- "\u0000\u0104\u054b\u0001\u0000\u0000\u0000\u0106\u054e\u0001\u0000\u0000"+
- "\u0000\u0108\u0551\u0001\u0000\u0000\u0000\u010a\u0554\u0001\u0000\u0000"+
- "\u0000\u010c\u0556\u0001\u0000\u0000\u0000\u010e\u0559\u0001\u0000\u0000"+
- "\u0000\u0110\u055b\u0001\u0000\u0000\u0000\u0112\u055e\u0001\u0000\u0000"+
- "\u0000\u0114\u0560\u0001\u0000\u0000\u0000\u0116\u0562\u0001\u0000\u0000"+
- "\u0000\u0118\u0564\u0001\u0000\u0000\u0000\u011a\u0566\u0001\u0000\u0000"+
- "\u0000\u011c\u0568\u0001\u0000\u0000\u0000\u011e\u056a\u0001\u0000\u0000"+
- "\u0000\u0120\u056c\u0001\u0000\u0000\u0000\u0122\u056f\u0001\u0000\u0000"+
- "\u0000\u0124\u0584\u0001\u0000\u0000\u0000\u0126\u0597\u0001\u0000\u0000"+
- "\u0000\u0128\u0599\u0001\u0000\u0000\u0000\u012a\u059e\u0001\u0000\u0000"+
- "\u0000\u012c\u05a3\u0001\u0000\u0000\u0000\u012e\u05a8\u0001\u0000\u0000"+
- "\u0000\u0130\u05bd\u0001\u0000\u0000\u0000\u0132\u05bf\u0001\u0000\u0000"+
- "\u0000\u0134\u05c7\u0001\u0000\u0000\u0000\u0136\u05c9\u0001\u0000\u0000"+
- "\u0000\u0138\u05cd\u0001\u0000\u0000\u0000\u013a\u05d1\u0001\u0000\u0000"+
- "\u0000\u013c\u05d5\u0001\u0000\u0000\u0000\u013e\u05da\u0001\u0000\u0000"+
- "\u0000\u0140\u05de\u0001\u0000\u0000\u0000\u0142\u05e2\u0001\u0000\u0000"+
- "\u0000\u0144\u05e6\u0001\u0000\u0000\u0000\u0146\u05ea\u0001\u0000\u0000"+
- "\u0000\u0148\u05f3\u0001\u0000\u0000\u0000\u014a\u05fb\u0001\u0000\u0000"+
- "\u0000\u014c\u05fe\u0001\u0000\u0000\u0000\u014e\u0602\u0001\u0000\u0000"+
- "\u0000\u0150\u0606\u0001\u0000\u0000\u0000\u0152\u060a\u0001\u0000\u0000"+
- "\u0000\u0154\u060e\u0001\u0000\u0000\u0000\u0156\u0612\u0001\u0000\u0000"+
- "\u0000\u0158\u0616\u0001\u0000\u0000\u0000\u015a\u061b\u0001\u0000\u0000"+
- "\u0000\u015c\u0621\u0001\u0000\u0000\u0000\u015e\u0626\u0001\u0000\u0000"+
- "\u0000\u0160\u062a\u0001\u0000\u0000\u0000\u0162\u062e\u0001\u0000\u0000"+
- "\u0000\u0164\u0632\u0001\u0000\u0000\u0000\u0166\u0637\u0001\u0000\u0000"+
- "\u0000\u0168\u063d\u0001\u0000\u0000\u0000\u016a\u0643\u0001\u0000\u0000"+
- "\u0000\u016c\u0649\u0001\u0000\u0000\u0000\u016e\u064d\u0001\u0000\u0000"+
- "\u0000\u0170\u0653\u0001\u0000\u0000\u0000\u0172\u0657\u0001\u0000\u0000"+
- "\u0000\u0174\u065b\u0001\u0000\u0000\u0000\u0176\u065f\u0001\u0000\u0000"+
- "\u0000\u0178\u0663\u0001\u0000\u0000\u0000\u017a\u0667\u0001\u0000\u0000"+
- "\u0000\u017c\u066b\u0001\u0000\u0000\u0000\u017e\u066f\u0001\u0000\u0000"+
- "\u0000\u0180\u0673\u0001\u0000\u0000\u0000\u0182\u0677\u0001\u0000\u0000"+
- "\u0000\u0184\u067b\u0001\u0000\u0000\u0000\u0186\u067f\u0001\u0000\u0000"+
- "\u0000\u0188\u0683\u0001\u0000\u0000\u0000\u018a\u068c\u0001\u0000\u0000"+
- "\u0000\u018c\u0690\u0001\u0000\u0000\u0000\u018e\u0694\u0001\u0000\u0000"+
- "\u0000\u0190\u0698\u0001\u0000\u0000\u0000\u0192\u069d\u0001\u0000\u0000"+
- "\u0000\u0194\u06a2\u0001\u0000\u0000\u0000\u0196\u06a6\u0001\u0000\u0000"+
- "\u0000\u0198\u06ac\u0001\u0000\u0000\u0000\u019a\u06b5\u0001\u0000\u0000"+
- "\u0000\u019c\u06b9\u0001\u0000\u0000\u0000\u019e\u06bd\u0001\u0000\u0000"+
- "\u0000\u01a0\u06c1\u0001\u0000\u0000\u0000\u01a2\u06c5\u0001\u0000\u0000"+
- "\u0000\u01a4\u06c9\u0001\u0000\u0000\u0000\u01a6\u06cd\u0001\u0000\u0000"+
- "\u0000\u01a8\u06d2\u0001\u0000\u0000\u0000\u01aa\u06d8\u0001\u0000\u0000"+
- "\u0000\u01ac\u06dc\u0001\u0000\u0000\u0000\u01ae\u06e0\u0001\u0000\u0000"+
- "\u0000\u01b0\u06e4\u0001\u0000\u0000\u0000\u01b2\u06e9\u0001\u0000\u0000"+
- "\u0000\u01b4\u06ed\u0001\u0000\u0000\u0000\u01b6\u06f1\u0001\u0000\u0000"+
- "\u0000\u01b8\u06f5\u0001\u0000\u0000\u0000\u01ba\u06f9\u0001\u0000\u0000"+
- "\u0000\u01bc\u06fd\u0001\u0000\u0000\u0000\u01be\u0703\u0001\u0000\u0000"+
- "\u0000\u01c0\u070a\u0001\u0000\u0000\u0000\u01c2\u070e\u0001\u0000\u0000"+
- "\u0000\u01c4\u0712\u0001\u0000\u0000\u0000\u01c6\u0716\u0001\u0000\u0000"+
- "\u0000\u01c8\u071a\u0001\u0000\u0000\u0000\u01ca\u071e\u0001\u0000\u0000"+
- "\u0000\u01cc\u0722\u0001\u0000\u0000\u0000\u01ce\u0727\u0001\u0000\u0000"+
- "\u0000\u01d0\u072d\u0001\u0000\u0000\u0000\u01d2\u0731\u0001\u0000\u0000"+
- "\u0000\u01d4\u0735\u0001\u0000\u0000\u0000\u01d6\u0739\u0001\u0000\u0000"+
- "\u0000\u01d8\u073d\u0001\u0000\u0000\u0000\u01da\u0741\u0001\u0000\u0000"+
- "\u0000\u01dc\u0745\u0001\u0000\u0000\u0000\u01de\u0749\u0001\u0000\u0000"+
- "\u0000\u01e0\u074d\u0001\u0000\u0000\u0000\u01e2\u0751\u0001\u0000\u0000"+
- "\u0000\u01e4\u0755\u0001\u0000\u0000\u0000\u01e6\u0759\u0001\u0000\u0000"+
- "\u0000\u01e8\u075d\u0001\u0000\u0000\u0000\u01ea\u0762\u0001\u0000\u0000"+
- "\u0000\u01ec\u0768\u0001\u0000\u0000\u0000\u01ee\u076c\u0001\u0000\u0000"+
- "\u0000\u01f0\u0770\u0001\u0000\u0000\u0000\u01f2\u0774\u0001\u0000\u0000"+
- "\u0000\u01f4\u0778\u0001\u0000\u0000\u0000\u01f6\u077c\u0001\u0000\u0000"+
- "\u0000\u01f8\u0780\u0001\u0000\u0000\u0000\u01fa\u0784\u0001\u0000\u0000"+
- "\u0000\u01fc\u078c\u0001\u0000\u0000\u0000\u01fe\u07a1\u0001\u0000\u0000"+
- "\u0000\u0200\u07a5\u0001\u0000\u0000\u0000\u0202\u07a9\u0001\u0000\u0000"+
- "\u0000\u0204\u07ad\u0001\u0000\u0000\u0000\u0206\u07b1\u0001\u0000\u0000"+
- "\u0000\u0208\u07b5\u0001\u0000\u0000\u0000\u020a\u07ba\u0001\u0000\u0000"+
- "\u0000\u020c\u07c0\u0001\u0000\u0000\u0000\u020e\u07c4\u0001\u0000\u0000"+
- "\u0000\u0210\u07c8\u0001\u0000\u0000\u0000\u0212\u07cc\u0001\u0000\u0000"+
- "\u0000\u0214\u07d0\u0001\u0000\u0000\u0000\u0216\u07d4\u0001\u0000\u0000"+
- "\u0000\u0218\u07d8\u0001\u0000\u0000\u0000\u021a\u07dc\u0001\u0000\u0000"+
- "\u0000\u021c\u07e0\u0001\u0000\u0000\u0000\u021e\u07e4\u0001\u0000\u0000"+
- "\u0000\u0220\u07e7\u0001\u0000\u0000\u0000\u0222\u07eb\u0001\u0000\u0000"+
- "\u0000\u0224\u07ef\u0001\u0000\u0000\u0000\u0226\u07f3\u0001\u0000\u0000"+
- "\u0000\u0228\u07f7\u0001\u0000\u0000\u0000\u022a\u07fb\u0001\u0000\u0000"+
- "\u0000\u022c\u07ff\u0001\u0000\u0000\u0000\u022e\u0803\u0001\u0000\u0000"+
- "\u0000\u0230\u0808\u0001\u0000\u0000\u0000\u0232\u080c\u0001\u0000\u0000"+
- "\u0000\u0234\u0810\u0001\u0000\u0000\u0000\u0236\u0814\u0001\u0000\u0000"+
- "\u0000\u0238\u0818\u0001\u0000\u0000\u0000\u023a\u081c\u0001\u0000\u0000"+
- "\u0000\u023c\u0820\u0001\u0000\u0000\u0000\u023e\u0824\u0001\u0000\u0000"+
- "\u0000\u0240\u0828\u0001\u0000\u0000\u0000\u0242\u082c\u0001\u0000\u0000"+
- "\u0000\u0244\u0830\u0001\u0000\u0000\u0000\u0246\u0834\u0001\u0000\u0000"+
- "\u0000\u0248\u0838\u0001\u0000\u0000\u0000\u024a\u083c\u0001\u0000\u0000"+
- "\u0000\u024c\u0840\u0001\u0000\u0000\u0000\u024e\u0844\u0001\u0000\u0000"+
- "\u0000\u0250\u0848\u0001\u0000\u0000\u0000\u0252\u084c\u0001\u0000\u0000"+
- "\u0000\u0254\u0850\u0001\u0000\u0000\u0000\u0256\u0855\u0001\u0000\u0000"+
- "\u0000\u0258\u085a\u0001\u0000\u0000\u0000\u025a\u085e\u0001\u0000\u0000"+
- "\u0000\u025c\u0862\u0001\u0000\u0000\u0000\u025e\u025f\u0005/\u0000\u0000"+
- "\u025f\u0260\u0005/\u0000\u0000\u0260\u0264\u0001\u0000\u0000\u0000\u0261"+
- "\u0263\b\u0000\u0000\u0000\u0262\u0261\u0001\u0000\u0000\u0000\u0263\u0266"+
- "\u0001\u0000\u0000\u0000\u0264\u0262\u0001\u0000\u0000\u0000\u0264\u0265"+
- "\u0001\u0000\u0000\u0000\u0265\u0268\u0001\u0000\u0000\u0000\u0266\u0264"+
- "\u0001\u0000\u0000\u0000\u0267\u0269\u0005\r\u0000\u0000\u0268\u0267\u0001"+
- "\u0000\u0000\u0000\u0268\u0269\u0001\u0000\u0000\u0000\u0269\u026b\u0001"+
- "\u0000\u0000\u0000\u026a\u026c\u0005\n\u0000\u0000\u026b\u026a\u0001\u0000"+
- "\u0000\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u026d\u0001\u0000"+
- "\u0000\u0000\u026d\u026e\u0006\u0000\u0000\u0000\u026e\u0013\u0001\u0000"+
- "\u0000\u0000\u026f\u0270\u0005/\u0000\u0000\u0270\u0271\u0005*\u0000\u0000"+
- "\u0271\u0276\u0001\u0000\u0000\u0000\u0272\u0275\u0003\u0014\u0001\u0000"+
- "\u0273\u0275\t\u0000\u0000\u0000\u0274\u0272\u0001\u0000\u0000\u0000\u0274"+
- "\u0273\u0001\u0000\u0000\u0000\u0275\u0278\u0001\u0000\u0000\u0000\u0276"+
- "\u0277\u0001\u0000\u0000\u0000\u0276\u0274\u0001\u0000\u0000\u0000\u0277"+
- "\u0279\u0001\u0000\u0000\u0000\u0278\u0276\u0001\u0000\u0000\u0000\u0279"+
- "\u027a\u0005*\u0000\u0000\u027a\u027b\u0005/\u0000\u0000\u027b\u027c\u0001"+
- "\u0000\u0000\u0000\u027c\u027d\u0006\u0001\u0000\u0000\u027d\u0015\u0001"+
- "\u0000\u0000\u0000\u027e\u0280\u0007\u0001\u0000\u0000\u027f\u027e\u0001"+
- "\u0000\u0000\u0000\u0280\u0281\u0001\u0000\u0000\u0000\u0281\u027f\u0001"+
- "\u0000\u0000\u0000\u0281\u0282\u0001\u0000\u0000\u0000\u0282\u0283\u0001"+
- "\u0000\u0000\u0000\u0283\u0284\u0006\u0002\u0000\u0000\u0284\u0017\u0001"+
- "\u0000\u0000\u0000\u0285\u0286\u0007\u0002\u0000\u0000\u0286\u0287\u0007"+
- "\u0003\u0000\u0000\u0287\u0288\u0007\u0004\u0000\u0000\u0288\u0289\u0007"+
- "\u0005\u0000\u0000\u0289\u028a\u0007\u0006\u0000\u0000\u028a\u028b\u0007"+
- "\u0007\u0000\u0000\u028b\u028c\u0005_\u0000\u0000\u028c\u028d\u0007\b"+
- "\u0000\u0000\u028d\u028e\u0007\t\u0000\u0000\u028e\u028f\u0007\n\u0000"+
- "\u0000\u028f\u0290\u0007\u0005\u0000\u0000\u0290\u0291\u0007\u000b\u0000"+
- "\u0000\u0291\u0292\u0001\u0000\u0000\u0000\u0292\u0293\u0006\u0003\u0001"+
- "\u0000\u0293\u0019\u0001\u0000\u0000\u0000\u0294\u0295\u0007\u0007\u0000"+
- "\u0000\u0295\u0296\u0007\u0005\u0000\u0000\u0296\u0297\u0007\f\u0000\u0000"+
- "\u0297\u0298\u0007\n\u0000\u0000\u0298\u0299\u0007\u0002\u0000\u0000\u0299"+
- "\u029a\u0007\u0003\u0000\u0000\u029a\u029b\u0001\u0000\u0000\u0000\u029b"+
- "\u029c\u0006\u0004\u0002\u0000\u029c\u001b\u0001\u0000\u0000\u0000\u029d"+
- "\u029e\u0004\u0005\u0000\u0000\u029e\u029f\u0007\u0007\u0000\u0000\u029f"+
- "\u02a0\u0007\r\u0000\u0000\u02a0\u02a1\u0007\b\u0000\u0000\u02a1\u02a2"+
- "\u0007\u000e\u0000\u0000\u02a2\u02a3\u0007\u0004\u0000\u0000\u02a3\u02a4"+
- "\u0007\n\u0000\u0000\u02a4\u02a5\u0007\u0005\u0000\u0000\u02a5\u02a6\u0001"+
- "\u0000\u0000\u0000\u02a6\u02a7\u0006\u0005\u0003\u0000\u02a7\u001d\u0001"+
- "\u0000\u0000\u0000\u02a8\u02a9\u0007\u0002\u0000\u0000\u02a9\u02aa\u0007"+
- "\t\u0000\u0000\u02aa\u02ab\u0007\u000f\u0000\u0000\u02ab\u02ac\u0007\b"+
- "\u0000\u0000\u02ac\u02ad\u0007\u000e\u0000\u0000\u02ad\u02ae\u0007\u0007"+
- "\u0000\u0000\u02ae\u02af\u0007\u000b\u0000\u0000\u02af\u02b0\u0007\n\u0000"+
- "\u0000\u02b0\u02b1\u0007\t\u0000\u0000\u02b1\u02b2\u0007\u0005\u0000\u0000"+
- "\u02b2\u02b3\u0001\u0000\u0000\u0000\u02b3\u02b4\u0006\u0006\u0004\u0000"+
- "\u02b4\u001f\u0001\u0000\u0000\u0000\u02b5\u02b6\u0007\u0010\u0000\u0000"+
- "\u02b6\u02b7\u0007\n\u0000\u0000\u02b7\u02b8\u0007\u0011\u0000\u0000\u02b8"+
- "\u02b9\u0007\u0011\u0000\u0000\u02b9\u02ba\u0007\u0007\u0000\u0000\u02ba"+
- "\u02bb\u0007\u0002\u0000\u0000\u02bb\u02bc\u0007\u000b\u0000\u0000\u02bc"+
- "\u02bd\u0001\u0000\u0000\u0000\u02bd\u02be\u0006\u0007\u0004\u0000\u02be"+
- "!\u0001\u0000\u0000\u0000\u02bf\u02c0\u0007\u0007\u0000\u0000\u02c0\u02c1"+
- "\u0007\u0012\u0000\u0000\u02c1\u02c2\u0007\u0004\u0000\u0000\u02c2\u02c3"+
- "\u0007\u000e\u0000\u0000\u02c3\u02c4\u0001\u0000\u0000\u0000\u02c4\u02c5"+
- "\u0006\b\u0004\u0000\u02c5#\u0001\u0000\u0000\u0000\u02c6\u02c7\u0007"+
- "\u0006\u0000\u0000\u02c7\u02c8\u0007\f\u0000\u0000\u02c8\u02c9\u0007\t"+
- "\u0000\u0000\u02c9\u02ca\u0007\u0013\u0000\u0000\u02ca\u02cb\u0001\u0000"+
- "\u0000\u0000\u02cb\u02cc\u0006\t\u0004\u0000\u02cc%\u0001\u0000\u0000"+
- "\u0000\u02cd\u02ce\u0007\u000e\u0000\u0000\u02ce\u02cf\u0007\n\u0000\u0000"+
- "\u02cf\u02d0\u0007\u000f\u0000\u0000\u02d0\u02d1\u0007\n\u0000\u0000\u02d1"+
- "\u02d2\u0007\u000b\u0000\u0000\u02d2\u02d3\u0001\u0000\u0000\u0000\u02d3"+
- "\u02d4\u0006\n\u0004\u0000\u02d4\'\u0001\u0000\u0000\u0000\u02d5\u02d6"+
- "\u0007\f\u0000\u0000\u02d6\u02d7\u0007\u0007\u0000\u0000\u02d7\u02d8\u0007"+
- "\f\u0000\u0000\u02d8\u02d9\u0007\u0004\u0000\u0000\u02d9\u02da\u0007\u0005"+
- "\u0000\u0000\u02da\u02db\u0007\u0013\u0000\u0000\u02db\u02dc\u0001\u0000"+
- "\u0000\u0000\u02dc\u02dd\u0006\u000b\u0004\u0000\u02dd)\u0001\u0000\u0000"+
- "\u0000\u02de\u02df\u0007\f\u0000\u0000\u02df\u02e0\u0007\t\u0000\u0000"+
- "\u02e0\u02e1\u0007\u0014\u0000\u0000\u02e1\u02e2\u0001\u0000\u0000\u0000"+
- "\u02e2\u02e3\u0006\f\u0004\u0000\u02e3+\u0001\u0000\u0000\u0000\u02e4"+
- "\u02e5\u0007\u0011\u0000\u0000\u02e5\u02e6\u0007\u0004\u0000\u0000\u02e6"+
- "\u02e7\u0007\u000f\u0000\u0000\u02e7\u02e8\u0007\b\u0000\u0000\u02e8\u02e9"+
- "\u0007\u000e\u0000\u0000\u02e9\u02ea\u0007\u0007\u0000\u0000\u02ea\u02eb"+
- "\u0001\u0000\u0000\u0000\u02eb\u02ec\u0006\r\u0004\u0000\u02ec-\u0001"+
- "\u0000\u0000\u0000\u02ed\u02ee\u0007\u0011\u0000\u0000\u02ee\u02ef\u0007"+
- "\t\u0000\u0000\u02ef\u02f0\u0007\f\u0000\u0000\u02f0\u02f1\u0007\u000b"+
- "\u0000\u0000\u02f1\u02f2\u0001\u0000\u0000\u0000\u02f2\u02f3\u0006\u000e"+
- "\u0004\u0000\u02f3/\u0001\u0000\u0000\u0000\u02f4\u02f5\u0007\u0011\u0000"+
- "\u0000\u02f5\u02f6\u0007\u000b\u0000\u0000\u02f6\u02f7\u0007\u0004\u0000"+
- "\u0000\u02f7\u02f8\u0007\u000b\u0000\u0000\u02f8\u02f9\u0007\u0011\u0000"+
- "\u0000\u02f9\u02fa\u0001\u0000\u0000\u0000\u02fa\u02fb\u0006\u000f\u0004"+
- "\u0000\u02fb1\u0001\u0000\u0000\u0000\u02fc\u02fd\u0007\u0014\u0000\u0000"+
- "\u02fd\u02fe\u0007\u0003\u0000\u0000\u02fe\u02ff\u0007\u0007\u0000\u0000"+
- "\u02ff\u0300\u0007\f\u0000\u0000\u0300\u0301\u0007\u0007\u0000\u0000\u0301"+
- "\u0302\u0001\u0000\u0000\u0000\u0302\u0303\u0006\u0010\u0004\u0000\u0303"+
- "3\u0001\u0000\u0000\u0000\u0304\u0305\u0007\u0015\u0000\u0000\u0305\u0306"+
- "\u0007\f\u0000\u0000\u0306\u0307\u0007\t\u0000\u0000\u0307\u0308\u0007"+
- "\u000f\u0000\u0000\u0308\u0309\u0001\u0000\u0000\u0000\u0309\u030a\u0006"+
- "\u0011\u0005\u0000\u030a5\u0001\u0000\u0000\u0000\u030b\u030c\u0007\u000b"+
- "\u0000\u0000\u030c\u030d\u0007\u0011\u0000\u0000\u030d\u030e\u0001\u0000"+
- "\u0000\u0000\u030e\u030f\u0006\u0012\u0005\u0000\u030f7\u0001\u0000\u0000"+
- "\u0000\u0310\u0311\u0007\u0015\u0000\u0000\u0311\u0312\u0007\t\u0000\u0000"+
- "\u0312\u0313\u0007\f\u0000\u0000\u0313\u0314\u0007\u0013\u0000\u0000\u0314"+
- "\u0315\u0001\u0000\u0000\u0000\u0315\u0316\u0006\u0013\u0006\u0000\u0316"+
- "9\u0001\u0000\u0000\u0000\u0317\u0318\u0007\u0015\u0000\u0000\u0318\u0319"+
- "\u0007\u0016\u0000\u0000\u0319\u031a\u0007\u0011\u0000\u0000\u031a\u031b"+
- "\u0007\u0007\u0000\u0000\u031b\u031c\u0001\u0000\u0000\u0000\u031c\u031d"+
- "\u0006\u0014\u0007\u0000\u031d;\u0001\u0000\u0000\u0000\u031e\u031f\u0007"+
- "\n\u0000\u0000\u031f\u0320\u0007\u0005\u0000\u0000\u0320\u0321\u0007\u000e"+
- "\u0000\u0000\u0321\u0322\u0007\n\u0000\u0000\u0322\u0323\u0007\u0005\u0000"+
- "\u0000\u0323\u0324\u0007\u0007\u0000\u0000\u0324\u0325\u0001\u0000\u0000"+
- "\u0000\u0325\u0326\u0006\u0015\b\u0000\u0326=\u0001\u0000\u0000\u0000"+
- "\u0327\u0328\u0007\n\u0000\u0000\u0328\u0329\u0007\u0005\u0000\u0000\u0329"+
- "\u032a\u0007\u000e\u0000\u0000\u032a\u032b\u0007\n\u0000\u0000\u032b\u032c"+
- "\u0007\u0005\u0000\u0000\u032c\u032d\u0007\u0007\u0000\u0000\u032d\u032e"+
- "\u0007\u0011\u0000\u0000\u032e\u032f\u0007\u000b\u0000\u0000\u032f\u0330"+
- "\u0007\u0004\u0000\u0000\u0330\u0331\u0007\u000b\u0000\u0000\u0331\u0332"+
- "\u0007\u0011\u0000\u0000\u0332\u0333\u0001\u0000\u0000\u0000\u0333\u0334"+
- "\u0006\u0016\u0004\u0000\u0334?\u0001\u0000\u0000\u0000\u0335\u0336\u0007"+
- "\u000e\u0000\u0000\u0336\u0337\u0007\t\u0000\u0000\u0337\u0338\u0007\t"+
- "\u0000\u0000\u0338\u0339\u0007\u0013\u0000\u0000\u0339\u033a\u0007\u0016"+
- "\u0000\u0000\u033a\u033b\u0007\b\u0000\u0000\u033b\u033c\u0001\u0000\u0000"+
- "\u0000\u033c\u033d\u0006\u0017\t\u0000\u033dA\u0001\u0000\u0000\u0000"+
- "\u033e\u033f\u0004\u0018\u0001\u0000\u033f\u0340\u0007\u0015\u0000\u0000"+
- "\u0340\u0341\u0007\u0016\u0000\u0000\u0341\u0342\u0007\u000e\u0000\u0000"+
- "\u0342\u0343\u0007\u000e\u0000\u0000\u0343\u0344\u0001\u0000\u0000\u0000"+
- "\u0344\u0345\u0006\u0018\t\u0000\u0345C\u0001\u0000\u0000\u0000\u0346"+
- "\u0347\u0004\u0019\u0002\u0000\u0347\u0348\u0007\u000e\u0000\u0000\u0348"+
- "\u0349\u0007\u0007\u0000\u0000\u0349\u034a\u0007\u0015\u0000\u0000\u034a"+
- "\u034b\u0007\u000b\u0000\u0000\u034b\u034c\u0001\u0000\u0000\u0000\u034c"+
- "\u034d\u0006\u0019\t\u0000\u034dE\u0001\u0000\u0000\u0000\u034e\u034f"+
- "\u0004\u001a\u0003\u0000\u034f\u0350\u0007\f\u0000\u0000\u0350\u0351\u0007"+
- "\n\u0000\u0000\u0351\u0352\u0007\u0006\u0000\u0000\u0352\u0353\u0007\u0003"+
- "\u0000\u0000\u0353\u0354\u0007\u000b\u0000\u0000\u0354\u0355\u0001\u0000"+
- "\u0000\u0000\u0355\u0356\u0006\u001a\t\u0000\u0356G\u0001\u0000\u0000"+
- "\u0000\u0357\u0358\u0004\u001b\u0004\u0000\u0358\u0359\u0007\u000e\u0000"+
- "\u0000\u0359\u035a\u0007\t\u0000\u0000\u035a\u035b\u0007\t\u0000\u0000"+
- "\u035b\u035c\u0007\u0013\u0000\u0000\u035c\u035d\u0007\u0016\u0000\u0000"+
- "\u035d\u035e\u0007\b\u0000\u0000\u035e\u035f\u0005_\u0000\u0000\u035f"+
- "\u0360\u0005\u8001\uf414\u0000\u0000\u0360\u0361\u0001\u0000\u0000\u0000"+
- "\u0361\u0362\u0006\u001b\n\u0000\u0362I\u0001\u0000\u0000\u0000\u0363"+
- "\u0364\u0007\u000f\u0000\u0000\u0364\u0365\u0007\u0012\u0000\u0000\u0365"+
- "\u0366\u0005_\u0000\u0000\u0366\u0367\u0007\u0007\u0000\u0000\u0367\u0368"+
- "\u0007\r\u0000\u0000\u0368\u0369\u0007\b\u0000\u0000\u0369\u036a\u0007"+
- "\u0004\u0000\u0000\u036a\u036b\u0007\u0005\u0000\u0000\u036b\u036c\u0007"+
- "\u0010\u0000\u0000\u036c\u036d\u0001\u0000\u0000\u0000\u036d\u036e\u0006"+
- "\u001c\u000b\u0000\u036eK\u0001\u0000\u0000\u0000\u036f\u0370\u0007\u0010"+
- "\u0000\u0000\u0370\u0371\u0007\f\u0000\u0000\u0371\u0372\u0007\t\u0000"+
- "\u0000\u0372\u0373\u0007\b\u0000\u0000\u0373\u0374\u0001\u0000\u0000\u0000"+
- "\u0374\u0375\u0006\u001d\f\u0000\u0375M\u0001\u0000\u0000\u0000\u0376"+
- "\u0377\u0007\u0013\u0000\u0000\u0377\u0378\u0007\u0007\u0000\u0000\u0378"+
- "\u0379\u0007\u0007\u0000\u0000\u0379\u037a\u0007\b\u0000\u0000\u037a\u037b"+
- "\u0001\u0000\u0000\u0000\u037b\u037c\u0006\u001e\f\u0000\u037cO\u0001"+
- "\u0000\u0000\u0000\u037d\u037e\u0004\u001f\u0005\u0000\u037e\u037f\u0007"+
- "\n\u0000\u0000\u037f\u0380\u0007\u0005\u0000\u0000\u0380\u0381\u0007\u0011"+
- "\u0000\u0000\u0381\u0382\u0007\n\u0000\u0000\u0382\u0383\u0007\u0011\u0000"+
- "\u0000\u0383\u0384\u0007\u000b\u0000\u0000\u0384\u0385\u0005_\u0000\u0000"+
- "\u0385\u0386\u0005\u8001\uf414\u0000\u0000\u0386\u0387\u0001\u0000\u0000"+
- "\u0000\u0387\u0388\u0006\u001f\f\u0000\u0388Q\u0001\u0000\u0000\u0000"+
- "\u0389\u038a\u0007\f\u0000\u0000\u038a\u038b\u0007\u0007\u0000\u0000\u038b"+
- "\u038c\u0007\u0005\u0000\u0000\u038c\u038d\u0007\u0004\u0000\u0000\u038d"+
- "\u038e\u0007\u000f\u0000\u0000\u038e\u038f\u0007\u0007\u0000\u0000\u038f"+
- "\u0390\u0001\u0000\u0000\u0000\u0390\u0391\u0006 \r\u0000\u0391S\u0001"+
- "\u0000\u0000\u0000\u0392\u0393\u0007\u0011\u0000\u0000\u0393\u0394\u0007"+
- "\u0007\u0000\u0000\u0394\u0395\u0007\u000b\u0000\u0000\u0395\u0396\u0001"+
- "\u0000\u0000\u0000\u0396\u0397\u0006!\u000e\u0000\u0397U\u0001\u0000\u0000"+
- "\u0000\u0398\u0399\u0007\u0011\u0000\u0000\u0399\u039a\u0007\u0003\u0000"+
- "\u0000\u039a\u039b\u0007\t\u0000\u0000\u039b\u039c\u0007\u0014\u0000\u0000"+
- "\u039c\u039d\u0001\u0000\u0000\u0000\u039d\u039e\u0006\"\u000f\u0000\u039e"+
- "W\u0001\u0000\u0000\u0000\u039f\u03a1\b\u0017\u0000\u0000\u03a0\u039f"+
- "\u0001\u0000\u0000\u0000\u03a1\u03a2\u0001\u0000\u0000\u0000\u03a2\u03a0"+
- "\u0001\u0000\u0000\u0000\u03a2\u03a3\u0001\u0000\u0000\u0000\u03a3\u03a4"+
- "\u0001\u0000\u0000\u0000\u03a4\u03a5\u0006#\u0004\u0000\u03a5Y\u0001\u0000"+
- "\u0000\u0000\u03a6\u03a7\u0003\u00b6R\u0000\u03a7\u03a8\u0001\u0000\u0000"+
- "\u0000\u03a8\u03a9\u0006$\u0010\u0000\u03a9\u03aa\u0006$\u0011\u0000\u03aa"+
- "[\u0001\u0000\u0000\u0000\u03ab\u03ac\u0003\u012e\u008e\u0000\u03ac\u03ad"+
- "\u0001\u0000\u0000\u0000\u03ad\u03ae\u0006%\u0012\u0000\u03ae\u03af\u0006"+
- "%\u0011\u0000\u03af\u03b0\u0006%\u0011\u0000\u03b0]\u0001\u0000\u0000"+
- "\u0000\u03b1\u03b2\u0003\u00f8s\u0000\u03b2\u03b3\u0001\u0000\u0000\u0000"+
- "\u03b3\u03b4\u0006&\u0013\u0000\u03b4_\u0001\u0000\u0000\u0000\u03b5\u03b6"+
- "\u0003\u021e\u0106\u0000\u03b6\u03b7\u0001\u0000\u0000\u0000\u03b7\u03b8"+
- "\u0006\'\u0014\u0000\u03b8a\u0001\u0000\u0000\u0000\u03b9\u03ba\u0003"+
- "\u00e4i\u0000\u03ba\u03bb\u0001\u0000\u0000\u0000\u03bb\u03bc\u0006(\u0015"+
- "\u0000\u03bcc\u0001\u0000\u0000\u0000\u03bd\u03be\u0003\u00e0g\u0000\u03be"+
- "\u03bf\u0001\u0000\u0000\u0000\u03bf\u03c0\u0006)\u0016\u0000\u03c0e\u0001"+
- "\u0000\u0000\u0000\u03c1\u03c2\u0003\u0128\u008b\u0000\u03c2\u03c3\u0001"+
- "\u0000\u0000\u0000\u03c3\u03c4\u0006*\u0017\u0000\u03c4g\u0001\u0000\u0000"+
- "\u0000\u03c5\u03c6\u0003\u012a\u008c\u0000\u03c6\u03c7\u0001\u0000\u0000"+
- "\u0000\u03c7\u03c8\u0006+\u0018\u0000\u03c8i\u0001\u0000\u0000\u0000\u03c9"+
- "\u03ca\u0003\u0134\u0091\u0000\u03ca\u03cb\u0001\u0000\u0000\u0000\u03cb"+
- "\u03cc\u0006,\u0019\u0000\u03cck\u0001\u0000\u0000\u0000\u03cd\u03ce\u0003"+
- "\u0130\u008f\u0000\u03ce\u03cf\u0001\u0000\u0000\u0000\u03cf\u03d0\u0006"+
- "-\u001a\u0000\u03d0m\u0001\u0000\u0000\u0000\u03d1\u03d2\u0003\u0012\u0000"+
- "\u0000\u03d2\u03d3\u0001\u0000\u0000\u0000\u03d3\u03d4\u0006.\u0000\u0000"+
- "\u03d4o\u0001\u0000\u0000\u0000\u03d5\u03d6\u0003\u0014\u0001\u0000\u03d6"+
- "\u03d7\u0001\u0000\u0000\u0000\u03d7\u03d8\u0006/\u0000\u0000\u03d8q\u0001"+
- "\u0000\u0000\u0000\u03d9\u03da\u0003\u0016\u0002\u0000\u03da\u03db\u0001"+
- "\u0000\u0000\u0000\u03db\u03dc\u00060\u0000\u0000\u03dcs\u0001\u0000\u0000"+
- "\u0000\u03dd\u03de\u0003\u00b6R\u0000\u03de\u03df\u0001\u0000\u0000\u0000"+
- "\u03df\u03e0\u00061\u0010\u0000\u03e0\u03e1\u00061\u0011\u0000\u03e1u"+
- "\u0001\u0000\u0000\u0000\u03e2\u03e3\u0003\u012e\u008e\u0000\u03e3\u03e4"+
- "\u0001\u0000\u0000\u0000\u03e4\u03e5\u00062\u0012\u0000\u03e5\u03e6\u0006"+
- "2\u0011\u0000\u03e6\u03e7\u00062\u0011\u0000\u03e7w\u0001\u0000\u0000"+
- "\u0000\u03e8\u03e9\u0003\u00f8s\u0000\u03e9\u03ea\u0001\u0000\u0000\u0000"+
- "\u03ea\u03eb\u00063\u0013\u0000\u03eb\u03ec\u00063\u001b\u0000\u03ecy"+
- "\u0001\u0000\u0000\u0000\u03ed\u03ee\u0003\u0102x\u0000\u03ee\u03ef\u0001"+
- "\u0000\u0000\u0000\u03ef\u03f0\u00064\u001c\u0000\u03f0\u03f1\u00064\u001b"+
- "\u0000\u03f1{\u0001\u0000\u0000\u0000\u03f2\u03f3\b\u0018\u0000\u0000"+
- "\u03f3}\u0001\u0000\u0000\u0000\u03f4\u03f6\u0003|5\u0000\u03f5\u03f4"+
- "\u0001\u0000\u0000\u0000\u03f6\u03f7\u0001\u0000\u0000\u0000\u03f7\u03f5"+
- "\u0001\u0000\u0000\u0000\u03f7\u03f8\u0001\u0000\u0000\u0000\u03f8\u03f9"+
- "\u0001\u0000\u0000\u0000\u03f9\u03fa\u0003\u00dce\u0000\u03fa\u03fc\u0001"+
- "\u0000\u0000\u0000\u03fb\u03f5\u0001\u0000\u0000\u0000\u03fb\u03fc\u0001"+
- "\u0000\u0000\u0000\u03fc\u03fe\u0001\u0000\u0000\u0000\u03fd\u03ff\u0003"+
- "|5\u0000\u03fe\u03fd\u0001\u0000\u0000\u0000\u03ff\u0400\u0001\u0000\u0000"+
- "\u0000\u0400\u03fe\u0001\u0000\u0000\u0000\u0400\u0401\u0001\u0000\u0000"+
- "\u0000\u0401\u007f\u0001\u0000\u0000\u0000\u0402\u0403\u0003~6\u0000\u0403"+
- "\u0404\u0001\u0000\u0000\u0000\u0404\u0405\u00067\u001d\u0000\u0405\u0081"+
- "\u0001\u0000\u0000\u0000\u0406\u0407\u0003\u00cc]\u0000\u0407\u0408\u0001"+
- "\u0000\u0000\u0000\u0408\u0409\u00068\u001e\u0000\u0409\u0083\u0001\u0000"+
- "\u0000\u0000\u040a\u040b\u0003\u0012\u0000\u0000\u040b\u040c\u0001\u0000"+
- "\u0000\u0000\u040c\u040d\u00069\u0000\u0000\u040d\u0085\u0001\u0000\u0000"+
- "\u0000\u040e\u040f\u0003\u0014\u0001\u0000\u040f\u0410\u0001\u0000\u0000"+
- "\u0000\u0410\u0411\u0006:\u0000\u0000\u0411\u0087\u0001\u0000\u0000\u0000"+
- "\u0412\u0413\u0003\u0016\u0002\u0000\u0413\u0414\u0001\u0000\u0000\u0000"+
- "\u0414\u0415\u0006;\u0000\u0000\u0415\u0089\u0001\u0000\u0000\u0000\u0416"+
- "\u0417\u0003\u00b6R\u0000\u0417\u0418\u0001\u0000\u0000\u0000\u0418\u0419"+
- "\u0006<\u0010\u0000\u0419\u041a\u0006<\u0011\u0000\u041a\u041b\u0006<"+
- "\u0011\u0000\u041b\u008b\u0001\u0000\u0000\u0000\u041c\u041d\u0003\u012e"+
- "\u008e\u0000\u041d\u041e\u0001\u0000\u0000\u0000\u041e\u041f\u0006=\u0012"+
- "\u0000\u041f\u0420\u0006=\u0011\u0000\u0420\u0421\u0006=\u0011\u0000\u0421"+
- "\u0422\u0006=\u0011\u0000\u0422\u008d\u0001\u0000\u0000\u0000\u0423\u0424"+
- "\u0003\u0128\u008b\u0000\u0424\u0425\u0001\u0000\u0000\u0000\u0425\u0426"+
- "\u0006>\u0017\u0000\u0426\u008f\u0001\u0000\u0000\u0000\u0427\u0428\u0003"+
- "\u012a\u008c\u0000\u0428\u0429\u0001\u0000\u0000\u0000\u0429\u042a\u0006"+
- "?\u0018\u0000\u042a\u0091\u0001\u0000\u0000\u0000\u042b\u042c\u0003\u00d6"+
- "b\u0000\u042c\u042d\u0001\u0000\u0000\u0000\u042d\u042e\u0006@\u001f\u0000"+
- "\u042e\u0093\u0001\u0000\u0000\u0000\u042f\u0430\u0003\u00e0g\u0000\u0430"+
- "\u0431\u0001\u0000\u0000\u0000\u0431\u0432\u0006A\u0016\u0000\u0432\u0095"+
- "\u0001\u0000\u0000\u0000\u0433\u0434\u0003\u00e4i\u0000\u0434\u0435\u0001"+
- "\u0000\u0000\u0000\u0435\u0436\u0006B\u0015\u0000\u0436\u0097\u0001\u0000"+
- "\u0000\u0000\u0437\u0438\u0003\u0102x\u0000\u0438\u0439\u0001\u0000\u0000"+
- "\u0000\u0439\u043a\u0006C\u001c\u0000\u043a\u0099\u0001\u0000\u0000\u0000"+
- "\u043b\u043c\u0003\u0200\u00f7\u0000\u043c\u043d\u0001\u0000\u0000\u0000"+
- "\u043d\u043e\u0006D \u0000\u043e\u009b\u0001\u0000\u0000\u0000\u043f\u0440"+
- "\u0003\u0134\u0091\u0000\u0440\u0441\u0001\u0000\u0000\u0000\u0441\u0442"+
- "\u0006E\u0019\u0000\u0442\u009d\u0001\u0000\u0000\u0000\u0443\u0444\u0003"+
- "\u00fcu\u0000\u0444\u0445\u0001\u0000\u0000\u0000\u0445\u0446\u0006F!"+
- "\u0000\u0446\u009f\u0001\u0000\u0000\u0000\u0447\u0448\u0003\u0124\u0089"+
- "\u0000\u0448\u0449\u0001\u0000\u0000\u0000\u0449\u044a\u0006G\"\u0000"+
- "\u044a\u00a1\u0001\u0000\u0000\u0000\u044b\u044c\u0003\u0120\u0087\u0000"+
- "\u044c\u044d\u0001\u0000\u0000\u0000\u044d\u044e\u0006H#\u0000\u044e\u00a3"+
- "\u0001\u0000\u0000\u0000\u044f\u0450\u0003\u0126\u008a\u0000\u0450\u0451"+
- "\u0001\u0000\u0000\u0000\u0451\u0452\u0006I$\u0000\u0452\u00a5\u0001\u0000"+
- "\u0000\u0000\u0453\u0454\u0003\u0012\u0000\u0000\u0454\u0455\u0001\u0000"+
- "\u0000\u0000\u0455\u0456\u0006J\u0000\u0000\u0456\u00a7\u0001\u0000\u0000"+
- "\u0000\u0457\u0458\u0003\u0014\u0001\u0000\u0458\u0459\u0001\u0000\u0000"+
- "\u0000\u0459\u045a\u0006K\u0000\u0000\u045a\u00a9\u0001\u0000\u0000\u0000"+
- "\u045b\u045c\u0003\u0016\u0002\u0000\u045c\u045d\u0001\u0000\u0000\u0000"+
- "\u045d\u045e\u0006L\u0000\u0000\u045e\u00ab\u0001\u0000\u0000\u0000\u045f"+
- "\u0460\u0003\u012c\u008d\u0000\u0460\u0461\u0001\u0000\u0000\u0000\u0461"+
- "\u0462\u0006M%\u0000\u0462\u0463\u0006M&\u0000\u0463\u00ad\u0001\u0000"+
- "\u0000\u0000\u0464\u0465\u0003\u00b6R\u0000\u0465\u0466\u0001\u0000\u0000"+
- "\u0000\u0466\u0467\u0006N\u0010\u0000\u0467\u0468\u0006N\u0011\u0000\u0468"+
- "\u00af\u0001\u0000\u0000\u0000\u0469\u046a\u0003\u0016\u0002\u0000\u046a"+
- "\u046b\u0001\u0000\u0000\u0000\u046b\u046c\u0006O\u0000\u0000\u046c\u00b1"+
- "\u0001\u0000\u0000\u0000\u046d\u046e\u0003\u0012\u0000\u0000\u046e\u046f"+
- "\u0001\u0000\u0000\u0000\u046f\u0470\u0006P\u0000\u0000\u0470\u00b3\u0001"+
- "\u0000\u0000\u0000\u0471\u0472\u0003\u0014\u0001\u0000\u0472\u0473\u0001"+
- "\u0000\u0000\u0000\u0473\u0474\u0006Q\u0000\u0000\u0474\u00b5\u0001\u0000"+
- "\u0000\u0000\u0475\u0476\u0005|\u0000\u0000\u0476\u0477\u0001\u0000\u0000"+
- "\u0000\u0477\u0478\u0006R\u0011\u0000\u0478\u00b7\u0001\u0000\u0000\u0000"+
- "\u0479\u047a\u0007\u0019\u0000\u0000\u047a\u00b9\u0001\u0000\u0000\u0000"+
- "\u047b\u047c\u0007\u001a\u0000\u0000\u047c\u00bb\u0001\u0000\u0000\u0000"+
- "\u047d\u047e\u0005\\\u0000\u0000\u047e\u047f\u0007\u001b\u0000\u0000\u047f"+
- "\u00bd\u0001\u0000\u0000\u0000\u0480\u0481\b\u001c\u0000\u0000\u0481\u00bf"+
- "\u0001\u0000\u0000\u0000\u0482\u0484\u0007\u0007\u0000\u0000\u0483\u0485"+
- "\u0007\u001d\u0000\u0000\u0484\u0483\u0001\u0000\u0000\u0000\u0484\u0485"+
- "\u0001\u0000\u0000\u0000\u0485\u0487\u0001\u0000\u0000\u0000\u0486\u0488"+
- "\u0003\u00b8S\u0000\u0487\u0486\u0001\u0000\u0000\u0000\u0488\u0489\u0001"+
- "\u0000\u0000\u0000\u0489\u0487\u0001\u0000\u0000\u0000\u0489\u048a\u0001"+
- "\u0000\u0000\u0000\u048a\u00c1\u0001\u0000\u0000\u0000\u048b\u048c\u0005"+
- "@\u0000\u0000\u048c\u00c3\u0001\u0000\u0000\u0000\u048d\u048e\u0005`\u0000"+
- "\u0000\u048e\u00c5\u0001\u0000\u0000\u0000\u048f\u0493\b\u001e\u0000\u0000"+
- "\u0490\u0491\u0005`\u0000\u0000\u0491\u0493\u0005`\u0000\u0000\u0492\u048f"+
- "\u0001\u0000\u0000\u0000\u0492\u0490\u0001\u0000\u0000\u0000\u0493\u00c7"+
- "\u0001\u0000\u0000\u0000\u0494\u0495\u0005_\u0000\u0000\u0495\u00c9\u0001"+
- "\u0000\u0000\u0000\u0496\u049a\u0003\u00baT\u0000\u0497\u049a\u0003\u00b8"+
- "S\u0000\u0498\u049a\u0003\u00c8[\u0000\u0499\u0496\u0001\u0000\u0000\u0000"+
- "\u0499\u0497\u0001\u0000\u0000\u0000\u0499\u0498\u0001\u0000\u0000\u0000"+
- "\u049a\u00cb\u0001\u0000\u0000\u0000\u049b\u04a0\u0005\"\u0000\u0000\u049c"+
- "\u049f\u0003\u00bcU\u0000\u049d\u049f\u0003\u00beV\u0000\u049e\u049c\u0001"+
- "\u0000\u0000\u0000\u049e\u049d\u0001\u0000\u0000\u0000\u049f\u04a2\u0001"+
- "\u0000\u0000\u0000\u04a0\u049e\u0001\u0000\u0000\u0000\u04a0\u04a1\u0001"+
- "\u0000\u0000\u0000\u04a1\u04a3\u0001\u0000\u0000\u0000\u04a2\u04a0\u0001"+
- "\u0000\u0000\u0000\u04a3\u04b9\u0005\"\u0000\u0000\u04a4\u04a5\u0005\""+
- "\u0000\u0000\u04a5\u04a6\u0005\"\u0000\u0000\u04a6\u04a7\u0005\"\u0000"+
- "\u0000\u04a7\u04ab\u0001\u0000\u0000\u0000\u04a8\u04aa\b\u0000\u0000\u0000"+
- "\u04a9\u04a8\u0001\u0000\u0000\u0000\u04aa\u04ad\u0001\u0000\u0000\u0000"+
- "\u04ab\u04ac\u0001\u0000\u0000\u0000\u04ab\u04a9\u0001\u0000\u0000\u0000"+
- "\u04ac\u04ae\u0001\u0000\u0000\u0000\u04ad\u04ab\u0001\u0000\u0000\u0000"+
- "\u04ae\u04af\u0005\"\u0000\u0000\u04af\u04b0\u0005\"\u0000\u0000\u04b0"+
- "\u04b1\u0005\"\u0000\u0000\u04b1\u04b3\u0001\u0000\u0000\u0000\u04b2\u04b4"+
- "\u0005\"\u0000\u0000\u04b3\u04b2\u0001\u0000\u0000\u0000\u04b3\u04b4\u0001"+
- "\u0000\u0000\u0000\u04b4\u04b6\u0001\u0000\u0000\u0000\u04b5\u04b7\u0005"+
- "\"\u0000\u0000\u04b6\u04b5\u0001\u0000\u0000\u0000\u04b6\u04b7\u0001\u0000"+
- "\u0000\u0000\u04b7\u04b9\u0001\u0000\u0000\u0000\u04b8\u049b\u0001\u0000"+
- "\u0000\u0000\u04b8\u04a4\u0001\u0000\u0000\u0000\u04b9\u00cd\u0001\u0000"+
- "\u0000\u0000\u04ba\u04bc\u0003\u00b8S\u0000\u04bb\u04ba\u0001\u0000\u0000"+
- "\u0000\u04bc\u04bd\u0001\u0000\u0000\u0000\u04bd\u04bb\u0001\u0000\u0000"+
- "\u0000\u04bd\u04be\u0001\u0000\u0000\u0000\u04be\u00cf\u0001\u0000\u0000"+
- "\u0000\u04bf\u04c1\u0003\u00b8S\u0000\u04c0\u04bf\u0001\u0000\u0000\u0000"+
- "\u04c1\u04c2\u0001\u0000\u0000\u0000\u04c2\u04c0\u0001\u0000\u0000\u0000"+
- "\u04c2\u04c3\u0001\u0000\u0000\u0000\u04c3\u04c4\u0001\u0000\u0000\u0000"+
- "\u04c4\u04c8\u0003\u00e4i\u0000\u04c5\u04c7\u0003\u00b8S\u0000\u04c6\u04c5"+
- "\u0001\u0000\u0000\u0000\u04c7\u04ca\u0001\u0000\u0000\u0000\u04c8\u04c6"+
- "\u0001\u0000\u0000\u0000\u04c8\u04c9\u0001\u0000\u0000\u0000\u04c9\u04ea"+
- "\u0001\u0000\u0000\u0000\u04ca\u04c8\u0001\u0000\u0000\u0000\u04cb\u04cd"+
- "\u0003\u00e4i\u0000\u04cc\u04ce\u0003\u00b8S\u0000\u04cd\u04cc\u0001\u0000"+
- "\u0000\u0000\u04ce\u04cf\u0001\u0000\u0000\u0000\u04cf\u04cd\u0001\u0000"+
- "\u0000\u0000\u04cf\u04d0\u0001\u0000\u0000\u0000\u04d0\u04ea\u0001\u0000"+
- "\u0000\u0000\u04d1\u04d3\u0003\u00b8S\u0000\u04d2\u04d1\u0001\u0000\u0000"+
- "\u0000\u04d3\u04d4\u0001\u0000\u0000\u0000\u04d4\u04d2\u0001\u0000\u0000"+
- "\u0000\u04d4\u04d5\u0001\u0000\u0000\u0000\u04d5\u04dd\u0001\u0000\u0000"+
- "\u0000\u04d6\u04da\u0003\u00e4i\u0000\u04d7\u04d9\u0003\u00b8S\u0000\u04d8"+
- "\u04d7\u0001\u0000\u0000\u0000\u04d9\u04dc\u0001\u0000\u0000\u0000\u04da"+
- "\u04d8\u0001\u0000\u0000\u0000\u04da\u04db\u0001\u0000\u0000\u0000\u04db"+
- "\u04de\u0001\u0000\u0000\u0000\u04dc\u04da\u0001\u0000\u0000\u0000\u04dd"+
- "\u04d6\u0001\u0000\u0000\u0000\u04dd\u04de\u0001\u0000\u0000\u0000\u04de"+
- "\u04df\u0001\u0000\u0000\u0000\u04df\u04e0\u0003\u00c0W\u0000\u04e0\u04ea"+
- "\u0001\u0000\u0000\u0000\u04e1\u04e3\u0003\u00e4i\u0000\u04e2\u04e4\u0003"+
- "\u00b8S\u0000\u04e3\u04e2\u0001\u0000\u0000\u0000\u04e4\u04e5\u0001\u0000"+
- "\u0000\u0000\u04e5\u04e3\u0001\u0000\u0000\u0000\u04e5\u04e6\u0001\u0000"+
- "\u0000\u0000\u04e6\u04e7\u0001\u0000\u0000\u0000\u04e7\u04e8\u0003\u00c0"+
- "W\u0000\u04e8\u04ea\u0001\u0000\u0000\u0000\u04e9\u04c0\u0001\u0000\u0000"+
- "\u0000\u04e9\u04cb\u0001\u0000\u0000\u0000\u04e9\u04d2\u0001\u0000\u0000"+
- "\u0000\u04e9\u04e1\u0001\u0000\u0000\u0000\u04ea\u00d1\u0001\u0000\u0000"+
- "\u0000\u04eb\u04ec\u0007\u0004\u0000\u0000\u04ec\u04ed\u0007\u0005\u0000"+
- "\u0000\u04ed\u04ee\u0007\u0010\u0000\u0000\u04ee\u00d3\u0001\u0000\u0000"+
- "\u0000\u04ef\u04f0\u0007\u0004\u0000\u0000\u04f0\u04f1\u0007\u0011\u0000"+
- "\u0000\u04f1\u04f2\u0007\u0002\u0000\u0000\u04f2\u00d5\u0001\u0000\u0000"+
- "\u0000\u04f3\u04f4\u0005=\u0000\u0000\u04f4\u00d7\u0001\u0000\u0000\u0000"+
- "\u04f5\u04f6\u0007\u001f\u0000\u0000\u04f6\u04f7\u0007 \u0000\u0000\u04f7"+
- "\u00d9\u0001\u0000\u0000\u0000\u04f8\u04f9\u0005:\u0000\u0000\u04f9\u04fa"+
- "\u0005:\u0000\u0000\u04fa\u00db\u0001\u0000\u0000\u0000\u04fb\u04fc\u0005"+
- ":\u0000\u0000\u04fc\u00dd\u0001\u0000\u0000\u0000\u04fd\u04fe\u0005;\u0000"+
- "\u0000\u04fe\u00df\u0001\u0000\u0000\u0000\u04ff\u0500\u0005,\u0000\u0000"+
- "\u0500\u00e1\u0001\u0000\u0000\u0000\u0501\u0502\u0007\u0010\u0000\u0000"+
- "\u0502\u0503\u0007\u0007\u0000\u0000\u0503\u0504\u0007\u0011\u0000\u0000"+
- "\u0504\u0505\u0007\u0002\u0000\u0000\u0505\u00e3\u0001\u0000\u0000\u0000"+
- "\u0506\u0507\u0005.\u0000\u0000\u0507\u00e5\u0001\u0000\u0000\u0000\u0508"+
- "\u0509\u0007\u0015\u0000\u0000\u0509\u050a\u0007\u0004\u0000\u0000\u050a"+
- "\u050b\u0007\u000e\u0000\u0000\u050b\u050c\u0007\u0011\u0000\u0000\u050c"+
- "\u050d\u0007\u0007\u0000\u0000\u050d\u00e7\u0001\u0000\u0000\u0000\u050e"+
- "\u050f\u0007\u0015\u0000\u0000\u050f\u0510\u0007\n\u0000\u0000\u0510\u0511"+
- "\u0007\f\u0000\u0000\u0511\u0512\u0007\u0011\u0000\u0000\u0512\u0513\u0007"+
- "\u000b\u0000\u0000\u0513\u00e9\u0001\u0000\u0000\u0000\u0514\u0515\u0007"+
- "\n\u0000\u0000\u0515\u0516\u0007\u0005\u0000\u0000\u0516\u00eb\u0001\u0000"+
- "\u0000\u0000\u0517\u0518\u0007\n\u0000\u0000\u0518\u0519\u0007\u0011\u0000"+
- "\u0000\u0519\u00ed\u0001\u0000\u0000\u0000\u051a\u051b\u0007\u000e\u0000"+
- "\u0000\u051b\u051c\u0007\u0004\u0000\u0000\u051c\u051d\u0007\u0011\u0000"+
- "\u0000\u051d\u051e\u0007\u000b\u0000\u0000\u051e\u00ef\u0001\u0000\u0000"+
- "\u0000\u051f\u0520\u0007\u000e\u0000\u0000\u0520\u0521\u0007\n\u0000\u0000"+
- "\u0521\u0522\u0007\u0013\u0000\u0000\u0522\u0523\u0007\u0007\u0000\u0000"+
- "\u0523\u00f1\u0001\u0000\u0000\u0000\u0524\u0525\u0007\u0005\u0000\u0000"+
- "\u0525\u0526\u0007\t\u0000\u0000\u0526\u0527\u0007\u000b\u0000\u0000\u0527"+
- "\u00f3\u0001\u0000\u0000\u0000\u0528\u0529\u0007\u0005\u0000\u0000\u0529"+
- "\u052a\u0007\u0016\u0000\u0000\u052a\u052b\u0007\u000e\u0000\u0000\u052b"+
- "\u052c\u0007\u000e\u0000\u0000\u052c\u00f5\u0001\u0000\u0000\u0000\u052d"+
- "\u052e\u0007\u0005\u0000\u0000\u052e\u052f\u0007\u0016\u0000\u0000\u052f"+
- "\u0530\u0007\u000e\u0000\u0000\u0530\u0531\u0007\u000e\u0000\u0000\u0531"+
- "\u0532\u0007\u0011\u0000\u0000\u0532\u00f7\u0001\u0000\u0000\u0000\u0533"+
- "\u0534\u0007\t\u0000\u0000\u0534\u0535\u0007\u0005\u0000\u0000\u0535\u00f9"+
- "\u0001\u0000\u0000\u0000\u0536\u0537\u0007\t\u0000\u0000\u0537\u0538\u0007"+
- "\f\u0000\u0000\u0538\u00fb\u0001\u0000\u0000\u0000\u0539\u053a\u0005?"+
- "\u0000\u0000\u053a\u00fd\u0001\u0000\u0000\u0000\u053b\u053c\u0007\f\u0000"+
- "\u0000\u053c\u053d\u0007\u000e\u0000\u0000\u053d\u053e\u0007\n\u0000\u0000"+
- "\u053e\u053f\u0007\u0013\u0000\u0000\u053f\u0540\u0007\u0007\u0000\u0000"+
- "\u0540\u00ff\u0001\u0000\u0000\u0000\u0541\u0542\u0007\u000b\u0000\u0000"+
- "\u0542\u0543\u0007\f\u0000\u0000\u0543\u0544\u0007\u0016\u0000\u0000\u0544"+
- "\u0545\u0007\u0007\u0000\u0000\u0545\u0101\u0001\u0000\u0000\u0000\u0546"+
- "\u0547\u0007\u0014\u0000\u0000\u0547\u0548\u0007\n\u0000\u0000\u0548\u0549"+
- "\u0007\u000b\u0000\u0000\u0549\u054a\u0007\u0003\u0000\u0000\u054a\u0103"+
- "\u0001\u0000\u0000\u0000\u054b\u054c\u0005=\u0000\u0000\u054c\u054d\u0005"+
- "=\u0000\u0000\u054d\u0105\u0001\u0000\u0000\u0000\u054e\u054f\u0005=\u0000"+
- "\u0000\u054f\u0550\u0005~\u0000\u0000\u0550\u0107\u0001\u0000\u0000\u0000"+
- "\u0551\u0552\u0005!\u0000\u0000\u0552\u0553\u0005=\u0000\u0000\u0553\u0109"+
- "\u0001\u0000\u0000\u0000\u0554\u0555\u0005<\u0000\u0000\u0555\u010b\u0001"+
- "\u0000\u0000\u0000\u0556\u0557\u0005<\u0000\u0000\u0557\u0558\u0005=\u0000"+
- "\u0000\u0558\u010d\u0001\u0000\u0000\u0000\u0559\u055a\u0005>\u0000\u0000"+
- "\u055a\u010f\u0001\u0000\u0000\u0000\u055b\u055c\u0005>\u0000\u0000\u055c"+
- "\u055d\u0005=\u0000\u0000\u055d\u0111\u0001\u0000\u0000\u0000\u055e\u055f"+
- "\u0005+\u0000\u0000\u055f\u0113\u0001\u0000\u0000\u0000\u0560\u0561\u0005"+
- "-\u0000\u0000\u0561\u0115\u0001\u0000\u0000\u0000\u0562\u0563\u0005*\u0000"+
- "\u0000\u0563\u0117\u0001\u0000\u0000\u0000\u0564\u0565\u0005/\u0000\u0000"+
- "\u0565\u0119\u0001\u0000\u0000\u0000\u0566\u0567\u0005%\u0000\u0000\u0567"+
- "\u011b\u0001\u0000\u0000\u0000\u0568\u0569\u0005{\u0000\u0000\u0569\u011d"+
- "\u0001\u0000\u0000\u0000\u056a\u056b\u0005}\u0000\u0000\u056b\u011f\u0001"+
- "\u0000\u0000\u0000\u056c\u056d\u0005?\u0000\u0000\u056d\u056e\u0005?\u0000"+
- "\u0000\u056e\u0121\u0001\u0000\u0000\u0000\u056f\u0570\u00032\u0010\u0000"+
- "\u0570\u0571\u0001\u0000\u0000\u0000\u0571\u0572\u0006\u0088\'\u0000\u0572"+
- "\u0123\u0001\u0000\u0000\u0000\u0573\u0576\u0003\u00fcu\u0000\u0574\u0577"+
- "\u0003\u00baT\u0000\u0575\u0577\u0003\u00c8[\u0000\u0576\u0574\u0001\u0000"+
- "\u0000\u0000\u0576\u0575\u0001\u0000\u0000\u0000\u0577\u057b\u0001\u0000"+
- "\u0000\u0000\u0578\u057a\u0003\u00ca\\\u0000\u0579\u0578\u0001\u0000\u0000"+
- "\u0000\u057a\u057d\u0001\u0000\u0000\u0000\u057b\u0579\u0001\u0000\u0000"+
- "\u0000\u057b\u057c\u0001\u0000\u0000\u0000\u057c\u0585\u0001\u0000\u0000"+
- "\u0000\u057d\u057b\u0001\u0000\u0000\u0000\u057e\u0580\u0003\u00fcu\u0000"+
- "\u057f\u0581\u0003\u00b8S\u0000\u0580\u057f\u0001\u0000\u0000\u0000\u0581"+
- "\u0582\u0001\u0000\u0000\u0000\u0582\u0580\u0001\u0000\u0000\u0000\u0582"+
- "\u0583\u0001\u0000\u0000\u0000\u0583\u0585\u0001\u0000\u0000\u0000\u0584"+
- "\u0573\u0001\u0000\u0000\u0000\u0584\u057e\u0001\u0000\u0000\u0000\u0585"+
- "\u0125\u0001\u0000\u0000\u0000\u0586\u0589\u0003\u0120\u0087\u0000\u0587"+
- "\u058a\u0003\u00baT\u0000\u0588\u058a\u0003\u00c8[\u0000\u0589\u0587\u0001"+
- "\u0000\u0000\u0000\u0589\u0588\u0001\u0000\u0000\u0000\u058a\u058e\u0001"+
- "\u0000\u0000\u0000\u058b\u058d\u0003\u00ca\\\u0000\u058c\u058b\u0001\u0000"+
- "\u0000\u0000\u058d\u0590\u0001\u0000\u0000\u0000\u058e\u058c\u0001\u0000"+
- "\u0000\u0000\u058e\u058f\u0001\u0000\u0000\u0000\u058f\u0598\u0001\u0000"+
- "\u0000\u0000\u0590\u058e\u0001\u0000\u0000\u0000\u0591\u0593\u0003\u0120"+
- "\u0087\u0000\u0592\u0594\u0003\u00b8S\u0000\u0593\u0592\u0001\u0000\u0000"+
- "\u0000\u0594\u0595\u0001\u0000\u0000\u0000\u0595\u0593\u0001\u0000\u0000"+
- "\u0000\u0595\u0596\u0001\u0000\u0000\u0000\u0596\u0598\u0001\u0000\u0000"+
- "\u0000\u0597\u0586\u0001\u0000\u0000\u0000\u0597\u0591\u0001\u0000\u0000"+
- "\u0000\u0598\u0127\u0001\u0000\u0000\u0000\u0599\u059a\u0005[\u0000\u0000"+
- "\u059a\u059b\u0001\u0000\u0000\u0000\u059b\u059c\u0006\u008b\u0004\u0000"+
- "\u059c\u059d\u0006\u008b\u0004\u0000\u059d\u0129\u0001\u0000\u0000\u0000"+
- "\u059e\u059f\u0005]\u0000\u0000\u059f\u05a0\u0001\u0000\u0000\u0000\u05a0"+
- "\u05a1\u0006\u008c\u0011\u0000\u05a1\u05a2\u0006\u008c\u0011\u0000\u05a2"+
- "\u012b\u0001\u0000\u0000\u0000\u05a3\u05a4\u0005(\u0000\u0000\u05a4\u05a5"+
- "\u0001\u0000\u0000\u0000\u05a5\u05a6\u0006\u008d\u0004\u0000\u05a6\u05a7"+
- "\u0006\u008d\u0004\u0000\u05a7\u012d\u0001\u0000\u0000\u0000\u05a8\u05a9"+
- "\u0005)\u0000\u0000\u05a9\u05aa\u0001\u0000\u0000\u0000\u05aa\u05ab\u0006"+
- "\u008e\u0011\u0000\u05ab\u05ac\u0006\u008e\u0011\u0000\u05ac\u012f\u0001"+
- "\u0000\u0000\u0000\u05ad\u05b1\u0003\u00baT\u0000\u05ae\u05b0\u0003\u00ca"+
- "\\\u0000\u05af\u05ae\u0001\u0000\u0000\u0000\u05b0\u05b3\u0001\u0000\u0000"+
- "\u0000\u05b1\u05af\u0001\u0000\u0000\u0000\u05b1\u05b2\u0001\u0000\u0000"+
- "\u0000\u05b2\u05be\u0001\u0000\u0000\u0000\u05b3\u05b1\u0001\u0000\u0000"+
- "\u0000\u05b4\u05b7\u0003\u00c8[\u0000\u05b5\u05b7\u0003\u00c2X\u0000\u05b6"+
- "\u05b4\u0001\u0000\u0000\u0000\u05b6\u05b5\u0001\u0000\u0000\u0000\u05b7"+
- "\u05b9\u0001\u0000\u0000\u0000\u05b8\u05ba\u0003\u00ca\\\u0000\u05b9\u05b8"+
- "\u0001\u0000\u0000\u0000\u05ba\u05bb\u0001\u0000\u0000\u0000\u05bb\u05b9"+
- "\u0001\u0000\u0000\u0000\u05bb\u05bc\u0001\u0000\u0000\u0000\u05bc\u05be"+
- "\u0001\u0000\u0000\u0000\u05bd\u05ad\u0001\u0000\u0000\u0000\u05bd\u05b6"+
- "\u0001\u0000\u0000\u0000\u05be\u0131\u0001\u0000\u0000\u0000\u05bf\u05c1"+
- "\u0003\u00c4Y\u0000\u05c0\u05c2\u0003\u00c6Z\u0000\u05c1\u05c0\u0001\u0000"+
- "\u0000\u0000\u05c2\u05c3\u0001\u0000\u0000\u0000\u05c3\u05c1\u0001\u0000"+
- "\u0000\u0000\u05c3\u05c4\u0001\u0000\u0000\u0000\u05c4\u05c5\u0001\u0000"+
- "\u0000\u0000\u05c5\u05c6\u0003\u00c4Y\u0000\u05c6\u0133\u0001\u0000\u0000"+
- "\u0000\u05c7\u05c8\u0003\u0132\u0090\u0000\u05c8\u0135\u0001\u0000\u0000"+
- "\u0000\u05c9\u05ca\u0003\u0012\u0000\u0000\u05ca\u05cb\u0001\u0000\u0000"+
- "\u0000\u05cb\u05cc\u0006\u0092\u0000\u0000\u05cc\u0137\u0001\u0000\u0000"+
- "\u0000\u05cd\u05ce\u0003\u0014\u0001\u0000\u05ce\u05cf\u0001\u0000\u0000"+
- "\u0000\u05cf\u05d0\u0006\u0093\u0000\u0000\u05d0\u0139\u0001\u0000\u0000"+
- "\u0000\u05d1\u05d2\u0003\u0016\u0002\u0000\u05d2\u05d3\u0001\u0000\u0000"+
- "\u0000\u05d3\u05d4\u0006\u0094\u0000\u0000\u05d4\u013b\u0001\u0000\u0000"+
- "\u0000\u05d5\u05d6\u0003\u00b6R\u0000\u05d6\u05d7\u0001\u0000\u0000\u0000"+
- "\u05d7\u05d8\u0006\u0095\u0010\u0000\u05d8\u05d9\u0006\u0095\u0011\u0000"+
- "\u05d9\u013d\u0001\u0000\u0000\u0000\u05da\u05db\u0003\u00dce\u0000\u05db"+
- "\u05dc\u0001\u0000\u0000\u0000\u05dc\u05dd\u0006\u0096(\u0000\u05dd\u013f"+
- "\u0001\u0000\u0000\u0000\u05de\u05df\u0003\u00dad\u0000\u05df\u05e0\u0001"+
- "\u0000\u0000\u0000\u05e0\u05e1\u0006\u0097)\u0000\u05e1\u0141\u0001\u0000"+
- "\u0000\u0000\u05e2\u05e3\u0003\u00e0g\u0000\u05e3\u05e4\u0001\u0000\u0000"+
- "\u0000\u05e4\u05e5\u0006\u0098\u0016\u0000\u05e5\u0143\u0001\u0000\u0000"+
- "\u0000\u05e6\u05e7\u0003\u00d6b\u0000\u05e7\u05e8\u0001\u0000\u0000\u0000"+
- "\u05e8\u05e9\u0006\u0099\u001f\u0000\u05e9\u0145\u0001\u0000\u0000\u0000"+
- "\u05ea\u05eb\u0007\u000f\u0000\u0000\u05eb\u05ec\u0007\u0007\u0000\u0000"+
- "\u05ec\u05ed\u0007\u000b\u0000\u0000\u05ed\u05ee\u0007\u0004\u0000\u0000"+
- "\u05ee\u05ef\u0007\u0010\u0000\u0000\u05ef\u05f0\u0007\u0004\u0000\u0000"+
- "\u05f0\u05f1\u0007\u000b\u0000\u0000\u05f1\u05f2\u0007\u0004\u0000\u0000"+
- "\u05f2\u0147\u0001\u0000\u0000\u0000\u05f3\u05f4\u0003\u012e\u008e\u0000"+
- "\u05f4\u05f5\u0001\u0000\u0000\u0000\u05f5\u05f6\u0006\u009b\u0012\u0000"+
- "\u05f6\u05f7\u0006\u009b\u0011\u0000\u05f7\u0149\u0001\u0000\u0000\u0000"+
- "\u05f8\u05fc\b!\u0000\u0000\u05f9\u05fa\u0005/\u0000\u0000\u05fa\u05fc"+
- "\b\"\u0000\u0000\u05fb\u05f8\u0001\u0000\u0000\u0000\u05fb\u05f9\u0001"+
- "\u0000\u0000\u0000\u05fc\u014b\u0001\u0000\u0000\u0000\u05fd\u05ff\u0003"+
- "\u014a\u009c\u0000\u05fe\u05fd\u0001\u0000\u0000\u0000\u05ff\u0600\u0001"+
- "\u0000\u0000\u0000\u0600\u05fe\u0001\u0000\u0000\u0000\u0600\u0601\u0001"+
- "\u0000\u0000\u0000\u0601\u014d\u0001\u0000\u0000\u0000\u0602\u0603\u0003"+
- "\u014c\u009d\u0000\u0603\u0604\u0001\u0000\u0000\u0000\u0604\u0605\u0006"+
- "\u009e*\u0000\u0605\u014f\u0001\u0000\u0000\u0000\u0606\u0607\u0003\u00cc"+
- "]\u0000\u0607\u0608\u0001\u0000\u0000\u0000\u0608\u0609\u0006\u009f\u001e"+
- "\u0000\u0609\u0151\u0001\u0000\u0000\u0000\u060a\u060b\u0003\u0012\u0000"+
- "\u0000\u060b\u060c\u0001\u0000\u0000\u0000\u060c\u060d\u0006\u00a0\u0000"+
- "\u0000\u060d\u0153\u0001\u0000\u0000\u0000\u060e\u060f\u0003\u0014\u0001"+
- "\u0000\u060f\u0610\u0001\u0000\u0000\u0000\u0610\u0611\u0006\u00a1\u0000"+
- "\u0000\u0611\u0155\u0001\u0000\u0000\u0000\u0612\u0613\u0003\u0016\u0002"+
- "\u0000\u0613\u0614\u0001\u0000\u0000\u0000\u0614\u0615\u0006\u00a2\u0000"+
- "\u0000\u0615\u0157\u0001\u0000\u0000\u0000\u0616\u0617\u0003\u012c\u008d"+
- "\u0000\u0617\u0618\u0001\u0000\u0000\u0000\u0618\u0619\u0006\u00a3%\u0000"+
- "\u0619\u061a\u0006\u00a3&\u0000\u061a\u0159\u0001\u0000\u0000\u0000\u061b"+
- "\u061c\u0003\u012e\u008e\u0000\u061c\u061d\u0001\u0000\u0000\u0000\u061d"+
- "\u061e\u0006\u00a4\u0012\u0000\u061e\u061f\u0006\u00a4\u0011\u0000\u061f"+
- "\u0620\u0006\u00a4\u0011\u0000\u0620\u015b\u0001\u0000\u0000\u0000\u0621"+
- "\u0622\u0003\u00b6R\u0000\u0622\u0623\u0001\u0000\u0000\u0000\u0623\u0624"+
- "\u0006\u00a5\u0010\u0000\u0624\u0625\u0006\u00a5\u0011\u0000\u0625\u015d"+
- "\u0001\u0000\u0000\u0000\u0626\u0627\u0003\u0016\u0002\u0000\u0627\u0628"+
- "\u0001\u0000\u0000\u0000\u0628\u0629\u0006\u00a6\u0000\u0000\u0629\u015f"+
- "\u0001\u0000\u0000\u0000\u062a\u062b\u0003\u0012\u0000\u0000\u062b\u062c"+
- "\u0001\u0000\u0000\u0000\u062c\u062d\u0006\u00a7\u0000\u0000\u062d\u0161"+
- "\u0001\u0000\u0000\u0000\u062e\u062f\u0003\u0014\u0001\u0000\u062f\u0630"+
- "\u0001\u0000\u0000\u0000\u0630\u0631\u0006\u00a8\u0000\u0000\u0631\u0163"+
- "\u0001\u0000\u0000\u0000\u0632\u0633\u0003\u00b6R\u0000\u0633\u0634\u0001"+
- "\u0000\u0000\u0000\u0634\u0635\u0006\u00a9\u0010\u0000\u0635\u0636\u0006"+
- "\u00a9\u0011\u0000\u0636\u0165\u0001\u0000\u0000\u0000\u0637\u0638\u0003"+
- "\u012e\u008e\u0000\u0638\u0639\u0001\u0000\u0000\u0000\u0639\u063a\u0006"+
- "\u00aa\u0012\u0000\u063a\u063b\u0006\u00aa\u0011\u0000\u063b\u063c\u0006"+
- "\u00aa\u0011\u0000\u063c\u0167\u0001\u0000\u0000\u0000\u063d\u063e\u0007"+
- "\u0006\u0000\u0000\u063e\u063f\u0007\f\u0000\u0000\u063f\u0640\u0007\t"+
- "\u0000\u0000\u0640\u0641\u0007\u0016\u0000\u0000\u0641\u0642\u0007\b\u0000"+
- "\u0000\u0642\u0169\u0001\u0000\u0000\u0000\u0643\u0644\u0007\u0011\u0000"+
- "\u0000\u0644\u0645\u0007\u0002\u0000\u0000\u0645\u0646\u0007\t\u0000\u0000"+
- "\u0646\u0647\u0007\f\u0000\u0000\u0647\u0648\u0007\u0007\u0000\u0000\u0648"+
- "\u016b\u0001\u0000\u0000\u0000\u0649\u064a\u0007\u0013\u0000\u0000\u064a"+
- "\u064b\u0007\u0007\u0000\u0000\u064b\u064c\u0007 \u0000\u0000\u064c\u016d"+
- "\u0001\u0000\u0000\u0000\u064d\u064e\u0003\u0102x\u0000\u064e\u064f\u0001"+
- "\u0000\u0000\u0000\u064f\u0650\u0006\u00ae\u001c\u0000\u0650\u0651\u0006"+
- "\u00ae\u0011\u0000\u0651\u0652\u0006\u00ae\u0004\u0000\u0652\u016f\u0001"+
- "\u0000\u0000\u0000\u0653\u0654\u0003\u00e0g\u0000\u0654\u0655\u0001\u0000"+
- "\u0000\u0000\u0655\u0656\u0006\u00af\u0016\u0000\u0656\u0171\u0001\u0000"+
- "\u0000\u0000\u0657\u0658\u0003\u00e4i\u0000\u0658\u0659\u0001\u0000\u0000"+
- "\u0000\u0659\u065a\u0006\u00b0\u0015\u0000\u065a\u0173\u0001\u0000\u0000"+
- "\u0000\u065b\u065c\u0003\u00fcu\u0000\u065c\u065d\u0001\u0000\u0000\u0000"+
- "\u065d\u065e\u0006\u00b1!\u0000\u065e\u0175\u0001\u0000\u0000\u0000\u065f"+
- "\u0660\u0003\u0124\u0089\u0000\u0660\u0661\u0001\u0000\u0000\u0000\u0661"+
- "\u0662\u0006\u00b2\"\u0000\u0662\u0177\u0001\u0000\u0000\u0000\u0663\u0664"+
- "\u0003\u0120\u0087\u0000\u0664\u0665\u0001\u0000\u0000\u0000\u0665\u0666"+
- "\u0006\u00b3#\u0000\u0666\u0179\u0001\u0000\u0000\u0000\u0667\u0668\u0003"+
- "\u0126\u008a\u0000\u0668\u0669\u0001\u0000\u0000\u0000\u0669\u066a\u0006"+
- "\u00b4$\u0000\u066a\u017b\u0001\u0000\u0000\u0000\u066b\u066c\u0003\u00d8"+
- "c\u0000\u066c\u066d\u0001\u0000\u0000\u0000\u066d\u066e\u0006\u00b5+\u0000"+
- "\u066e\u017d\u0001\u0000\u0000\u0000\u066f\u0670\u0003\u0134\u0091\u0000"+
- "\u0670\u0671\u0001\u0000\u0000\u0000\u0671\u0672\u0006\u00b6\u0019\u0000"+
- "\u0672\u017f\u0001\u0000\u0000\u0000\u0673\u0674\u0003\u0130\u008f\u0000"+
- "\u0674\u0675\u0001\u0000\u0000\u0000\u0675\u0676\u0006\u00b7\u001a\u0000"+
- "\u0676\u0181\u0001\u0000\u0000\u0000\u0677\u0678\u0003\u0012\u0000\u0000"+
- "\u0678\u0679\u0001\u0000\u0000\u0000\u0679\u067a\u0006\u00b8\u0000\u0000"+
- "\u067a\u0183\u0001\u0000\u0000\u0000\u067b\u067c\u0003\u0014\u0001\u0000"+
- "\u067c\u067d\u0001\u0000\u0000\u0000\u067d\u067e\u0006\u00b9\u0000\u0000"+
- "\u067e\u0185\u0001\u0000\u0000\u0000\u067f\u0680\u0003\u0016\u0002\u0000"+
- "\u0680\u0681\u0001\u0000\u0000\u0000\u0681\u0682\u0006\u00ba\u0000\u0000"+
- "\u0682\u0187\u0001\u0000\u0000\u0000\u0683\u0684\u0007\u0011\u0000\u0000"+
- "\u0684\u0685\u0007\u000b\u0000\u0000\u0685\u0686\u0007\u0004\u0000\u0000"+
- "\u0686\u0687\u0007\u000b\u0000\u0000\u0687\u0688\u0007\u0011\u0000\u0000"+
- "\u0688\u0689\u0001\u0000\u0000\u0000\u0689\u068a\u0006\u00bb\u0011\u0000"+
- "\u068a\u068b\u0006\u00bb\u0004\u0000\u068b\u0189\u0001\u0000\u0000\u0000"+
- "\u068c\u068d\u0003\u0012\u0000\u0000\u068d\u068e\u0001\u0000\u0000\u0000"+
- "\u068e\u068f\u0006\u00bc\u0000\u0000\u068f\u018b\u0001\u0000\u0000\u0000"+
- "\u0690\u0691\u0003\u0014\u0001\u0000\u0691\u0692\u0001\u0000\u0000\u0000"+
- "\u0692\u0693\u0006\u00bd\u0000\u0000\u0693\u018d\u0001\u0000\u0000\u0000"+
- "\u0694\u0695\u0003\u0016\u0002\u0000\u0695\u0696\u0001\u0000\u0000\u0000"+
- "\u0696\u0697\u0006\u00be\u0000\u0000\u0697\u018f\u0001\u0000\u0000\u0000"+
- "\u0698\u0699\u0003\u00b6R\u0000\u0699\u069a\u0001\u0000\u0000\u0000\u069a"+
- "\u069b\u0006\u00bf\u0010\u0000\u069b\u069c\u0006\u00bf\u0011\u0000\u069c"+
- "\u0191\u0001\u0000\u0000\u0000\u069d\u069e\u0007#\u0000\u0000\u069e\u069f"+
- "\u0007\t\u0000\u0000\u069f\u06a0\u0007\n\u0000\u0000\u06a0\u06a1\u0007"+
- "\u0005\u0000\u0000\u06a1\u0193\u0001\u0000\u0000\u0000\u06a2\u06a3\u0003"+
- "\u021e\u0106\u0000\u06a3\u06a4\u0001\u0000\u0000\u0000\u06a4\u06a5\u0006"+
- "\u00c1\u0014\u0000\u06a5\u0195\u0001\u0000\u0000\u0000\u06a6\u06a7\u0003"+
- "\u00f8s\u0000\u06a7\u06a8\u0001\u0000\u0000\u0000\u06a8\u06a9\u0006\u00c2"+
- "\u0013\u0000\u06a9\u06aa\u0006\u00c2\u0011\u0000\u06aa\u06ab\u0006\u00c2"+
- "\u0004\u0000\u06ab\u0197\u0001\u0000\u0000\u0000\u06ac\u06ad\u0007\u0016"+
- "\u0000\u0000\u06ad\u06ae\u0007\u0011\u0000\u0000\u06ae\u06af\u0007\n\u0000"+
- "\u0000\u06af\u06b0\u0007\u0005\u0000\u0000\u06b0\u06b1\u0007\u0006\u0000"+
- "\u0000\u06b1\u06b2\u0001\u0000\u0000\u0000\u06b2\u06b3\u0006\u00c3\u0011"+
- "\u0000\u06b3\u06b4\u0006\u00c3\u0004\u0000\u06b4\u0199\u0001\u0000\u0000"+
- "\u0000\u06b5\u06b6\u0003\u014c\u009d\u0000\u06b6\u06b7\u0001\u0000\u0000"+
- "\u0000\u06b7\u06b8\u0006\u00c4*\u0000\u06b8\u019b\u0001\u0000\u0000\u0000"+
- "\u06b9\u06ba\u0003\u00cc]\u0000\u06ba\u06bb\u0001\u0000\u0000\u0000\u06bb"+
- "\u06bc\u0006\u00c5\u001e\u0000\u06bc\u019d\u0001\u0000\u0000\u0000\u06bd"+
- "\u06be\u0003\u00dce\u0000\u06be\u06bf\u0001\u0000\u0000\u0000\u06bf\u06c0"+
- "\u0006\u00c6(\u0000\u06c0\u019f\u0001\u0000\u0000\u0000\u06c1\u06c2\u0003"+
- "\u0012\u0000\u0000\u06c2\u06c3\u0001\u0000\u0000\u0000\u06c3\u06c4\u0006"+
- "\u00c7\u0000\u0000\u06c4\u01a1\u0001\u0000\u0000\u0000\u06c5\u06c6\u0003"+
- "\u0014\u0001\u0000\u06c6\u06c7\u0001\u0000\u0000\u0000\u06c7\u06c8\u0006"+
- "\u00c8\u0000\u0000\u06c8\u01a3\u0001\u0000\u0000\u0000\u06c9\u06ca\u0003"+
- "\u0016\u0002\u0000\u06ca\u06cb\u0001\u0000\u0000\u0000\u06cb\u06cc\u0006"+
- "\u00c9\u0000\u0000\u06cc\u01a5\u0001\u0000\u0000\u0000\u06cd\u06ce\u0003"+
- "\u00b6R\u0000\u06ce\u06cf\u0001\u0000\u0000\u0000\u06cf\u06d0\u0006\u00ca"+
- "\u0010\u0000\u06d0\u06d1\u0006\u00ca\u0011\u0000\u06d1\u01a7\u0001\u0000"+
- "\u0000\u0000\u06d2\u06d3\u0003\u012e\u008e\u0000\u06d3\u06d4\u0001\u0000"+
- "\u0000\u0000\u06d4\u06d5\u0006\u00cb\u0012\u0000\u06d5\u06d6\u0006\u00cb"+
- "\u0011\u0000\u06d6\u06d7\u0006\u00cb\u0011\u0000\u06d7\u01a9\u0001\u0000"+
- "\u0000\u0000\u06d8\u06d9\u0003\u00dce\u0000\u06d9\u06da\u0001\u0000\u0000"+
- "\u0000\u06da\u06db\u0006\u00cc(\u0000\u06db\u01ab\u0001\u0000\u0000\u0000"+
- "\u06dc\u06dd\u0003\u00e0g\u0000\u06dd\u06de\u0001\u0000\u0000\u0000\u06de"+
- "\u06df\u0006\u00cd\u0016\u0000\u06df\u01ad\u0001\u0000\u0000\u0000\u06e0"+
- "\u06e1\u0003\u00e4i\u0000\u06e1\u06e2\u0001\u0000\u0000\u0000\u06e2\u06e3"+
- "\u0006\u00ce\u0015\u0000\u06e3\u01af\u0001\u0000\u0000\u0000\u06e4\u06e5"+
- "\u0003\u00f8s\u0000\u06e5\u06e6\u0001\u0000\u0000\u0000\u06e6\u06e7\u0006"+
- "\u00cf\u0013\u0000\u06e7\u06e8\u0006\u00cf,\u0000\u06e8\u01b1\u0001\u0000"+
- "\u0000\u0000\u06e9\u06ea\u0003\u014c\u009d\u0000\u06ea\u06eb\u0001\u0000"+
- "\u0000\u0000\u06eb\u06ec\u0006\u00d0*\u0000\u06ec\u01b3\u0001\u0000\u0000"+
- "\u0000\u06ed\u06ee\u0003\u00cc]\u0000\u06ee\u06ef\u0001\u0000\u0000\u0000"+
- "\u06ef\u06f0\u0006\u00d1\u001e\u0000\u06f0\u01b5\u0001\u0000\u0000\u0000"+
- "\u06f1\u06f2\u0003\u0012\u0000\u0000\u06f2\u06f3\u0001\u0000\u0000\u0000"+
- "\u06f3\u06f4\u0006\u00d2\u0000\u0000\u06f4\u01b7\u0001\u0000\u0000\u0000"+
- "\u06f5\u06f6\u0003\u0014\u0001\u0000\u06f6\u06f7\u0001\u0000\u0000\u0000"+
- "\u06f7\u06f8\u0006\u00d3\u0000\u0000\u06f8\u01b9\u0001\u0000\u0000\u0000"+
- "\u06f9\u06fa\u0003\u0016\u0002\u0000\u06fa\u06fb\u0001\u0000\u0000\u0000"+
- "\u06fb\u06fc\u0006\u00d4\u0000\u0000\u06fc\u01bb\u0001\u0000\u0000\u0000"+
- "\u06fd\u06fe\u0003\u00b6R\u0000\u06fe\u06ff\u0001\u0000\u0000\u0000\u06ff"+
- "\u0700\u0006\u00d5\u0010\u0000\u0700\u0701\u0006\u00d5\u0011\u0000\u0701"+
- "\u0702\u0006\u00d5\u0011\u0000\u0702\u01bd\u0001\u0000\u0000\u0000\u0703"+
- "\u0704\u0003\u012e\u008e\u0000\u0704\u0705\u0001\u0000\u0000\u0000\u0705"+
- "\u0706\u0006\u00d6\u0012\u0000\u0706\u0707\u0006\u00d6\u0011\u0000\u0707"+
- "\u0708\u0006\u00d6\u0011\u0000\u0708\u0709\u0006\u00d6\u0011\u0000\u0709"+
- "\u01bf\u0001\u0000\u0000\u0000\u070a\u070b\u0003\u00e0g\u0000\u070b\u070c"+
- "\u0001\u0000\u0000\u0000\u070c\u070d\u0006\u00d7\u0016\u0000\u070d\u01c1"+
- "\u0001\u0000\u0000\u0000\u070e\u070f\u0003\u00e4i\u0000\u070f\u0710\u0001"+
- "\u0000\u0000\u0000\u0710\u0711\u0006\u00d8\u0015\u0000\u0711\u01c3\u0001"+
- "\u0000\u0000\u0000\u0712\u0713\u0003\u0200\u00f7\u0000\u0713\u0714\u0001"+
- "\u0000\u0000\u0000\u0714\u0715\u0006\u00d9 \u0000\u0715\u01c5\u0001\u0000"+
- "\u0000\u0000\u0716\u0717\u0003\u0012\u0000\u0000\u0717\u0718\u0001\u0000"+
- "\u0000\u0000\u0718\u0719\u0006\u00da\u0000\u0000\u0719\u01c7\u0001\u0000"+
- "\u0000\u0000\u071a\u071b\u0003\u0014\u0001\u0000\u071b\u071c\u0001\u0000"+
- "\u0000\u0000\u071c\u071d\u0006\u00db\u0000\u0000\u071d\u01c9\u0001\u0000"+
- "\u0000\u0000\u071e\u071f\u0003\u0016\u0002\u0000\u071f\u0720\u0001\u0000"+
- "\u0000\u0000\u0720\u0721\u0006\u00dc\u0000\u0000\u0721\u01cb\u0001\u0000"+
- "\u0000\u0000\u0722\u0723\u0003\u00b6R\u0000\u0723\u0724\u0001\u0000\u0000"+
- "\u0000\u0724\u0725\u0006\u00dd\u0010\u0000\u0725\u0726\u0006\u00dd\u0011"+
- "\u0000\u0726\u01cd\u0001\u0000\u0000\u0000\u0727\u0728\u0003\u012e\u008e"+
- "\u0000\u0728\u0729\u0001\u0000\u0000\u0000\u0729\u072a\u0006\u00de\u0012"+
- "\u0000\u072a\u072b\u0006\u00de\u0011\u0000\u072b\u072c\u0006\u00de\u0011"+
- "\u0000\u072c\u01cf\u0001\u0000\u0000\u0000\u072d\u072e\u0003\u0128\u008b"+
- "\u0000\u072e\u072f\u0001\u0000\u0000\u0000\u072f\u0730\u0006\u00df\u0017"+
- "\u0000\u0730\u01d1\u0001\u0000\u0000\u0000\u0731\u0732\u0003\u012a\u008c"+
- "\u0000\u0732\u0733\u0001\u0000\u0000\u0000\u0733\u0734\u0006\u00e0\u0018"+
- "\u0000\u0734\u01d3\u0001\u0000\u0000\u0000\u0735\u0736\u0003\u00e4i\u0000"+
- "\u0736\u0737\u0001\u0000\u0000\u0000\u0737\u0738\u0006\u00e1\u0015\u0000"+
- "\u0738\u01d5\u0001\u0000\u0000\u0000\u0739\u073a\u0003\u00fcu\u0000\u073a"+
- "\u073b\u0001\u0000\u0000\u0000\u073b\u073c\u0006\u00e2!\u0000\u073c\u01d7"+
- "\u0001\u0000\u0000\u0000\u073d\u073e\u0003\u0124\u0089\u0000\u073e\u073f"+
- "\u0001\u0000\u0000\u0000\u073f\u0740\u0006\u00e3\"\u0000\u0740\u01d9\u0001"+
- "\u0000\u0000\u0000\u0741\u0742\u0003\u0120\u0087\u0000\u0742\u0743\u0001"+
- "\u0000\u0000\u0000\u0743\u0744\u0006\u00e4#\u0000\u0744\u01db\u0001\u0000"+
- "\u0000\u0000\u0745\u0746\u0003\u0126\u008a\u0000\u0746\u0747\u0001\u0000"+
- "\u0000\u0000\u0747\u0748\u0006\u00e5$\u0000\u0748\u01dd\u0001\u0000\u0000"+
- "\u0000\u0749\u074a\u0003\u0134\u0091\u0000\u074a\u074b\u0001\u0000\u0000"+
- "\u0000\u074b\u074c\u0006\u00e6\u0019\u0000\u074c\u01df\u0001\u0000\u0000"+
- "\u0000\u074d\u074e\u0003\u0130\u008f\u0000\u074e\u074f\u0001\u0000\u0000"+
- "\u0000\u074f\u0750\u0006\u00e7\u001a\u0000\u0750\u01e1\u0001\u0000\u0000"+
- "\u0000\u0751\u0752\u0003\u0012\u0000\u0000\u0752\u0753\u0001\u0000\u0000"+
- "\u0000\u0753\u0754\u0006\u00e8\u0000\u0000\u0754\u01e3\u0001\u0000\u0000"+
- "\u0000\u0755\u0756\u0003\u0014\u0001\u0000\u0756\u0757\u0001\u0000\u0000"+
- "\u0000\u0757\u0758\u0006\u00e9\u0000\u0000\u0758\u01e5\u0001\u0000\u0000"+
- "\u0000\u0759\u075a\u0003\u0016\u0002\u0000\u075a\u075b\u0001\u0000\u0000"+
- "\u0000\u075b\u075c\u0006\u00ea\u0000\u0000\u075c\u01e7\u0001\u0000\u0000"+
- "\u0000\u075d\u075e\u0003\u00b6R\u0000\u075e\u075f\u0001\u0000\u0000\u0000"+
- "\u075f\u0760\u0006\u00eb\u0010\u0000\u0760\u0761\u0006\u00eb\u0011\u0000"+
- "\u0761\u01e9\u0001\u0000\u0000\u0000\u0762\u0763\u0003\u012e\u008e\u0000"+
- "\u0763\u0764\u0001\u0000\u0000\u0000\u0764\u0765\u0006\u00ec\u0012\u0000"+
- "\u0765\u0766\u0006\u00ec\u0011\u0000\u0766\u0767\u0006\u00ec\u0011\u0000"+
- "\u0767\u01eb\u0001\u0000\u0000\u0000\u0768\u0769\u0003\u00e4i\u0000\u0769"+
- "\u076a\u0001\u0000\u0000\u0000\u076a\u076b\u0006\u00ed\u0015\u0000\u076b"+
- "\u01ed\u0001\u0000\u0000\u0000\u076c\u076d\u0003\u0128\u008b\u0000\u076d"+
- "\u076e\u0001\u0000\u0000\u0000\u076e\u076f\u0006\u00ee\u0017\u0000\u076f"+
- "\u01ef\u0001\u0000\u0000\u0000\u0770\u0771\u0003\u012a\u008c\u0000\u0771"+
- "\u0772\u0001\u0000\u0000\u0000\u0772\u0773\u0006\u00ef\u0018\u0000\u0773"+
- "\u01f1\u0001\u0000\u0000\u0000\u0774\u0775\u0003\u00e0g\u0000\u0775\u0776"+
- "\u0001\u0000\u0000\u0000\u0776\u0777\u0006\u00f0\u0016\u0000\u0777\u01f3"+
- "\u0001\u0000\u0000\u0000\u0778\u0779\u0003\u00fcu\u0000\u0779\u077a\u0001"+
- "\u0000\u0000\u0000\u077a\u077b\u0006\u00f1!\u0000\u077b\u01f5\u0001\u0000"+
- "\u0000\u0000\u077c\u077d\u0003\u0124\u0089\u0000\u077d\u077e\u0001\u0000"+
- "\u0000\u0000\u077e\u077f\u0006\u00f2\"\u0000\u077f\u01f7\u0001\u0000\u0000"+
- "\u0000\u0780\u0781\u0003\u0120\u0087\u0000\u0781\u0782\u0001\u0000\u0000"+
- "\u0000\u0782\u0783\u0006\u00f3#\u0000\u0783\u01f9\u0001\u0000\u0000\u0000"+
- "\u0784\u0785\u0003\u0126\u008a\u0000\u0785\u0786\u0001\u0000\u0000\u0000"+
- "\u0786\u0787\u0006\u00f4$\u0000\u0787\u01fb\u0001\u0000\u0000\u0000\u0788"+
- "\u078d\u0003\u00baT\u0000\u0789\u078d\u0003\u00b8S\u0000\u078a\u078d\u0003"+
- "\u00c8[\u0000\u078b\u078d\u0003\u0116\u0082\u0000\u078c\u0788\u0001\u0000"+
- "\u0000\u0000\u078c\u0789\u0001\u0000\u0000\u0000\u078c\u078a\u0001\u0000"+
- "\u0000\u0000\u078c\u078b\u0001\u0000\u0000\u0000\u078d\u01fd\u0001\u0000"+
- "\u0000\u0000\u078e\u0791\u0003\u00baT\u0000\u078f\u0791\u0003\u0116\u0082"+
- "\u0000\u0790\u078e\u0001\u0000\u0000\u0000\u0790\u078f\u0001\u0000\u0000"+
- "\u0000\u0791\u0795\u0001\u0000\u0000\u0000\u0792\u0794\u0003\u01fc\u00f5"+
- "\u0000\u0793\u0792\u0001\u0000\u0000\u0000\u0794\u0797\u0001\u0000\u0000"+
- "\u0000\u0795\u0793\u0001\u0000\u0000\u0000\u0795\u0796\u0001\u0000\u0000"+
- "\u0000\u0796\u07a2\u0001\u0000\u0000\u0000\u0797\u0795\u0001\u0000\u0000"+
- "\u0000\u0798\u079b\u0003\u00c8[\u0000\u0799\u079b\u0003\u00c2X\u0000\u079a"+
- "\u0798\u0001\u0000\u0000\u0000\u079a\u0799\u0001\u0000\u0000\u0000\u079b"+
- "\u079d\u0001\u0000\u0000\u0000\u079c\u079e\u0003\u01fc\u00f5\u0000\u079d"+
- "\u079c\u0001\u0000\u0000\u0000\u079e\u079f\u0001\u0000\u0000\u0000\u079f"+
- "\u079d\u0001\u0000\u0000\u0000\u079f\u07a0\u0001\u0000\u0000\u0000\u07a0"+
- "\u07a2\u0001\u0000\u0000\u0000\u07a1\u0790\u0001\u0000\u0000\u0000\u07a1"+
- "\u079a\u0001\u0000\u0000\u0000\u07a2\u01ff\u0001\u0000\u0000\u0000\u07a3"+
- "\u07a6\u0003\u01fe\u00f6\u0000\u07a4\u07a6\u0003\u0132\u0090\u0000\u07a5"+
- "\u07a3\u0001\u0000\u0000\u0000\u07a5\u07a4\u0001\u0000\u0000\u0000\u07a6"+
- "\u07a7\u0001\u0000\u0000\u0000\u07a7\u07a5\u0001\u0000\u0000\u0000\u07a7"+
- "\u07a8\u0001\u0000\u0000\u0000\u07a8\u0201\u0001\u0000\u0000\u0000\u07a9"+
- "\u07aa\u0003\u0012\u0000\u0000\u07aa\u07ab\u0001\u0000\u0000\u0000\u07ab"+
- "\u07ac\u0006\u00f8\u0000\u0000\u07ac\u0203\u0001\u0000\u0000\u0000\u07ad"+
- "\u07ae\u0003\u0014\u0001\u0000\u07ae\u07af\u0001\u0000\u0000\u0000\u07af"+
- "\u07b0\u0006\u00f9\u0000\u0000\u07b0\u0205\u0001\u0000\u0000\u0000\u07b1"+
- "\u07b2\u0003\u0016\u0002\u0000\u07b2\u07b3\u0001\u0000\u0000\u0000\u07b3"+
- "\u07b4\u0006\u00fa\u0000\u0000\u07b4\u0207\u0001\u0000\u0000\u0000\u07b5"+
- "\u07b6\u0003\u00b6R\u0000\u07b6\u07b7\u0001\u0000\u0000\u0000\u07b7\u07b8"+
- "\u0006\u00fb\u0010\u0000\u07b8\u07b9\u0006\u00fb\u0011\u0000\u07b9\u0209"+
- "\u0001\u0000\u0000\u0000\u07ba\u07bb\u0003\u012e\u008e\u0000\u07bb\u07bc"+
- "\u0001\u0000\u0000\u0000\u07bc\u07bd\u0006\u00fc\u0012\u0000\u07bd\u07be"+
- "\u0006\u00fc\u0011\u0000\u07be\u07bf\u0006\u00fc\u0011\u0000\u07bf\u020b"+
- "\u0001\u0000\u0000\u0000\u07c0\u07c1\u0003\u0128\u008b\u0000\u07c1\u07c2"+
- "\u0001\u0000\u0000\u0000\u07c2\u07c3\u0006\u00fd\u0017\u0000\u07c3\u020d"+
- "\u0001\u0000\u0000\u0000\u07c4\u07c5\u0003\u012a\u008c\u0000\u07c5\u07c6"+
- "\u0001\u0000\u0000\u0000\u07c6\u07c7\u0006\u00fe\u0018\u0000\u07c7\u020f"+
- "\u0001\u0000\u0000\u0000\u07c8\u07c9\u0003\u00d6b\u0000\u07c9\u07ca\u0001"+
- "\u0000\u0000\u0000\u07ca\u07cb\u0006\u00ff\u001f\u0000\u07cb\u0211\u0001"+
- "\u0000\u0000\u0000\u07cc\u07cd\u0003\u00e0g\u0000\u07cd\u07ce\u0001\u0000"+
- "\u0000\u0000\u07ce\u07cf\u0006\u0100\u0016\u0000\u07cf\u0213\u0001\u0000"+
- "\u0000\u0000\u07d0\u07d1\u0003\u00e4i\u0000\u07d1\u07d2\u0001\u0000\u0000"+
- "\u0000\u07d2\u07d3\u0006\u0101\u0015\u0000\u07d3\u0215\u0001\u0000\u0000"+
- "\u0000\u07d4\u07d5\u0003\u00fcu\u0000\u07d5\u07d6\u0001\u0000\u0000\u0000"+
- "\u07d6\u07d7\u0006\u0102!\u0000\u07d7\u0217\u0001\u0000\u0000\u0000\u07d8"+
- "\u07d9\u0003\u0124\u0089\u0000\u07d9\u07da\u0001\u0000\u0000\u0000\u07da"+
- "\u07db\u0006\u0103\"\u0000\u07db\u0219\u0001\u0000\u0000\u0000\u07dc\u07dd"+
- "\u0003\u0120\u0087\u0000\u07dd\u07de\u0001\u0000\u0000\u0000\u07de\u07df"+
- "\u0006\u0104#\u0000\u07df\u021b\u0001\u0000\u0000\u0000\u07e0\u07e1\u0003"+
- "\u0126\u008a\u0000\u07e1\u07e2\u0001\u0000\u0000\u0000\u07e2\u07e3\u0006"+
- "\u0105$\u0000\u07e3\u021d\u0001\u0000\u0000\u0000\u07e4\u07e5\u0007\u0004"+
- "\u0000\u0000\u07e5\u07e6\u0007\u0011\u0000\u0000\u07e6\u021f\u0001\u0000"+
- "\u0000\u0000\u07e7\u07e8\u0003\u0200\u00f7\u0000\u07e8\u07e9\u0001\u0000"+
- "\u0000\u0000\u07e9\u07ea\u0006\u0107 \u0000\u07ea\u0221\u0001\u0000\u0000"+
- "\u0000\u07eb\u07ec\u0003\u0012\u0000\u0000\u07ec\u07ed\u0001\u0000\u0000"+
- "\u0000\u07ed\u07ee\u0006\u0108\u0000\u0000\u07ee\u0223\u0001\u0000\u0000"+
- "\u0000\u07ef\u07f0\u0003\u0014\u0001\u0000\u07f0\u07f1\u0001\u0000\u0000"+
- "\u0000\u07f1\u07f2\u0006\u0109\u0000\u0000\u07f2\u0225\u0001\u0000\u0000"+
- "\u0000\u07f3\u07f4\u0003\u0016\u0002\u0000\u07f4\u07f5\u0001\u0000\u0000"+
- "\u0000\u07f5\u07f6\u0006\u010a\u0000\u0000\u07f6\u0227\u0001\u0000\u0000"+
- "\u0000\u07f7\u07f8\u0003\u0100w\u0000\u07f8\u07f9\u0001\u0000\u0000\u0000"+
- "\u07f9\u07fa\u0006\u010b-\u0000\u07fa\u0229\u0001\u0000\u0000\u0000\u07fb"+
- "\u07fc\u0003\u00e6j\u0000\u07fc\u07fd\u0001\u0000\u0000\u0000\u07fd\u07fe"+
- "\u0006\u010c.\u0000\u07fe\u022b\u0001\u0000\u0000\u0000\u07ff\u0800\u0003"+
- "\u00f4q\u0000\u0800\u0801\u0001\u0000\u0000\u0000\u0801\u0802\u0006\u010d"+
- "/\u0000\u0802\u022d\u0001\u0000\u0000\u0000\u0803\u0804\u0003\u00def\u0000"+
- "\u0804\u0805\u0001\u0000\u0000\u0000\u0805\u0806\u0006\u010e0\u0000\u0806"+
- "\u0807\u0006\u010e\u0011\u0000\u0807\u022f\u0001\u0000\u0000\u0000\u0808"+
- "\u0809\u0003\u00d6b\u0000\u0809\u080a\u0001\u0000\u0000\u0000\u080a\u080b"+
- "\u0006\u010f\u001f\u0000\u080b\u0231\u0001\u0000\u0000\u0000\u080c\u080d"+
- "\u0003\u00cc]\u0000\u080d\u080e\u0001\u0000\u0000\u0000\u080e\u080f\u0006"+
- "\u0110\u001e\u0000\u080f\u0233\u0001\u0000\u0000\u0000\u0810\u0811\u0003"+
- "\u0130\u008f\u0000\u0811\u0812\u0001\u0000\u0000\u0000\u0812\u0813\u0006"+
- "\u0111\u001a\u0000\u0813\u0235\u0001\u0000\u0000\u0000\u0814\u0815\u0003"+
- "\u0134\u0091\u0000\u0815\u0816\u0001\u0000\u0000\u0000\u0816\u0817\u0006"+
- "\u0112\u0019\u0000\u0817\u0237\u0001\u0000\u0000\u0000\u0818\u0819\u0003"+
- "\u00d0_\u0000\u0819\u081a\u0001\u0000\u0000\u0000\u081a\u081b\u0006\u0113"+
- "1\u0000\u081b\u0239\u0001\u0000\u0000\u0000\u081c\u081d\u0003\u00ce^\u0000"+
- "\u081d\u081e\u0001\u0000\u0000\u0000\u081e\u081f\u0006\u01142\u0000\u081f"+
- "\u023b\u0001\u0000\u0000\u0000\u0820\u0821\u0003\u00e0g\u0000\u0821\u0822"+
- "\u0001\u0000\u0000\u0000\u0822\u0823\u0006\u0115\u0016\u0000\u0823\u023d"+
- "\u0001\u0000\u0000\u0000\u0824\u0825\u0003\u00e4i\u0000\u0825\u0826\u0001"+
- "\u0000\u0000\u0000\u0826\u0827\u0006\u0116\u0015\u0000\u0827\u023f\u0001"+
- "\u0000\u0000\u0000\u0828\u0829\u0003\u00fcu\u0000\u0829\u082a\u0001\u0000"+
- "\u0000\u0000\u082a\u082b\u0006\u0117!\u0000\u082b\u0241\u0001\u0000\u0000"+
- "\u0000\u082c\u082d\u0003\u0124\u0089\u0000\u082d\u082e\u0001\u0000\u0000"+
- "\u0000\u082e\u082f\u0006\u0118\"\u0000\u082f\u0243\u0001\u0000\u0000\u0000"+
- "\u0830\u0831\u0003\u0120\u0087\u0000\u0831\u0832\u0001\u0000\u0000\u0000"+
- "\u0832\u0833\u0006\u0119#\u0000\u0833\u0245\u0001\u0000\u0000\u0000\u0834"+
- "\u0835\u0003\u0126\u008a\u0000\u0835\u0836\u0001\u0000\u0000\u0000\u0836"+
- "\u0837\u0006\u011a$\u0000\u0837\u0247\u0001\u0000\u0000\u0000\u0838\u0839"+
- "\u0003\u0128\u008b\u0000\u0839\u083a\u0001\u0000\u0000\u0000\u083a\u083b"+
- "\u0006\u011b\u0017\u0000\u083b\u0249\u0001\u0000\u0000\u0000\u083c\u083d"+
- "\u0003\u012a\u008c\u0000\u083d\u083e\u0001\u0000\u0000\u0000\u083e\u083f"+
- "\u0006\u011c\u0018\u0000\u083f\u024b\u0001\u0000\u0000\u0000\u0840\u0841"+
- "\u0003\u0200\u00f7\u0000\u0841\u0842\u0001\u0000\u0000\u0000\u0842\u0843"+
- "\u0006\u011d \u0000\u0843\u024d\u0001\u0000\u0000\u0000\u0844\u0845\u0003"+
- "\u0012\u0000\u0000\u0845\u0846\u0001\u0000\u0000\u0000\u0846\u0847\u0006"+
- "\u011e\u0000\u0000\u0847\u024f\u0001\u0000\u0000\u0000\u0848\u0849\u0003"+
- "\u0014\u0001\u0000\u0849\u084a\u0001\u0000\u0000\u0000\u084a\u084b\u0006"+
- "\u011f\u0000\u0000\u084b\u0251\u0001\u0000\u0000\u0000\u084c\u084d\u0003"+
- "\u0016\u0002\u0000\u084d\u084e\u0001\u0000\u0000\u0000\u084e\u084f\u0006"+
- "\u0120\u0000\u0000\u084f\u0253\u0001\u0000\u0000\u0000\u0850\u0851\u0003"+
- "\u00b6R\u0000\u0851\u0852\u0001\u0000\u0000\u0000\u0852\u0853\u0006\u0121"+
- "\u0010\u0000\u0853\u0854\u0006\u0121\u0011\u0000\u0854\u0255\u0001\u0000"+
- "\u0000\u0000\u0855\u0856\u0007\n\u0000\u0000\u0856\u0857\u0007\u0005\u0000"+
- "\u0000\u0857\u0858\u0007\u0015\u0000\u0000\u0858\u0859\u0007\t\u0000\u0000"+
- "\u0859\u0257\u0001\u0000\u0000\u0000\u085a\u085b\u0003\u0012\u0000\u0000"+
- "\u085b\u085c\u0001\u0000\u0000\u0000\u085c\u085d\u0006\u0123\u0000\u0000"+
- "\u085d\u0259\u0001\u0000\u0000\u0000\u085e\u085f\u0003\u0014\u0001\u0000"+
- "\u085f\u0860\u0001\u0000\u0000\u0000\u0860\u0861\u0006\u0124\u0000\u0000"+
- "\u0861\u025b\u0001\u0000\u0000\u0000\u0862\u0863\u0003\u0016\u0002\u0000"+
- "\u0863\u0864\u0001\u0000\u0000\u0000\u0864\u0865\u0006\u0125\u0000\u0000"+
- "\u0865\u025d\u0001\u0000\u0000\u0000F\u0000\u0001\u0002\u0003\u0004\u0005"+
- "\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0264\u0268\u026b"+
- "\u0274\u0276\u0281\u03a2\u03f7\u03fb\u0400\u0484\u0489\u0492\u0499\u049e"+
- "\u04a0\u04ab\u04b3\u04b6\u04b8\u04bd\u04c2\u04c8\u04cf\u04d4\u04da\u04dd"+
- "\u04e5\u04e9\u0576\u057b\u0582\u0584\u0589\u058e\u0595\u0597\u05b1\u05b6"+
- "\u05bb\u05bd\u05c3\u05fb\u0600\u078c\u0790\u0795\u079a\u079f\u07a1\u07a5"+
- "\u07a73\u0000\u0001\u0000\u0005\u0001\u0000\u0005\u0002\u0000\u0005\u0004"+
- "\u0000\u0005\u0005\u0000\u0005\u0006\u0000\u0005\u0007\u0000\u0005\b\u0000"+
- "\u0005\t\u0000\u0005\n\u0000\u0005\u000b\u0000\u0005\r\u0000\u0005\u000e"+
- "\u0000\u0005\u000f\u0000\u0005\u0010\u0000\u0005\u0011\u0000\u00072\u0000"+
- "\u0004\u0000\u0000\u0007c\u0000\u0007I\u0000\u0007\u008d\u0000\u0007?"+
- "\u0000\u0007=\u0000\u0007`\u0000\u0007a\u0000\u0007e\u0000\u0007d\u0000"+
- "\u0005\u0003\u0000\u0007N\u0000\u0007(\u0000\u00073\u0000\u00078\u0000"+
- "\u0007\u0089\u0000\u0007K\u0000\u0007^\u0000\u0007]\u0000\u0007_\u0000"+
- "\u0007b\u0000\u0005\u0000\u0000\u0007\u0011\u0000\u0007;\u0000\u0007:"+
- "\u0000\u0007j\u0000\u00079\u0000\u0005\f\u0000\u0007M\u0000\u0007@\u0000"+
- "\u0007G\u0000\u0007<\u0000\u00075\u0000\u00074\u0000";
+ "\u0124\u0007\u0124\u0002\u0125\u0007\u0125\u0002\u0126\u0007\u0126\u0001"+
+ "\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000\u0265\b\u0000\n"+
+ "\u0000\f\u0000\u0268\t\u0000\u0001\u0000\u0003\u0000\u026b\b\u0000\u0001"+
+ "\u0000\u0003\u0000\u026e\b\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001"+
+ "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u0277\b\u0001\n"+
+ "\u0001\f\u0001\u027a\t\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
+ "\u0001\u0001\u0001\u0001\u0002\u0004\u0002\u0282\b\u0002\u000b\u0002\f"+
+ "\u0002\u0283\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0001\u0003"+
+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007"+
+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+
+ "\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+
+ "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001"+
+ "\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001"+
+ "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
+ "\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r"+
+ "\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001"+
+ "\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+
+ "\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+
+ "\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001"+
+ "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001"+
+ "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001"+
+ "\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001"+
+ "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001"+
+ "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001"+
+ "\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001"+
+ "\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+
+ "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+
+ "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001"+
+ "\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+
+ "\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+
+ "\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+
+ "\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001"+
+ "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+
+ "\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
+ "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
+ "\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+
+ "\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001"+
+ "\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001"+
+ "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001"+
+ "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001"+
+ " \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001"+
+ "!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+
+ "\"\u0001#\u0004#\u03a3\b#\u000b#\f#\u03a4\u0001#\u0001#\u0001$\u0001$"+
+ "\u0001$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
+ "&\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001"+
+ "(\u0001(\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001"+
+ "+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001"+
+ "-\u0001-\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001"+
+ "0\u00010\u00010\u00010\u00011\u00011\u00011\u00011\u00011\u00012\u0001"+
+ "2\u00012\u00012\u00012\u00012\u00013\u00013\u00013\u00013\u00013\u0001"+
+ "4\u00014\u00014\u00014\u00014\u00015\u00015\u00016\u00046\u03f8\b6\u000b"+
+ "6\f6\u03f9\u00016\u00016\u00036\u03fe\b6\u00016\u00046\u0401\b6\u000b"+
+ "6\f6\u0402\u00017\u00017\u00017\u00017\u00018\u00018\u00018\u00018\u0001"+
+ "9\u00019\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001"+
+ ";\u0001;\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001"+
+ "=\u0001=\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001?\u0001"+
+ "?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001"+
+ "A\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001D\u0001"+
+ "D\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001"+
+ "F\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001I\u0001"+
+ "I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001"+
+ "K\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0001M\u0001M\u0001M\u0001"+
+ "N\u0001N\u0001N\u0001N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001P\u0001"+
+ "P\u0001P\u0001P\u0001Q\u0001Q\u0001Q\u0001Q\u0001R\u0001R\u0001R\u0001"+
+ "R\u0001S\u0001S\u0001T\u0001T\u0001U\u0001U\u0001U\u0001V\u0001V\u0001"+
+ "W\u0001W\u0003W\u0487\bW\u0001W\u0004W\u048a\bW\u000bW\fW\u048b\u0001"+
+ "X\u0001X\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0003Z\u0495\bZ\u0001[\u0001"+
+ "[\u0001\\\u0001\\\u0001\\\u0003\\\u049c\b\\\u0001]\u0001]\u0001]\u0005"+
+ "]\u04a1\b]\n]\f]\u04a4\t]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0005"+
+ "]\u04ac\b]\n]\f]\u04af\t]\u0001]\u0001]\u0001]\u0001]\u0001]\u0003]\u04b6"+
+ "\b]\u0001]\u0003]\u04b9\b]\u0003]\u04bb\b]\u0001^\u0004^\u04be\b^\u000b"+
+ "^\f^\u04bf\u0001_\u0004_\u04c3\b_\u000b_\f_\u04c4\u0001_\u0001_\u0005"+
+ "_\u04c9\b_\n_\f_\u04cc\t_\u0001_\u0001_\u0004_\u04d0\b_\u000b_\f_\u04d1"+
+ "\u0001_\u0004_\u04d5\b_\u000b_\f_\u04d6\u0001_\u0001_\u0005_\u04db\b_"+
+ "\n_\f_\u04de\t_\u0003_\u04e0\b_\u0001_\u0001_\u0001_\u0001_\u0004_\u04e6"+
+ "\b_\u000b_\f_\u04e7\u0001_\u0001_\u0003_\u04ec\b_\u0001`\u0001`\u0001"+
+ "`\u0001`\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001c\u0001c\u0001"+
+ "c\u0001d\u0001d\u0001d\u0001e\u0001e\u0001f\u0001f\u0001g\u0001g\u0001"+
+ "h\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001j\u0001j\u0001j\u0001"+
+ "j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001l\u0001"+
+ "l\u0001l\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001n\u0001n\u0001"+
+ "o\u0001o\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001p\u0001q\u0001"+
+ "q\u0001q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001"+
+ "s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001u\u0001u\u0001v\u0001v\u0001"+
+ "v\u0001v\u0001v\u0001v\u0001w\u0001w\u0001w\u0001w\u0001w\u0001x\u0001"+
+ "x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001"+
+ "{\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001}\u0001~\u0001~\u0001"+
+ "\u007f\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001"+
+ "\u0081\u0001\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0084\u0001"+
+ "\u0084\u0001\u0085\u0001\u0085\u0001\u0086\u0001\u0086\u0001\u0087\u0001"+
+ "\u0087\u0001\u0087\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0088\u0001"+
+ "\u0089\u0001\u0089\u0001\u0089\u0003\u0089\u0579\b\u0089\u0001\u0089\u0005"+
+ "\u0089\u057c\b\u0089\n\u0089\f\u0089\u057f\t\u0089\u0001\u0089\u0001\u0089"+
+ "\u0004\u0089\u0583\b\u0089\u000b\u0089\f\u0089\u0584\u0003\u0089\u0587"+
+ "\b\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0003\u008a\u058c\b\u008a"+
+ "\u0001\u008a\u0005\u008a\u058f\b\u008a\n\u008a\f\u008a\u0592\t\u008a\u0001"+
+ "\u008a\u0001\u008a\u0004\u008a\u0596\b\u008a\u000b\u008a\f\u008a\u0597"+
+ "\u0003\u008a\u059a\b\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b"+
+ "\u0001\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c"+
+ "\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e"+
+ "\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f"+
+ "\u0005\u008f\u05b2\b\u008f\n\u008f\f\u008f\u05b5\t\u008f\u0001\u008f\u0001"+
+ "\u008f\u0003\u008f\u05b9\b\u008f\u0001\u008f\u0004\u008f\u05bc\b\u008f"+
+ "\u000b\u008f\f\u008f\u05bd\u0003\u008f\u05c0\b\u008f\u0001\u0090\u0001"+
+ "\u0090\u0004\u0090\u05c4\b\u0090\u000b\u0090\f\u0090\u05c5\u0001\u0090"+
+ "\u0001\u0090\u0001\u0091\u0001\u0091\u0001\u0092\u0001\u0092\u0001\u0092"+
+ "\u0001\u0092\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0094"+
+ "\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0095\u0001\u0095\u0001\u0095"+
+ "\u0001\u0095\u0001\u0095\u0001\u0096\u0001\u0096\u0001\u0096\u0001\u0096"+
+ "\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0098\u0001\u0098"+
+ "\u0001\u0098\u0001\u0098\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099"+
+ "\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a"+
+ "\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009b\u0001\u009b\u0001\u009b"+
+ "\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001\u009c"+
+ "\u0001\u009c\u0001\u009c\u0001\u009d\u0001\u009d\u0001\u009d\u0003\u009d"+
+ "\u0604\b\u009d\u0001\u009e\u0004\u009e\u0607\b\u009e\u000b\u009e\f\u009e"+
+ "\u0608\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u00a0\u0001"+
+ "\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001"+
+ "\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a3\u0001"+
+ "\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001"+
+ "\u00a4\u0001\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001"+
+ "\u00a5\u0001\u00a5\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001"+
+ "\u00a6\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a8\u0001"+
+ "\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001"+
+ "\u00a9\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001"+
+ "\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001"+
+ "\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001"+
+ "\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001"+
+ "\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0001"+
+ "\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00b0\u0001\u00b0\u0001"+
+ "\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001"+
+ "\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b3\u0001\u00b3\u0001"+
+ "\u00b3\u0001\u00b3\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001"+
+ "\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b6\u0001\u00b6\u0001"+
+ "\u00b6\u0001\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001"+
+ "\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b9\u0001\u00b9\u0001"+
+ "\u00b9\u0001\u00b9\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001"+
+ "\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bc\u0001\u00bc\u0001"+
+ "\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001"+
+ "\u00bc\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00be\u0001"+
+ "\u00be\u0001\u00be\u0001\u00be\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001"+
+ "\u00bf\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001"+
+ "\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c2\u0001"+
+ "\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001"+
+ "\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001"+
+ "\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001"+
+ "\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c6\u0001\u00c6\u0001"+
+ "\u00c6\u0001\u00c6\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001"+
+ "\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c9\u0001\u00c9\u0001"+
+ "\u00c9\u0001\u00c9\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001"+
+ "\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cc\u0001"+
+ "\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cd\u0001"+
+ "\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00ce\u0001\u00ce\u0001\u00ce\u0001"+
+ "\u00ce\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00d0\u0001"+
+ "\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d1\u0001\u00d1\u0001"+
+ "\u00d1\u0001\u00d1\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001"+
+ "\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001"+
+ "\u00d4\u0001\u00d4\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001"+
+ "\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001"+
+ "\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001"+
+ "\u00d7\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d9\u0001"+
+ "\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00da\u0001\u00da\u0001\u00da\u0001"+
+ "\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00dc\u0001"+
+ "\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001"+
+ "\u00dd\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001"+
+ "\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001"+
+ "\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e1\u0001\u00e1\u0001"+
+ "\u00e1\u0001\u00e1\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001"+
+ "\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e4\u0001\u00e4\u0001"+
+ "\u00e4\u0001\u00e4\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001"+
+ "\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e7\u0001\u00e7\u0001"+
+ "\u00e7\u0001\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001"+
+ "\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00ea\u0001\u00ea\u0001"+
+ "\u00ea\u0001\u00ea\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001"+
+ "\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ed\u0001"+
+ "\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ee\u0001"+
+ "\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ef\u0001\u00ef\u0001\u00ef\u0001"+
+ "\u00ef\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f1\u0001"+
+ "\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f2\u0001\u00f2\u0001\u00f2\u0001"+
+ "\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001\u00f4\u0001"+
+ "\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001"+
+ "\u00f5\u0001\u00f6\u0001\u00f6\u0001\u00f6\u0001\u00f6\u0003\u00f6\u0795"+
+ "\b\u00f6\u0001\u00f7\u0001\u00f7\u0003\u00f7\u0799\b\u00f7\u0001\u00f7"+
+ "\u0005\u00f7\u079c\b\u00f7\n\u00f7\f\u00f7\u079f\t\u00f7\u0001\u00f7\u0001"+
+ "\u00f7\u0003\u00f7\u07a3\b\u00f7\u0001\u00f7\u0004\u00f7\u07a6\b\u00f7"+
+ "\u000b\u00f7\f\u00f7\u07a7\u0003\u00f7\u07aa\b\u00f7\u0001\u00f8\u0001"+
+ "\u00f8\u0004\u00f8\u07ae\b\u00f8\u000b\u00f8\f\u00f8\u07af\u0001\u00f9"+
+ "\u0001\u00f9\u0001\u00f9\u0001\u00f9\u0001\u00fa\u0001\u00fa\u0001\u00fa"+
+ "\u0001\u00fa\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fc"+
+ "\u0001\u00fc\u0001\u00fc\u0001\u00fc\u0001\u00fc\u0001\u00fd\u0001\u00fd"+
+ "\u0001\u00fd\u0001\u00fd\u0001\u00fd\u0001\u00fd\u0001\u00fe\u0001\u00fe"+
+ "\u0001\u00fe\u0001\u00fe\u0001\u00ff\u0001\u00ff\u0001\u00ff\u0001\u00ff"+
+ "\u0001\u0100\u0001\u0100\u0001\u0100\u0001\u0100\u0001\u0101\u0001\u0101"+
+ "\u0001\u0101\u0001\u0101\u0001\u0102\u0001\u0102\u0001\u0102\u0001\u0102"+
+ "\u0001\u0103\u0001\u0103\u0001\u0103\u0001\u0103\u0001\u0104\u0001\u0104"+
+ "\u0001\u0104\u0001\u0104\u0001\u0105\u0001\u0105\u0001\u0105\u0001\u0105"+
+ "\u0001\u0106\u0001\u0106\u0001\u0106\u0001\u0106\u0001\u0107\u0001\u0107"+
+ "\u0001\u0107\u0001\u0108\u0001\u0108\u0001\u0108\u0001\u0108\u0001\u0109"+
+ "\u0001\u0109\u0001\u0109\u0001\u0109\u0001\u010a\u0001\u010a\u0001\u010a"+
+ "\u0001\u010a\u0001\u010b\u0001\u010b\u0001\u010b\u0001\u010b\u0001\u010c"+
+ "\u0001\u010c\u0001\u010c\u0001\u010c\u0001\u010d\u0001\u010d\u0001\u010d"+
+ "\u0001\u010d\u0001\u010e\u0001\u010e\u0001\u010e\u0001\u010e\u0001\u010f"+
+ "\u0001\u010f\u0001\u010f\u0001\u010f\u0001\u010f\u0001\u0110\u0001\u0110"+
+ "\u0001\u0110\u0001\u0110\u0001\u0111\u0001\u0111\u0001\u0111\u0001\u0111"+
+ "\u0001\u0112\u0001\u0112\u0001\u0112\u0001\u0112\u0001\u0113\u0001\u0113"+
+ "\u0001\u0113\u0001\u0113\u0001\u0114\u0001\u0114\u0001\u0114\u0001\u0114"+
+ "\u0001\u0115\u0001\u0115\u0001\u0115\u0001\u0115\u0001\u0116\u0001\u0116"+
+ "\u0001\u0116\u0001\u0116\u0001\u0117\u0001\u0117\u0001\u0117\u0001\u0117"+
+ "\u0001\u0118\u0001\u0118\u0001\u0118\u0001\u0118\u0001\u0119\u0001\u0119"+
+ "\u0001\u0119\u0001\u0119\u0001\u011a\u0001\u011a\u0001\u011a\u0001\u011a"+
+ "\u0001\u011b\u0001\u011b\u0001\u011b\u0001\u011b\u0001\u011c\u0001\u011c"+
+ "\u0001\u011c\u0001\u011c\u0001\u011d\u0001\u011d\u0001\u011d\u0001\u011d"+
+ "\u0001\u011e\u0001\u011e\u0001\u011e\u0001\u011e\u0001\u011f\u0001\u011f"+
+ "\u0001\u011f\u0001\u011f\u0001\u0120\u0001\u0120\u0001\u0120\u0001\u0120"+
+ "\u0001\u0121\u0001\u0121\u0001\u0121\u0001\u0121\u0001\u0122\u0001\u0122"+
+ "\u0001\u0122\u0001\u0122\u0001\u0122\u0001\u0123\u0001\u0123\u0001\u0123"+
+ "\u0001\u0123\u0001\u0123\u0001\u0124\u0001\u0124\u0001\u0124\u0001\u0124"+
+ "\u0001\u0125\u0001\u0125\u0001\u0125\u0001\u0125\u0001\u0126\u0001\u0126"+
+ "\u0001\u0126\u0001\u0126\u0002\u0278\u04ad\u0000\u0127\u0012\u0001\u0014"+
+ "\u0002\u0016\u0003\u0018\u0004\u001a\u0005\u001c\u0006\u001e\u0007 \b"+
+ "\"\t$\n&\u000b(\f*\r,\u000e.\u000f0\u00102\u00114\u00126\u00138\u0014"+
+ ":\u0015<\u0016>\u0017@\u0018B\u0019D\u001aF\u001bH\u001cJ\u001dL\u001e"+
+ "N\u001fP R!T\"V#X$Z\u0000\\\u0000^\u0000`\u0000b\u0000d\u0000f\u0000h"+
+ "\u0000j\u0000l\u0000n%p&r\'t\u0000v\u0000x\u0000z\u0000|\u0000~(\u0080"+
+ "\u0000\u0082\u0000\u0084)\u0086*\u0088+\u008a\u0000\u008c\u0000\u008e"+
+ "\u0000\u0090\u0000\u0092\u0000\u0094\u0000\u0096\u0000\u0098\u0000\u009a"+
+ "\u0000\u009c\u0000\u009e\u0000\u00a0\u0000\u00a2\u0000\u00a4\u0000\u00a6"+
+ ",\u00a8-\u00aa.\u00ac\u0000\u00ae\u0000\u00b0/\u00b20\u00b41\u00b62\u00b8"+
+ "\u0000\u00ba\u0000\u00bc\u0000\u00be\u0000\u00c0\u0000\u00c2\u0000\u00c4"+
+ "\u0000\u00c6\u0000\u00c8\u0000\u00ca\u0000\u00cc3\u00ce4\u00d05\u00d2"+
+ "6\u00d47\u00d68\u00d89\u00da:\u00dc;\u00de<\u00e0=\u00e2>\u00e4?\u00e6"+
+ "@\u00e8A\u00eaB\u00ecC\u00eeD\u00f0E\u00f2F\u00f4G\u00f6H\u00f8I\u00fa"+
+ "J\u00fcK\u00feL\u0100M\u0102N\u0104O\u0106P\u0108Q\u010aR\u010cS\u010e"+
+ "T\u0110U\u0112V\u0114W\u0116X\u0118Y\u011aZ\u011c[\u011e\\\u0120]\u0122"+
+ "\u0000\u0124^\u0126_\u0128`\u012aa\u012cb\u012ec\u0130d\u0132\u0000\u0134"+
+ "e\u0136f\u0138g\u013ah\u013c\u0000\u013e\u0000\u0140\u0000\u0142\u0000"+
+ "\u0144\u0000\u0146i\u0148\u0000\u014a\u0000\u014c\u0000\u014ej\u0150\u0000"+
+ "\u0152\u0000\u0154k\u0156l\u0158m\u015a\u0000\u015c\u0000\u015e\u0000"+
+ "\u0160n\u0162o\u0164p\u0166\u0000\u0168\u0000\u016aq\u016cr\u016es\u0170"+
+ "\u0000\u0172\u0000\u0174\u0000\u0176\u0000\u0178\u0000\u017a\u0000\u017c"+
+ "\u0000\u017e\u0000\u0180\u0000\u0182\u0000\u0184t\u0186u\u0188v\u018a"+
+ "w\u018cx\u018ey\u0190z\u0192\u0000\u0194{\u0196\u0000\u0198\u0000\u019a"+
+ "|\u019c\u0000\u019e\u0000\u01a0\u0000\u01a2}\u01a4~\u01a6\u007f\u01a8"+
+ "\u0000\u01aa\u0000\u01ac\u0000\u01ae\u0000\u01b0\u0000\u01b2\u0000\u01b4"+
+ "\u0000\u01b6\u0000\u01b8\u0080\u01ba\u0081\u01bc\u0082\u01be\u0000\u01c0"+
+ "\u0000\u01c2\u0000\u01c4\u0000\u01c6\u0000\u01c8\u0083\u01ca\u0084\u01cc"+
+ "\u0085\u01ce\u0000\u01d0\u0000\u01d2\u0000\u01d4\u0000\u01d6\u0000\u01d8"+
+ "\u0000\u01da\u0000\u01dc\u0000\u01de\u0000\u01e0\u0000\u01e2\u0000\u01e4"+
+ "\u0086\u01e6\u0087\u01e8\u0088\u01ea\u0000\u01ec\u0000\u01ee\u0000\u01f0"+
+ "\u0000\u01f2\u0000\u01f4\u0000\u01f6\u0000\u01f8\u0000\u01fa\u0000\u01fc"+
+ "\u0000\u01fe\u0000\u0200\u0000\u0202\u0089\u0204\u008a\u0206\u008b\u0208"+
+ "\u008c\u020a\u0000\u020c\u0000\u020e\u0000\u0210\u0000\u0212\u0000\u0214"+
+ "\u0000\u0216\u0000\u0218\u0000\u021a\u0000\u021c\u0000\u021e\u0000\u0220"+
+ "\u008d\u0222\u0000\u0224\u008e\u0226\u008f\u0228\u0090\u022a\u0000\u022c"+
+ "\u0000\u022e\u0000\u0230\u0000\u0232\u0000\u0234\u0000\u0236\u0000\u0238"+
+ "\u0000\u023a\u0000\u023c\u0000\u023e\u0000\u0240\u0000\u0242\u0000\u0244"+
+ "\u0000\u0246\u0000\u0248\u0000\u024a\u0000\u024c\u0000\u024e\u0000\u0250"+
+ "\u0091\u0252\u0092\u0254\u0093\u0256\u0000\u0258\u0094\u025a\u0095\u025c"+
+ "\u0096\u025e\u0097\u0012\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+
+ "\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011$\u0002\u0000\n\n\r\r\u0003\u0000"+
+ "\t\n\r\r \u0002\u0000CCcc\u0002\u0000HHhh\u0002\u0000AAaa\u0002\u0000"+
+ "NNnn\u0002\u0000GGgg\u0002\u0000EEee\u0002\u0000PPpp\u0002\u0000OOoo\u0002"+
+ "\u0000IIii\u0002\u0000TTtt\u0002\u0000RRrr\u0002\u0000XXxx\u0002\u0000"+
+ "LLll\u0002\u0000MMmm\u0002\u0000DDdd\u0002\u0000SSss\u0002\u0000VVvv\u0002"+
+ "\u0000KKkk\u0002\u0000WWww\u0002\u0000FFff\u0002\u0000UUuu\u0006\u0000"+
+ "\t\n\r\r //[[]]\f\u0000\t\n\r\r \"#(),,//::<<>?\\\\||\u0001\u000009"+
+ "\u0002\u0000AZaz\b\u0000\"\"NNRRTT\\\\nnrrtt\u0004\u0000\n\n\r\r\"\"\\"+
+ "\\\u0002\u0000++--\u0001\u0000``\u0002\u0000BBbb\u0002\u0000YYyy\f\u0000"+
+ "\t\n\r\r \"\"(),,//::==[[]]||\u0002\u0000**//\u0002\u0000JJjj\u0886\u0000"+
+ "\u0012\u0001\u0000\u0000\u0000\u0000\u0014\u0001\u0000\u0000\u0000\u0000"+
+ "\u0016\u0001\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\u0000\u0000"+
+ "\u001a\u0001\u0000\u0000\u0000\u0000\u001c\u0001\u0000\u0000\u0000\u0000"+
+ "\u001e\u0001\u0000\u0000\u0000\u0000 \u0001\u0000\u0000\u0000\u0000\""+
+ "\u0001\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\u0000\u0000&\u0001\u0000"+
+ "\u0000\u0000\u0000(\u0001\u0000\u0000\u0000\u0000*\u0001\u0000\u0000\u0000"+
+ "\u0000,\u0001\u0000\u0000\u0000\u0000.\u0001\u0000\u0000\u0000\u00000"+
+ "\u0001\u0000\u0000\u0000\u00002\u0001\u0000\u0000\u0000\u00004\u0001\u0000"+
+ "\u0000\u0000\u00006\u0001\u0000\u0000\u0000\u00008\u0001\u0000\u0000\u0000"+
+ "\u0000:\u0001\u0000\u0000\u0000\u0000<\u0001\u0000\u0000\u0000\u0000>"+
+ "\u0001\u0000\u0000\u0000\u0000@\u0001\u0000\u0000\u0000\u0000B\u0001\u0000"+
+ "\u0000\u0000\u0000D\u0001\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\u0000"+
+ "\u0000H\u0001\u0000\u0000\u0000\u0000J\u0001\u0000\u0000\u0000\u0000L"+
+ "\u0001\u0000\u0000\u0000\u0000N\u0001\u0000\u0000\u0000\u0000P\u0001\u0000"+
+ "\u0000\u0000\u0000R\u0001\u0000\u0000\u0000\u0000T\u0001\u0000\u0000\u0000"+
+ "\u0000V\u0001\u0000\u0000\u0000\u0000X\u0001\u0000\u0000\u0000\u0001Z"+
+ "\u0001\u0000\u0000\u0000\u0001\\\u0001\u0000\u0000\u0000\u0001^\u0001"+
+ "\u0000\u0000\u0000\u0001`\u0001\u0000\u0000\u0000\u0001b\u0001\u0000\u0000"+
+ "\u0000\u0001d\u0001\u0000\u0000\u0000\u0001f\u0001\u0000\u0000\u0000\u0001"+
+ "h\u0001\u0000\u0000\u0000\u0001j\u0001\u0000\u0000\u0000\u0001l\u0001"+
+ "\u0000\u0000\u0000\u0001n\u0001\u0000\u0000\u0000\u0001p\u0001\u0000\u0000"+
+ "\u0000\u0001r\u0001\u0000\u0000\u0000\u0002t\u0001\u0000\u0000\u0000\u0002"+
+ "v\u0001\u0000\u0000\u0000\u0002x\u0001\u0000\u0000\u0000\u0002z\u0001"+
+ "\u0000\u0000\u0000\u0002~\u0001\u0000\u0000\u0000\u0002\u0080\u0001\u0000"+
+ "\u0000\u0000\u0002\u0082\u0001\u0000\u0000\u0000\u0002\u0084\u0001\u0000"+
+ "\u0000\u0000\u0002\u0086\u0001\u0000\u0000\u0000\u0002\u0088\u0001\u0000"+
+ "\u0000\u0000\u0003\u008a\u0001\u0000\u0000\u0000\u0003\u008c\u0001\u0000"+
+ "\u0000\u0000\u0003\u008e\u0001\u0000\u0000\u0000\u0003\u0090\u0001\u0000"+
+ "\u0000\u0000\u0003\u0092\u0001\u0000\u0000\u0000\u0003\u0094\u0001\u0000"+
+ "\u0000\u0000\u0003\u0096\u0001\u0000\u0000\u0000\u0003\u0098\u0001\u0000"+
+ "\u0000\u0000\u0003\u009a\u0001\u0000\u0000\u0000\u0003\u009c\u0001\u0000"+
+ "\u0000\u0000\u0003\u009e\u0001\u0000\u0000\u0000\u0003\u00a0\u0001\u0000"+
+ "\u0000\u0000\u0003\u00a2\u0001\u0000\u0000\u0000\u0003\u00a4\u0001\u0000"+
+ "\u0000\u0000\u0003\u00a6\u0001\u0000\u0000\u0000\u0003\u00a8\u0001\u0000"+
+ "\u0000\u0000\u0003\u00aa\u0001\u0000\u0000\u0000\u0004\u00ac\u0001\u0000"+
+ "\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0004\u00b0\u0001\u0000"+
+ "\u0000\u0000\u0004\u00b2\u0001\u0000\u0000\u0000\u0004\u00b4\u0001\u0000"+
+ "\u0000\u0000\u0005\u00b6\u0001\u0000\u0000\u0000\u0005\u00cc\u0001\u0000"+
+ "\u0000\u0000\u0005\u00ce\u0001\u0000\u0000\u0000\u0005\u00d0\u0001\u0000"+
+ "\u0000\u0000\u0005\u00d2\u0001\u0000\u0000\u0000\u0005\u00d4\u0001\u0000"+
+ "\u0000\u0000\u0005\u00d6\u0001\u0000\u0000\u0000\u0005\u00d8\u0001\u0000"+
+ "\u0000\u0000\u0005\u00da\u0001\u0000\u0000\u0000\u0005\u00dc\u0001\u0000"+
+ "\u0000\u0000\u0005\u00de\u0001\u0000\u0000\u0000\u0005\u00e0\u0001\u0000"+
+ "\u0000\u0000\u0005\u00e2\u0001\u0000\u0000\u0000\u0005\u00e4\u0001\u0000"+
+ "\u0000\u0000\u0005\u00e6\u0001\u0000\u0000\u0000\u0005\u00e8\u0001\u0000"+
+ "\u0000\u0000\u0005\u00ea\u0001\u0000\u0000\u0000\u0005\u00ec\u0001\u0000"+
+ "\u0000\u0000\u0005\u00ee\u0001\u0000\u0000\u0000\u0005\u00f0\u0001\u0000"+
+ "\u0000\u0000\u0005\u00f2\u0001\u0000\u0000\u0000\u0005\u00f4\u0001\u0000"+
+ "\u0000\u0000\u0005\u00f6\u0001\u0000\u0000\u0000\u0005\u00f8\u0001\u0000"+
+ "\u0000\u0000\u0005\u00fa\u0001\u0000\u0000\u0000\u0005\u00fc\u0001\u0000"+
+ "\u0000\u0000\u0005\u00fe\u0001\u0000\u0000\u0000\u0005\u0100\u0001\u0000"+
+ "\u0000\u0000\u0005\u0102\u0001\u0000\u0000\u0000\u0005\u0104\u0001\u0000"+
+ "\u0000\u0000\u0005\u0106\u0001\u0000\u0000\u0000\u0005\u0108\u0001\u0000"+
+ "\u0000\u0000\u0005\u010a\u0001\u0000\u0000\u0000\u0005\u010c\u0001\u0000"+
+ "\u0000\u0000\u0005\u010e\u0001\u0000\u0000\u0000\u0005\u0110\u0001\u0000"+
+ "\u0000\u0000\u0005\u0112\u0001\u0000\u0000\u0000\u0005\u0114\u0001\u0000"+
+ "\u0000\u0000\u0005\u0116\u0001\u0000\u0000\u0000\u0005\u0118\u0001\u0000"+
+ "\u0000\u0000\u0005\u011a\u0001\u0000\u0000\u0000\u0005\u011c\u0001\u0000"+
+ "\u0000\u0000\u0005\u011e\u0001\u0000\u0000\u0000\u0005\u0120\u0001\u0000"+
+ "\u0000\u0000\u0005\u0122\u0001\u0000\u0000\u0000\u0005\u0124\u0001\u0000"+
+ "\u0000\u0000\u0005\u0126\u0001\u0000\u0000\u0000\u0005\u0128\u0001\u0000"+
+ "\u0000\u0000\u0005\u012a\u0001\u0000\u0000\u0000\u0005\u012c\u0001\u0000"+
+ "\u0000\u0000\u0005\u012e\u0001\u0000\u0000\u0000\u0005\u0130\u0001\u0000"+
+ "\u0000\u0000\u0005\u0134\u0001\u0000\u0000\u0000\u0005\u0136\u0001\u0000"+
+ "\u0000\u0000\u0005\u0138\u0001\u0000\u0000\u0000\u0005\u013a\u0001\u0000"+
+ "\u0000\u0000\u0006\u013c\u0001\u0000\u0000\u0000\u0006\u013e\u0001\u0000"+
+ "\u0000\u0000\u0006\u0140\u0001\u0000\u0000\u0000\u0006\u0142\u0001\u0000"+
+ "\u0000\u0000\u0006\u0144\u0001\u0000\u0000\u0000\u0006\u0146\u0001\u0000"+
+ "\u0000\u0000\u0006\u0148\u0001\u0000\u0000\u0000\u0006\u014a\u0001\u0000"+
+ "\u0000\u0000\u0006\u014e\u0001\u0000\u0000\u0000\u0006\u0150\u0001\u0000"+
+ "\u0000\u0000\u0006\u0152\u0001\u0000\u0000\u0000\u0006\u0154\u0001\u0000"+
+ "\u0000\u0000\u0006\u0156\u0001\u0000\u0000\u0000\u0006\u0158\u0001\u0000"+
+ "\u0000\u0000\u0007\u015a\u0001\u0000\u0000\u0000\u0007\u015c\u0001\u0000"+
+ "\u0000\u0000\u0007\u015e\u0001\u0000\u0000\u0000\u0007\u0160\u0001\u0000"+
+ "\u0000\u0000\u0007\u0162\u0001\u0000\u0000\u0000\u0007\u0164\u0001\u0000"+
+ "\u0000\u0000\b\u0166\u0001\u0000\u0000\u0000\b\u0168\u0001\u0000\u0000"+
+ "\u0000\b\u016a\u0001\u0000\u0000\u0000\b\u016c\u0001\u0000\u0000\u0000"+
+ "\b\u016e\u0001\u0000\u0000\u0000\b\u0170\u0001\u0000\u0000\u0000\b\u0172"+
+ "\u0001\u0000\u0000\u0000\b\u0174\u0001\u0000\u0000\u0000\b\u0176\u0001"+
+ "\u0000\u0000\u0000\b\u0178\u0001\u0000\u0000\u0000\b\u017a\u0001\u0000"+
+ "\u0000\u0000\b\u017c\u0001\u0000\u0000\u0000\b\u017e\u0001\u0000\u0000"+
+ "\u0000\b\u0180\u0001\u0000\u0000\u0000\b\u0182\u0001\u0000\u0000\u0000"+
+ "\b\u0184\u0001\u0000\u0000\u0000\b\u0186\u0001\u0000\u0000\u0000\b\u0188"+
+ "\u0001\u0000\u0000\u0000\t\u018a\u0001\u0000\u0000\u0000\t\u018c\u0001"+
+ "\u0000\u0000\u0000\t\u018e\u0001\u0000\u0000\u0000\t\u0190\u0001\u0000"+
+ "\u0000\u0000\n\u0192\u0001\u0000\u0000\u0000\n\u0194\u0001\u0000\u0000"+
+ "\u0000\n\u0196\u0001\u0000\u0000\u0000\n\u0198\u0001\u0000\u0000\u0000"+
+ "\n\u019a\u0001\u0000\u0000\u0000\n\u019c\u0001\u0000\u0000\u0000\n\u019e"+
+ "\u0001\u0000\u0000\u0000\n\u01a0\u0001\u0000\u0000\u0000\n\u01a2\u0001"+
+ "\u0000\u0000\u0000\n\u01a4\u0001\u0000\u0000\u0000\n\u01a6\u0001\u0000"+
+ "\u0000\u0000\u000b\u01a8\u0001\u0000\u0000\u0000\u000b\u01aa\u0001\u0000"+
+ "\u0000\u0000\u000b\u01ac\u0001\u0000\u0000\u0000\u000b\u01ae\u0001\u0000"+
+ "\u0000\u0000\u000b\u01b0\u0001\u0000\u0000\u0000\u000b\u01b2\u0001\u0000"+
+ "\u0000\u0000\u000b\u01b4\u0001\u0000\u0000\u0000\u000b\u01b6\u0001\u0000"+
+ "\u0000\u0000\u000b\u01b8\u0001\u0000\u0000\u0000\u000b\u01ba\u0001\u0000"+
+ "\u0000\u0000\u000b\u01bc\u0001\u0000\u0000\u0000\f\u01be\u0001\u0000\u0000"+
+ "\u0000\f\u01c0\u0001\u0000\u0000\u0000\f\u01c2\u0001\u0000\u0000\u0000"+
+ "\f\u01c4\u0001\u0000\u0000\u0000\f\u01c6\u0001\u0000\u0000\u0000\f\u01c8"+
+ "\u0001\u0000\u0000\u0000\f\u01ca\u0001\u0000\u0000\u0000\f\u01cc\u0001"+
+ "\u0000\u0000\u0000\r\u01ce\u0001\u0000\u0000\u0000\r\u01d0\u0001\u0000"+
+ "\u0000\u0000\r\u01d2\u0001\u0000\u0000\u0000\r\u01d4\u0001\u0000\u0000"+
+ "\u0000\r\u01d6\u0001\u0000\u0000\u0000\r\u01d8\u0001\u0000\u0000\u0000"+
+ "\r\u01da\u0001\u0000\u0000\u0000\r\u01dc\u0001\u0000\u0000\u0000\r\u01de"+
+ "\u0001\u0000\u0000\u0000\r\u01e0\u0001\u0000\u0000\u0000\r\u01e2\u0001"+
+ "\u0000\u0000\u0000\r\u01e4\u0001\u0000\u0000\u0000\r\u01e6\u0001\u0000"+
+ "\u0000\u0000\r\u01e8\u0001\u0000\u0000\u0000\u000e\u01ea\u0001\u0000\u0000"+
+ "\u0000\u000e\u01ec\u0001\u0000\u0000\u0000\u000e\u01ee\u0001\u0000\u0000"+
+ "\u0000\u000e\u01f0\u0001\u0000\u0000\u0000\u000e\u01f2\u0001\u0000\u0000"+
+ "\u0000\u000e\u01f4\u0001\u0000\u0000\u0000\u000e\u01f6\u0001\u0000\u0000"+
+ "\u0000\u000e\u01f8\u0001\u0000\u0000\u0000\u000e\u01fa\u0001\u0000\u0000"+
+ "\u0000\u000e\u01fc\u0001\u0000\u0000\u0000\u000e\u0202\u0001\u0000\u0000"+
+ "\u0000\u000e\u0204\u0001\u0000\u0000\u0000\u000e\u0206\u0001\u0000\u0000"+
+ "\u0000\u000e\u0208\u0001\u0000\u0000\u0000\u000f\u020a\u0001\u0000\u0000"+
+ "\u0000\u000f\u020c\u0001\u0000\u0000\u0000\u000f\u020e\u0001\u0000\u0000"+
+ "\u0000\u000f\u0210\u0001\u0000\u0000\u0000\u000f\u0212\u0001\u0000\u0000"+
+ "\u0000\u000f\u0214\u0001\u0000\u0000\u0000\u000f\u0216\u0001\u0000\u0000"+
+ "\u0000\u000f\u0218\u0001\u0000\u0000\u0000\u000f\u021a\u0001\u0000\u0000"+
+ "\u0000\u000f\u021c\u0001\u0000\u0000\u0000\u000f\u021e\u0001\u0000\u0000"+
+ "\u0000\u000f\u0220\u0001\u0000\u0000\u0000\u000f\u0222\u0001\u0000\u0000"+
+ "\u0000\u000f\u0224\u0001\u0000\u0000\u0000\u000f\u0226\u0001\u0000\u0000"+
+ "\u0000\u000f\u0228\u0001\u0000\u0000\u0000\u0010\u022a\u0001\u0000\u0000"+
+ "\u0000\u0010\u022c\u0001\u0000\u0000\u0000\u0010\u022e\u0001\u0000\u0000"+
+ "\u0000\u0010\u0230\u0001\u0000\u0000\u0000\u0010\u0232\u0001\u0000\u0000"+
+ "\u0000\u0010\u0234\u0001\u0000\u0000\u0000\u0010\u0236\u0001\u0000\u0000"+
+ "\u0000\u0010\u0238\u0001\u0000\u0000\u0000\u0010\u023a\u0001\u0000\u0000"+
+ "\u0000\u0010\u023c\u0001\u0000\u0000\u0000\u0010\u023e\u0001\u0000\u0000"+
+ "\u0000\u0010\u0240\u0001\u0000\u0000\u0000\u0010\u0242\u0001\u0000\u0000"+
+ "\u0000\u0010\u0244\u0001\u0000\u0000\u0000\u0010\u0246\u0001\u0000\u0000"+
+ "\u0000\u0010\u0248\u0001\u0000\u0000\u0000\u0010\u024a\u0001\u0000\u0000"+
+ "\u0000\u0010\u024c\u0001\u0000\u0000\u0000\u0010\u024e\u0001\u0000\u0000"+
+ "\u0000\u0010\u0250\u0001\u0000\u0000\u0000\u0010\u0252\u0001\u0000\u0000"+
+ "\u0000\u0010\u0254\u0001\u0000\u0000\u0000\u0011\u0256\u0001\u0000\u0000"+
+ "\u0000\u0011\u0258\u0001\u0000\u0000\u0000\u0011\u025a\u0001\u0000\u0000"+
+ "\u0000\u0011\u025c\u0001\u0000\u0000\u0000\u0011\u025e\u0001\u0000\u0000"+
+ "\u0000\u0012\u0260\u0001\u0000\u0000\u0000\u0014\u0271\u0001\u0000\u0000"+
+ "\u0000\u0016\u0281\u0001\u0000\u0000\u0000\u0018\u0287\u0001\u0000\u0000"+
+ "\u0000\u001a\u0296\u0001\u0000\u0000\u0000\u001c\u029f\u0001\u0000\u0000"+
+ "\u0000\u001e\u02aa\u0001\u0000\u0000\u0000 \u02b7\u0001\u0000\u0000\u0000"+
+ "\"\u02c1\u0001\u0000\u0000\u0000$\u02c8\u0001\u0000\u0000\u0000&\u02cf"+
+ "\u0001\u0000\u0000\u0000(\u02d7\u0001\u0000\u0000\u0000*\u02e0\u0001\u0000"+
+ "\u0000\u0000,\u02e6\u0001\u0000\u0000\u0000.\u02ef\u0001\u0000\u0000\u0000"+
+ "0\u02f6\u0001\u0000\u0000\u00002\u02fe\u0001\u0000\u0000\u00004\u0306"+
+ "\u0001\u0000\u0000\u00006\u030d\u0001\u0000\u0000\u00008\u0312\u0001\u0000"+
+ "\u0000\u0000:\u0319\u0001\u0000\u0000\u0000<\u0320\u0001\u0000\u0000\u0000"+
+ ">\u0329\u0001\u0000\u0000\u0000@\u0337\u0001\u0000\u0000\u0000B\u0340"+
+ "\u0001\u0000\u0000\u0000D\u0348\u0001\u0000\u0000\u0000F\u0350\u0001\u0000"+
+ "\u0000\u0000H\u0359\u0001\u0000\u0000\u0000J\u0365\u0001\u0000\u0000\u0000"+
+ "L\u0371\u0001\u0000\u0000\u0000N\u0378\u0001\u0000\u0000\u0000P\u037f"+
+ "\u0001\u0000\u0000\u0000R\u038b\u0001\u0000\u0000\u0000T\u0394\u0001\u0000"+
+ "\u0000\u0000V\u039a\u0001\u0000\u0000\u0000X\u03a2\u0001\u0000\u0000\u0000"+
+ "Z\u03a8\u0001\u0000\u0000\u0000\\\u03ad\u0001\u0000\u0000\u0000^\u03b3"+
+ "\u0001\u0000\u0000\u0000`\u03b7\u0001\u0000\u0000\u0000b\u03bb\u0001\u0000"+
+ "\u0000\u0000d\u03bf\u0001\u0000\u0000\u0000f\u03c3\u0001\u0000\u0000\u0000"+
+ "h\u03c7\u0001\u0000\u0000\u0000j\u03cb\u0001\u0000\u0000\u0000l\u03cf"+
+ "\u0001\u0000\u0000\u0000n\u03d3\u0001\u0000\u0000\u0000p\u03d7\u0001\u0000"+
+ "\u0000\u0000r\u03db\u0001\u0000\u0000\u0000t\u03df\u0001\u0000\u0000\u0000"+
+ "v\u03e4\u0001\u0000\u0000\u0000x\u03ea\u0001\u0000\u0000\u0000z\u03ef"+
+ "\u0001\u0000\u0000\u0000|\u03f4\u0001\u0000\u0000\u0000~\u03fd\u0001\u0000"+
+ "\u0000\u0000\u0080\u0404\u0001\u0000\u0000\u0000\u0082\u0408\u0001\u0000"+
+ "\u0000\u0000\u0084\u040c\u0001\u0000\u0000\u0000\u0086\u0410\u0001\u0000"+
+ "\u0000\u0000\u0088\u0414\u0001\u0000\u0000\u0000\u008a\u0418\u0001\u0000"+
+ "\u0000\u0000\u008c\u041e\u0001\u0000\u0000\u0000\u008e\u0425\u0001\u0000"+
+ "\u0000\u0000\u0090\u0429\u0001\u0000\u0000\u0000\u0092\u042d\u0001\u0000"+
+ "\u0000\u0000\u0094\u0431\u0001\u0000\u0000\u0000\u0096\u0435\u0001\u0000"+
+ "\u0000\u0000\u0098\u0439\u0001\u0000\u0000\u0000\u009a\u043d\u0001\u0000"+
+ "\u0000\u0000\u009c\u0441\u0001\u0000\u0000\u0000\u009e\u0445\u0001\u0000"+
+ "\u0000\u0000\u00a0\u0449\u0001\u0000\u0000\u0000\u00a2\u044d\u0001\u0000"+
+ "\u0000\u0000\u00a4\u0451\u0001\u0000\u0000\u0000\u00a6\u0455\u0001\u0000"+
+ "\u0000\u0000\u00a8\u0459\u0001\u0000\u0000\u0000\u00aa\u045d\u0001\u0000"+
+ "\u0000\u0000\u00ac\u0461\u0001\u0000\u0000\u0000\u00ae\u0466\u0001\u0000"+
+ "\u0000\u0000\u00b0\u046b\u0001\u0000\u0000\u0000\u00b2\u046f\u0001\u0000"+
+ "\u0000\u0000\u00b4\u0473\u0001\u0000\u0000\u0000\u00b6\u0477\u0001\u0000"+
+ "\u0000\u0000\u00b8\u047b\u0001\u0000\u0000\u0000\u00ba\u047d\u0001\u0000"+
+ "\u0000\u0000\u00bc\u047f\u0001\u0000\u0000\u0000\u00be\u0482\u0001\u0000"+
+ "\u0000\u0000\u00c0\u0484\u0001\u0000\u0000\u0000\u00c2\u048d\u0001\u0000"+
+ "\u0000\u0000\u00c4\u048f\u0001\u0000\u0000\u0000\u00c6\u0494\u0001\u0000"+
+ "\u0000\u0000\u00c8\u0496\u0001\u0000\u0000\u0000\u00ca\u049b\u0001\u0000"+
+ "\u0000\u0000\u00cc\u04ba\u0001\u0000\u0000\u0000\u00ce\u04bd\u0001\u0000"+
+ "\u0000\u0000\u00d0\u04eb\u0001\u0000\u0000\u0000\u00d2\u04ed\u0001\u0000"+
+ "\u0000\u0000\u00d4\u04f1\u0001\u0000\u0000\u0000\u00d6\u04f5\u0001\u0000"+
+ "\u0000\u0000\u00d8\u04f7\u0001\u0000\u0000\u0000\u00da\u04fa\u0001\u0000"+
+ "\u0000\u0000\u00dc\u04fd\u0001\u0000\u0000\u0000\u00de\u04ff\u0001\u0000"+
+ "\u0000\u0000\u00e0\u0501\u0001\u0000\u0000\u0000\u00e2\u0503\u0001\u0000"+
+ "\u0000\u0000\u00e4\u0508\u0001\u0000\u0000\u0000\u00e6\u050a\u0001\u0000"+
+ "\u0000\u0000\u00e8\u0510\u0001\u0000\u0000\u0000\u00ea\u0516\u0001\u0000"+
+ "\u0000\u0000\u00ec\u0519\u0001\u0000\u0000\u0000\u00ee\u051c\u0001\u0000"+
+ "\u0000\u0000\u00f0\u0521\u0001\u0000\u0000\u0000\u00f2\u0526\u0001\u0000"+
+ "\u0000\u0000\u00f4\u052a\u0001\u0000\u0000\u0000\u00f6\u052f\u0001\u0000"+
+ "\u0000\u0000\u00f8\u0535\u0001\u0000\u0000\u0000\u00fa\u0538\u0001\u0000"+
+ "\u0000\u0000\u00fc\u053b\u0001\u0000\u0000\u0000\u00fe\u053d\u0001\u0000"+
+ "\u0000\u0000\u0100\u0543\u0001\u0000\u0000\u0000\u0102\u0548\u0001\u0000"+
+ "\u0000\u0000\u0104\u054d\u0001\u0000\u0000\u0000\u0106\u0550\u0001\u0000"+
+ "\u0000\u0000\u0108\u0553\u0001\u0000\u0000\u0000\u010a\u0556\u0001\u0000"+
+ "\u0000\u0000\u010c\u0558\u0001\u0000\u0000\u0000\u010e\u055b\u0001\u0000"+
+ "\u0000\u0000\u0110\u055d\u0001\u0000\u0000\u0000\u0112\u0560\u0001\u0000"+
+ "\u0000\u0000\u0114\u0562\u0001\u0000\u0000\u0000\u0116\u0564\u0001\u0000"+
+ "\u0000\u0000\u0118\u0566\u0001\u0000\u0000\u0000\u011a\u0568\u0001\u0000"+
+ "\u0000\u0000\u011c\u056a\u0001\u0000\u0000\u0000\u011e\u056c\u0001\u0000"+
+ "\u0000\u0000\u0120\u056e\u0001\u0000\u0000\u0000\u0122\u0571\u0001\u0000"+
+ "\u0000\u0000\u0124\u0586\u0001\u0000\u0000\u0000\u0126\u0599\u0001\u0000"+
+ "\u0000\u0000\u0128\u059b\u0001\u0000\u0000\u0000\u012a\u05a0\u0001\u0000"+
+ "\u0000\u0000\u012c\u05a5\u0001\u0000\u0000\u0000\u012e\u05aa\u0001\u0000"+
+ "\u0000\u0000\u0130\u05bf\u0001\u0000\u0000\u0000\u0132\u05c1\u0001\u0000"+
+ "\u0000\u0000\u0134\u05c9\u0001\u0000\u0000\u0000\u0136\u05cb\u0001\u0000"+
+ "\u0000\u0000\u0138\u05cf\u0001\u0000\u0000\u0000\u013a\u05d3\u0001\u0000"+
+ "\u0000\u0000\u013c\u05d7\u0001\u0000\u0000\u0000\u013e\u05dc\u0001\u0000"+
+ "\u0000\u0000\u0140\u05e0\u0001\u0000\u0000\u0000\u0142\u05e4\u0001\u0000"+
+ "\u0000\u0000\u0144\u05e8\u0001\u0000\u0000\u0000\u0146\u05ec\u0001\u0000"+
+ "\u0000\u0000\u0148\u05f5\u0001\u0000\u0000\u0000\u014a\u05fb\u0001\u0000"+
+ "\u0000\u0000\u014c\u0603\u0001\u0000\u0000\u0000\u014e\u0606\u0001\u0000"+
+ "\u0000\u0000\u0150\u060a\u0001\u0000\u0000\u0000\u0152\u060e\u0001\u0000"+
+ "\u0000\u0000\u0154\u0612\u0001\u0000\u0000\u0000\u0156\u0616\u0001\u0000"+
+ "\u0000\u0000\u0158\u061a\u0001\u0000\u0000\u0000\u015a\u061e\u0001\u0000"+
+ "\u0000\u0000\u015c\u0623\u0001\u0000\u0000\u0000\u015e\u0629\u0001\u0000"+
+ "\u0000\u0000\u0160\u062e\u0001\u0000\u0000\u0000\u0162\u0632\u0001\u0000"+
+ "\u0000\u0000\u0164\u0636\u0001\u0000\u0000\u0000\u0166\u063a\u0001\u0000"+
+ "\u0000\u0000\u0168\u063f\u0001\u0000\u0000\u0000\u016a\u0645\u0001\u0000"+
+ "\u0000\u0000\u016c\u064b\u0001\u0000\u0000\u0000\u016e\u0651\u0001\u0000"+
+ "\u0000\u0000\u0170\u0655\u0001\u0000\u0000\u0000\u0172\u065b\u0001\u0000"+
+ "\u0000\u0000\u0174\u065f\u0001\u0000\u0000\u0000\u0176\u0663\u0001\u0000"+
+ "\u0000\u0000\u0178\u0667\u0001\u0000\u0000\u0000\u017a\u066b\u0001\u0000"+
+ "\u0000\u0000\u017c\u066f\u0001\u0000\u0000\u0000\u017e\u0673\u0001\u0000"+
+ "\u0000\u0000\u0180\u0677\u0001\u0000\u0000\u0000\u0182\u067b\u0001\u0000"+
+ "\u0000\u0000\u0184\u067f\u0001\u0000\u0000\u0000\u0186\u0683\u0001\u0000"+
+ "\u0000\u0000\u0188\u0687\u0001\u0000\u0000\u0000\u018a\u068b\u0001\u0000"+
+ "\u0000\u0000\u018c\u0694\u0001\u0000\u0000\u0000\u018e\u0698\u0001\u0000"+
+ "\u0000\u0000\u0190\u069c\u0001\u0000\u0000\u0000\u0192\u06a0\u0001\u0000"+
+ "\u0000\u0000\u0194\u06a5\u0001\u0000\u0000\u0000\u0196\u06aa\u0001\u0000"+
+ "\u0000\u0000\u0198\u06ae\u0001\u0000\u0000\u0000\u019a\u06b4\u0001\u0000"+
+ "\u0000\u0000\u019c\u06bd\u0001\u0000\u0000\u0000\u019e\u06c1\u0001\u0000"+
+ "\u0000\u0000\u01a0\u06c5\u0001\u0000\u0000\u0000\u01a2\u06c9\u0001\u0000"+
+ "\u0000\u0000\u01a4\u06cd\u0001\u0000\u0000\u0000\u01a6\u06d1\u0001\u0000"+
+ "\u0000\u0000\u01a8\u06d5\u0001\u0000\u0000\u0000\u01aa\u06da\u0001\u0000"+
+ "\u0000\u0000\u01ac\u06e0\u0001\u0000\u0000\u0000\u01ae\u06e4\u0001\u0000"+
+ "\u0000\u0000\u01b0\u06e8\u0001\u0000\u0000\u0000\u01b2\u06ec\u0001\u0000"+
+ "\u0000\u0000\u01b4\u06f1\u0001\u0000\u0000\u0000\u01b6\u06f5\u0001\u0000"+
+ "\u0000\u0000\u01b8\u06f9\u0001\u0000\u0000\u0000\u01ba\u06fd\u0001\u0000"+
+ "\u0000\u0000\u01bc\u0701\u0001\u0000\u0000\u0000\u01be\u0705\u0001\u0000"+
+ "\u0000\u0000\u01c0\u070b\u0001\u0000\u0000\u0000\u01c2\u0712\u0001\u0000"+
+ "\u0000\u0000\u01c4\u0716\u0001\u0000\u0000\u0000\u01c6\u071a\u0001\u0000"+
+ "\u0000\u0000\u01c8\u071e\u0001\u0000\u0000\u0000\u01ca\u0722\u0001\u0000"+
+ "\u0000\u0000\u01cc\u0726\u0001\u0000\u0000\u0000\u01ce\u072a\u0001\u0000"+
+ "\u0000\u0000\u01d0\u072f\u0001\u0000\u0000\u0000\u01d2\u0735\u0001\u0000"+
+ "\u0000\u0000\u01d4\u0739\u0001\u0000\u0000\u0000\u01d6\u073d\u0001\u0000"+
+ "\u0000\u0000\u01d8\u0741\u0001\u0000\u0000\u0000\u01da\u0745\u0001\u0000"+
+ "\u0000\u0000\u01dc\u0749\u0001\u0000\u0000\u0000\u01de\u074d\u0001\u0000"+
+ "\u0000\u0000\u01e0\u0751\u0001\u0000\u0000\u0000\u01e2\u0755\u0001\u0000"+
+ "\u0000\u0000\u01e4\u0759\u0001\u0000\u0000\u0000\u01e6\u075d\u0001\u0000"+
+ "\u0000\u0000\u01e8\u0761\u0001\u0000\u0000\u0000\u01ea\u0765\u0001\u0000"+
+ "\u0000\u0000\u01ec\u076a\u0001\u0000\u0000\u0000\u01ee\u0770\u0001\u0000"+
+ "\u0000\u0000\u01f0\u0774\u0001\u0000\u0000\u0000\u01f2\u0778\u0001\u0000"+
+ "\u0000\u0000\u01f4\u077c\u0001\u0000\u0000\u0000\u01f6\u0780\u0001\u0000"+
+ "\u0000\u0000\u01f8\u0784\u0001\u0000\u0000\u0000\u01fa\u0788\u0001\u0000"+
+ "\u0000\u0000\u01fc\u078c\u0001\u0000\u0000\u0000\u01fe\u0794\u0001\u0000"+
+ "\u0000\u0000\u0200\u07a9\u0001\u0000\u0000\u0000\u0202\u07ad\u0001\u0000"+
+ "\u0000\u0000\u0204\u07b1\u0001\u0000\u0000\u0000\u0206\u07b5\u0001\u0000"+
+ "\u0000\u0000\u0208\u07b9\u0001\u0000\u0000\u0000\u020a\u07bd\u0001\u0000"+
+ "\u0000\u0000\u020c\u07c2\u0001\u0000\u0000\u0000\u020e\u07c8\u0001\u0000"+
+ "\u0000\u0000\u0210\u07cc\u0001\u0000\u0000\u0000\u0212\u07d0\u0001\u0000"+
+ "\u0000\u0000\u0214\u07d4\u0001\u0000\u0000\u0000\u0216\u07d8\u0001\u0000"+
+ "\u0000\u0000\u0218\u07dc\u0001\u0000\u0000\u0000\u021a\u07e0\u0001\u0000"+
+ "\u0000\u0000\u021c\u07e4\u0001\u0000\u0000\u0000\u021e\u07e8\u0001\u0000"+
+ "\u0000\u0000\u0220\u07ec\u0001\u0000\u0000\u0000\u0222\u07ef\u0001\u0000"+
+ "\u0000\u0000\u0224\u07f3\u0001\u0000\u0000\u0000\u0226\u07f7\u0001\u0000"+
+ "\u0000\u0000\u0228\u07fb\u0001\u0000\u0000\u0000\u022a\u07ff\u0001\u0000"+
+ "\u0000\u0000\u022c\u0803\u0001\u0000\u0000\u0000\u022e\u0807\u0001\u0000"+
+ "\u0000\u0000\u0230\u080b\u0001\u0000\u0000\u0000\u0232\u0810\u0001\u0000"+
+ "\u0000\u0000\u0234\u0814\u0001\u0000\u0000\u0000\u0236\u0818\u0001\u0000"+
+ "\u0000\u0000\u0238\u081c\u0001\u0000\u0000\u0000\u023a\u0820\u0001\u0000"+
+ "\u0000\u0000\u023c\u0824\u0001\u0000\u0000\u0000\u023e\u0828\u0001\u0000"+
+ "\u0000\u0000\u0240\u082c\u0001\u0000\u0000\u0000\u0242\u0830\u0001\u0000"+
+ "\u0000\u0000\u0244\u0834\u0001\u0000\u0000\u0000\u0246\u0838\u0001\u0000"+
+ "\u0000\u0000\u0248\u083c\u0001\u0000\u0000\u0000\u024a\u0840\u0001\u0000"+
+ "\u0000\u0000\u024c\u0844\u0001\u0000\u0000\u0000\u024e\u0848\u0001\u0000"+
+ "\u0000\u0000\u0250\u084c\u0001\u0000\u0000\u0000\u0252\u0850\u0001\u0000"+
+ "\u0000\u0000\u0254\u0854\u0001\u0000\u0000\u0000\u0256\u0858\u0001\u0000"+
+ "\u0000\u0000\u0258\u085d\u0001\u0000\u0000\u0000\u025a\u0862\u0001\u0000"+
+ "\u0000\u0000\u025c\u0866\u0001\u0000\u0000\u0000\u025e\u086a\u0001\u0000"+
+ "\u0000\u0000\u0260\u0261\u0005/\u0000\u0000\u0261\u0262\u0005/\u0000\u0000"+
+ "\u0262\u0266\u0001\u0000\u0000\u0000\u0263\u0265\b\u0000\u0000\u0000\u0264"+
+ "\u0263\u0001\u0000\u0000\u0000\u0265\u0268\u0001\u0000\u0000\u0000\u0266"+
+ "\u0264\u0001\u0000\u0000\u0000\u0266\u0267\u0001\u0000\u0000\u0000\u0267"+
+ "\u026a\u0001\u0000\u0000\u0000\u0268\u0266\u0001\u0000\u0000\u0000\u0269"+
+ "\u026b\u0005\r\u0000\u0000\u026a\u0269\u0001\u0000\u0000\u0000\u026a\u026b"+
+ "\u0001\u0000\u0000\u0000\u026b\u026d\u0001\u0000\u0000\u0000\u026c\u026e"+
+ "\u0005\n\u0000\u0000\u026d\u026c\u0001\u0000\u0000\u0000\u026d\u026e\u0001"+
+ "\u0000\u0000\u0000\u026e\u026f\u0001\u0000\u0000\u0000\u026f\u0270\u0006"+
+ "\u0000\u0000\u0000\u0270\u0013\u0001\u0000\u0000\u0000\u0271\u0272\u0005"+
+ "/\u0000\u0000\u0272\u0273\u0005*\u0000\u0000\u0273\u0278\u0001\u0000\u0000"+
+ "\u0000\u0274\u0277\u0003\u0014\u0001\u0000\u0275\u0277\t\u0000\u0000\u0000"+
+ "\u0276\u0274\u0001\u0000\u0000\u0000\u0276\u0275\u0001\u0000\u0000\u0000"+
+ "\u0277\u027a\u0001\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000\u0000"+
+ "\u0278\u0276\u0001\u0000\u0000\u0000\u0279\u027b\u0001\u0000\u0000\u0000"+
+ "\u027a\u0278\u0001\u0000\u0000\u0000\u027b\u027c\u0005*\u0000\u0000\u027c"+
+ "\u027d\u0005/\u0000\u0000\u027d\u027e\u0001\u0000\u0000\u0000\u027e\u027f"+
+ "\u0006\u0001\u0000\u0000\u027f\u0015\u0001\u0000\u0000\u0000\u0280\u0282"+
+ "\u0007\u0001\u0000\u0000\u0281\u0280\u0001\u0000\u0000\u0000\u0282\u0283"+
+ "\u0001\u0000\u0000\u0000\u0283\u0281\u0001\u0000\u0000\u0000\u0283\u0284"+
+ "\u0001\u0000\u0000\u0000\u0284\u0285\u0001\u0000\u0000\u0000\u0285\u0286"+
+ "\u0006\u0002\u0000\u0000\u0286\u0017\u0001\u0000\u0000\u0000\u0287\u0288"+
+ "\u0007\u0002\u0000\u0000\u0288\u0289\u0007\u0003\u0000\u0000\u0289\u028a"+
+ "\u0007\u0004\u0000\u0000\u028a\u028b\u0007\u0005\u0000\u0000\u028b\u028c"+
+ "\u0007\u0006\u0000\u0000\u028c\u028d\u0007\u0007\u0000\u0000\u028d\u028e"+
+ "\u0005_\u0000\u0000\u028e\u028f\u0007\b\u0000\u0000\u028f\u0290\u0007"+
+ "\t\u0000\u0000\u0290\u0291\u0007\n\u0000\u0000\u0291\u0292\u0007\u0005"+
+ "\u0000\u0000\u0292\u0293\u0007\u000b\u0000\u0000\u0293\u0294\u0001\u0000"+
+ "\u0000\u0000\u0294\u0295\u0006\u0003\u0001\u0000\u0295\u0019\u0001\u0000"+
+ "\u0000\u0000\u0296\u0297\u0007\u0007\u0000\u0000\u0297\u0298\u0007\u0005"+
+ "\u0000\u0000\u0298\u0299\u0007\f\u0000\u0000\u0299\u029a\u0007\n\u0000"+
+ "\u0000\u029a\u029b\u0007\u0002\u0000\u0000\u029b\u029c\u0007\u0003\u0000"+
+ "\u0000\u029c\u029d\u0001\u0000\u0000\u0000\u029d\u029e\u0006\u0004\u0002"+
+ "\u0000\u029e\u001b\u0001\u0000\u0000\u0000\u029f\u02a0\u0004\u0005\u0000"+
+ "\u0000\u02a0\u02a1\u0007\u0007\u0000\u0000\u02a1\u02a2\u0007\r\u0000\u0000"+
+ "\u02a2\u02a3\u0007\b\u0000\u0000\u02a3\u02a4\u0007\u000e\u0000\u0000\u02a4"+
+ "\u02a5\u0007\u0004\u0000\u0000\u02a5\u02a6\u0007\n\u0000\u0000\u02a6\u02a7"+
+ "\u0007\u0005\u0000\u0000\u02a7\u02a8\u0001\u0000\u0000\u0000\u02a8\u02a9"+
+ "\u0006\u0005\u0003\u0000\u02a9\u001d\u0001\u0000\u0000\u0000\u02aa\u02ab"+
+ "\u0007\u0002\u0000\u0000\u02ab\u02ac\u0007\t\u0000\u0000\u02ac\u02ad\u0007"+
+ "\u000f\u0000\u0000\u02ad\u02ae\u0007\b\u0000\u0000\u02ae\u02af\u0007\u000e"+
+ "\u0000\u0000\u02af\u02b0\u0007\u0007\u0000\u0000\u02b0\u02b1\u0007\u000b"+
+ "\u0000\u0000\u02b1\u02b2\u0007\n\u0000\u0000\u02b2\u02b3\u0007\t\u0000"+
+ "\u0000\u02b3\u02b4\u0007\u0005\u0000\u0000\u02b4\u02b5\u0001\u0000\u0000"+
+ "\u0000\u02b5\u02b6\u0006\u0006\u0004\u0000\u02b6\u001f\u0001\u0000\u0000"+
+ "\u0000\u02b7\u02b8\u0007\u0010\u0000\u0000\u02b8\u02b9\u0007\n\u0000\u0000"+
+ "\u02b9\u02ba\u0007\u0011\u0000\u0000\u02ba\u02bb\u0007\u0011\u0000\u0000"+
+ "\u02bb\u02bc\u0007\u0007\u0000\u0000\u02bc\u02bd\u0007\u0002\u0000\u0000"+
+ "\u02bd\u02be\u0007\u000b\u0000\u0000\u02be\u02bf\u0001\u0000\u0000\u0000"+
+ "\u02bf\u02c0\u0006\u0007\u0004\u0000\u02c0!\u0001\u0000\u0000\u0000\u02c1"+
+ "\u02c2\u0007\u0007\u0000\u0000\u02c2\u02c3\u0007\u0012\u0000\u0000\u02c3"+
+ "\u02c4\u0007\u0004\u0000\u0000\u02c4\u02c5\u0007\u000e\u0000\u0000\u02c5"+
+ "\u02c6\u0001\u0000\u0000\u0000\u02c6\u02c7\u0006\b\u0004\u0000\u02c7#"+
+ "\u0001\u0000\u0000\u0000\u02c8\u02c9\u0007\u0006\u0000\u0000\u02c9\u02ca"+
+ "\u0007\f\u0000\u0000\u02ca\u02cb\u0007\t\u0000\u0000\u02cb\u02cc\u0007"+
+ "\u0013\u0000\u0000\u02cc\u02cd\u0001\u0000\u0000\u0000\u02cd\u02ce\u0006"+
+ "\t\u0004\u0000\u02ce%\u0001\u0000\u0000\u0000\u02cf\u02d0\u0007\u000e"+
+ "\u0000\u0000\u02d0\u02d1\u0007\n\u0000\u0000\u02d1\u02d2\u0007\u000f\u0000"+
+ "\u0000\u02d2\u02d3\u0007\n\u0000\u0000\u02d3\u02d4\u0007\u000b\u0000\u0000"+
+ "\u02d4\u02d5\u0001\u0000\u0000\u0000\u02d5\u02d6\u0006\n\u0004\u0000\u02d6"+
+ "\'\u0001\u0000\u0000\u0000\u02d7\u02d8\u0007\f\u0000\u0000\u02d8\u02d9"+
+ "\u0007\u0007\u0000\u0000\u02d9\u02da\u0007\f\u0000\u0000\u02da\u02db\u0007"+
+ "\u0004\u0000\u0000\u02db\u02dc\u0007\u0005\u0000\u0000\u02dc\u02dd\u0007"+
+ "\u0013\u0000\u0000\u02dd\u02de\u0001\u0000\u0000\u0000\u02de\u02df\u0006"+
+ "\u000b\u0004\u0000\u02df)\u0001\u0000\u0000\u0000\u02e0\u02e1\u0007\f"+
+ "\u0000\u0000\u02e1\u02e2\u0007\t\u0000\u0000\u02e2\u02e3\u0007\u0014\u0000"+
+ "\u0000\u02e3\u02e4\u0001\u0000\u0000\u0000\u02e4\u02e5\u0006\f\u0004\u0000"+
+ "\u02e5+\u0001\u0000\u0000\u0000\u02e6\u02e7\u0007\u0011\u0000\u0000\u02e7"+
+ "\u02e8\u0007\u0004\u0000\u0000\u02e8\u02e9\u0007\u000f\u0000\u0000\u02e9"+
+ "\u02ea\u0007\b\u0000\u0000\u02ea\u02eb\u0007\u000e\u0000\u0000\u02eb\u02ec"+
+ "\u0007\u0007\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000\u0000\u02ed\u02ee"+
+ "\u0006\r\u0004\u0000\u02ee-\u0001\u0000\u0000\u0000\u02ef\u02f0\u0007"+
+ "\u0011\u0000\u0000\u02f0\u02f1\u0007\t\u0000\u0000\u02f1\u02f2\u0007\f"+
+ "\u0000\u0000\u02f2\u02f3\u0007\u000b\u0000\u0000\u02f3\u02f4\u0001\u0000"+
+ "\u0000\u0000\u02f4\u02f5\u0006\u000e\u0004\u0000\u02f5/\u0001\u0000\u0000"+
+ "\u0000\u02f6\u02f7\u0007\u0011\u0000\u0000\u02f7\u02f8\u0007\u000b\u0000"+
+ "\u0000\u02f8\u02f9\u0007\u0004\u0000\u0000\u02f9\u02fa\u0007\u000b\u0000"+
+ "\u0000\u02fa\u02fb\u0007\u0011\u0000\u0000\u02fb\u02fc\u0001\u0000\u0000"+
+ "\u0000\u02fc\u02fd\u0006\u000f\u0004\u0000\u02fd1\u0001\u0000\u0000\u0000"+
+ "\u02fe\u02ff\u0007\u0014\u0000\u0000\u02ff\u0300\u0007\u0003\u0000\u0000"+
+ "\u0300\u0301\u0007\u0007\u0000\u0000\u0301\u0302\u0007\f\u0000\u0000\u0302"+
+ "\u0303\u0007\u0007\u0000\u0000\u0303\u0304\u0001\u0000\u0000\u0000\u0304"+
+ "\u0305\u0006\u0010\u0004\u0000\u03053\u0001\u0000\u0000\u0000\u0306\u0307"+
+ "\u0007\u0015\u0000\u0000\u0307\u0308\u0007\f\u0000\u0000\u0308\u0309\u0007"+
+ "\t\u0000\u0000\u0309\u030a\u0007\u000f\u0000\u0000\u030a\u030b\u0001\u0000"+
+ "\u0000\u0000\u030b\u030c\u0006\u0011\u0005\u0000\u030c5\u0001\u0000\u0000"+
+ "\u0000\u030d\u030e\u0007\u000b\u0000\u0000\u030e\u030f\u0007\u0011\u0000"+
+ "\u0000\u030f\u0310\u0001\u0000\u0000\u0000\u0310\u0311\u0006\u0012\u0005"+
+ "\u0000\u03117\u0001\u0000\u0000\u0000\u0312\u0313\u0007\u0015\u0000\u0000"+
+ "\u0313\u0314\u0007\t\u0000\u0000\u0314\u0315\u0007\f\u0000\u0000\u0315"+
+ "\u0316\u0007\u0013\u0000\u0000\u0316\u0317\u0001\u0000\u0000\u0000\u0317"+
+ "\u0318\u0006\u0013\u0006\u0000\u03189\u0001\u0000\u0000\u0000\u0319\u031a"+
+ "\u0007\u0015\u0000\u0000\u031a\u031b\u0007\u0016\u0000\u0000\u031b\u031c"+
+ "\u0007\u0011\u0000\u0000\u031c\u031d\u0007\u0007\u0000\u0000\u031d\u031e"+
+ "\u0001\u0000\u0000\u0000\u031e\u031f\u0006\u0014\u0007\u0000\u031f;\u0001"+
+ "\u0000\u0000\u0000\u0320\u0321\u0007\n\u0000\u0000\u0321\u0322\u0007\u0005"+
+ "\u0000\u0000\u0322\u0323\u0007\u000e\u0000\u0000\u0323\u0324\u0007\n\u0000"+
+ "\u0000\u0324\u0325\u0007\u0005\u0000\u0000\u0325\u0326\u0007\u0007\u0000"+
+ "\u0000\u0326\u0327\u0001\u0000\u0000\u0000\u0327\u0328\u0006\u0015\b\u0000"+
+ "\u0328=\u0001\u0000\u0000\u0000\u0329\u032a\u0007\n\u0000\u0000\u032a"+
+ "\u032b\u0007\u0005\u0000\u0000\u032b\u032c\u0007\u000e\u0000\u0000\u032c"+
+ "\u032d\u0007\n\u0000\u0000\u032d\u032e\u0007\u0005\u0000\u0000\u032e\u032f"+
+ "\u0007\u0007\u0000\u0000\u032f\u0330\u0007\u0011\u0000\u0000\u0330\u0331"+
+ "\u0007\u000b\u0000\u0000\u0331\u0332\u0007\u0004\u0000\u0000\u0332\u0333"+
+ "\u0007\u000b\u0000\u0000\u0333\u0334\u0007\u0011\u0000\u0000\u0334\u0335"+
+ "\u0001\u0000\u0000\u0000\u0335\u0336\u0006\u0016\u0004\u0000\u0336?\u0001"+
+ "\u0000\u0000\u0000\u0337\u0338\u0007\u000e\u0000\u0000\u0338\u0339\u0007"+
+ "\t\u0000\u0000\u0339\u033a\u0007\t\u0000\u0000\u033a\u033b\u0007\u0013"+
+ "\u0000\u0000\u033b\u033c\u0007\u0016\u0000\u0000\u033c\u033d\u0007\b\u0000"+
+ "\u0000\u033d\u033e\u0001\u0000\u0000\u0000\u033e\u033f\u0006\u0017\t\u0000"+
+ "\u033fA\u0001\u0000\u0000\u0000\u0340\u0341\u0004\u0018\u0001\u0000\u0341"+
+ "\u0342\u0007\u0015\u0000\u0000\u0342\u0343\u0007\u0016\u0000\u0000\u0343"+
+ "\u0344\u0007\u000e\u0000\u0000\u0344\u0345\u0007\u000e\u0000\u0000\u0345"+
+ "\u0346\u0001\u0000\u0000\u0000\u0346\u0347\u0006\u0018\t\u0000\u0347C"+
+ "\u0001\u0000\u0000\u0000\u0348\u0349\u0004\u0019\u0002\u0000\u0349\u034a"+
+ "\u0007\u000e\u0000\u0000\u034a\u034b\u0007\u0007\u0000\u0000\u034b\u034c"+
+ "\u0007\u0015\u0000\u0000\u034c\u034d\u0007\u000b\u0000\u0000\u034d\u034e"+
+ "\u0001\u0000\u0000\u0000\u034e\u034f\u0006\u0019\t\u0000\u034fE\u0001"+
+ "\u0000\u0000\u0000\u0350\u0351\u0004\u001a\u0003\u0000\u0351\u0352\u0007"+
+ "\f\u0000\u0000\u0352\u0353\u0007\n\u0000\u0000\u0353\u0354\u0007\u0006"+
+ "\u0000\u0000\u0354\u0355\u0007\u0003\u0000\u0000\u0355\u0356\u0007\u000b"+
+ "\u0000\u0000\u0356\u0357\u0001\u0000\u0000\u0000\u0357\u0358\u0006\u001a"+
+ "\t\u0000\u0358G\u0001\u0000\u0000\u0000\u0359\u035a\u0004\u001b\u0004"+
+ "\u0000\u035a\u035b\u0007\u000e\u0000\u0000\u035b\u035c\u0007\t\u0000\u0000"+
+ "\u035c\u035d\u0007\t\u0000\u0000\u035d\u035e\u0007\u0013\u0000\u0000\u035e"+
+ "\u035f\u0007\u0016\u0000\u0000\u035f\u0360\u0007\b\u0000\u0000\u0360\u0361"+
+ "\u0005_\u0000\u0000\u0361\u0362\u0005\u8001\uf414\u0000\u0000\u0362\u0363"+
+ "\u0001\u0000\u0000\u0000\u0363\u0364\u0006\u001b\n\u0000\u0364I\u0001"+
+ "\u0000\u0000\u0000\u0365\u0366\u0007\u000f\u0000\u0000\u0366\u0367\u0007"+
+ "\u0012\u0000\u0000\u0367\u0368\u0005_\u0000\u0000\u0368\u0369\u0007\u0007"+
+ "\u0000\u0000\u0369\u036a\u0007\r\u0000\u0000\u036a\u036b\u0007\b\u0000"+
+ "\u0000\u036b\u036c\u0007\u0004\u0000\u0000\u036c\u036d\u0007\u0005\u0000"+
+ "\u0000\u036d\u036e\u0007\u0010\u0000\u0000\u036e\u036f\u0001\u0000\u0000"+
+ "\u0000\u036f\u0370\u0006\u001c\u000b\u0000\u0370K\u0001\u0000\u0000\u0000"+
+ "\u0371\u0372\u0007\u0010\u0000\u0000\u0372\u0373\u0007\f\u0000\u0000\u0373"+
+ "\u0374\u0007\t\u0000\u0000\u0374\u0375\u0007\b\u0000\u0000\u0375\u0376"+
+ "\u0001\u0000\u0000\u0000\u0376\u0377\u0006\u001d\f\u0000\u0377M\u0001"+
+ "\u0000\u0000\u0000\u0378\u0379\u0007\u0013\u0000\u0000\u0379\u037a\u0007"+
+ "\u0007\u0000\u0000\u037a\u037b\u0007\u0007\u0000\u0000\u037b\u037c\u0007"+
+ "\b\u0000\u0000\u037c\u037d\u0001\u0000\u0000\u0000\u037d\u037e\u0006\u001e"+
+ "\f\u0000\u037eO\u0001\u0000\u0000\u0000\u037f\u0380\u0004\u001f\u0005"+
+ "\u0000\u0380\u0381\u0007\n\u0000\u0000\u0381\u0382\u0007\u0005\u0000\u0000"+
+ "\u0382\u0383\u0007\u0011\u0000\u0000\u0383\u0384\u0007\n\u0000\u0000\u0384"+
+ "\u0385\u0007\u0011\u0000\u0000\u0385\u0386\u0007\u000b\u0000\u0000\u0386"+
+ "\u0387\u0005_\u0000\u0000\u0387\u0388\u0005\u8001\uf414\u0000\u0000\u0388"+
+ "\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u0006\u001f\f\u0000\u038aQ"+
+ "\u0001\u0000\u0000\u0000\u038b\u038c\u0007\f\u0000\u0000\u038c\u038d\u0007"+
+ "\u0007\u0000\u0000\u038d\u038e\u0007\u0005\u0000\u0000\u038e\u038f\u0007"+
+ "\u0004\u0000\u0000\u038f\u0390\u0007\u000f\u0000\u0000\u0390\u0391\u0007"+
+ "\u0007\u0000\u0000\u0391\u0392\u0001\u0000\u0000\u0000\u0392\u0393\u0006"+
+ " \r\u0000\u0393S\u0001\u0000\u0000\u0000\u0394\u0395\u0007\u0011\u0000"+
+ "\u0000\u0395\u0396\u0007\u0007\u0000\u0000\u0396\u0397\u0007\u000b\u0000"+
+ "\u0000\u0397\u0398\u0001\u0000\u0000\u0000\u0398\u0399\u0006!\u000e\u0000"+
+ "\u0399U\u0001\u0000\u0000\u0000\u039a\u039b\u0007\u0011\u0000\u0000\u039b"+
+ "\u039c\u0007\u0003\u0000\u0000\u039c\u039d\u0007\t\u0000\u0000\u039d\u039e"+
+ "\u0007\u0014\u0000\u0000\u039e\u039f\u0001\u0000\u0000\u0000\u039f\u03a0"+
+ "\u0006\"\u000f\u0000\u03a0W\u0001\u0000\u0000\u0000\u03a1\u03a3\b\u0017"+
+ "\u0000\u0000\u03a2\u03a1\u0001\u0000\u0000\u0000\u03a3\u03a4\u0001\u0000"+
+ "\u0000\u0000\u03a4\u03a2\u0001\u0000\u0000\u0000\u03a4\u03a5\u0001\u0000"+
+ "\u0000\u0000\u03a5\u03a6\u0001\u0000\u0000\u0000\u03a6\u03a7\u0006#\u0004"+
+ "\u0000\u03a7Y\u0001\u0000\u0000\u0000\u03a8\u03a9\u0003\u00b6R\u0000\u03a9"+
+ "\u03aa\u0001\u0000\u0000\u0000\u03aa\u03ab\u0006$\u0010\u0000\u03ab\u03ac"+
+ "\u0006$\u0011\u0000\u03ac[\u0001\u0000\u0000\u0000\u03ad\u03ae\u0003\u012e"+
+ "\u008e\u0000\u03ae\u03af\u0001\u0000\u0000\u0000\u03af\u03b0\u0006%\u0012"+
+ "\u0000\u03b0\u03b1\u0006%\u0011\u0000\u03b1\u03b2\u0006%\u0011\u0000\u03b2"+
+ "]\u0001\u0000\u0000\u0000\u03b3\u03b4\u0003\u00f8s\u0000\u03b4\u03b5\u0001"+
+ "\u0000\u0000\u0000\u03b5\u03b6\u0006&\u0013\u0000\u03b6_\u0001\u0000\u0000"+
+ "\u0000\u03b7\u03b8\u0003\u0220\u0107\u0000\u03b8\u03b9\u0001\u0000\u0000"+
+ "\u0000\u03b9\u03ba\u0006\'\u0014\u0000\u03baa\u0001\u0000\u0000\u0000"+
+ "\u03bb\u03bc\u0003\u00e4i\u0000\u03bc\u03bd\u0001\u0000\u0000\u0000\u03bd"+
+ "\u03be\u0006(\u0015\u0000\u03bec\u0001\u0000\u0000\u0000\u03bf\u03c0\u0003"+
+ "\u00e0g\u0000\u03c0\u03c1\u0001\u0000\u0000\u0000\u03c1\u03c2\u0006)\u0016"+
+ "\u0000\u03c2e\u0001\u0000\u0000\u0000\u03c3\u03c4\u0003\u0128\u008b\u0000"+
+ "\u03c4\u03c5\u0001\u0000\u0000\u0000\u03c5\u03c6\u0006*\u0017\u0000\u03c6"+
+ "g\u0001\u0000\u0000\u0000\u03c7\u03c8\u0003\u012a\u008c\u0000\u03c8\u03c9"+
+ "\u0001\u0000\u0000\u0000\u03c9\u03ca\u0006+\u0018\u0000\u03cai\u0001\u0000"+
+ "\u0000\u0000\u03cb\u03cc\u0003\u0134\u0091\u0000\u03cc\u03cd\u0001\u0000"+
+ "\u0000\u0000\u03cd\u03ce\u0006,\u0019\u0000\u03cek\u0001\u0000\u0000\u0000"+
+ "\u03cf\u03d0\u0003\u0130\u008f\u0000\u03d0\u03d1\u0001\u0000\u0000\u0000"+
+ "\u03d1\u03d2\u0006-\u001a\u0000\u03d2m\u0001\u0000\u0000\u0000\u03d3\u03d4"+
+ "\u0003\u0012\u0000\u0000\u03d4\u03d5\u0001\u0000\u0000\u0000\u03d5\u03d6"+
+ "\u0006.\u0000\u0000\u03d6o\u0001\u0000\u0000\u0000\u03d7\u03d8\u0003\u0014"+
+ "\u0001\u0000\u03d8\u03d9\u0001\u0000\u0000\u0000\u03d9\u03da\u0006/\u0000"+
+ "\u0000\u03daq\u0001\u0000\u0000\u0000\u03db\u03dc\u0003\u0016\u0002\u0000"+
+ "\u03dc\u03dd\u0001\u0000\u0000\u0000\u03dd\u03de\u00060\u0000\u0000\u03de"+
+ "s\u0001\u0000\u0000\u0000\u03df\u03e0\u0003\u00b6R\u0000\u03e0\u03e1\u0001"+
+ "\u0000\u0000\u0000\u03e1\u03e2\u00061\u0010\u0000\u03e2\u03e3\u00061\u0011"+
+ "\u0000\u03e3u\u0001\u0000\u0000\u0000\u03e4\u03e5\u0003\u012e\u008e\u0000"+
+ "\u03e5\u03e6\u0001\u0000\u0000\u0000\u03e6\u03e7\u00062\u0012\u0000\u03e7"+
+ "\u03e8\u00062\u0011\u0000\u03e8\u03e9\u00062\u0011\u0000\u03e9w\u0001"+
+ "\u0000\u0000\u0000\u03ea\u03eb\u0003\u00f8s\u0000\u03eb\u03ec\u0001\u0000"+
+ "\u0000\u0000\u03ec\u03ed\u00063\u0013\u0000\u03ed\u03ee\u00063\u001b\u0000"+
+ "\u03eey\u0001\u0000\u0000\u0000\u03ef\u03f0\u0003\u0102x\u0000\u03f0\u03f1"+
+ "\u0001\u0000\u0000\u0000\u03f1\u03f2\u00064\u001c\u0000\u03f2\u03f3\u0006"+
+ "4\u001b\u0000\u03f3{\u0001\u0000\u0000\u0000\u03f4\u03f5\b\u0018\u0000"+
+ "\u0000\u03f5}\u0001\u0000\u0000\u0000\u03f6\u03f8\u0003|5\u0000\u03f7"+
+ "\u03f6\u0001\u0000\u0000\u0000\u03f8\u03f9\u0001\u0000\u0000\u0000\u03f9"+
+ "\u03f7\u0001\u0000\u0000\u0000\u03f9\u03fa\u0001\u0000\u0000\u0000\u03fa"+
+ "\u03fb\u0001\u0000\u0000\u0000\u03fb\u03fc\u0003\u00dce\u0000\u03fc\u03fe"+
+ "\u0001\u0000\u0000\u0000\u03fd\u03f7\u0001\u0000\u0000\u0000\u03fd\u03fe"+
+ "\u0001\u0000\u0000\u0000\u03fe\u0400\u0001\u0000\u0000\u0000\u03ff\u0401"+
+ "\u0003|5\u0000\u0400\u03ff\u0001\u0000\u0000\u0000\u0401\u0402\u0001\u0000"+
+ "\u0000\u0000\u0402\u0400\u0001\u0000\u0000\u0000\u0402\u0403\u0001\u0000"+
+ "\u0000\u0000\u0403\u007f\u0001\u0000\u0000\u0000\u0404\u0405\u0003~6\u0000"+
+ "\u0405\u0406\u0001\u0000\u0000\u0000\u0406\u0407\u00067\u001d\u0000\u0407"+
+ "\u0081\u0001\u0000\u0000\u0000\u0408\u0409\u0003\u00cc]\u0000\u0409\u040a"+
+ "\u0001\u0000\u0000\u0000\u040a\u040b\u00068\u001e\u0000\u040b\u0083\u0001"+
+ "\u0000\u0000\u0000\u040c\u040d\u0003\u0012\u0000\u0000\u040d\u040e\u0001"+
+ "\u0000\u0000\u0000\u040e\u040f\u00069\u0000\u0000\u040f\u0085\u0001\u0000"+
+ "\u0000\u0000\u0410\u0411\u0003\u0014\u0001\u0000\u0411\u0412\u0001\u0000"+
+ "\u0000\u0000\u0412\u0413\u0006:\u0000\u0000\u0413\u0087\u0001\u0000\u0000"+
+ "\u0000\u0414\u0415\u0003\u0016\u0002\u0000\u0415\u0416\u0001\u0000\u0000"+
+ "\u0000\u0416\u0417\u0006;\u0000\u0000\u0417\u0089\u0001\u0000\u0000\u0000"+
+ "\u0418\u0419\u0003\u00b6R\u0000\u0419\u041a\u0001\u0000\u0000\u0000\u041a"+
+ "\u041b\u0006<\u0010\u0000\u041b\u041c\u0006<\u0011\u0000\u041c\u041d\u0006"+
+ "<\u0011\u0000\u041d\u008b\u0001\u0000\u0000\u0000\u041e\u041f\u0003\u012e"+
+ "\u008e\u0000\u041f\u0420\u0001\u0000\u0000\u0000\u0420\u0421\u0006=\u0012"+
+ "\u0000\u0421\u0422\u0006=\u0011\u0000\u0422\u0423\u0006=\u0011\u0000\u0423"+
+ "\u0424\u0006=\u0011\u0000\u0424\u008d\u0001\u0000\u0000\u0000\u0425\u0426"+
+ "\u0003\u0128\u008b\u0000\u0426\u0427\u0001\u0000\u0000\u0000\u0427\u0428"+
+ "\u0006>\u0017\u0000\u0428\u008f\u0001\u0000\u0000\u0000\u0429\u042a\u0003"+
+ "\u012a\u008c\u0000\u042a\u042b\u0001\u0000\u0000\u0000\u042b\u042c\u0006"+
+ "?\u0018\u0000\u042c\u0091\u0001\u0000\u0000\u0000\u042d\u042e\u0003\u00d6"+
+ "b\u0000\u042e\u042f\u0001\u0000\u0000\u0000\u042f\u0430\u0006@\u001f\u0000"+
+ "\u0430\u0093\u0001\u0000\u0000\u0000\u0431\u0432\u0003\u00e0g\u0000\u0432"+
+ "\u0433\u0001\u0000\u0000\u0000\u0433\u0434\u0006A\u0016\u0000\u0434\u0095"+
+ "\u0001\u0000\u0000\u0000\u0435\u0436\u0003\u00e4i\u0000\u0436\u0437\u0001"+
+ "\u0000\u0000\u0000\u0437\u0438\u0006B\u0015\u0000\u0438\u0097\u0001\u0000"+
+ "\u0000\u0000\u0439\u043a\u0003\u0102x\u0000\u043a\u043b\u0001\u0000\u0000"+
+ "\u0000\u043b\u043c\u0006C\u001c\u0000\u043c\u0099\u0001\u0000\u0000\u0000"+
+ "\u043d\u043e\u0003\u0202\u00f8\u0000\u043e\u043f\u0001\u0000\u0000\u0000"+
+ "\u043f\u0440\u0006D \u0000\u0440\u009b\u0001\u0000\u0000\u0000\u0441\u0442"+
+ "\u0003\u0134\u0091\u0000\u0442\u0443\u0001\u0000\u0000\u0000\u0443\u0444"+
+ "\u0006E\u0019\u0000\u0444\u009d\u0001\u0000\u0000\u0000\u0445\u0446\u0003"+
+ "\u00fcu\u0000\u0446\u0447\u0001\u0000\u0000\u0000\u0447\u0448\u0006F!"+
+ "\u0000\u0448\u009f\u0001\u0000\u0000\u0000\u0449\u044a\u0003\u0124\u0089"+
+ "\u0000\u044a\u044b\u0001\u0000\u0000\u0000\u044b\u044c\u0006G\"\u0000"+
+ "\u044c\u00a1\u0001\u0000\u0000\u0000\u044d\u044e\u0003\u0120\u0087\u0000"+
+ "\u044e\u044f\u0001\u0000\u0000\u0000\u044f\u0450\u0006H#\u0000\u0450\u00a3"+
+ "\u0001\u0000\u0000\u0000\u0451\u0452\u0003\u0126\u008a\u0000\u0452\u0453"+
+ "\u0001\u0000\u0000\u0000\u0453\u0454\u0006I$\u0000\u0454\u00a5\u0001\u0000"+
+ "\u0000\u0000\u0455\u0456\u0003\u0012\u0000\u0000\u0456\u0457\u0001\u0000"+
+ "\u0000\u0000\u0457\u0458\u0006J\u0000\u0000\u0458\u00a7\u0001\u0000\u0000"+
+ "\u0000\u0459\u045a\u0003\u0014\u0001\u0000\u045a\u045b\u0001\u0000\u0000"+
+ "\u0000\u045b\u045c\u0006K\u0000\u0000\u045c\u00a9\u0001\u0000\u0000\u0000"+
+ "\u045d\u045e\u0003\u0016\u0002\u0000\u045e\u045f\u0001\u0000\u0000\u0000"+
+ "\u045f\u0460\u0006L\u0000\u0000\u0460\u00ab\u0001\u0000\u0000\u0000\u0461"+
+ "\u0462\u0003\u012c\u008d\u0000\u0462\u0463\u0001\u0000\u0000\u0000\u0463"+
+ "\u0464\u0006M%\u0000\u0464\u0465\u0006M&\u0000\u0465\u00ad\u0001\u0000"+
+ "\u0000\u0000\u0466\u0467\u0003\u00b6R\u0000\u0467\u0468\u0001\u0000\u0000"+
+ "\u0000\u0468\u0469\u0006N\u0010\u0000\u0469\u046a\u0006N\u0011\u0000\u046a"+
+ "\u00af\u0001\u0000\u0000\u0000\u046b\u046c\u0003\u0016\u0002\u0000\u046c"+
+ "\u046d\u0001\u0000\u0000\u0000\u046d\u046e\u0006O\u0000\u0000\u046e\u00b1"+
+ "\u0001\u0000\u0000\u0000\u046f\u0470\u0003\u0012\u0000\u0000\u0470\u0471"+
+ "\u0001\u0000\u0000\u0000\u0471\u0472\u0006P\u0000\u0000\u0472\u00b3\u0001"+
+ "\u0000\u0000\u0000\u0473\u0474\u0003\u0014\u0001\u0000\u0474\u0475\u0001"+
+ "\u0000\u0000\u0000\u0475\u0476\u0006Q\u0000\u0000\u0476\u00b5\u0001\u0000"+
+ "\u0000\u0000\u0477\u0478\u0005|\u0000\u0000\u0478\u0479\u0001\u0000\u0000"+
+ "\u0000\u0479\u047a\u0006R\u0011\u0000\u047a\u00b7\u0001\u0000\u0000\u0000"+
+ "\u047b\u047c\u0007\u0019\u0000\u0000\u047c\u00b9\u0001\u0000\u0000\u0000"+
+ "\u047d\u047e\u0007\u001a\u0000\u0000\u047e\u00bb\u0001\u0000\u0000\u0000"+
+ "\u047f\u0480\u0005\\\u0000\u0000\u0480\u0481\u0007\u001b\u0000\u0000\u0481"+
+ "\u00bd\u0001\u0000\u0000\u0000\u0482\u0483\b\u001c\u0000\u0000\u0483\u00bf"+
+ "\u0001\u0000\u0000\u0000\u0484\u0486\u0007\u0007\u0000\u0000\u0485\u0487"+
+ "\u0007\u001d\u0000\u0000\u0486\u0485\u0001\u0000\u0000\u0000\u0486\u0487"+
+ "\u0001\u0000\u0000\u0000\u0487\u0489\u0001\u0000\u0000\u0000\u0488\u048a"+
+ "\u0003\u00b8S\u0000\u0489\u0488\u0001\u0000\u0000\u0000\u048a\u048b\u0001"+
+ "\u0000\u0000\u0000\u048b\u0489\u0001\u0000\u0000\u0000\u048b\u048c\u0001"+
+ "\u0000\u0000\u0000\u048c\u00c1\u0001\u0000\u0000\u0000\u048d\u048e\u0005"+
+ "@\u0000\u0000\u048e\u00c3\u0001\u0000\u0000\u0000\u048f\u0490\u0005`\u0000"+
+ "\u0000\u0490\u00c5\u0001\u0000\u0000\u0000\u0491\u0495\b\u001e\u0000\u0000"+
+ "\u0492\u0493\u0005`\u0000\u0000\u0493\u0495\u0005`\u0000\u0000\u0494\u0491"+
+ "\u0001\u0000\u0000\u0000\u0494\u0492\u0001\u0000\u0000\u0000\u0495\u00c7"+
+ "\u0001\u0000\u0000\u0000\u0496\u0497\u0005_\u0000\u0000\u0497\u00c9\u0001"+
+ "\u0000\u0000\u0000\u0498\u049c\u0003\u00baT\u0000\u0499\u049c\u0003\u00b8"+
+ "S\u0000\u049a\u049c\u0003\u00c8[\u0000\u049b\u0498\u0001\u0000\u0000\u0000"+
+ "\u049b\u0499\u0001\u0000\u0000\u0000\u049b\u049a\u0001\u0000\u0000\u0000"+
+ "\u049c\u00cb\u0001\u0000\u0000\u0000\u049d\u04a2\u0005\"\u0000\u0000\u049e"+
+ "\u04a1\u0003\u00bcU\u0000\u049f\u04a1\u0003\u00beV\u0000\u04a0\u049e\u0001"+
+ "\u0000\u0000\u0000\u04a0\u049f\u0001\u0000\u0000\u0000\u04a1\u04a4\u0001"+
+ "\u0000\u0000\u0000\u04a2\u04a0\u0001\u0000\u0000\u0000\u04a2\u04a3\u0001"+
+ "\u0000\u0000\u0000\u04a3\u04a5\u0001\u0000\u0000\u0000\u04a4\u04a2\u0001"+
+ "\u0000\u0000\u0000\u04a5\u04bb\u0005\"\u0000\u0000\u04a6\u04a7\u0005\""+
+ "\u0000\u0000\u04a7\u04a8\u0005\"\u0000\u0000\u04a8\u04a9\u0005\"\u0000"+
+ "\u0000\u04a9\u04ad\u0001\u0000\u0000\u0000\u04aa\u04ac\b\u0000\u0000\u0000"+
+ "\u04ab\u04aa\u0001\u0000\u0000\u0000\u04ac\u04af\u0001\u0000\u0000\u0000"+
+ "\u04ad\u04ae\u0001\u0000\u0000\u0000\u04ad\u04ab\u0001\u0000\u0000\u0000"+
+ "\u04ae\u04b0\u0001\u0000\u0000\u0000\u04af\u04ad\u0001\u0000\u0000\u0000"+
+ "\u04b0\u04b1\u0005\"\u0000\u0000\u04b1\u04b2\u0005\"\u0000\u0000\u04b2"+
+ "\u04b3\u0005\"\u0000\u0000\u04b3\u04b5\u0001\u0000\u0000\u0000\u04b4\u04b6"+
+ "\u0005\"\u0000\u0000\u04b5\u04b4\u0001\u0000\u0000\u0000\u04b5\u04b6\u0001"+
+ "\u0000\u0000\u0000\u04b6\u04b8\u0001\u0000\u0000\u0000\u04b7\u04b9\u0005"+
+ "\"\u0000\u0000\u04b8\u04b7\u0001\u0000\u0000\u0000\u04b8\u04b9\u0001\u0000"+
+ "\u0000\u0000\u04b9\u04bb\u0001\u0000\u0000\u0000\u04ba\u049d\u0001\u0000"+
+ "\u0000\u0000\u04ba\u04a6\u0001\u0000\u0000\u0000\u04bb\u00cd\u0001\u0000"+
+ "\u0000\u0000\u04bc\u04be\u0003\u00b8S\u0000\u04bd\u04bc\u0001\u0000\u0000"+
+ "\u0000\u04be\u04bf\u0001\u0000\u0000\u0000\u04bf\u04bd\u0001\u0000\u0000"+
+ "\u0000\u04bf\u04c0\u0001\u0000\u0000\u0000\u04c0\u00cf\u0001\u0000\u0000"+
+ "\u0000\u04c1\u04c3\u0003\u00b8S\u0000\u04c2\u04c1\u0001\u0000\u0000\u0000"+
+ "\u04c3\u04c4\u0001\u0000\u0000\u0000\u04c4\u04c2\u0001\u0000\u0000\u0000"+
+ "\u04c4\u04c5\u0001\u0000\u0000\u0000\u04c5\u04c6\u0001\u0000\u0000\u0000"+
+ "\u04c6\u04ca\u0003\u00e4i\u0000\u04c7\u04c9\u0003\u00b8S\u0000\u04c8\u04c7"+
+ "\u0001\u0000\u0000\u0000\u04c9\u04cc\u0001\u0000\u0000\u0000\u04ca\u04c8"+
+ "\u0001\u0000\u0000\u0000\u04ca\u04cb\u0001\u0000\u0000\u0000\u04cb\u04ec"+
+ "\u0001\u0000\u0000\u0000\u04cc\u04ca\u0001\u0000\u0000\u0000\u04cd\u04cf"+
+ "\u0003\u00e4i\u0000\u04ce\u04d0\u0003\u00b8S\u0000\u04cf\u04ce\u0001\u0000"+
+ "\u0000\u0000\u04d0\u04d1\u0001\u0000\u0000\u0000\u04d1\u04cf\u0001\u0000"+
+ "\u0000\u0000\u04d1\u04d2\u0001\u0000\u0000\u0000\u04d2\u04ec\u0001\u0000"+
+ "\u0000\u0000\u04d3\u04d5\u0003\u00b8S\u0000\u04d4\u04d3\u0001\u0000\u0000"+
+ "\u0000\u04d5\u04d6\u0001\u0000\u0000\u0000\u04d6\u04d4\u0001\u0000\u0000"+
+ "\u0000\u04d6\u04d7\u0001\u0000\u0000\u0000\u04d7\u04df\u0001\u0000\u0000"+
+ "\u0000\u04d8\u04dc\u0003\u00e4i\u0000\u04d9\u04db\u0003\u00b8S\u0000\u04da"+
+ "\u04d9\u0001\u0000\u0000\u0000\u04db\u04de\u0001\u0000\u0000\u0000\u04dc"+
+ "\u04da\u0001\u0000\u0000\u0000\u04dc\u04dd\u0001\u0000\u0000\u0000\u04dd"+
+ "\u04e0\u0001\u0000\u0000\u0000\u04de\u04dc\u0001\u0000\u0000\u0000\u04df"+
+ "\u04d8\u0001\u0000\u0000\u0000\u04df\u04e0\u0001\u0000\u0000\u0000\u04e0"+
+ "\u04e1\u0001\u0000\u0000\u0000\u04e1\u04e2\u0003\u00c0W\u0000\u04e2\u04ec"+
+ "\u0001\u0000\u0000\u0000\u04e3\u04e5\u0003\u00e4i\u0000\u04e4\u04e6\u0003"+
+ "\u00b8S\u0000\u04e5\u04e4\u0001\u0000\u0000\u0000\u04e6\u04e7\u0001\u0000"+
+ "\u0000\u0000\u04e7\u04e5\u0001\u0000\u0000\u0000\u04e7\u04e8\u0001\u0000"+
+ "\u0000\u0000\u04e8\u04e9\u0001\u0000\u0000\u0000\u04e9\u04ea\u0003\u00c0"+
+ "W\u0000\u04ea\u04ec\u0001\u0000\u0000\u0000\u04eb\u04c2\u0001\u0000\u0000"+
+ "\u0000\u04eb\u04cd\u0001\u0000\u0000\u0000\u04eb\u04d4\u0001\u0000\u0000"+
+ "\u0000\u04eb\u04e3\u0001\u0000\u0000\u0000\u04ec\u00d1\u0001\u0000\u0000"+
+ "\u0000\u04ed\u04ee\u0007\u0004\u0000\u0000\u04ee\u04ef\u0007\u0005\u0000"+
+ "\u0000\u04ef\u04f0\u0007\u0010\u0000\u0000\u04f0\u00d3\u0001\u0000\u0000"+
+ "\u0000\u04f1\u04f2\u0007\u0004\u0000\u0000\u04f2\u04f3\u0007\u0011\u0000"+
+ "\u0000\u04f3\u04f4\u0007\u0002\u0000\u0000\u04f4\u00d5\u0001\u0000\u0000"+
+ "\u0000\u04f5\u04f6\u0005=\u0000\u0000\u04f6\u00d7\u0001\u0000\u0000\u0000"+
+ "\u04f7\u04f8\u0007\u001f\u0000\u0000\u04f8\u04f9\u0007 \u0000\u0000\u04f9"+
+ "\u00d9\u0001\u0000\u0000\u0000\u04fa\u04fb\u0005:\u0000\u0000\u04fb\u04fc"+
+ "\u0005:\u0000\u0000\u04fc\u00db\u0001\u0000\u0000\u0000\u04fd\u04fe\u0005"+
+ ":\u0000\u0000\u04fe\u00dd\u0001\u0000\u0000\u0000\u04ff\u0500\u0005;\u0000"+
+ "\u0000\u0500\u00df\u0001\u0000\u0000\u0000\u0501\u0502\u0005,\u0000\u0000"+
+ "\u0502\u00e1\u0001\u0000\u0000\u0000\u0503\u0504\u0007\u0010\u0000\u0000"+
+ "\u0504\u0505\u0007\u0007\u0000\u0000\u0505\u0506\u0007\u0011\u0000\u0000"+
+ "\u0506\u0507\u0007\u0002\u0000\u0000\u0507\u00e3\u0001\u0000\u0000\u0000"+
+ "\u0508\u0509\u0005.\u0000\u0000\u0509\u00e5\u0001\u0000\u0000\u0000\u050a"+
+ "\u050b\u0007\u0015\u0000\u0000\u050b\u050c\u0007\u0004\u0000\u0000\u050c"+
+ "\u050d\u0007\u000e\u0000\u0000\u050d\u050e\u0007\u0011\u0000\u0000\u050e"+
+ "\u050f\u0007\u0007\u0000\u0000\u050f\u00e7\u0001\u0000\u0000\u0000\u0510"+
+ "\u0511\u0007\u0015\u0000\u0000\u0511\u0512\u0007\n\u0000\u0000\u0512\u0513"+
+ "\u0007\f\u0000\u0000\u0513\u0514\u0007\u0011\u0000\u0000\u0514\u0515\u0007"+
+ "\u000b\u0000\u0000\u0515\u00e9\u0001\u0000\u0000\u0000\u0516\u0517\u0007"+
+ "\n\u0000\u0000\u0517\u0518\u0007\u0005\u0000\u0000\u0518\u00eb\u0001\u0000"+
+ "\u0000\u0000\u0519\u051a\u0007\n\u0000\u0000\u051a\u051b\u0007\u0011\u0000"+
+ "\u0000\u051b\u00ed\u0001\u0000\u0000\u0000\u051c\u051d\u0007\u000e\u0000"+
+ "\u0000\u051d\u051e\u0007\u0004\u0000\u0000\u051e\u051f\u0007\u0011\u0000"+
+ "\u0000\u051f\u0520\u0007\u000b\u0000\u0000\u0520\u00ef\u0001\u0000\u0000"+
+ "\u0000\u0521\u0522\u0007\u000e\u0000\u0000\u0522\u0523\u0007\n\u0000\u0000"+
+ "\u0523\u0524\u0007\u0013\u0000\u0000\u0524\u0525\u0007\u0007\u0000\u0000"+
+ "\u0525\u00f1\u0001\u0000\u0000\u0000\u0526\u0527\u0007\u0005\u0000\u0000"+
+ "\u0527\u0528\u0007\t\u0000\u0000\u0528\u0529\u0007\u000b\u0000\u0000\u0529"+
+ "\u00f3\u0001\u0000\u0000\u0000\u052a\u052b\u0007\u0005\u0000\u0000\u052b"+
+ "\u052c\u0007\u0016\u0000\u0000\u052c\u052d\u0007\u000e\u0000\u0000\u052d"+
+ "\u052e\u0007\u000e\u0000\u0000\u052e\u00f5\u0001\u0000\u0000\u0000\u052f"+
+ "\u0530\u0007\u0005\u0000\u0000\u0530\u0531\u0007\u0016\u0000\u0000\u0531"+
+ "\u0532\u0007\u000e\u0000\u0000\u0532\u0533\u0007\u000e\u0000\u0000\u0533"+
+ "\u0534\u0007\u0011\u0000\u0000\u0534\u00f7\u0001\u0000\u0000\u0000\u0535"+
+ "\u0536\u0007\t\u0000\u0000\u0536\u0537\u0007\u0005\u0000\u0000\u0537\u00f9"+
+ "\u0001\u0000\u0000\u0000\u0538\u0539\u0007\t\u0000\u0000\u0539\u053a\u0007"+
+ "\f\u0000\u0000\u053a\u00fb\u0001\u0000\u0000\u0000\u053b\u053c\u0005?"+
+ "\u0000\u0000\u053c\u00fd\u0001\u0000\u0000\u0000\u053d\u053e\u0007\f\u0000"+
+ "\u0000\u053e\u053f\u0007\u000e\u0000\u0000\u053f\u0540\u0007\n\u0000\u0000"+
+ "\u0540\u0541\u0007\u0013\u0000\u0000\u0541\u0542\u0007\u0007\u0000\u0000"+
+ "\u0542\u00ff\u0001\u0000\u0000\u0000\u0543\u0544\u0007\u000b\u0000\u0000"+
+ "\u0544\u0545\u0007\f\u0000\u0000\u0545\u0546\u0007\u0016\u0000\u0000\u0546"+
+ "\u0547\u0007\u0007\u0000\u0000\u0547\u0101\u0001\u0000\u0000\u0000\u0548"+
+ "\u0549\u0007\u0014\u0000\u0000\u0549\u054a\u0007\n\u0000\u0000\u054a\u054b"+
+ "\u0007\u000b\u0000\u0000\u054b\u054c\u0007\u0003\u0000\u0000\u054c\u0103"+
+ "\u0001\u0000\u0000\u0000\u054d\u054e\u0005=\u0000\u0000\u054e\u054f\u0005"+
+ "=\u0000\u0000\u054f\u0105\u0001\u0000\u0000\u0000\u0550\u0551\u0005=\u0000"+
+ "\u0000\u0551\u0552\u0005~\u0000\u0000\u0552\u0107\u0001\u0000\u0000\u0000"+
+ "\u0553\u0554\u0005!\u0000\u0000\u0554\u0555\u0005=\u0000\u0000\u0555\u0109"+
+ "\u0001\u0000\u0000\u0000\u0556\u0557\u0005<\u0000\u0000\u0557\u010b\u0001"+
+ "\u0000\u0000\u0000\u0558\u0559\u0005<\u0000\u0000\u0559\u055a\u0005=\u0000"+
+ "\u0000\u055a\u010d\u0001\u0000\u0000\u0000\u055b\u055c\u0005>\u0000\u0000"+
+ "\u055c\u010f\u0001\u0000\u0000\u0000\u055d\u055e\u0005>\u0000\u0000\u055e"+
+ "\u055f\u0005=\u0000\u0000\u055f\u0111\u0001\u0000\u0000\u0000\u0560\u0561"+
+ "\u0005+\u0000\u0000\u0561\u0113\u0001\u0000\u0000\u0000\u0562\u0563\u0005"+
+ "-\u0000\u0000\u0563\u0115\u0001\u0000\u0000\u0000\u0564\u0565\u0005*\u0000"+
+ "\u0000\u0565\u0117\u0001\u0000\u0000\u0000\u0566\u0567\u0005/\u0000\u0000"+
+ "\u0567\u0119\u0001\u0000\u0000\u0000\u0568\u0569\u0005%\u0000\u0000\u0569"+
+ "\u011b\u0001\u0000\u0000\u0000\u056a\u056b\u0005{\u0000\u0000\u056b\u011d"+
+ "\u0001\u0000\u0000\u0000\u056c\u056d\u0005}\u0000\u0000\u056d\u011f\u0001"+
+ "\u0000\u0000\u0000\u056e\u056f\u0005?\u0000\u0000\u056f\u0570\u0005?\u0000"+
+ "\u0000\u0570\u0121\u0001\u0000\u0000\u0000\u0571\u0572\u00032\u0010\u0000"+
+ "\u0572\u0573\u0001\u0000\u0000\u0000\u0573\u0574\u0006\u0088\'\u0000\u0574"+
+ "\u0123\u0001\u0000\u0000\u0000\u0575\u0578\u0003\u00fcu\u0000\u0576\u0579"+
+ "\u0003\u00baT\u0000\u0577\u0579\u0003\u00c8[\u0000\u0578\u0576\u0001\u0000"+
+ "\u0000\u0000\u0578\u0577\u0001\u0000\u0000\u0000\u0579\u057d\u0001\u0000"+
+ "\u0000\u0000\u057a\u057c\u0003\u00ca\\\u0000\u057b\u057a\u0001\u0000\u0000"+
+ "\u0000\u057c\u057f\u0001\u0000\u0000\u0000\u057d\u057b\u0001\u0000\u0000"+
+ "\u0000\u057d\u057e\u0001\u0000\u0000\u0000\u057e\u0587\u0001\u0000\u0000"+
+ "\u0000\u057f\u057d\u0001\u0000\u0000\u0000\u0580\u0582\u0003\u00fcu\u0000"+
+ "\u0581\u0583\u0003\u00b8S\u0000\u0582\u0581\u0001\u0000\u0000\u0000\u0583"+
+ "\u0584\u0001\u0000\u0000\u0000\u0584\u0582\u0001\u0000\u0000\u0000\u0584"+
+ "\u0585\u0001\u0000\u0000\u0000\u0585\u0587\u0001\u0000\u0000\u0000\u0586"+
+ "\u0575\u0001\u0000\u0000\u0000\u0586\u0580\u0001\u0000\u0000\u0000\u0587"+
+ "\u0125\u0001\u0000\u0000\u0000\u0588\u058b\u0003\u0120\u0087\u0000\u0589"+
+ "\u058c\u0003\u00baT\u0000\u058a\u058c\u0003\u00c8[\u0000\u058b\u0589\u0001"+
+ "\u0000\u0000\u0000\u058b\u058a\u0001\u0000\u0000\u0000\u058c\u0590\u0001"+
+ "\u0000\u0000\u0000\u058d\u058f\u0003\u00ca\\\u0000\u058e\u058d\u0001\u0000"+
+ "\u0000\u0000\u058f\u0592\u0001\u0000\u0000\u0000\u0590\u058e\u0001\u0000"+
+ "\u0000\u0000\u0590\u0591\u0001\u0000\u0000\u0000\u0591\u059a\u0001\u0000"+
+ "\u0000\u0000\u0592\u0590\u0001\u0000\u0000\u0000\u0593\u0595\u0003\u0120"+
+ "\u0087\u0000\u0594\u0596\u0003\u00b8S\u0000\u0595\u0594\u0001\u0000\u0000"+
+ "\u0000\u0596\u0597\u0001\u0000\u0000\u0000\u0597\u0595\u0001\u0000\u0000"+
+ "\u0000\u0597\u0598\u0001\u0000\u0000\u0000\u0598\u059a\u0001\u0000\u0000"+
+ "\u0000\u0599\u0588\u0001\u0000\u0000\u0000\u0599\u0593\u0001\u0000\u0000"+
+ "\u0000\u059a\u0127\u0001\u0000\u0000\u0000\u059b\u059c\u0005[\u0000\u0000"+
+ "\u059c\u059d\u0001\u0000\u0000\u0000\u059d\u059e\u0006\u008b\u0004\u0000"+
+ "\u059e\u059f\u0006\u008b\u0004\u0000\u059f\u0129\u0001\u0000\u0000\u0000"+
+ "\u05a0\u05a1\u0005]\u0000\u0000\u05a1\u05a2\u0001\u0000\u0000\u0000\u05a2"+
+ "\u05a3\u0006\u008c\u0011\u0000\u05a3\u05a4\u0006\u008c\u0011\u0000\u05a4"+
+ "\u012b\u0001\u0000\u0000\u0000\u05a5\u05a6\u0005(\u0000\u0000\u05a6\u05a7"+
+ "\u0001\u0000\u0000\u0000\u05a7\u05a8\u0006\u008d\u0004\u0000\u05a8\u05a9"+
+ "\u0006\u008d\u0004\u0000\u05a9\u012d\u0001\u0000\u0000\u0000\u05aa\u05ab"+
+ "\u0005)\u0000\u0000\u05ab\u05ac\u0001\u0000\u0000\u0000\u05ac\u05ad\u0006"+
+ "\u008e\u0011\u0000\u05ad\u05ae\u0006\u008e\u0011\u0000\u05ae\u012f\u0001"+
+ "\u0000\u0000\u0000\u05af\u05b3\u0003\u00baT\u0000\u05b0\u05b2\u0003\u00ca"+
+ "\\\u0000\u05b1\u05b0\u0001\u0000\u0000\u0000\u05b2\u05b5\u0001\u0000\u0000"+
+ "\u0000\u05b3\u05b1\u0001\u0000\u0000\u0000\u05b3\u05b4\u0001\u0000\u0000"+
+ "\u0000\u05b4\u05c0\u0001\u0000\u0000\u0000\u05b5\u05b3\u0001\u0000\u0000"+
+ "\u0000\u05b6\u05b9\u0003\u00c8[\u0000\u05b7\u05b9\u0003\u00c2X\u0000\u05b8"+
+ "\u05b6\u0001\u0000\u0000\u0000\u05b8\u05b7\u0001\u0000\u0000\u0000\u05b9"+
+ "\u05bb\u0001\u0000\u0000\u0000\u05ba\u05bc\u0003\u00ca\\\u0000\u05bb\u05ba"+
+ "\u0001\u0000\u0000\u0000\u05bc\u05bd\u0001\u0000\u0000\u0000\u05bd\u05bb"+
+ "\u0001\u0000\u0000\u0000\u05bd\u05be\u0001\u0000\u0000\u0000\u05be\u05c0"+
+ "\u0001\u0000\u0000\u0000\u05bf\u05af\u0001\u0000\u0000\u0000\u05bf\u05b8"+
+ "\u0001\u0000\u0000\u0000\u05c0\u0131\u0001\u0000\u0000\u0000\u05c1\u05c3"+
+ "\u0003\u00c4Y\u0000\u05c2\u05c4\u0003\u00c6Z\u0000\u05c3\u05c2\u0001\u0000"+
+ "\u0000\u0000\u05c4\u05c5\u0001\u0000\u0000\u0000\u05c5\u05c3\u0001\u0000"+
+ "\u0000\u0000\u05c5\u05c6\u0001\u0000\u0000\u0000\u05c6\u05c7\u0001\u0000"+
+ "\u0000\u0000\u05c7\u05c8\u0003\u00c4Y\u0000\u05c8\u0133\u0001\u0000\u0000"+
+ "\u0000\u05c9\u05ca\u0003\u0132\u0090\u0000\u05ca\u0135\u0001\u0000\u0000"+
+ "\u0000\u05cb\u05cc\u0003\u0012\u0000\u0000\u05cc\u05cd\u0001\u0000\u0000"+
+ "\u0000\u05cd\u05ce\u0006\u0092\u0000\u0000\u05ce\u0137\u0001\u0000\u0000"+
+ "\u0000\u05cf\u05d0\u0003\u0014\u0001\u0000\u05d0\u05d1\u0001\u0000\u0000"+
+ "\u0000\u05d1\u05d2\u0006\u0093\u0000\u0000\u05d2\u0139\u0001\u0000\u0000"+
+ "\u0000\u05d3\u05d4\u0003\u0016\u0002\u0000\u05d4\u05d5\u0001\u0000\u0000"+
+ "\u0000\u05d5\u05d6\u0006\u0094\u0000\u0000\u05d6\u013b\u0001\u0000\u0000"+
+ "\u0000\u05d7\u05d8\u0003\u00b6R\u0000\u05d8\u05d9\u0001\u0000\u0000\u0000"+
+ "\u05d9\u05da\u0006\u0095\u0010\u0000\u05da\u05db\u0006\u0095\u0011\u0000"+
+ "\u05db\u013d\u0001\u0000\u0000\u0000\u05dc\u05dd\u0003\u00dce\u0000\u05dd"+
+ "\u05de\u0001\u0000\u0000\u0000\u05de\u05df\u0006\u0096(\u0000\u05df\u013f"+
+ "\u0001\u0000\u0000\u0000\u05e0\u05e1\u0003\u00dad\u0000\u05e1\u05e2\u0001"+
+ "\u0000\u0000\u0000\u05e2\u05e3\u0006\u0097)\u0000\u05e3\u0141\u0001\u0000"+
+ "\u0000\u0000\u05e4\u05e5\u0003\u00e0g\u0000\u05e5\u05e6\u0001\u0000\u0000"+
+ "\u0000\u05e6\u05e7\u0006\u0098\u0016\u0000\u05e7\u0143\u0001\u0000\u0000"+
+ "\u0000\u05e8\u05e9\u0003\u00d6b\u0000\u05e9\u05ea\u0001\u0000\u0000\u0000"+
+ "\u05ea\u05eb\u0006\u0099\u001f\u0000\u05eb\u0145\u0001\u0000\u0000\u0000"+
+ "\u05ec\u05ed\u0007\u000f\u0000\u0000\u05ed\u05ee\u0007\u0007\u0000\u0000"+
+ "\u05ee\u05ef\u0007\u000b\u0000\u0000\u05ef\u05f0\u0007\u0004\u0000\u0000"+
+ "\u05f0\u05f1\u0007\u0010\u0000\u0000\u05f1\u05f2\u0007\u0004\u0000\u0000"+
+ "\u05f2\u05f3\u0007\u000b\u0000\u0000\u05f3\u05f4\u0007\u0004\u0000\u0000"+
+ "\u05f4\u0147\u0001\u0000\u0000\u0000\u05f5\u05f6\u0003\u012e\u008e\u0000"+
+ "\u05f6\u05f7\u0001\u0000\u0000\u0000\u05f7\u05f8\u0006\u009b\u0012\u0000"+
+ "\u05f8\u05f9\u0006\u009b\u0011\u0000\u05f9\u05fa\u0006\u009b\u0011\u0000"+
+ "\u05fa\u0149\u0001\u0000\u0000\u0000\u05fb\u05fc\u0003\u012c\u008d\u0000"+
+ "\u05fc\u05fd\u0001\u0000\u0000\u0000\u05fd\u05fe\u0006\u009c%\u0000\u05fe"+
+ "\u05ff\u0006\u009c&\u0000\u05ff\u014b\u0001\u0000\u0000\u0000\u0600\u0604"+
+ "\b!\u0000\u0000\u0601\u0602\u0005/\u0000\u0000\u0602\u0604\b\"\u0000\u0000"+
+ "\u0603\u0600\u0001\u0000\u0000\u0000\u0603\u0601\u0001\u0000\u0000\u0000"+
+ "\u0604\u014d\u0001\u0000\u0000\u0000\u0605\u0607\u0003\u014c\u009d\u0000"+
+ "\u0606\u0605\u0001\u0000\u0000\u0000\u0607\u0608\u0001\u0000\u0000\u0000"+
+ "\u0608\u0606\u0001\u0000\u0000\u0000\u0608\u0609\u0001\u0000\u0000\u0000"+
+ "\u0609\u014f\u0001\u0000\u0000\u0000\u060a\u060b\u0003\u014e\u009e\u0000"+
+ "\u060b\u060c\u0001\u0000\u0000\u0000\u060c\u060d\u0006\u009f*\u0000\u060d"+
+ "\u0151\u0001\u0000\u0000\u0000\u060e\u060f\u0003\u00cc]\u0000\u060f\u0610"+
+ "\u0001\u0000\u0000\u0000\u0610\u0611\u0006\u00a0\u001e\u0000\u0611\u0153"+
+ "\u0001\u0000\u0000\u0000\u0612\u0613\u0003\u0012\u0000\u0000\u0613\u0614"+
+ "\u0001\u0000\u0000\u0000\u0614\u0615\u0006\u00a1\u0000\u0000\u0615\u0155"+
+ "\u0001\u0000\u0000\u0000\u0616\u0617\u0003\u0014\u0001\u0000\u0617\u0618"+
+ "\u0001\u0000\u0000\u0000\u0618\u0619\u0006\u00a2\u0000\u0000\u0619\u0157"+
+ "\u0001\u0000\u0000\u0000\u061a\u061b\u0003\u0016\u0002\u0000\u061b\u061c"+
+ "\u0001\u0000\u0000\u0000\u061c\u061d\u0006\u00a3\u0000\u0000\u061d\u0159"+
+ "\u0001\u0000\u0000\u0000\u061e\u061f\u0003\u012c\u008d\u0000\u061f\u0620"+
+ "\u0001\u0000\u0000\u0000\u0620\u0621\u0006\u00a4%\u0000\u0621\u0622\u0006"+
+ "\u00a4&\u0000\u0622\u015b\u0001\u0000\u0000\u0000\u0623\u0624\u0003\u012e"+
+ "\u008e\u0000\u0624\u0625\u0001\u0000\u0000\u0000\u0625\u0626\u0006\u00a5"+
+ "\u0012\u0000\u0626\u0627\u0006\u00a5\u0011\u0000\u0627\u0628\u0006\u00a5"+
+ "\u0011\u0000\u0628\u015d\u0001\u0000\u0000\u0000\u0629\u062a\u0003\u00b6"+
+ "R\u0000\u062a\u062b\u0001\u0000\u0000\u0000\u062b\u062c\u0006\u00a6\u0010"+
+ "\u0000\u062c\u062d\u0006\u00a6\u0011\u0000\u062d\u015f\u0001\u0000\u0000"+
+ "\u0000\u062e\u062f\u0003\u0016\u0002\u0000\u062f\u0630\u0001\u0000\u0000"+
+ "\u0000\u0630\u0631\u0006\u00a7\u0000\u0000\u0631\u0161\u0001\u0000\u0000"+
+ "\u0000\u0632\u0633\u0003\u0012\u0000\u0000\u0633\u0634\u0001\u0000\u0000"+
+ "\u0000\u0634\u0635\u0006\u00a8\u0000\u0000\u0635\u0163\u0001\u0000\u0000"+
+ "\u0000\u0636\u0637\u0003\u0014\u0001\u0000\u0637\u0638\u0001\u0000\u0000"+
+ "\u0000\u0638\u0639\u0006\u00a9\u0000\u0000\u0639\u0165\u0001\u0000\u0000"+
+ "\u0000\u063a\u063b\u0003\u00b6R\u0000\u063b\u063c\u0001\u0000\u0000\u0000"+
+ "\u063c\u063d\u0006\u00aa\u0010\u0000\u063d\u063e\u0006\u00aa\u0011\u0000"+
+ "\u063e\u0167\u0001\u0000\u0000\u0000\u063f\u0640\u0003\u012e\u008e\u0000"+
+ "\u0640\u0641\u0001\u0000\u0000\u0000\u0641\u0642\u0006\u00ab\u0012\u0000"+
+ "\u0642\u0643\u0006\u00ab\u0011\u0000\u0643\u0644\u0006\u00ab\u0011\u0000"+
+ "\u0644\u0169\u0001\u0000\u0000\u0000\u0645\u0646\u0007\u0006\u0000\u0000"+
+ "\u0646\u0647\u0007\f\u0000\u0000\u0647\u0648\u0007\t\u0000\u0000\u0648"+
+ "\u0649\u0007\u0016\u0000\u0000\u0649\u064a\u0007\b\u0000\u0000\u064a\u016b"+
+ "\u0001\u0000\u0000\u0000\u064b\u064c\u0007\u0011\u0000\u0000\u064c\u064d"+
+ "\u0007\u0002\u0000\u0000\u064d\u064e\u0007\t\u0000\u0000\u064e\u064f\u0007"+
+ "\f\u0000\u0000\u064f\u0650\u0007\u0007\u0000\u0000\u0650\u016d\u0001\u0000"+
+ "\u0000\u0000\u0651\u0652\u0007\u0013\u0000\u0000\u0652\u0653\u0007\u0007"+
+ "\u0000\u0000\u0653\u0654\u0007 \u0000\u0000\u0654\u016f\u0001\u0000\u0000"+
+ "\u0000\u0655\u0656\u0003\u0102x\u0000\u0656\u0657\u0001\u0000\u0000\u0000"+
+ "\u0657\u0658\u0006\u00af\u001c\u0000\u0658\u0659\u0006\u00af\u0011\u0000"+
+ "\u0659\u065a\u0006\u00af\u0004\u0000\u065a\u0171\u0001\u0000\u0000\u0000"+
+ "\u065b\u065c\u0003\u00e0g\u0000\u065c\u065d\u0001\u0000\u0000\u0000\u065d"+
+ "\u065e\u0006\u00b0\u0016\u0000\u065e\u0173\u0001\u0000\u0000\u0000\u065f"+
+ "\u0660\u0003\u00e4i\u0000\u0660\u0661\u0001\u0000\u0000\u0000\u0661\u0662"+
+ "\u0006\u00b1\u0015\u0000\u0662\u0175\u0001\u0000\u0000\u0000\u0663\u0664"+
+ "\u0003\u00fcu\u0000\u0664\u0665\u0001\u0000\u0000\u0000\u0665\u0666\u0006"+
+ "\u00b2!\u0000\u0666\u0177\u0001\u0000\u0000\u0000\u0667\u0668\u0003\u0124"+
+ "\u0089\u0000\u0668\u0669\u0001\u0000\u0000\u0000\u0669\u066a\u0006\u00b3"+
+ "\"\u0000\u066a\u0179\u0001\u0000\u0000\u0000\u066b\u066c\u0003\u0120\u0087"+
+ "\u0000\u066c\u066d\u0001\u0000\u0000\u0000\u066d\u066e\u0006\u00b4#\u0000"+
+ "\u066e\u017b\u0001\u0000\u0000\u0000\u066f\u0670\u0003\u0126\u008a\u0000"+
+ "\u0670\u0671\u0001\u0000\u0000\u0000\u0671\u0672\u0006\u00b5$\u0000\u0672"+
+ "\u017d\u0001\u0000\u0000\u0000\u0673\u0674\u0003\u00d8c\u0000\u0674\u0675"+
+ "\u0001\u0000\u0000\u0000\u0675\u0676\u0006\u00b6+\u0000\u0676\u017f\u0001"+
+ "\u0000\u0000\u0000\u0677\u0678\u0003\u0134\u0091\u0000\u0678\u0679\u0001"+
+ "\u0000\u0000\u0000\u0679\u067a\u0006\u00b7\u0019\u0000\u067a\u0181\u0001"+
+ "\u0000\u0000\u0000\u067b\u067c\u0003\u0130\u008f\u0000\u067c\u067d\u0001"+
+ "\u0000\u0000\u0000\u067d\u067e\u0006\u00b8\u001a\u0000\u067e\u0183\u0001"+
+ "\u0000\u0000\u0000\u067f\u0680\u0003\u0012\u0000\u0000\u0680\u0681\u0001"+
+ "\u0000\u0000\u0000\u0681\u0682\u0006\u00b9\u0000\u0000\u0682\u0185\u0001"+
+ "\u0000\u0000\u0000\u0683\u0684\u0003\u0014\u0001\u0000\u0684\u0685\u0001"+
+ "\u0000\u0000\u0000\u0685\u0686\u0006\u00ba\u0000\u0000\u0686\u0187\u0001"+
+ "\u0000\u0000\u0000\u0687\u0688\u0003\u0016\u0002\u0000\u0688\u0689\u0001"+
+ "\u0000\u0000\u0000\u0689\u068a\u0006\u00bb\u0000\u0000\u068a\u0189\u0001"+
+ "\u0000\u0000\u0000\u068b\u068c\u0007\u0011\u0000\u0000\u068c\u068d\u0007"+
+ "\u000b\u0000\u0000\u068d\u068e\u0007\u0004\u0000\u0000\u068e\u068f\u0007"+
+ "\u000b\u0000\u0000\u068f\u0690\u0007\u0011\u0000\u0000\u0690\u0691\u0001"+
+ "\u0000\u0000\u0000\u0691\u0692\u0006\u00bc\u0011\u0000\u0692\u0693\u0006"+
+ "\u00bc\u0004\u0000\u0693\u018b\u0001\u0000\u0000\u0000\u0694\u0695\u0003"+
+ "\u0012\u0000\u0000\u0695\u0696\u0001\u0000\u0000\u0000\u0696\u0697\u0006"+
+ "\u00bd\u0000\u0000\u0697\u018d\u0001\u0000\u0000\u0000\u0698\u0699\u0003"+
+ "\u0014\u0001\u0000\u0699\u069a\u0001\u0000\u0000\u0000\u069a\u069b\u0006"+
+ "\u00be\u0000\u0000\u069b\u018f\u0001\u0000\u0000\u0000\u069c\u069d\u0003"+
+ "\u0016\u0002\u0000\u069d\u069e\u0001\u0000\u0000\u0000\u069e\u069f\u0006"+
+ "\u00bf\u0000\u0000\u069f\u0191\u0001\u0000\u0000\u0000\u06a0\u06a1\u0003"+
+ "\u00b6R\u0000\u06a1\u06a2\u0001\u0000\u0000\u0000\u06a2\u06a3\u0006\u00c0"+
+ "\u0010\u0000\u06a3\u06a4\u0006\u00c0\u0011\u0000\u06a4\u0193\u0001\u0000"+
+ "\u0000\u0000\u06a5\u06a6\u0007#\u0000\u0000\u06a6\u06a7\u0007\t\u0000"+
+ "\u0000\u06a7\u06a8\u0007\n\u0000\u0000\u06a8\u06a9\u0007\u0005\u0000\u0000"+
+ "\u06a9\u0195\u0001\u0000\u0000\u0000\u06aa\u06ab\u0003\u0220\u0107\u0000"+
+ "\u06ab\u06ac\u0001\u0000\u0000\u0000\u06ac\u06ad\u0006\u00c2\u0014\u0000"+
+ "\u06ad\u0197\u0001\u0000\u0000\u0000\u06ae\u06af\u0003\u00f8s\u0000\u06af"+
+ "\u06b0\u0001\u0000\u0000\u0000\u06b0\u06b1\u0006\u00c3\u0013\u0000\u06b1"+
+ "\u06b2\u0006\u00c3\u0011\u0000\u06b2\u06b3\u0006\u00c3\u0004\u0000\u06b3"+
+ "\u0199\u0001\u0000\u0000\u0000\u06b4\u06b5\u0007\u0016\u0000\u0000\u06b5"+
+ "\u06b6\u0007\u0011\u0000\u0000\u06b6\u06b7\u0007\n\u0000\u0000\u06b7\u06b8"+
+ "\u0007\u0005\u0000\u0000\u06b8\u06b9\u0007\u0006\u0000\u0000\u06b9\u06ba"+
+ "\u0001\u0000\u0000\u0000\u06ba\u06bb\u0006\u00c4\u0011\u0000\u06bb\u06bc"+
+ "\u0006\u00c4\u0004\u0000\u06bc\u019b\u0001\u0000\u0000\u0000\u06bd\u06be"+
+ "\u0003\u014e\u009e\u0000\u06be\u06bf\u0001\u0000\u0000\u0000\u06bf\u06c0"+
+ "\u0006\u00c5*\u0000\u06c0\u019d\u0001\u0000\u0000\u0000\u06c1\u06c2\u0003"+
+ "\u00cc]\u0000\u06c2\u06c3\u0001\u0000\u0000\u0000\u06c3\u06c4\u0006\u00c6"+
+ "\u001e\u0000\u06c4\u019f\u0001\u0000\u0000\u0000\u06c5\u06c6\u0003\u00dc"+
+ "e\u0000\u06c6\u06c7\u0001\u0000\u0000\u0000\u06c7\u06c8\u0006\u00c7(\u0000"+
+ "\u06c8\u01a1\u0001\u0000\u0000\u0000\u06c9\u06ca\u0003\u0012\u0000\u0000"+
+ "\u06ca\u06cb\u0001\u0000\u0000\u0000\u06cb\u06cc\u0006\u00c8\u0000\u0000"+
+ "\u06cc\u01a3\u0001\u0000\u0000\u0000\u06cd\u06ce\u0003\u0014\u0001\u0000"+
+ "\u06ce\u06cf\u0001\u0000\u0000\u0000\u06cf\u06d0\u0006\u00c9\u0000\u0000"+
+ "\u06d0\u01a5\u0001\u0000\u0000\u0000\u06d1\u06d2\u0003\u0016\u0002\u0000"+
+ "\u06d2\u06d3\u0001\u0000\u0000\u0000\u06d3\u06d4\u0006\u00ca\u0000\u0000"+
+ "\u06d4\u01a7\u0001\u0000\u0000\u0000\u06d5\u06d6\u0003\u00b6R\u0000\u06d6"+
+ "\u06d7\u0001\u0000\u0000\u0000\u06d7\u06d8\u0006\u00cb\u0010\u0000\u06d8"+
+ "\u06d9\u0006\u00cb\u0011\u0000\u06d9\u01a9\u0001\u0000\u0000\u0000\u06da"+
+ "\u06db\u0003\u012e\u008e\u0000\u06db\u06dc\u0001\u0000\u0000\u0000\u06dc"+
+ "\u06dd\u0006\u00cc\u0012\u0000\u06dd\u06de\u0006\u00cc\u0011\u0000\u06de"+
+ "\u06df\u0006\u00cc\u0011\u0000\u06df\u01ab\u0001\u0000\u0000\u0000\u06e0"+
+ "\u06e1\u0003\u00dce\u0000\u06e1\u06e2\u0001\u0000\u0000\u0000\u06e2\u06e3"+
+ "\u0006\u00cd(\u0000\u06e3\u01ad\u0001\u0000\u0000\u0000\u06e4\u06e5\u0003"+
+ "\u00e0g\u0000\u06e5\u06e6\u0001\u0000\u0000\u0000\u06e6\u06e7\u0006\u00ce"+
+ "\u0016\u0000\u06e7\u01af\u0001\u0000\u0000\u0000\u06e8\u06e9\u0003\u00e4"+
+ "i\u0000\u06e9\u06ea\u0001\u0000\u0000\u0000\u06ea\u06eb\u0006\u00cf\u0015"+
+ "\u0000\u06eb\u01b1\u0001\u0000\u0000\u0000\u06ec\u06ed\u0003\u00f8s\u0000"+
+ "\u06ed\u06ee\u0001\u0000\u0000\u0000\u06ee\u06ef\u0006\u00d0\u0013\u0000"+
+ "\u06ef\u06f0\u0006\u00d0,\u0000\u06f0\u01b3\u0001\u0000\u0000\u0000\u06f1"+
+ "\u06f2\u0003\u014e\u009e\u0000\u06f2\u06f3\u0001\u0000\u0000\u0000\u06f3"+
+ "\u06f4\u0006\u00d1*\u0000\u06f4\u01b5\u0001\u0000\u0000\u0000\u06f5\u06f6"+
+ "\u0003\u00cc]\u0000\u06f6\u06f7\u0001\u0000\u0000\u0000\u06f7\u06f8\u0006"+
+ "\u00d2\u001e\u0000\u06f8\u01b7\u0001\u0000\u0000\u0000\u06f9\u06fa\u0003"+
+ "\u0012\u0000\u0000\u06fa\u06fb\u0001\u0000\u0000\u0000\u06fb\u06fc\u0006"+
+ "\u00d3\u0000\u0000\u06fc\u01b9\u0001\u0000\u0000\u0000\u06fd\u06fe\u0003"+
+ "\u0014\u0001\u0000\u06fe\u06ff\u0001\u0000\u0000\u0000\u06ff\u0700\u0006"+
+ "\u00d4\u0000\u0000\u0700\u01bb\u0001\u0000\u0000\u0000\u0701\u0702\u0003"+
+ "\u0016\u0002\u0000\u0702\u0703\u0001\u0000\u0000\u0000\u0703\u0704\u0006"+
+ "\u00d5\u0000\u0000\u0704\u01bd\u0001\u0000\u0000\u0000\u0705\u0706\u0003"+
+ "\u00b6R\u0000\u0706\u0707\u0001\u0000\u0000\u0000\u0707\u0708\u0006\u00d6"+
+ "\u0010\u0000\u0708\u0709\u0006\u00d6\u0011\u0000\u0709\u070a\u0006\u00d6"+
+ "\u0011\u0000\u070a\u01bf\u0001\u0000\u0000\u0000\u070b\u070c\u0003\u012e"+
+ "\u008e\u0000\u070c\u070d\u0001\u0000\u0000\u0000\u070d\u070e\u0006\u00d7"+
+ "\u0012\u0000\u070e\u070f\u0006\u00d7\u0011\u0000\u070f\u0710\u0006\u00d7"+
+ "\u0011\u0000\u0710\u0711\u0006\u00d7\u0011\u0000\u0711\u01c1\u0001\u0000"+
+ "\u0000\u0000\u0712\u0713\u0003\u00e0g\u0000\u0713\u0714\u0001\u0000\u0000"+
+ "\u0000\u0714\u0715\u0006\u00d8\u0016\u0000\u0715\u01c3\u0001\u0000\u0000"+
+ "\u0000\u0716\u0717\u0003\u00e4i\u0000\u0717\u0718\u0001\u0000\u0000\u0000"+
+ "\u0718\u0719\u0006\u00d9\u0015\u0000\u0719\u01c5\u0001\u0000\u0000\u0000"+
+ "\u071a\u071b\u0003\u0202\u00f8\u0000\u071b\u071c\u0001\u0000\u0000\u0000"+
+ "\u071c\u071d\u0006\u00da \u0000\u071d\u01c7\u0001\u0000\u0000\u0000\u071e"+
+ "\u071f\u0003\u0012\u0000\u0000\u071f\u0720\u0001\u0000\u0000\u0000\u0720"+
+ "\u0721\u0006\u00db\u0000\u0000\u0721\u01c9\u0001\u0000\u0000\u0000\u0722"+
+ "\u0723\u0003\u0014\u0001\u0000\u0723\u0724\u0001\u0000\u0000\u0000\u0724"+
+ "\u0725\u0006\u00dc\u0000\u0000\u0725\u01cb\u0001\u0000\u0000\u0000\u0726"+
+ "\u0727\u0003\u0016\u0002\u0000\u0727\u0728\u0001\u0000\u0000\u0000\u0728"+
+ "\u0729\u0006\u00dd\u0000\u0000\u0729\u01cd\u0001\u0000\u0000\u0000\u072a"+
+ "\u072b\u0003\u00b6R\u0000\u072b\u072c\u0001\u0000\u0000\u0000\u072c\u072d"+
+ "\u0006\u00de\u0010\u0000\u072d\u072e\u0006\u00de\u0011\u0000\u072e\u01cf"+
+ "\u0001\u0000\u0000\u0000\u072f\u0730\u0003\u012e\u008e\u0000\u0730\u0731"+
+ "\u0001\u0000\u0000\u0000\u0731\u0732\u0006\u00df\u0012\u0000\u0732\u0733"+
+ "\u0006\u00df\u0011\u0000\u0733\u0734\u0006\u00df\u0011\u0000\u0734\u01d1"+
+ "\u0001\u0000\u0000\u0000\u0735\u0736\u0003\u0128\u008b\u0000\u0736\u0737"+
+ "\u0001\u0000\u0000\u0000\u0737\u0738\u0006\u00e0\u0017\u0000\u0738\u01d3"+
+ "\u0001\u0000\u0000\u0000\u0739\u073a\u0003\u012a\u008c\u0000\u073a\u073b"+
+ "\u0001\u0000\u0000\u0000\u073b\u073c\u0006\u00e1\u0018\u0000\u073c\u01d5"+
+ "\u0001\u0000\u0000\u0000\u073d\u073e\u0003\u00e4i\u0000\u073e\u073f\u0001"+
+ "\u0000\u0000\u0000\u073f\u0740\u0006\u00e2\u0015\u0000\u0740\u01d7\u0001"+
+ "\u0000\u0000\u0000\u0741\u0742\u0003\u00fcu\u0000\u0742\u0743\u0001\u0000"+
+ "\u0000\u0000\u0743\u0744\u0006\u00e3!\u0000\u0744\u01d9\u0001\u0000\u0000"+
+ "\u0000\u0745\u0746\u0003\u0124\u0089\u0000\u0746\u0747\u0001\u0000\u0000"+
+ "\u0000\u0747\u0748\u0006\u00e4\"\u0000\u0748\u01db\u0001\u0000\u0000\u0000"+
+ "\u0749\u074a\u0003\u0120\u0087\u0000\u074a\u074b\u0001\u0000\u0000\u0000"+
+ "\u074b\u074c\u0006\u00e5#\u0000\u074c\u01dd\u0001\u0000\u0000\u0000\u074d"+
+ "\u074e\u0003\u0126\u008a\u0000\u074e\u074f\u0001\u0000\u0000\u0000\u074f"+
+ "\u0750\u0006\u00e6$\u0000\u0750\u01df\u0001\u0000\u0000\u0000\u0751\u0752"+
+ "\u0003\u0134\u0091\u0000\u0752\u0753\u0001\u0000\u0000\u0000\u0753\u0754"+
+ "\u0006\u00e7\u0019\u0000\u0754\u01e1\u0001\u0000\u0000\u0000\u0755\u0756"+
+ "\u0003\u0130\u008f\u0000\u0756\u0757\u0001\u0000\u0000\u0000\u0757\u0758"+
+ "\u0006\u00e8\u001a\u0000\u0758\u01e3\u0001\u0000\u0000\u0000\u0759\u075a"+
+ "\u0003\u0012\u0000\u0000\u075a\u075b\u0001\u0000\u0000\u0000\u075b\u075c"+
+ "\u0006\u00e9\u0000\u0000\u075c\u01e5\u0001\u0000\u0000\u0000\u075d\u075e"+
+ "\u0003\u0014\u0001\u0000\u075e\u075f\u0001\u0000\u0000\u0000\u075f\u0760"+
+ "\u0006\u00ea\u0000\u0000\u0760\u01e7\u0001\u0000\u0000\u0000\u0761\u0762"+
+ "\u0003\u0016\u0002\u0000\u0762\u0763\u0001\u0000\u0000\u0000\u0763\u0764"+
+ "\u0006\u00eb\u0000\u0000\u0764\u01e9\u0001\u0000\u0000\u0000\u0765\u0766"+
+ "\u0003\u00b6R\u0000\u0766\u0767\u0001\u0000\u0000\u0000\u0767\u0768\u0006"+
+ "\u00ec\u0010\u0000\u0768\u0769\u0006\u00ec\u0011\u0000\u0769\u01eb\u0001"+
+ "\u0000\u0000\u0000\u076a\u076b\u0003\u012e\u008e\u0000\u076b\u076c\u0001"+
+ "\u0000\u0000\u0000\u076c\u076d\u0006\u00ed\u0012\u0000\u076d\u076e\u0006"+
+ "\u00ed\u0011\u0000\u076e\u076f\u0006\u00ed\u0011\u0000\u076f\u01ed\u0001"+
+ "\u0000\u0000\u0000\u0770\u0771\u0003\u00e4i\u0000\u0771\u0772\u0001\u0000"+
+ "\u0000\u0000\u0772\u0773\u0006\u00ee\u0015\u0000\u0773\u01ef\u0001\u0000"+
+ "\u0000\u0000\u0774\u0775\u0003\u0128\u008b\u0000\u0775\u0776\u0001\u0000"+
+ "\u0000\u0000\u0776\u0777\u0006\u00ef\u0017\u0000\u0777\u01f1\u0001\u0000"+
+ "\u0000\u0000\u0778\u0779\u0003\u012a\u008c\u0000\u0779\u077a\u0001\u0000"+
+ "\u0000\u0000\u077a\u077b\u0006\u00f0\u0018\u0000\u077b\u01f3\u0001\u0000"+
+ "\u0000\u0000\u077c\u077d\u0003\u00e0g\u0000\u077d\u077e\u0001\u0000\u0000"+
+ "\u0000\u077e\u077f\u0006\u00f1\u0016\u0000\u077f\u01f5\u0001\u0000\u0000"+
+ "\u0000\u0780\u0781\u0003\u00fcu\u0000\u0781\u0782\u0001\u0000\u0000\u0000"+
+ "\u0782\u0783\u0006\u00f2!\u0000\u0783\u01f7\u0001\u0000\u0000\u0000\u0784"+
+ "\u0785\u0003\u0124\u0089\u0000\u0785\u0786\u0001\u0000\u0000\u0000\u0786"+
+ "\u0787\u0006\u00f3\"\u0000\u0787\u01f9\u0001\u0000\u0000\u0000\u0788\u0789"+
+ "\u0003\u0120\u0087\u0000\u0789\u078a\u0001\u0000\u0000\u0000\u078a\u078b"+
+ "\u0006\u00f4#\u0000\u078b\u01fb\u0001\u0000\u0000\u0000\u078c\u078d\u0003"+
+ "\u0126\u008a\u0000\u078d\u078e\u0001\u0000\u0000\u0000\u078e\u078f\u0006"+
+ "\u00f5$\u0000\u078f\u01fd\u0001\u0000\u0000\u0000\u0790\u0795\u0003\u00ba"+
+ "T\u0000\u0791\u0795\u0003\u00b8S\u0000\u0792\u0795\u0003\u00c8[\u0000"+
+ "\u0793\u0795\u0003\u0116\u0082\u0000\u0794\u0790\u0001\u0000\u0000\u0000"+
+ "\u0794\u0791\u0001\u0000\u0000\u0000\u0794\u0792\u0001\u0000\u0000\u0000"+
+ "\u0794\u0793\u0001\u0000\u0000\u0000\u0795\u01ff\u0001\u0000\u0000\u0000"+
+ "\u0796\u0799\u0003\u00baT\u0000\u0797\u0799\u0003\u0116\u0082\u0000\u0798"+
+ "\u0796\u0001\u0000\u0000\u0000\u0798\u0797\u0001\u0000\u0000\u0000\u0799"+
+ "\u079d\u0001\u0000\u0000\u0000\u079a\u079c\u0003\u01fe\u00f6\u0000\u079b"+
+ "\u079a\u0001\u0000\u0000\u0000\u079c\u079f\u0001\u0000\u0000\u0000\u079d"+
+ "\u079b\u0001\u0000\u0000\u0000\u079d\u079e\u0001\u0000\u0000\u0000\u079e"+
+ "\u07aa\u0001\u0000\u0000\u0000\u079f\u079d\u0001\u0000\u0000\u0000\u07a0"+
+ "\u07a3\u0003\u00c8[\u0000\u07a1\u07a3\u0003\u00c2X\u0000\u07a2\u07a0\u0001"+
+ "\u0000\u0000\u0000\u07a2\u07a1\u0001\u0000\u0000\u0000\u07a3\u07a5\u0001"+
+ "\u0000\u0000\u0000\u07a4\u07a6\u0003\u01fe\u00f6\u0000\u07a5\u07a4\u0001"+
+ "\u0000\u0000\u0000\u07a6\u07a7\u0001\u0000\u0000\u0000\u07a7\u07a5\u0001"+
+ "\u0000\u0000\u0000\u07a7\u07a8\u0001\u0000\u0000\u0000\u07a8\u07aa\u0001"+
+ "\u0000\u0000\u0000\u07a9\u0798\u0001\u0000\u0000\u0000\u07a9\u07a2\u0001"+
+ "\u0000\u0000\u0000\u07aa\u0201\u0001\u0000\u0000\u0000\u07ab\u07ae\u0003"+
+ "\u0200\u00f7\u0000\u07ac\u07ae\u0003\u0132\u0090\u0000\u07ad\u07ab\u0001"+
+ "\u0000\u0000\u0000\u07ad\u07ac\u0001\u0000\u0000\u0000\u07ae\u07af\u0001"+
+ "\u0000\u0000\u0000\u07af\u07ad\u0001\u0000\u0000\u0000\u07af\u07b0\u0001"+
+ "\u0000\u0000\u0000\u07b0\u0203\u0001\u0000\u0000\u0000\u07b1\u07b2\u0003"+
+ "\u0012\u0000\u0000\u07b2\u07b3\u0001\u0000\u0000\u0000\u07b3\u07b4\u0006"+
+ "\u00f9\u0000\u0000\u07b4\u0205\u0001\u0000\u0000\u0000\u07b5\u07b6\u0003"+
+ "\u0014\u0001\u0000\u07b6\u07b7\u0001\u0000\u0000\u0000\u07b7\u07b8\u0006"+
+ "\u00fa\u0000\u0000\u07b8\u0207\u0001\u0000\u0000\u0000\u07b9\u07ba\u0003"+
+ "\u0016\u0002\u0000\u07ba\u07bb\u0001\u0000\u0000\u0000\u07bb\u07bc\u0006"+
+ "\u00fb\u0000\u0000\u07bc\u0209\u0001\u0000\u0000\u0000\u07bd\u07be\u0003"+
+ "\u00b6R\u0000\u07be\u07bf\u0001\u0000\u0000\u0000\u07bf\u07c0\u0006\u00fc"+
+ "\u0010\u0000\u07c0\u07c1\u0006\u00fc\u0011\u0000\u07c1\u020b\u0001\u0000"+
+ "\u0000\u0000\u07c2\u07c3\u0003\u012e\u008e\u0000\u07c3\u07c4\u0001\u0000"+
+ "\u0000\u0000\u07c4\u07c5\u0006\u00fd\u0012\u0000\u07c5\u07c6\u0006\u00fd"+
+ "\u0011\u0000\u07c6\u07c7\u0006\u00fd\u0011\u0000\u07c7\u020d\u0001\u0000"+
+ "\u0000\u0000\u07c8\u07c9\u0003\u0128\u008b\u0000\u07c9\u07ca\u0001\u0000"+
+ "\u0000\u0000\u07ca\u07cb\u0006\u00fe\u0017\u0000\u07cb\u020f\u0001\u0000"+
+ "\u0000\u0000\u07cc\u07cd\u0003\u012a\u008c\u0000\u07cd\u07ce\u0001\u0000"+
+ "\u0000\u0000\u07ce\u07cf\u0006\u00ff\u0018\u0000\u07cf\u0211\u0001\u0000"+
+ "\u0000\u0000\u07d0\u07d1\u0003\u00d6b\u0000\u07d1\u07d2\u0001\u0000\u0000"+
+ "\u0000\u07d2\u07d3\u0006\u0100\u001f\u0000\u07d3\u0213\u0001\u0000\u0000"+
+ "\u0000\u07d4\u07d5\u0003\u00e0g\u0000\u07d5\u07d6\u0001\u0000\u0000\u0000"+
+ "\u07d6\u07d7\u0006\u0101\u0016\u0000\u07d7\u0215\u0001\u0000\u0000\u0000"+
+ "\u07d8\u07d9\u0003\u00e4i\u0000\u07d9\u07da\u0001\u0000\u0000\u0000\u07da"+
+ "\u07db\u0006\u0102\u0015\u0000\u07db\u0217\u0001\u0000\u0000\u0000\u07dc"+
+ "\u07dd\u0003\u00fcu\u0000\u07dd\u07de\u0001\u0000\u0000\u0000\u07de\u07df"+
+ "\u0006\u0103!\u0000\u07df\u0219\u0001\u0000\u0000\u0000\u07e0\u07e1\u0003"+
+ "\u0124\u0089\u0000\u07e1\u07e2\u0001\u0000\u0000\u0000\u07e2\u07e3\u0006"+
+ "\u0104\"\u0000\u07e3\u021b\u0001\u0000\u0000\u0000\u07e4\u07e5\u0003\u0120"+
+ "\u0087\u0000\u07e5\u07e6\u0001\u0000\u0000\u0000\u07e6\u07e7\u0006\u0105"+
+ "#\u0000\u07e7\u021d\u0001\u0000\u0000\u0000\u07e8\u07e9\u0003\u0126\u008a"+
+ "\u0000\u07e9\u07ea\u0001\u0000\u0000\u0000\u07ea\u07eb\u0006\u0106$\u0000"+
+ "\u07eb\u021f\u0001\u0000\u0000\u0000\u07ec\u07ed\u0007\u0004\u0000\u0000"+
+ "\u07ed\u07ee\u0007\u0011\u0000\u0000\u07ee\u0221\u0001\u0000\u0000\u0000"+
+ "\u07ef\u07f0\u0003\u0202\u00f8\u0000\u07f0\u07f1\u0001\u0000\u0000\u0000"+
+ "\u07f1\u07f2\u0006\u0108 \u0000\u07f2\u0223\u0001\u0000\u0000\u0000\u07f3"+
+ "\u07f4\u0003\u0012\u0000\u0000\u07f4\u07f5\u0001\u0000\u0000\u0000\u07f5"+
+ "\u07f6\u0006\u0109\u0000\u0000\u07f6\u0225\u0001\u0000\u0000\u0000\u07f7"+
+ "\u07f8\u0003\u0014\u0001\u0000\u07f8\u07f9\u0001\u0000\u0000\u0000\u07f9"+
+ "\u07fa\u0006\u010a\u0000\u0000\u07fa\u0227\u0001\u0000\u0000\u0000\u07fb"+
+ "\u07fc\u0003\u0016\u0002\u0000\u07fc\u07fd\u0001\u0000\u0000\u0000\u07fd"+
+ "\u07fe\u0006\u010b\u0000\u0000\u07fe\u0229\u0001\u0000\u0000\u0000\u07ff"+
+ "\u0800\u0003\u0100w\u0000\u0800\u0801\u0001\u0000\u0000\u0000\u0801\u0802"+
+ "\u0006\u010c-\u0000\u0802\u022b\u0001\u0000\u0000\u0000\u0803\u0804\u0003"+
+ "\u00e6j\u0000\u0804\u0805\u0001\u0000\u0000\u0000\u0805\u0806\u0006\u010d"+
+ ".\u0000\u0806\u022d\u0001\u0000\u0000\u0000\u0807\u0808\u0003\u00f4q\u0000"+
+ "\u0808\u0809\u0001\u0000\u0000\u0000\u0809\u080a\u0006\u010e/\u0000\u080a"+
+ "\u022f\u0001\u0000\u0000\u0000\u080b\u080c\u0003\u00def\u0000\u080c\u080d"+
+ "\u0001\u0000\u0000\u0000\u080d\u080e\u0006\u010f0\u0000\u080e\u080f\u0006"+
+ "\u010f\u0011\u0000\u080f\u0231\u0001\u0000\u0000\u0000\u0810\u0811\u0003"+
+ "\u00d6b\u0000\u0811\u0812\u0001\u0000\u0000\u0000\u0812\u0813\u0006\u0110"+
+ "\u001f\u0000\u0813\u0233\u0001\u0000\u0000\u0000\u0814\u0815\u0003\u00cc"+
+ "]\u0000\u0815\u0816\u0001\u0000\u0000\u0000\u0816\u0817\u0006\u0111\u001e"+
+ "\u0000\u0817\u0235\u0001\u0000\u0000\u0000\u0818\u0819\u0003\u0130\u008f"+
+ "\u0000\u0819\u081a\u0001\u0000\u0000\u0000\u081a\u081b\u0006\u0112\u001a"+
+ "\u0000\u081b\u0237\u0001\u0000\u0000\u0000\u081c\u081d\u0003\u0134\u0091"+
+ "\u0000\u081d\u081e\u0001\u0000\u0000\u0000\u081e\u081f\u0006\u0113\u0019"+
+ "\u0000\u081f\u0239\u0001\u0000\u0000\u0000\u0820\u0821\u0003\u00d0_\u0000"+
+ "\u0821\u0822\u0001\u0000\u0000\u0000\u0822\u0823\u0006\u01141\u0000\u0823"+
+ "\u023b\u0001\u0000\u0000\u0000\u0824\u0825\u0003\u00ce^\u0000\u0825\u0826"+
+ "\u0001\u0000\u0000\u0000\u0826\u0827\u0006\u01152\u0000\u0827\u023d\u0001"+
+ "\u0000\u0000\u0000\u0828\u0829\u0003\u00e0g\u0000\u0829\u082a\u0001\u0000"+
+ "\u0000\u0000\u082a\u082b\u0006\u0116\u0016\u0000\u082b\u023f\u0001\u0000"+
+ "\u0000\u0000\u082c\u082d\u0003\u00e4i\u0000\u082d\u082e\u0001\u0000\u0000"+
+ "\u0000\u082e\u082f\u0006\u0117\u0015\u0000\u082f\u0241\u0001\u0000\u0000"+
+ "\u0000\u0830\u0831\u0003\u00fcu\u0000\u0831\u0832\u0001\u0000\u0000\u0000"+
+ "\u0832\u0833\u0006\u0118!\u0000\u0833\u0243\u0001\u0000\u0000\u0000\u0834"+
+ "\u0835\u0003\u0124\u0089\u0000\u0835\u0836\u0001\u0000\u0000\u0000\u0836"+
+ "\u0837\u0006\u0119\"\u0000\u0837\u0245\u0001\u0000\u0000\u0000\u0838\u0839"+
+ "\u0003\u0120\u0087\u0000\u0839\u083a\u0001\u0000\u0000\u0000\u083a\u083b"+
+ "\u0006\u011a#\u0000\u083b\u0247\u0001\u0000\u0000\u0000\u083c\u083d\u0003"+
+ "\u0126\u008a\u0000\u083d\u083e\u0001\u0000\u0000\u0000\u083e\u083f\u0006"+
+ "\u011b$\u0000\u083f\u0249\u0001\u0000\u0000\u0000\u0840\u0841\u0003\u0128"+
+ "\u008b\u0000\u0841\u0842\u0001\u0000\u0000\u0000\u0842\u0843\u0006\u011c"+
+ "\u0017\u0000\u0843\u024b\u0001\u0000\u0000\u0000\u0844\u0845\u0003\u012a"+
+ "\u008c\u0000\u0845\u0846\u0001\u0000\u0000\u0000\u0846\u0847\u0006\u011d"+
+ "\u0018\u0000\u0847\u024d\u0001\u0000\u0000\u0000\u0848\u0849\u0003\u0202"+
+ "\u00f8\u0000\u0849\u084a\u0001\u0000\u0000\u0000\u084a\u084b\u0006\u011e"+
+ " \u0000\u084b\u024f\u0001\u0000\u0000\u0000\u084c\u084d\u0003\u0012\u0000"+
+ "\u0000\u084d\u084e\u0001\u0000\u0000\u0000\u084e\u084f\u0006\u011f\u0000"+
+ "\u0000\u084f\u0251\u0001\u0000\u0000\u0000\u0850\u0851\u0003\u0014\u0001"+
+ "\u0000\u0851\u0852\u0001\u0000\u0000\u0000\u0852\u0853\u0006\u0120\u0000"+
+ "\u0000\u0853\u0253\u0001\u0000\u0000\u0000\u0854\u0855\u0003\u0016\u0002"+
+ "\u0000\u0855\u0856\u0001\u0000\u0000\u0000\u0856\u0857\u0006\u0121\u0000"+
+ "\u0000\u0857\u0255\u0001\u0000\u0000\u0000\u0858\u0859\u0003\u00b6R\u0000"+
+ "\u0859\u085a\u0001\u0000\u0000\u0000\u085a\u085b\u0006\u0122\u0010\u0000"+
+ "\u085b\u085c\u0006\u0122\u0011\u0000\u085c\u0257\u0001\u0000\u0000\u0000"+
+ "\u085d\u085e\u0007\n\u0000\u0000\u085e\u085f\u0007\u0005\u0000\u0000\u085f"+
+ "\u0860\u0007\u0015\u0000\u0000\u0860\u0861\u0007\t\u0000\u0000\u0861\u0259"+
+ "\u0001\u0000\u0000\u0000\u0862\u0863\u0003\u0012\u0000\u0000\u0863\u0864"+
+ "\u0001\u0000\u0000\u0000\u0864\u0865\u0006\u0124\u0000\u0000\u0865\u025b"+
+ "\u0001\u0000\u0000\u0000\u0866\u0867\u0003\u0014\u0001\u0000\u0867\u0868"+
+ "\u0001\u0000\u0000\u0000\u0868\u0869\u0006\u0125\u0000\u0000\u0869\u025d"+
+ "\u0001\u0000\u0000\u0000\u086a\u086b\u0003\u0016\u0002\u0000\u086b\u086c"+
+ "\u0001\u0000\u0000\u0000\u086c\u086d\u0006\u0126\u0000\u0000\u086d\u025f"+
+ "\u0001\u0000\u0000\u0000F\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+
+ "\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0266\u026a\u026d\u0276\u0278"+
+ "\u0283\u03a4\u03f9\u03fd\u0402\u0486\u048b\u0494\u049b\u04a0\u04a2\u04ad"+
+ "\u04b5\u04b8\u04ba\u04bf\u04c4\u04ca\u04d1\u04d6\u04dc\u04df\u04e7\u04eb"+
+ "\u0578\u057d\u0584\u0586\u058b\u0590\u0597\u0599\u05b3\u05b8\u05bd\u05bf"+
+ "\u05c5\u0603\u0608\u0794\u0798\u079d\u07a2\u07a7\u07a9\u07ad\u07af3\u0000"+
+ "\u0001\u0000\u0005\u0001\u0000\u0005\u0002\u0000\u0005\u0004\u0000\u0005"+
+ "\u0005\u0000\u0005\u0006\u0000\u0005\u0007\u0000\u0005\b\u0000\u0005\t"+
+ "\u0000\u0005\n\u0000\u0005\u000b\u0000\u0005\r\u0000\u0005\u000e\u0000"+
+ "\u0005\u000f\u0000\u0005\u0010\u0000\u0005\u0011\u0000\u00072\u0000\u0004"+
+ "\u0000\u0000\u0007c\u0000\u0007I\u0000\u0007\u008d\u0000\u0007?\u0000"+
+ "\u0007=\u0000\u0007`\u0000\u0007a\u0000\u0007e\u0000\u0007d\u0000\u0005"+
+ "\u0003\u0000\u0007N\u0000\u0007(\u0000\u00073\u0000\u00078\u0000\u0007"+
+ "\u0089\u0000\u0007K\u0000\u0007^\u0000\u0007]\u0000\u0007_\u0000\u0007"+
+ "b\u0000\u0005\u0000\u0000\u0007\u0011\u0000\u0007;\u0000\u0007:\u0000"+
+ "\u0007j\u0000\u00079\u0000\u0005\f\u0000\u0007M\u0000\u0007@\u0000\u0007"+
+ "G\u0000\u0007<\u0000\u00075\u0000\u00074\u0000";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
index afe803f43fd82..a375b165bc0e7 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp
@@ -322,6 +322,9 @@ rerankField
fromCommand
timeSeriesCommand
indexPatternAndMetadataFields
+indexPatternOrSubquery
+subquery
+subqueryProcessingCommand
indexPattern
clusterString
selectorString
@@ -401,4 +404,4 @@ joinCondition
atn:
-[4, 1, 151, 920, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 1, 0, 1, 0, 4, 0, 185, 8, 0, 11, 0, 12, 0, 186, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 3, 0, 195, 8, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 206, 8, 2, 10, 2, 12, 2, 209, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 217, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 243, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 256, 8, 8, 10, 8, 12, 8, 259, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 264, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 271, 8, 10, 10, 10, 12, 10, 274, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 279, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 290, 8, 14, 10, 14, 12, 14, 293, 9, 14, 1, 14, 3, 14, 296, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 307, 8, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 321, 8, 20, 10, 20, 12, 20, 324, 9, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 331, 8, 22, 1, 22, 1, 22, 3, 22, 335, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 340, 8, 23, 10, 23, 12, 23, 343, 9, 23, 1, 24, 1, 24, 1, 24, 3, 24, 348, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 353, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 362, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 367, 8, 26, 10, 26, 12, 26, 370, 9, 26, 1, 27, 1, 27, 1, 27, 3, 27, 375, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 384, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 389, 8, 28, 10, 28, 12, 28, 392, 9, 28, 1, 29, 1, 29, 1, 29, 5, 29, 397, 8, 29, 10, 29, 12, 29, 400, 9, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 3, 31, 407, 8, 31, 1, 32, 1, 32, 3, 32, 411, 8, 32, 1, 33, 1, 33, 3, 33, 415, 8, 33, 1, 34, 1, 34, 1, 34, 3, 34, 420, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 429, 8, 36, 10, 36, 12, 36, 432, 9, 36, 1, 37, 1, 37, 3, 37, 436, 8, 37, 1, 37, 1, 37, 3, 37, 440, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 452, 8, 40, 10, 40, 12, 40, 455, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 465, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 471, 8, 42, 1, 43, 1, 43, 1, 43, 5, 43, 476, 8, 43, 10, 43, 12, 43, 479, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 3, 45, 487, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 510, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 516, 8, 51, 10, 51, 12, 51, 519, 9, 51, 3, 51, 521, 8, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 3, 53, 528, 8, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 539, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 546, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 4, 57, 552, 8, 57, 11, 57, 12, 57, 553, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 566, 8, 59, 10, 59, 12, 59, 569, 9, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 577, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 588, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 598, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 604, 8, 63, 3, 63, 606, 8, 63, 1, 64, 1, 64, 3, 64, 610, 8, 64, 1, 64, 5, 64, 613, 8, 64, 10, 64, 12, 64, 616, 9, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 629, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 654, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 661, 8, 70, 10, 70, 12, 70, 664, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 671, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 676, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 684, 8, 70, 10, 70, 12, 70, 687, 9, 70, 1, 71, 1, 71, 3, 71, 691, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 698, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 705, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 712, 8, 71, 10, 71, 12, 71, 715, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 721, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 728, 8, 71, 10, 71, 12, 71, 731, 9, 71, 1, 71, 1, 71, 3, 71, 735, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 740, 8, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 750, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 756, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 764, 8, 74, 10, 74, 12, 74, 767, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 777, 8, 75, 1, 75, 1, 75, 1, 75, 5, 75, 782, 8, 75, 10, 75, 12, 75, 785, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 793, 8, 76, 10, 76, 12, 76, 796, 9, 76, 1, 76, 1, 76, 3, 76, 800, 8, 76, 3, 76, 802, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 809, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 815, 8, 78, 10, 78, 12, 78, 818, 9, 78, 3, 78, 820, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 830, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 845, 8, 81, 10, 81, 12, 81, 848, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 856, 8, 81, 10, 81, 12, 81, 859, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 867, 8, 81, 10, 81, 12, 81, 870, 9, 81, 1, 81, 1, 81, 3, 81, 874, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 880, 8, 83, 1, 84, 3, 84, 883, 8, 84, 1, 84, 1, 84, 1, 85, 3, 85, 888, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 904, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 909, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 915, 8, 90, 10, 90, 12, 90, 918, 9, 90, 1, 90, 0, 5, 4, 118, 140, 148, 150, 91, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 963, 0, 194, 1, 0, 0, 0, 2, 196, 1, 0, 0, 0, 4, 199, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 8, 242, 1, 0, 0, 0, 10, 244, 1, 0, 0, 0, 12, 247, 1, 0, 0, 0, 14, 249, 1, 0, 0, 0, 16, 252, 1, 0, 0, 0, 18, 263, 1, 0, 0, 0, 20, 267, 1, 0, 0, 0, 22, 275, 1, 0, 0, 0, 24, 280, 1, 0, 0, 0, 26, 283, 1, 0, 0, 0, 28, 286, 1, 0, 0, 0, 30, 306, 1, 0, 0, 0, 32, 308, 1, 0, 0, 0, 34, 310, 1, 0, 0, 0, 36, 312, 1, 0, 0, 0, 38, 314, 1, 0, 0, 0, 40, 316, 1, 0, 0, 0, 42, 325, 1, 0, 0, 0, 44, 328, 1, 0, 0, 0, 46, 336, 1, 0, 0, 0, 48, 344, 1, 0, 0, 0, 50, 361, 1, 0, 0, 0, 52, 363, 1, 0, 0, 0, 54, 383, 1, 0, 0, 0, 56, 385, 1, 0, 0, 0, 58, 393, 1, 0, 0, 0, 60, 401, 1, 0, 0, 0, 62, 406, 1, 0, 0, 0, 64, 410, 1, 0, 0, 0, 66, 414, 1, 0, 0, 0, 68, 419, 1, 0, 0, 0, 70, 421, 1, 0, 0, 0, 72, 424, 1, 0, 0, 0, 74, 433, 1, 0, 0, 0, 76, 441, 1, 0, 0, 0, 78, 444, 1, 0, 0, 0, 80, 447, 1, 0, 0, 0, 82, 464, 1, 0, 0, 0, 84, 466, 1, 0, 0, 0, 86, 472, 1, 0, 0, 0, 88, 480, 1, 0, 0, 0, 90, 486, 1, 0, 0, 0, 92, 488, 1, 0, 0, 0, 94, 492, 1, 0, 0, 0, 96, 495, 1, 0, 0, 0, 98, 498, 1, 0, 0, 0, 100, 502, 1, 0, 0, 0, 102, 505, 1, 0, 0, 0, 104, 522, 1, 0, 0, 0, 106, 527, 1, 0, 0, 0, 108, 531, 1, 0, 0, 0, 110, 534, 1, 0, 0, 0, 112, 547, 1, 0, 0, 0, 114, 551, 1, 0, 0, 0, 116, 555, 1, 0, 0, 0, 118, 559, 1, 0, 0, 0, 120, 570, 1, 0, 0, 0, 122, 572, 1, 0, 0, 0, 124, 583, 1, 0, 0, 0, 126, 605, 1, 0, 0, 0, 128, 607, 1, 0, 0, 0, 130, 628, 1, 0, 0, 0, 132, 630, 1, 0, 0, 0, 134, 635, 1, 0, 0, 0, 136, 638, 1, 0, 0, 0, 138, 642, 1, 0, 0, 0, 140, 675, 1, 0, 0, 0, 142, 734, 1, 0, 0, 0, 144, 736, 1, 0, 0, 0, 146, 749, 1, 0, 0, 0, 148, 755, 1, 0, 0, 0, 150, 776, 1, 0, 0, 0, 152, 786, 1, 0, 0, 0, 154, 808, 1, 0, 0, 0, 156, 810, 1, 0, 0, 0, 158, 823, 1, 0, 0, 0, 160, 829, 1, 0, 0, 0, 162, 873, 1, 0, 0, 0, 164, 875, 1, 0, 0, 0, 166, 879, 1, 0, 0, 0, 168, 882, 1, 0, 0, 0, 170, 887, 1, 0, 0, 0, 172, 891, 1, 0, 0, 0, 174, 893, 1, 0, 0, 0, 176, 895, 1, 0, 0, 0, 178, 908, 1, 0, 0, 0, 180, 910, 1, 0, 0, 0, 182, 184, 4, 0, 0, 0, 183, 185, 3, 136, 68, 0, 184, 183, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 186, 187, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 189, 3, 2, 1, 0, 189, 190, 5, 0, 0, 1, 190, 195, 1, 0, 0, 0, 191, 192, 3, 2, 1, 0, 192, 193, 5, 0, 0, 1, 193, 195, 1, 0, 0, 0, 194, 182, 1, 0, 0, 0, 194, 191, 1, 0, 0, 0, 195, 1, 1, 0, 0, 0, 196, 197, 3, 4, 2, 0, 197, 198, 5, 0, 0, 1, 198, 3, 1, 0, 0, 0, 199, 200, 6, 2, -1, 0, 200, 201, 3, 6, 3, 0, 201, 207, 1, 0, 0, 0, 202, 203, 10, 1, 0, 0, 203, 204, 5, 50, 0, 0, 204, 206, 3, 8, 4, 0, 205, 202, 1, 0, 0, 0, 206, 209, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 5, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 14, 7, 0, 212, 217, 3, 100, 50, 0, 213, 217, 3, 26, 13, 0, 214, 215, 4, 3, 2, 0, 215, 217, 3, 96, 48, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 7, 1, 0, 0, 0, 218, 243, 3, 42, 21, 0, 219, 243, 3, 10, 5, 0, 220, 243, 3, 76, 38, 0, 221, 243, 3, 70, 35, 0, 222, 243, 3, 44, 22, 0, 223, 243, 3, 72, 36, 0, 224, 243, 3, 78, 39, 0, 225, 243, 3, 80, 40, 0, 226, 243, 3, 84, 42, 0, 227, 243, 3, 92, 46, 0, 228, 243, 3, 102, 51, 0, 229, 243, 3, 94, 47, 0, 230, 243, 3, 176, 88, 0, 231, 243, 3, 110, 55, 0, 232, 243, 3, 124, 62, 0, 233, 243, 3, 108, 54, 0, 234, 243, 3, 112, 56, 0, 235, 243, 3, 122, 61, 0, 236, 243, 3, 126, 63, 0, 237, 243, 3, 128, 64, 0, 238, 239, 4, 4, 3, 0, 239, 243, 3, 132, 66, 0, 240, 241, 4, 4, 4, 0, 241, 243, 3, 134, 67, 0, 242, 218, 1, 0, 0, 0, 242, 219, 1, 0, 0, 0, 242, 220, 1, 0, 0, 0, 242, 221, 1, 0, 0, 0, 242, 222, 1, 0, 0, 0, 242, 223, 1, 0, 0, 0, 242, 224, 1, 0, 0, 0, 242, 225, 1, 0, 0, 0, 242, 226, 1, 0, 0, 0, 242, 227, 1, 0, 0, 0, 242, 228, 1, 0, 0, 0, 242, 229, 1, 0, 0, 0, 242, 230, 1, 0, 0, 0, 242, 231, 1, 0, 0, 0, 242, 232, 1, 0, 0, 0, 242, 233, 1, 0, 0, 0, 242, 234, 1, 0, 0, 0, 242, 235, 1, 0, 0, 0, 242, 236, 1, 0, 0, 0, 242, 237, 1, 0, 0, 0, 242, 238, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 243, 9, 1, 0, 0, 0, 244, 245, 5, 17, 0, 0, 245, 246, 3, 140, 70, 0, 246, 11, 1, 0, 0, 0, 247, 248, 3, 60, 30, 0, 248, 13, 1, 0, 0, 0, 249, 250, 5, 13, 0, 0, 250, 251, 3, 16, 8, 0, 251, 15, 1, 0, 0, 0, 252, 257, 3, 18, 9, 0, 253, 254, 5, 61, 0, 0, 254, 256, 3, 18, 9, 0, 255, 253, 1, 0, 0, 0, 256, 259, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 17, 1, 0, 0, 0, 259, 257, 1, 0, 0, 0, 260, 261, 3, 50, 25, 0, 261, 262, 5, 56, 0, 0, 262, 264, 1, 0, 0, 0, 263, 260, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 266, 3, 140, 70, 0, 266, 19, 1, 0, 0, 0, 267, 272, 3, 22, 11, 0, 268, 269, 5, 61, 0, 0, 269, 271, 3, 22, 11, 0, 270, 268, 1, 0, 0, 0, 271, 274, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 21, 1, 0, 0, 0, 274, 272, 1, 0, 0, 0, 275, 278, 3, 50, 25, 0, 276, 277, 5, 56, 0, 0, 277, 279, 3, 140, 70, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 23, 1, 0, 0, 0, 280, 281, 5, 18, 0, 0, 281, 282, 3, 28, 14, 0, 282, 25, 1, 0, 0, 0, 283, 284, 5, 19, 0, 0, 284, 285, 3, 28, 14, 0, 285, 27, 1, 0, 0, 0, 286, 291, 3, 30, 15, 0, 287, 288, 5, 61, 0, 0, 288, 290, 3, 30, 15, 0, 289, 287, 1, 0, 0, 0, 290, 293, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 295, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 294, 296, 3, 40, 20, 0, 295, 294, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 29, 1, 0, 0, 0, 297, 298, 3, 32, 16, 0, 298, 299, 5, 59, 0, 0, 299, 300, 3, 36, 18, 0, 300, 307, 1, 0, 0, 0, 301, 302, 3, 36, 18, 0, 302, 303, 5, 58, 0, 0, 303, 304, 3, 34, 17, 0, 304, 307, 1, 0, 0, 0, 305, 307, 3, 38, 19, 0, 306, 297, 1, 0, 0, 0, 306, 301, 1, 0, 0, 0, 306, 305, 1, 0, 0, 0, 307, 31, 1, 0, 0, 0, 308, 309, 5, 106, 0, 0, 309, 33, 1, 0, 0, 0, 310, 311, 5, 106, 0, 0, 311, 35, 1, 0, 0, 0, 312, 313, 5, 106, 0, 0, 313, 37, 1, 0, 0, 0, 314, 315, 7, 0, 0, 0, 315, 39, 1, 0, 0, 0, 316, 317, 5, 105, 0, 0, 317, 322, 5, 106, 0, 0, 318, 319, 5, 61, 0, 0, 319, 321, 5, 106, 0, 0, 320, 318, 1, 0, 0, 0, 321, 324, 1, 0, 0, 0, 322, 320, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 41, 1, 0, 0, 0, 324, 322, 1, 0, 0, 0, 325, 326, 5, 9, 0, 0, 326, 327, 3, 16, 8, 0, 327, 43, 1, 0, 0, 0, 328, 330, 5, 16, 0, 0, 329, 331, 3, 46, 23, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 333, 5, 57, 0, 0, 333, 335, 3, 16, 8, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 45, 1, 0, 0, 0, 336, 341, 3, 48, 24, 0, 337, 338, 5, 61, 0, 0, 338, 340, 3, 48, 24, 0, 339, 337, 1, 0, 0, 0, 340, 343, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 47, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 344, 347, 3, 18, 9, 0, 345, 346, 5, 17, 0, 0, 346, 348, 3, 140, 70, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 49, 1, 0, 0, 0, 349, 350, 4, 25, 5, 0, 350, 352, 5, 96, 0, 0, 351, 353, 5, 100, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 355, 5, 97, 0, 0, 355, 356, 5, 63, 0, 0, 356, 357, 5, 96, 0, 0, 357, 358, 3, 52, 26, 0, 358, 359, 5, 97, 0, 0, 359, 362, 1, 0, 0, 0, 360, 362, 3, 52, 26, 0, 361, 349, 1, 0, 0, 0, 361, 360, 1, 0, 0, 0, 362, 51, 1, 0, 0, 0, 363, 368, 3, 68, 34, 0, 364, 365, 5, 63, 0, 0, 365, 367, 3, 68, 34, 0, 366, 364, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 53, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 372, 4, 27, 6, 0, 372, 374, 5, 96, 0, 0, 373, 375, 5, 137, 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 5, 97, 0, 0, 377, 378, 5, 63, 0, 0, 378, 379, 5, 96, 0, 0, 379, 380, 3, 56, 28, 0, 380, 381, 5, 97, 0, 0, 381, 384, 1, 0, 0, 0, 382, 384, 3, 56, 28, 0, 383, 371, 1, 0, 0, 0, 383, 382, 1, 0, 0, 0, 384, 55, 1, 0, 0, 0, 385, 390, 3, 62, 31, 0, 386, 387, 5, 63, 0, 0, 387, 389, 3, 62, 31, 0, 388, 386, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 57, 1, 0, 0, 0, 392, 390, 1, 0, 0, 0, 393, 398, 3, 54, 27, 0, 394, 395, 5, 61, 0, 0, 395, 397, 3, 54, 27, 0, 396, 394, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 59, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 401, 402, 7, 1, 0, 0, 402, 61, 1, 0, 0, 0, 403, 407, 5, 137, 0, 0, 404, 407, 3, 64, 32, 0, 405, 407, 3, 66, 33, 0, 406, 403, 1, 0, 0, 0, 406, 404, 1, 0, 0, 0, 406, 405, 1, 0, 0, 0, 407, 63, 1, 0, 0, 0, 408, 411, 5, 75, 0, 0, 409, 411, 5, 94, 0, 0, 410, 408, 1, 0, 0, 0, 410, 409, 1, 0, 0, 0, 411, 65, 1, 0, 0, 0, 412, 415, 5, 93, 0, 0, 413, 415, 5, 95, 0, 0, 414, 412, 1, 0, 0, 0, 414, 413, 1, 0, 0, 0, 415, 67, 1, 0, 0, 0, 416, 420, 3, 60, 30, 0, 417, 420, 3, 64, 32, 0, 418, 420, 3, 66, 33, 0, 419, 416, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 69, 1, 0, 0, 0, 421, 422, 5, 11, 0, 0, 422, 423, 3, 162, 81, 0, 423, 71, 1, 0, 0, 0, 424, 425, 5, 15, 0, 0, 425, 430, 3, 74, 37, 0, 426, 427, 5, 61, 0, 0, 427, 429, 3, 74, 37, 0, 428, 426, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 73, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 435, 3, 140, 70, 0, 434, 436, 7, 2, 0, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 438, 5, 72, 0, 0, 438, 440, 7, 3, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 75, 1, 0, 0, 0, 441, 442, 5, 31, 0, 0, 442, 443, 3, 58, 29, 0, 443, 77, 1, 0, 0, 0, 444, 445, 5, 30, 0, 0, 445, 446, 3, 58, 29, 0, 446, 79, 1, 0, 0, 0, 447, 448, 5, 33, 0, 0, 448, 453, 3, 82, 41, 0, 449, 450, 5, 61, 0, 0, 450, 452, 3, 82, 41, 0, 451, 449, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 81, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 457, 3, 54, 27, 0, 457, 458, 5, 141, 0, 0, 458, 459, 3, 54, 27, 0, 459, 465, 1, 0, 0, 0, 460, 461, 3, 54, 27, 0, 461, 462, 5, 56, 0, 0, 462, 463, 3, 54, 27, 0, 463, 465, 1, 0, 0, 0, 464, 456, 1, 0, 0, 0, 464, 460, 1, 0, 0, 0, 465, 83, 1, 0, 0, 0, 466, 467, 5, 8, 0, 0, 467, 468, 3, 150, 75, 0, 468, 470, 3, 172, 86, 0, 469, 471, 3, 86, 43, 0, 470, 469, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 85, 1, 0, 0, 0, 472, 477, 3, 88, 44, 0, 473, 474, 5, 61, 0, 0, 474, 476, 3, 88, 44, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 87, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 481, 3, 60, 30, 0, 481, 482, 5, 56, 0, 0, 482, 483, 3, 162, 81, 0, 483, 89, 1, 0, 0, 0, 484, 485, 5, 78, 0, 0, 485, 487, 3, 156, 78, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 91, 1, 0, 0, 0, 488, 489, 5, 10, 0, 0, 489, 490, 3, 150, 75, 0, 490, 491, 3, 172, 86, 0, 491, 93, 1, 0, 0, 0, 492, 493, 5, 29, 0, 0, 493, 494, 3, 50, 25, 0, 494, 95, 1, 0, 0, 0, 495, 496, 5, 6, 0, 0, 496, 497, 3, 98, 49, 0, 497, 97, 1, 0, 0, 0, 498, 499, 5, 98, 0, 0, 499, 500, 3, 4, 2, 0, 500, 501, 5, 99, 0, 0, 501, 99, 1, 0, 0, 0, 502, 503, 5, 35, 0, 0, 503, 504, 5, 148, 0, 0, 504, 101, 1, 0, 0, 0, 505, 506, 5, 5, 0, 0, 506, 509, 3, 104, 52, 0, 507, 508, 5, 73, 0, 0, 508, 510, 3, 54, 27, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 520, 1, 0, 0, 0, 511, 512, 5, 78, 0, 0, 512, 517, 3, 106, 53, 0, 513, 514, 5, 61, 0, 0, 514, 516, 3, 106, 53, 0, 515, 513, 1, 0, 0, 0, 516, 519, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 521, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 520, 511, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 103, 1, 0, 0, 0, 522, 523, 7, 4, 0, 0, 523, 105, 1, 0, 0, 0, 524, 525, 3, 54, 27, 0, 525, 526, 5, 56, 0, 0, 526, 528, 1, 0, 0, 0, 527, 524, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 530, 3, 54, 27, 0, 530, 107, 1, 0, 0, 0, 531, 532, 5, 14, 0, 0, 532, 533, 3, 162, 81, 0, 533, 109, 1, 0, 0, 0, 534, 535, 5, 4, 0, 0, 535, 538, 3, 50, 25, 0, 536, 537, 5, 73, 0, 0, 537, 539, 3, 50, 25, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 545, 1, 0, 0, 0, 540, 541, 5, 141, 0, 0, 541, 542, 3, 50, 25, 0, 542, 543, 5, 61, 0, 0, 543, 544, 3, 50, 25, 0, 544, 546, 1, 0, 0, 0, 545, 540, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 111, 1, 0, 0, 0, 547, 548, 5, 20, 0, 0, 548, 549, 3, 114, 57, 0, 549, 113, 1, 0, 0, 0, 550, 552, 3, 116, 58, 0, 551, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 115, 1, 0, 0, 0, 555, 556, 5, 98, 0, 0, 556, 557, 3, 118, 59, 0, 557, 558, 5, 99, 0, 0, 558, 117, 1, 0, 0, 0, 559, 560, 6, 59, -1, 0, 560, 561, 3, 120, 60, 0, 561, 567, 1, 0, 0, 0, 562, 563, 10, 1, 0, 0, 563, 564, 5, 50, 0, 0, 564, 566, 3, 120, 60, 0, 565, 562, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 119, 1, 0, 0, 0, 569, 567, 1, 0, 0, 0, 570, 571, 3, 8, 4, 0, 571, 121, 1, 0, 0, 0, 572, 576, 5, 12, 0, 0, 573, 574, 3, 50, 25, 0, 574, 575, 5, 56, 0, 0, 575, 577, 1, 0, 0, 0, 576, 573, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 3, 162, 81, 0, 579, 580, 5, 73, 0, 0, 580, 581, 3, 20, 10, 0, 581, 582, 3, 90, 45, 0, 582, 123, 1, 0, 0, 0, 583, 587, 5, 7, 0, 0, 584, 585, 3, 50, 25, 0, 585, 586, 5, 56, 0, 0, 586, 588, 1, 0, 0, 0, 587, 584, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 3, 150, 75, 0, 590, 591, 3, 90, 45, 0, 591, 125, 1, 0, 0, 0, 592, 593, 5, 22, 0, 0, 593, 594, 5, 119, 0, 0, 594, 597, 3, 46, 23, 0, 595, 596, 5, 57, 0, 0, 596, 598, 3, 16, 8, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 606, 1, 0, 0, 0, 599, 600, 5, 23, 0, 0, 600, 603, 3, 46, 23, 0, 601, 602, 5, 57, 0, 0, 602, 604, 3, 16, 8, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 606, 1, 0, 0, 0, 605, 592, 1, 0, 0, 0, 605, 599, 1, 0, 0, 0, 606, 127, 1, 0, 0, 0, 607, 609, 5, 21, 0, 0, 608, 610, 3, 60, 30, 0, 609, 608, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 614, 1, 0, 0, 0, 611, 613, 3, 130, 65, 0, 612, 611, 1, 0, 0, 0, 613, 616, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 129, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 618, 5, 114, 0, 0, 618, 619, 5, 57, 0, 0, 619, 629, 3, 50, 25, 0, 620, 621, 5, 115, 0, 0, 621, 622, 5, 57, 0, 0, 622, 629, 3, 16, 8, 0, 623, 624, 5, 113, 0, 0, 624, 625, 5, 57, 0, 0, 625, 629, 3, 50, 25, 0, 626, 627, 5, 78, 0, 0, 627, 629, 3, 156, 78, 0, 628, 617, 1, 0, 0, 0, 628, 620, 1, 0, 0, 0, 628, 623, 1, 0, 0, 0, 628, 626, 1, 0, 0, 0, 629, 131, 1, 0, 0, 0, 630, 631, 5, 28, 0, 0, 631, 632, 3, 30, 15, 0, 632, 633, 5, 73, 0, 0, 633, 634, 3, 58, 29, 0, 634, 133, 1, 0, 0, 0, 635, 636, 5, 32, 0, 0, 636, 637, 3, 58, 29, 0, 637, 135, 1, 0, 0, 0, 638, 639, 5, 34, 0, 0, 639, 640, 3, 138, 69, 0, 640, 641, 5, 60, 0, 0, 641, 137, 1, 0, 0, 0, 642, 643, 3, 60, 30, 0, 643, 644, 5, 56, 0, 0, 644, 645, 3, 162, 81, 0, 645, 139, 1, 0, 0, 0, 646, 647, 6, 70, -1, 0, 647, 648, 5, 70, 0, 0, 648, 676, 3, 140, 70, 8, 649, 676, 3, 146, 73, 0, 650, 676, 3, 142, 71, 0, 651, 653, 3, 146, 73, 0, 652, 654, 5, 70, 0, 0, 653, 652, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 5, 66, 0, 0, 656, 657, 5, 98, 0, 0, 657, 662, 3, 146, 73, 0, 658, 659, 5, 61, 0, 0, 659, 661, 3, 146, 73, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 665, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 666, 5, 99, 0, 0, 666, 676, 1, 0, 0, 0, 667, 668, 3, 146, 73, 0, 668, 670, 5, 67, 0, 0, 669, 671, 5, 70, 0, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 71, 0, 0, 673, 676, 1, 0, 0, 0, 674, 676, 3, 144, 72, 0, 675, 646, 1, 0, 0, 0, 675, 649, 1, 0, 0, 0, 675, 650, 1, 0, 0, 0, 675, 651, 1, 0, 0, 0, 675, 667, 1, 0, 0, 0, 675, 674, 1, 0, 0, 0, 676, 685, 1, 0, 0, 0, 677, 678, 10, 5, 0, 0, 678, 679, 5, 54, 0, 0, 679, 684, 3, 140, 70, 6, 680, 681, 10, 4, 0, 0, 681, 682, 5, 74, 0, 0, 682, 684, 3, 140, 70, 5, 683, 677, 1, 0, 0, 0, 683, 680, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 141, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 690, 3, 146, 73, 0, 689, 691, 5, 70, 0, 0, 690, 689, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 5, 69, 0, 0, 693, 694, 3, 172, 86, 0, 694, 735, 1, 0, 0, 0, 695, 697, 3, 146, 73, 0, 696, 698, 5, 70, 0, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 76, 0, 0, 700, 701, 3, 172, 86, 0, 701, 735, 1, 0, 0, 0, 702, 704, 3, 146, 73, 0, 703, 705, 5, 70, 0, 0, 704, 703, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 5, 69, 0, 0, 707, 708, 5, 98, 0, 0, 708, 713, 3, 172, 86, 0, 709, 710, 5, 61, 0, 0, 710, 712, 3, 172, 86, 0, 711, 709, 1, 0, 0, 0, 712, 715, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 716, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 716, 717, 5, 99, 0, 0, 717, 735, 1, 0, 0, 0, 718, 720, 3, 146, 73, 0, 719, 721, 5, 70, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 5, 76, 0, 0, 723, 724, 5, 98, 0, 0, 724, 729, 3, 172, 86, 0, 725, 726, 5, 61, 0, 0, 726, 728, 3, 172, 86, 0, 727, 725, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 5, 99, 0, 0, 733, 735, 1, 0, 0, 0, 734, 688, 1, 0, 0, 0, 734, 695, 1, 0, 0, 0, 734, 702, 1, 0, 0, 0, 734, 718, 1, 0, 0, 0, 735, 143, 1, 0, 0, 0, 736, 739, 3, 50, 25, 0, 737, 738, 5, 58, 0, 0, 738, 740, 3, 12, 6, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 59, 0, 0, 742, 743, 3, 162, 81, 0, 743, 145, 1, 0, 0, 0, 744, 750, 3, 148, 74, 0, 745, 746, 3, 148, 74, 0, 746, 747, 3, 174, 87, 0, 747, 748, 3, 148, 74, 0, 748, 750, 1, 0, 0, 0, 749, 744, 1, 0, 0, 0, 749, 745, 1, 0, 0, 0, 750, 147, 1, 0, 0, 0, 751, 752, 6, 74, -1, 0, 752, 756, 3, 150, 75, 0, 753, 754, 7, 5, 0, 0, 754, 756, 3, 148, 74, 3, 755, 751, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 765, 1, 0, 0, 0, 757, 758, 10, 2, 0, 0, 758, 759, 7, 6, 0, 0, 759, 764, 3, 148, 74, 3, 760, 761, 10, 1, 0, 0, 761, 762, 7, 5, 0, 0, 762, 764, 3, 148, 74, 2, 763, 757, 1, 0, 0, 0, 763, 760, 1, 0, 0, 0, 764, 767, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 149, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 768, 769, 6, 75, -1, 0, 769, 777, 3, 162, 81, 0, 770, 777, 3, 50, 25, 0, 771, 777, 3, 152, 76, 0, 772, 773, 5, 98, 0, 0, 773, 774, 3, 140, 70, 0, 774, 775, 5, 99, 0, 0, 775, 777, 1, 0, 0, 0, 776, 768, 1, 0, 0, 0, 776, 770, 1, 0, 0, 0, 776, 771, 1, 0, 0, 0, 776, 772, 1, 0, 0, 0, 777, 783, 1, 0, 0, 0, 778, 779, 10, 1, 0, 0, 779, 780, 5, 58, 0, 0, 780, 782, 3, 12, 6, 0, 781, 778, 1, 0, 0, 0, 782, 785, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 151, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 786, 787, 3, 154, 77, 0, 787, 801, 5, 98, 0, 0, 788, 802, 5, 88, 0, 0, 789, 794, 3, 140, 70, 0, 790, 791, 5, 61, 0, 0, 791, 793, 3, 140, 70, 0, 792, 790, 1, 0, 0, 0, 793, 796, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 799, 1, 0, 0, 0, 796, 794, 1, 0, 0, 0, 797, 798, 5, 61, 0, 0, 798, 800, 3, 156, 78, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 788, 1, 0, 0, 0, 801, 789, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 5, 99, 0, 0, 804, 153, 1, 0, 0, 0, 805, 809, 3, 68, 34, 0, 806, 809, 5, 65, 0, 0, 807, 809, 5, 68, 0, 0, 808, 805, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 808, 807, 1, 0, 0, 0, 809, 155, 1, 0, 0, 0, 810, 819, 5, 91, 0, 0, 811, 816, 3, 158, 79, 0, 812, 813, 5, 61, 0, 0, 813, 815, 3, 158, 79, 0, 814, 812, 1, 0, 0, 0, 815, 818, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 819, 811, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 5, 92, 0, 0, 822, 157, 1, 0, 0, 0, 823, 824, 3, 172, 86, 0, 824, 825, 5, 59, 0, 0, 825, 826, 3, 160, 80, 0, 826, 159, 1, 0, 0, 0, 827, 830, 3, 162, 81, 0, 828, 830, 3, 156, 78, 0, 829, 827, 1, 0, 0, 0, 829, 828, 1, 0, 0, 0, 830, 161, 1, 0, 0, 0, 831, 874, 5, 71, 0, 0, 832, 833, 3, 170, 85, 0, 833, 834, 5, 100, 0, 0, 834, 874, 1, 0, 0, 0, 835, 874, 3, 168, 84, 0, 836, 874, 3, 170, 85, 0, 837, 874, 3, 164, 82, 0, 838, 874, 3, 64, 32, 0, 839, 874, 3, 172, 86, 0, 840, 841, 5, 96, 0, 0, 841, 846, 3, 166, 83, 0, 842, 843, 5, 61, 0, 0, 843, 845, 3, 166, 83, 0, 844, 842, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 849, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 849, 850, 5, 97, 0, 0, 850, 874, 1, 0, 0, 0, 851, 852, 5, 96, 0, 0, 852, 857, 3, 164, 82, 0, 853, 854, 5, 61, 0, 0, 854, 856, 3, 164, 82, 0, 855, 853, 1, 0, 0, 0, 856, 859, 1, 0, 0, 0, 857, 855, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 860, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 860, 861, 5, 97, 0, 0, 861, 874, 1, 0, 0, 0, 862, 863, 5, 96, 0, 0, 863, 868, 3, 172, 86, 0, 864, 865, 5, 61, 0, 0, 865, 867, 3, 172, 86, 0, 866, 864, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 871, 872, 5, 97, 0, 0, 872, 874, 1, 0, 0, 0, 873, 831, 1, 0, 0, 0, 873, 832, 1, 0, 0, 0, 873, 835, 1, 0, 0, 0, 873, 836, 1, 0, 0, 0, 873, 837, 1, 0, 0, 0, 873, 838, 1, 0, 0, 0, 873, 839, 1, 0, 0, 0, 873, 840, 1, 0, 0, 0, 873, 851, 1, 0, 0, 0, 873, 862, 1, 0, 0, 0, 874, 163, 1, 0, 0, 0, 875, 876, 7, 7, 0, 0, 876, 165, 1, 0, 0, 0, 877, 880, 3, 168, 84, 0, 878, 880, 3, 170, 85, 0, 879, 877, 1, 0, 0, 0, 879, 878, 1, 0, 0, 0, 880, 167, 1, 0, 0, 0, 881, 883, 7, 5, 0, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 5, 53, 0, 0, 885, 169, 1, 0, 0, 0, 886, 888, 7, 5, 0, 0, 887, 886, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 5, 52, 0, 0, 890, 171, 1, 0, 0, 0, 891, 892, 5, 51, 0, 0, 892, 173, 1, 0, 0, 0, 893, 894, 7, 8, 0, 0, 894, 175, 1, 0, 0, 0, 895, 896, 7, 9, 0, 0, 896, 897, 5, 123, 0, 0, 897, 898, 3, 178, 89, 0, 898, 899, 3, 180, 90, 0, 899, 177, 1, 0, 0, 0, 900, 901, 4, 89, 13, 0, 901, 903, 3, 30, 15, 0, 902, 904, 5, 141, 0, 0, 903, 902, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 5, 106, 0, 0, 906, 909, 1, 0, 0, 0, 907, 909, 3, 30, 15, 0, 908, 900, 1, 0, 0, 0, 908, 907, 1, 0, 0, 0, 909, 179, 1, 0, 0, 0, 910, 911, 5, 73, 0, 0, 911, 916, 3, 140, 70, 0, 912, 913, 5, 61, 0, 0, 913, 915, 3, 140, 70, 0, 914, 912, 1, 0, 0, 0, 915, 918, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 181, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 89, 186, 194, 207, 216, 242, 257, 263, 272, 278, 291, 295, 306, 322, 330, 334, 341, 347, 352, 361, 368, 374, 383, 390, 398, 406, 410, 414, 419, 430, 435, 439, 453, 464, 470, 477, 486, 509, 517, 520, 527, 538, 545, 553, 567, 576, 587, 597, 603, 605, 609, 614, 628, 653, 662, 670, 675, 683, 685, 690, 697, 704, 713, 720, 729, 734, 739, 749, 755, 763, 765, 776, 783, 794, 799, 801, 808, 816, 819, 829, 846, 857, 868, 873, 879, 882, 887, 903, 908, 916]
\ No newline at end of file
+[4, 1, 151, 944, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 1, 0, 1, 0, 4, 0, 191, 8, 0, 11, 0, 12, 0, 192, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 3, 0, 201, 8, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 212, 8, 2, 10, 2, 12, 2, 215, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 223, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 262, 8, 8, 10, 8, 12, 8, 265, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 270, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 277, 8, 10, 10, 10, 12, 10, 280, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 285, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 296, 8, 14, 10, 14, 12, 14, 299, 9, 14, 1, 14, 3, 14, 302, 8, 14, 1, 15, 1, 15, 1, 15, 3, 15, 307, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 313, 8, 16, 10, 16, 12, 16, 316, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 331, 8, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 345, 8, 23, 10, 23, 12, 23, 348, 9, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 355, 8, 25, 1, 25, 1, 25, 3, 25, 359, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 364, 8, 26, 10, 26, 12, 26, 367, 9, 26, 1, 27, 1, 27, 1, 27, 3, 27, 372, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 377, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 386, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 391, 8, 29, 10, 29, 12, 29, 394, 9, 29, 1, 30, 1, 30, 1, 30, 3, 30, 399, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 408, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 413, 8, 31, 10, 31, 12, 31, 416, 9, 31, 1, 32, 1, 32, 1, 32, 5, 32, 421, 8, 32, 10, 32, 12, 32, 424, 9, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 3, 34, 431, 8, 34, 1, 35, 1, 35, 3, 35, 435, 8, 35, 1, 36, 1, 36, 3, 36, 439, 8, 36, 1, 37, 1, 37, 1, 37, 3, 37, 444, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 453, 8, 39, 10, 39, 12, 39, 456, 9, 39, 1, 40, 1, 40, 3, 40, 460, 8, 40, 1, 40, 1, 40, 3, 40, 464, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 476, 8, 43, 10, 43, 12, 43, 479, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 489, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 495, 8, 45, 1, 46, 1, 46, 1, 46, 5, 46, 500, 8, 46, 10, 46, 12, 46, 503, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 511, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 534, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 540, 8, 54, 10, 54, 12, 54, 543, 9, 54, 3, 54, 545, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 552, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 563, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 570, 8, 58, 1, 59, 1, 59, 1, 59, 1, 60, 4, 60, 576, 8, 60, 11, 60, 12, 60, 577, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 590, 8, 62, 10, 62, 12, 62, 593, 9, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 601, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 612, 8, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 622, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 628, 8, 66, 3, 66, 630, 8, 66, 1, 67, 1, 67, 3, 67, 634, 8, 67, 1, 67, 5, 67, 637, 8, 67, 10, 67, 12, 67, 640, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 653, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 678, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 685, 8, 73, 10, 73, 12, 73, 688, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 695, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 700, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 708, 8, 73, 10, 73, 12, 73, 711, 9, 73, 1, 74, 1, 74, 3, 74, 715, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 722, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 729, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 736, 8, 74, 10, 74, 12, 74, 739, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 745, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 752, 8, 74, 10, 74, 12, 74, 755, 9, 74, 1, 74, 1, 74, 3, 74, 759, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 764, 8, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 774, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 780, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 788, 8, 77, 10, 77, 12, 77, 791, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 801, 8, 78, 1, 78, 1, 78, 1, 78, 5, 78, 806, 8, 78, 10, 78, 12, 78, 809, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 817, 8, 79, 10, 79, 12, 79, 820, 9, 79, 1, 79, 1, 79, 3, 79, 824, 8, 79, 3, 79, 826, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 833, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 839, 8, 81, 10, 81, 12, 81, 842, 9, 81, 3, 81, 844, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 854, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 869, 8, 84, 10, 84, 12, 84, 872, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 880, 8, 84, 10, 84, 12, 84, 883, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 891, 8, 84, 10, 84, 12, 84, 894, 9, 84, 1, 84, 1, 84, 3, 84, 898, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 904, 8, 86, 1, 87, 3, 87, 907, 8, 87, 1, 87, 1, 87, 1, 88, 3, 88, 912, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 928, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 933, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 939, 8, 93, 10, 93, 12, 93, 942, 9, 93, 1, 93, 0, 5, 4, 124, 146, 154, 156, 94, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 986, 0, 200, 1, 0, 0, 0, 2, 202, 1, 0, 0, 0, 4, 205, 1, 0, 0, 0, 6, 222, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 250, 1, 0, 0, 0, 12, 253, 1, 0, 0, 0, 14, 255, 1, 0, 0, 0, 16, 258, 1, 0, 0, 0, 18, 269, 1, 0, 0, 0, 20, 273, 1, 0, 0, 0, 22, 281, 1, 0, 0, 0, 24, 286, 1, 0, 0, 0, 26, 289, 1, 0, 0, 0, 28, 292, 1, 0, 0, 0, 30, 306, 1, 0, 0, 0, 32, 308, 1, 0, 0, 0, 34, 319, 1, 0, 0, 0, 36, 330, 1, 0, 0, 0, 38, 332, 1, 0, 0, 0, 40, 334, 1, 0, 0, 0, 42, 336, 1, 0, 0, 0, 44, 338, 1, 0, 0, 0, 46, 340, 1, 0, 0, 0, 48, 349, 1, 0, 0, 0, 50, 352, 1, 0, 0, 0, 52, 360, 1, 0, 0, 0, 54, 368, 1, 0, 0, 0, 56, 385, 1, 0, 0, 0, 58, 387, 1, 0, 0, 0, 60, 407, 1, 0, 0, 0, 62, 409, 1, 0, 0, 0, 64, 417, 1, 0, 0, 0, 66, 425, 1, 0, 0, 0, 68, 430, 1, 0, 0, 0, 70, 434, 1, 0, 0, 0, 72, 438, 1, 0, 0, 0, 74, 443, 1, 0, 0, 0, 76, 445, 1, 0, 0, 0, 78, 448, 1, 0, 0, 0, 80, 457, 1, 0, 0, 0, 82, 465, 1, 0, 0, 0, 84, 468, 1, 0, 0, 0, 86, 471, 1, 0, 0, 0, 88, 488, 1, 0, 0, 0, 90, 490, 1, 0, 0, 0, 92, 496, 1, 0, 0, 0, 94, 504, 1, 0, 0, 0, 96, 510, 1, 0, 0, 0, 98, 512, 1, 0, 0, 0, 100, 516, 1, 0, 0, 0, 102, 519, 1, 0, 0, 0, 104, 522, 1, 0, 0, 0, 106, 526, 1, 0, 0, 0, 108, 529, 1, 0, 0, 0, 110, 546, 1, 0, 0, 0, 112, 551, 1, 0, 0, 0, 114, 555, 1, 0, 0, 0, 116, 558, 1, 0, 0, 0, 118, 571, 1, 0, 0, 0, 120, 575, 1, 0, 0, 0, 122, 579, 1, 0, 0, 0, 124, 583, 1, 0, 0, 0, 126, 594, 1, 0, 0, 0, 128, 596, 1, 0, 0, 0, 130, 607, 1, 0, 0, 0, 132, 629, 1, 0, 0, 0, 134, 631, 1, 0, 0, 0, 136, 652, 1, 0, 0, 0, 138, 654, 1, 0, 0, 0, 140, 659, 1, 0, 0, 0, 142, 662, 1, 0, 0, 0, 144, 666, 1, 0, 0, 0, 146, 699, 1, 0, 0, 0, 148, 758, 1, 0, 0, 0, 150, 760, 1, 0, 0, 0, 152, 773, 1, 0, 0, 0, 154, 779, 1, 0, 0, 0, 156, 800, 1, 0, 0, 0, 158, 810, 1, 0, 0, 0, 160, 832, 1, 0, 0, 0, 162, 834, 1, 0, 0, 0, 164, 847, 1, 0, 0, 0, 166, 853, 1, 0, 0, 0, 168, 897, 1, 0, 0, 0, 170, 899, 1, 0, 0, 0, 172, 903, 1, 0, 0, 0, 174, 906, 1, 0, 0, 0, 176, 911, 1, 0, 0, 0, 178, 915, 1, 0, 0, 0, 180, 917, 1, 0, 0, 0, 182, 919, 1, 0, 0, 0, 184, 932, 1, 0, 0, 0, 186, 934, 1, 0, 0, 0, 188, 190, 4, 0, 0, 0, 189, 191, 3, 142, 71, 0, 190, 189, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 190, 1, 0, 0, 0, 192, 193, 1, 0, 0, 0, 193, 194, 1, 0, 0, 0, 194, 195, 3, 2, 1, 0, 195, 196, 5, 0, 0, 1, 196, 201, 1, 0, 0, 0, 197, 198, 3, 2, 1, 0, 198, 199, 5, 0, 0, 1, 199, 201, 1, 0, 0, 0, 200, 188, 1, 0, 0, 0, 200, 197, 1, 0, 0, 0, 201, 1, 1, 0, 0, 0, 202, 203, 3, 4, 2, 0, 203, 204, 5, 0, 0, 1, 204, 3, 1, 0, 0, 0, 205, 206, 6, 2, -1, 0, 206, 207, 3, 6, 3, 0, 207, 213, 1, 0, 0, 0, 208, 209, 10, 1, 0, 0, 209, 210, 5, 50, 0, 0, 210, 212, 3, 8, 4, 0, 211, 208, 1, 0, 0, 0, 212, 215, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 5, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 216, 223, 3, 24, 12, 0, 217, 223, 3, 14, 7, 0, 218, 223, 3, 106, 53, 0, 219, 223, 3, 26, 13, 0, 220, 221, 4, 3, 2, 0, 221, 223, 3, 102, 51, 0, 222, 216, 1, 0, 0, 0, 222, 217, 1, 0, 0, 0, 222, 218, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 7, 1, 0, 0, 0, 224, 249, 3, 48, 24, 0, 225, 249, 3, 10, 5, 0, 226, 249, 3, 82, 41, 0, 227, 249, 3, 76, 38, 0, 228, 249, 3, 50, 25, 0, 229, 249, 3, 78, 39, 0, 230, 249, 3, 84, 42, 0, 231, 249, 3, 86, 43, 0, 232, 249, 3, 90, 45, 0, 233, 249, 3, 98, 49, 0, 234, 249, 3, 108, 54, 0, 235, 249, 3, 100, 50, 0, 236, 249, 3, 182, 91, 0, 237, 249, 3, 116, 58, 0, 238, 249, 3, 130, 65, 0, 239, 249, 3, 114, 57, 0, 240, 249, 3, 118, 59, 0, 241, 249, 3, 128, 64, 0, 242, 249, 3, 132, 66, 0, 243, 249, 3, 134, 67, 0, 244, 245, 4, 4, 3, 0, 245, 249, 3, 138, 69, 0, 246, 247, 4, 4, 4, 0, 247, 249, 3, 140, 70, 0, 248, 224, 1, 0, 0, 0, 248, 225, 1, 0, 0, 0, 248, 226, 1, 0, 0, 0, 248, 227, 1, 0, 0, 0, 248, 228, 1, 0, 0, 0, 248, 229, 1, 0, 0, 0, 248, 230, 1, 0, 0, 0, 248, 231, 1, 0, 0, 0, 248, 232, 1, 0, 0, 0, 248, 233, 1, 0, 0, 0, 248, 234, 1, 0, 0, 0, 248, 235, 1, 0, 0, 0, 248, 236, 1, 0, 0, 0, 248, 237, 1, 0, 0, 0, 248, 238, 1, 0, 0, 0, 248, 239, 1, 0, 0, 0, 248, 240, 1, 0, 0, 0, 248, 241, 1, 0, 0, 0, 248, 242, 1, 0, 0, 0, 248, 243, 1, 0, 0, 0, 248, 244, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 251, 5, 17, 0, 0, 251, 252, 3, 146, 73, 0, 252, 11, 1, 0, 0, 0, 253, 254, 3, 66, 33, 0, 254, 13, 1, 0, 0, 0, 255, 256, 5, 13, 0, 0, 256, 257, 3, 16, 8, 0, 257, 15, 1, 0, 0, 0, 258, 263, 3, 18, 9, 0, 259, 260, 5, 61, 0, 0, 260, 262, 3, 18, 9, 0, 261, 259, 1, 0, 0, 0, 262, 265, 1, 0, 0, 0, 263, 261, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 17, 1, 0, 0, 0, 265, 263, 1, 0, 0, 0, 266, 267, 3, 56, 28, 0, 267, 268, 5, 56, 0, 0, 268, 270, 1, 0, 0, 0, 269, 266, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 3, 146, 73, 0, 272, 19, 1, 0, 0, 0, 273, 278, 3, 22, 11, 0, 274, 275, 5, 61, 0, 0, 275, 277, 3, 22, 11, 0, 276, 274, 1, 0, 0, 0, 277, 280, 1, 0, 0, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 21, 1, 0, 0, 0, 280, 278, 1, 0, 0, 0, 281, 284, 3, 56, 28, 0, 282, 283, 5, 56, 0, 0, 283, 285, 3, 146, 73, 0, 284, 282, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 23, 1, 0, 0, 0, 286, 287, 5, 18, 0, 0, 287, 288, 3, 28, 14, 0, 288, 25, 1, 0, 0, 0, 289, 290, 5, 19, 0, 0, 290, 291, 3, 28, 14, 0, 291, 27, 1, 0, 0, 0, 292, 297, 3, 30, 15, 0, 293, 294, 5, 61, 0, 0, 294, 296, 3, 30, 15, 0, 295, 293, 1, 0, 0, 0, 296, 299, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 301, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 300, 302, 3, 46, 23, 0, 301, 300, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 29, 1, 0, 0, 0, 303, 307, 3, 36, 18, 0, 304, 305, 4, 15, 5, 0, 305, 307, 3, 32, 16, 0, 306, 303, 1, 0, 0, 0, 306, 304, 1, 0, 0, 0, 307, 31, 1, 0, 0, 0, 308, 309, 5, 98, 0, 0, 309, 314, 3, 24, 12, 0, 310, 311, 5, 50, 0, 0, 311, 313, 3, 34, 17, 0, 312, 310, 1, 0, 0, 0, 313, 316, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 317, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 317, 318, 5, 99, 0, 0, 318, 33, 1, 0, 0, 0, 319, 320, 3, 8, 4, 0, 320, 35, 1, 0, 0, 0, 321, 322, 3, 38, 19, 0, 322, 323, 5, 59, 0, 0, 323, 324, 3, 42, 21, 0, 324, 331, 1, 0, 0, 0, 325, 326, 3, 42, 21, 0, 326, 327, 5, 58, 0, 0, 327, 328, 3, 40, 20, 0, 328, 331, 1, 0, 0, 0, 329, 331, 3, 44, 22, 0, 330, 321, 1, 0, 0, 0, 330, 325, 1, 0, 0, 0, 330, 329, 1, 0, 0, 0, 331, 37, 1, 0, 0, 0, 332, 333, 5, 106, 0, 0, 333, 39, 1, 0, 0, 0, 334, 335, 5, 106, 0, 0, 335, 41, 1, 0, 0, 0, 336, 337, 5, 106, 0, 0, 337, 43, 1, 0, 0, 0, 338, 339, 7, 0, 0, 0, 339, 45, 1, 0, 0, 0, 340, 341, 5, 105, 0, 0, 341, 346, 5, 106, 0, 0, 342, 343, 5, 61, 0, 0, 343, 345, 5, 106, 0, 0, 344, 342, 1, 0, 0, 0, 345, 348, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 47, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 349, 350, 5, 9, 0, 0, 350, 351, 3, 16, 8, 0, 351, 49, 1, 0, 0, 0, 352, 354, 5, 16, 0, 0, 353, 355, 3, 52, 26, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 57, 0, 0, 357, 359, 3, 16, 8, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 51, 1, 0, 0, 0, 360, 365, 3, 54, 27, 0, 361, 362, 5, 61, 0, 0, 362, 364, 3, 54, 27, 0, 363, 361, 1, 0, 0, 0, 364, 367, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 53, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 371, 3, 18, 9, 0, 369, 370, 5, 17, 0, 0, 370, 372, 3, 146, 73, 0, 371, 369, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 55, 1, 0, 0, 0, 373, 374, 4, 28, 6, 0, 374, 376, 5, 96, 0, 0, 375, 377, 5, 100, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, 5, 97, 0, 0, 379, 380, 5, 63, 0, 0, 380, 381, 5, 96, 0, 0, 381, 382, 3, 58, 29, 0, 382, 383, 5, 97, 0, 0, 383, 386, 1, 0, 0, 0, 384, 386, 3, 58, 29, 0, 385, 373, 1, 0, 0, 0, 385, 384, 1, 0, 0, 0, 386, 57, 1, 0, 0, 0, 387, 392, 3, 74, 37, 0, 388, 389, 5, 63, 0, 0, 389, 391, 3, 74, 37, 0, 390, 388, 1, 0, 0, 0, 391, 394, 1, 0, 0, 0, 392, 390, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 59, 1, 0, 0, 0, 394, 392, 1, 0, 0, 0, 395, 396, 4, 30, 7, 0, 396, 398, 5, 96, 0, 0, 397, 399, 5, 137, 0, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 401, 5, 97, 0, 0, 401, 402, 5, 63, 0, 0, 402, 403, 5, 96, 0, 0, 403, 404, 3, 62, 31, 0, 404, 405, 5, 97, 0, 0, 405, 408, 1, 0, 0, 0, 406, 408, 3, 62, 31, 0, 407, 395, 1, 0, 0, 0, 407, 406, 1, 0, 0, 0, 408, 61, 1, 0, 0, 0, 409, 414, 3, 68, 34, 0, 410, 411, 5, 63, 0, 0, 411, 413, 3, 68, 34, 0, 412, 410, 1, 0, 0, 0, 413, 416, 1, 0, 0, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 63, 1, 0, 0, 0, 416, 414, 1, 0, 0, 0, 417, 422, 3, 60, 30, 0, 418, 419, 5, 61, 0, 0, 419, 421, 3, 60, 30, 0, 420, 418, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 420, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 65, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 425, 426, 7, 1, 0, 0, 426, 67, 1, 0, 0, 0, 427, 431, 5, 137, 0, 0, 428, 431, 3, 70, 35, 0, 429, 431, 3, 72, 36, 0, 430, 427, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 429, 1, 0, 0, 0, 431, 69, 1, 0, 0, 0, 432, 435, 5, 75, 0, 0, 433, 435, 5, 94, 0, 0, 434, 432, 1, 0, 0, 0, 434, 433, 1, 0, 0, 0, 435, 71, 1, 0, 0, 0, 436, 439, 5, 93, 0, 0, 437, 439, 5, 95, 0, 0, 438, 436, 1, 0, 0, 0, 438, 437, 1, 0, 0, 0, 439, 73, 1, 0, 0, 0, 440, 444, 3, 66, 33, 0, 441, 444, 3, 70, 35, 0, 442, 444, 3, 72, 36, 0, 443, 440, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 75, 1, 0, 0, 0, 445, 446, 5, 11, 0, 0, 446, 447, 3, 168, 84, 0, 447, 77, 1, 0, 0, 0, 448, 449, 5, 15, 0, 0, 449, 454, 3, 80, 40, 0, 450, 451, 5, 61, 0, 0, 451, 453, 3, 80, 40, 0, 452, 450, 1, 0, 0, 0, 453, 456, 1, 0, 0, 0, 454, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 79, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 457, 459, 3, 146, 73, 0, 458, 460, 7, 2, 0, 0, 459, 458, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 463, 1, 0, 0, 0, 461, 462, 5, 72, 0, 0, 462, 464, 7, 3, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 81, 1, 0, 0, 0, 465, 466, 5, 31, 0, 0, 466, 467, 3, 64, 32, 0, 467, 83, 1, 0, 0, 0, 468, 469, 5, 30, 0, 0, 469, 470, 3, 64, 32, 0, 470, 85, 1, 0, 0, 0, 471, 472, 5, 33, 0, 0, 472, 477, 3, 88, 44, 0, 473, 474, 5, 61, 0, 0, 474, 476, 3, 88, 44, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 87, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 481, 3, 60, 30, 0, 481, 482, 5, 141, 0, 0, 482, 483, 3, 60, 30, 0, 483, 489, 1, 0, 0, 0, 484, 485, 3, 60, 30, 0, 485, 486, 5, 56, 0, 0, 486, 487, 3, 60, 30, 0, 487, 489, 1, 0, 0, 0, 488, 480, 1, 0, 0, 0, 488, 484, 1, 0, 0, 0, 489, 89, 1, 0, 0, 0, 490, 491, 5, 8, 0, 0, 491, 492, 3, 156, 78, 0, 492, 494, 3, 178, 89, 0, 493, 495, 3, 92, 46, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 91, 1, 0, 0, 0, 496, 501, 3, 94, 47, 0, 497, 498, 5, 61, 0, 0, 498, 500, 3, 94, 47, 0, 499, 497, 1, 0, 0, 0, 500, 503, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 93, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 504, 505, 3, 66, 33, 0, 505, 506, 5, 56, 0, 0, 506, 507, 3, 168, 84, 0, 507, 95, 1, 0, 0, 0, 508, 509, 5, 78, 0, 0, 509, 511, 3, 162, 81, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 97, 1, 0, 0, 0, 512, 513, 5, 10, 0, 0, 513, 514, 3, 156, 78, 0, 514, 515, 3, 178, 89, 0, 515, 99, 1, 0, 0, 0, 516, 517, 5, 29, 0, 0, 517, 518, 3, 56, 28, 0, 518, 101, 1, 0, 0, 0, 519, 520, 5, 6, 0, 0, 520, 521, 3, 104, 52, 0, 521, 103, 1, 0, 0, 0, 522, 523, 5, 98, 0, 0, 523, 524, 3, 4, 2, 0, 524, 525, 5, 99, 0, 0, 525, 105, 1, 0, 0, 0, 526, 527, 5, 35, 0, 0, 527, 528, 5, 148, 0, 0, 528, 107, 1, 0, 0, 0, 529, 530, 5, 5, 0, 0, 530, 533, 3, 110, 55, 0, 531, 532, 5, 73, 0, 0, 532, 534, 3, 60, 30, 0, 533, 531, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 544, 1, 0, 0, 0, 535, 536, 5, 78, 0, 0, 536, 541, 3, 112, 56, 0, 537, 538, 5, 61, 0, 0, 538, 540, 3, 112, 56, 0, 539, 537, 1, 0, 0, 0, 540, 543, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 545, 1, 0, 0, 0, 543, 541, 1, 0, 0, 0, 544, 535, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 109, 1, 0, 0, 0, 546, 547, 7, 4, 0, 0, 547, 111, 1, 0, 0, 0, 548, 549, 3, 60, 30, 0, 549, 550, 5, 56, 0, 0, 550, 552, 1, 0, 0, 0, 551, 548, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 3, 60, 30, 0, 554, 113, 1, 0, 0, 0, 555, 556, 5, 14, 0, 0, 556, 557, 3, 168, 84, 0, 557, 115, 1, 0, 0, 0, 558, 559, 5, 4, 0, 0, 559, 562, 3, 56, 28, 0, 560, 561, 5, 73, 0, 0, 561, 563, 3, 56, 28, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 569, 1, 0, 0, 0, 564, 565, 5, 141, 0, 0, 565, 566, 3, 56, 28, 0, 566, 567, 5, 61, 0, 0, 567, 568, 3, 56, 28, 0, 568, 570, 1, 0, 0, 0, 569, 564, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 117, 1, 0, 0, 0, 571, 572, 5, 20, 0, 0, 572, 573, 3, 120, 60, 0, 573, 119, 1, 0, 0, 0, 574, 576, 3, 122, 61, 0, 575, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 121, 1, 0, 0, 0, 579, 580, 5, 98, 0, 0, 580, 581, 3, 124, 62, 0, 581, 582, 5, 99, 0, 0, 582, 123, 1, 0, 0, 0, 583, 584, 6, 62, -1, 0, 584, 585, 3, 126, 63, 0, 585, 591, 1, 0, 0, 0, 586, 587, 10, 1, 0, 0, 587, 588, 5, 50, 0, 0, 588, 590, 3, 126, 63, 0, 589, 586, 1, 0, 0, 0, 590, 593, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 125, 1, 0, 0, 0, 593, 591, 1, 0, 0, 0, 594, 595, 3, 8, 4, 0, 595, 127, 1, 0, 0, 0, 596, 600, 5, 12, 0, 0, 597, 598, 3, 56, 28, 0, 598, 599, 5, 56, 0, 0, 599, 601, 1, 0, 0, 0, 600, 597, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 3, 168, 84, 0, 603, 604, 5, 73, 0, 0, 604, 605, 3, 20, 10, 0, 605, 606, 3, 96, 48, 0, 606, 129, 1, 0, 0, 0, 607, 611, 5, 7, 0, 0, 608, 609, 3, 56, 28, 0, 609, 610, 5, 56, 0, 0, 610, 612, 1, 0, 0, 0, 611, 608, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 3, 156, 78, 0, 614, 615, 3, 96, 48, 0, 615, 131, 1, 0, 0, 0, 616, 617, 5, 22, 0, 0, 617, 618, 5, 119, 0, 0, 618, 621, 3, 52, 26, 0, 619, 620, 5, 57, 0, 0, 620, 622, 3, 16, 8, 0, 621, 619, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 630, 1, 0, 0, 0, 623, 624, 5, 23, 0, 0, 624, 627, 3, 52, 26, 0, 625, 626, 5, 57, 0, 0, 626, 628, 3, 16, 8, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 630, 1, 0, 0, 0, 629, 616, 1, 0, 0, 0, 629, 623, 1, 0, 0, 0, 630, 133, 1, 0, 0, 0, 631, 633, 5, 21, 0, 0, 632, 634, 3, 66, 33, 0, 633, 632, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 638, 1, 0, 0, 0, 635, 637, 3, 136, 68, 0, 636, 635, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 135, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 641, 642, 5, 114, 0, 0, 642, 643, 5, 57, 0, 0, 643, 653, 3, 56, 28, 0, 644, 645, 5, 115, 0, 0, 645, 646, 5, 57, 0, 0, 646, 653, 3, 16, 8, 0, 647, 648, 5, 113, 0, 0, 648, 649, 5, 57, 0, 0, 649, 653, 3, 56, 28, 0, 650, 651, 5, 78, 0, 0, 651, 653, 3, 162, 81, 0, 652, 641, 1, 0, 0, 0, 652, 644, 1, 0, 0, 0, 652, 647, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 653, 137, 1, 0, 0, 0, 654, 655, 5, 28, 0, 0, 655, 656, 3, 36, 18, 0, 656, 657, 5, 73, 0, 0, 657, 658, 3, 64, 32, 0, 658, 139, 1, 0, 0, 0, 659, 660, 5, 32, 0, 0, 660, 661, 3, 64, 32, 0, 661, 141, 1, 0, 0, 0, 662, 663, 5, 34, 0, 0, 663, 664, 3, 144, 72, 0, 664, 665, 5, 60, 0, 0, 665, 143, 1, 0, 0, 0, 666, 667, 3, 66, 33, 0, 667, 668, 5, 56, 0, 0, 668, 669, 3, 168, 84, 0, 669, 145, 1, 0, 0, 0, 670, 671, 6, 73, -1, 0, 671, 672, 5, 70, 0, 0, 672, 700, 3, 146, 73, 8, 673, 700, 3, 152, 76, 0, 674, 700, 3, 148, 74, 0, 675, 677, 3, 152, 76, 0, 676, 678, 5, 70, 0, 0, 677, 676, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 5, 66, 0, 0, 680, 681, 5, 98, 0, 0, 681, 686, 3, 152, 76, 0, 682, 683, 5, 61, 0, 0, 683, 685, 3, 152, 76, 0, 684, 682, 1, 0, 0, 0, 685, 688, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 689, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 689, 690, 5, 99, 0, 0, 690, 700, 1, 0, 0, 0, 691, 692, 3, 152, 76, 0, 692, 694, 5, 67, 0, 0, 693, 695, 5, 70, 0, 0, 694, 693, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 5, 71, 0, 0, 697, 700, 1, 0, 0, 0, 698, 700, 3, 150, 75, 0, 699, 670, 1, 0, 0, 0, 699, 673, 1, 0, 0, 0, 699, 674, 1, 0, 0, 0, 699, 675, 1, 0, 0, 0, 699, 691, 1, 0, 0, 0, 699, 698, 1, 0, 0, 0, 700, 709, 1, 0, 0, 0, 701, 702, 10, 5, 0, 0, 702, 703, 5, 54, 0, 0, 703, 708, 3, 146, 73, 6, 704, 705, 10, 4, 0, 0, 705, 706, 5, 74, 0, 0, 706, 708, 3, 146, 73, 5, 707, 701, 1, 0, 0, 0, 707, 704, 1, 0, 0, 0, 708, 711, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 147, 1, 0, 0, 0, 711, 709, 1, 0, 0, 0, 712, 714, 3, 152, 76, 0, 713, 715, 5, 70, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 69, 0, 0, 717, 718, 3, 178, 89, 0, 718, 759, 1, 0, 0, 0, 719, 721, 3, 152, 76, 0, 720, 722, 5, 70, 0, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 5, 76, 0, 0, 724, 725, 3, 178, 89, 0, 725, 759, 1, 0, 0, 0, 726, 728, 3, 152, 76, 0, 727, 729, 5, 70, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 69, 0, 0, 731, 732, 5, 98, 0, 0, 732, 737, 3, 178, 89, 0, 733, 734, 5, 61, 0, 0, 734, 736, 3, 178, 89, 0, 735, 733, 1, 0, 0, 0, 736, 739, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 740, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 740, 741, 5, 99, 0, 0, 741, 759, 1, 0, 0, 0, 742, 744, 3, 152, 76, 0, 743, 745, 5, 70, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 5, 76, 0, 0, 747, 748, 5, 98, 0, 0, 748, 753, 3, 178, 89, 0, 749, 750, 5, 61, 0, 0, 750, 752, 3, 178, 89, 0, 751, 749, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 756, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 757, 5, 99, 0, 0, 757, 759, 1, 0, 0, 0, 758, 712, 1, 0, 0, 0, 758, 719, 1, 0, 0, 0, 758, 726, 1, 0, 0, 0, 758, 742, 1, 0, 0, 0, 759, 149, 1, 0, 0, 0, 760, 763, 3, 56, 28, 0, 761, 762, 5, 58, 0, 0, 762, 764, 3, 12, 6, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 5, 59, 0, 0, 766, 767, 3, 168, 84, 0, 767, 151, 1, 0, 0, 0, 768, 774, 3, 154, 77, 0, 769, 770, 3, 154, 77, 0, 770, 771, 3, 180, 90, 0, 771, 772, 3, 154, 77, 0, 772, 774, 1, 0, 0, 0, 773, 768, 1, 0, 0, 0, 773, 769, 1, 0, 0, 0, 774, 153, 1, 0, 0, 0, 775, 776, 6, 77, -1, 0, 776, 780, 3, 156, 78, 0, 777, 778, 7, 5, 0, 0, 778, 780, 3, 154, 77, 3, 779, 775, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 789, 1, 0, 0, 0, 781, 782, 10, 2, 0, 0, 782, 783, 7, 6, 0, 0, 783, 788, 3, 154, 77, 3, 784, 785, 10, 1, 0, 0, 785, 786, 7, 5, 0, 0, 786, 788, 3, 154, 77, 2, 787, 781, 1, 0, 0, 0, 787, 784, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 155, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 6, 78, -1, 0, 793, 801, 3, 168, 84, 0, 794, 801, 3, 56, 28, 0, 795, 801, 3, 158, 79, 0, 796, 797, 5, 98, 0, 0, 797, 798, 3, 146, 73, 0, 798, 799, 5, 99, 0, 0, 799, 801, 1, 0, 0, 0, 800, 792, 1, 0, 0, 0, 800, 794, 1, 0, 0, 0, 800, 795, 1, 0, 0, 0, 800, 796, 1, 0, 0, 0, 801, 807, 1, 0, 0, 0, 802, 803, 10, 1, 0, 0, 803, 804, 5, 58, 0, 0, 804, 806, 3, 12, 6, 0, 805, 802, 1, 0, 0, 0, 806, 809, 1, 0, 0, 0, 807, 805, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 157, 1, 0, 0, 0, 809, 807, 1, 0, 0, 0, 810, 811, 3, 160, 80, 0, 811, 825, 5, 98, 0, 0, 812, 826, 5, 88, 0, 0, 813, 818, 3, 146, 73, 0, 814, 815, 5, 61, 0, 0, 815, 817, 3, 146, 73, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 823, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 822, 5, 61, 0, 0, 822, 824, 3, 162, 81, 0, 823, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 826, 1, 0, 0, 0, 825, 812, 1, 0, 0, 0, 825, 813, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 5, 99, 0, 0, 828, 159, 1, 0, 0, 0, 829, 833, 3, 74, 37, 0, 830, 833, 5, 65, 0, 0, 831, 833, 5, 68, 0, 0, 832, 829, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 832, 831, 1, 0, 0, 0, 833, 161, 1, 0, 0, 0, 834, 843, 5, 91, 0, 0, 835, 840, 3, 164, 82, 0, 836, 837, 5, 61, 0, 0, 837, 839, 3, 164, 82, 0, 838, 836, 1, 0, 0, 0, 839, 842, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 843, 835, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 5, 92, 0, 0, 846, 163, 1, 0, 0, 0, 847, 848, 3, 178, 89, 0, 848, 849, 5, 59, 0, 0, 849, 850, 3, 166, 83, 0, 850, 165, 1, 0, 0, 0, 851, 854, 3, 168, 84, 0, 852, 854, 3, 162, 81, 0, 853, 851, 1, 0, 0, 0, 853, 852, 1, 0, 0, 0, 854, 167, 1, 0, 0, 0, 855, 898, 5, 71, 0, 0, 856, 857, 3, 176, 88, 0, 857, 858, 5, 100, 0, 0, 858, 898, 1, 0, 0, 0, 859, 898, 3, 174, 87, 0, 860, 898, 3, 176, 88, 0, 861, 898, 3, 170, 85, 0, 862, 898, 3, 70, 35, 0, 863, 898, 3, 178, 89, 0, 864, 865, 5, 96, 0, 0, 865, 870, 3, 172, 86, 0, 866, 867, 5, 61, 0, 0, 867, 869, 3, 172, 86, 0, 868, 866, 1, 0, 0, 0, 869, 872, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 873, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 873, 874, 5, 97, 0, 0, 874, 898, 1, 0, 0, 0, 875, 876, 5, 96, 0, 0, 876, 881, 3, 170, 85, 0, 877, 878, 5, 61, 0, 0, 878, 880, 3, 170, 85, 0, 879, 877, 1, 0, 0, 0, 880, 883, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 884, 885, 5, 97, 0, 0, 885, 898, 1, 0, 0, 0, 886, 887, 5, 96, 0, 0, 887, 892, 3, 178, 89, 0, 888, 889, 5, 61, 0, 0, 889, 891, 3, 178, 89, 0, 890, 888, 1, 0, 0, 0, 891, 894, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 895, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 896, 5, 97, 0, 0, 896, 898, 1, 0, 0, 0, 897, 855, 1, 0, 0, 0, 897, 856, 1, 0, 0, 0, 897, 859, 1, 0, 0, 0, 897, 860, 1, 0, 0, 0, 897, 861, 1, 0, 0, 0, 897, 862, 1, 0, 0, 0, 897, 863, 1, 0, 0, 0, 897, 864, 1, 0, 0, 0, 897, 875, 1, 0, 0, 0, 897, 886, 1, 0, 0, 0, 898, 169, 1, 0, 0, 0, 899, 900, 7, 7, 0, 0, 900, 171, 1, 0, 0, 0, 901, 904, 3, 174, 87, 0, 902, 904, 3, 176, 88, 0, 903, 901, 1, 0, 0, 0, 903, 902, 1, 0, 0, 0, 904, 173, 1, 0, 0, 0, 905, 907, 7, 5, 0, 0, 906, 905, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 909, 5, 53, 0, 0, 909, 175, 1, 0, 0, 0, 910, 912, 7, 5, 0, 0, 911, 910, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 5, 52, 0, 0, 914, 177, 1, 0, 0, 0, 915, 916, 5, 51, 0, 0, 916, 179, 1, 0, 0, 0, 917, 918, 7, 8, 0, 0, 918, 181, 1, 0, 0, 0, 919, 920, 7, 9, 0, 0, 920, 921, 5, 123, 0, 0, 921, 922, 3, 184, 92, 0, 922, 923, 3, 186, 93, 0, 923, 183, 1, 0, 0, 0, 924, 925, 4, 92, 14, 0, 925, 927, 3, 36, 18, 0, 926, 928, 5, 141, 0, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 5, 106, 0, 0, 930, 933, 1, 0, 0, 0, 931, 933, 3, 36, 18, 0, 932, 924, 1, 0, 0, 0, 932, 931, 1, 0, 0, 0, 933, 185, 1, 0, 0, 0, 934, 935, 5, 73, 0, 0, 935, 940, 3, 146, 73, 0, 936, 937, 5, 61, 0, 0, 937, 939, 3, 146, 73, 0, 938, 936, 1, 0, 0, 0, 939, 942, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 187, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 91, 192, 200, 213, 222, 248, 263, 269, 278, 284, 297, 301, 306, 314, 330, 346, 354, 358, 365, 371, 376, 385, 392, 398, 407, 414, 422, 430, 434, 438, 443, 454, 459, 463, 477, 488, 494, 501, 510, 533, 541, 544, 551, 562, 569, 577, 591, 600, 611, 621, 627, 629, 633, 638, 652, 677, 686, 694, 699, 707, 709, 714, 721, 728, 737, 744, 753, 758, 763, 773, 779, 787, 789, 800, 807, 818, 823, 825, 832, 840, 843, 853, 870, 881, 892, 897, 903, 906, 911, 927, 932, 940]
\ No newline at end of file
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
index 36b5b5256ed24..da4cc9f90ef2e 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
@@ -61,53 +61,56 @@ public class EsqlBaseParser extends ParserConfig {
RULE_processingCommand = 4, RULE_whereCommand = 5, RULE_dataType = 6,
RULE_rowCommand = 7, RULE_fields = 8, RULE_field = 9, RULE_rerankFields = 10,
RULE_rerankField = 11, RULE_fromCommand = 12, RULE_timeSeriesCommand = 13,
- RULE_indexPatternAndMetadataFields = 14, RULE_indexPattern = 15, RULE_clusterString = 16,
- RULE_selectorString = 17, RULE_unquotedIndexString = 18, RULE_indexString = 19,
- RULE_metadata = 20, RULE_evalCommand = 21, RULE_statsCommand = 22, RULE_aggFields = 23,
- RULE_aggField = 24, RULE_qualifiedName = 25, RULE_fieldName = 26, RULE_qualifiedNamePattern = 27,
- RULE_fieldNamePattern = 28, RULE_qualifiedNamePatterns = 29, RULE_identifier = 30,
- RULE_identifierPattern = 31, RULE_parameter = 32, RULE_doubleParameter = 33,
- RULE_identifierOrParameter = 34, RULE_limitCommand = 35, RULE_sortCommand = 36,
- RULE_orderExpression = 37, RULE_keepCommand = 38, RULE_dropCommand = 39,
- RULE_renameCommand = 40, RULE_renameClause = 41, RULE_dissectCommand = 42,
- RULE_dissectCommandOptions = 43, RULE_dissectCommandOption = 44, RULE_commandNamedParameters = 45,
- RULE_grokCommand = 46, RULE_mvExpandCommand = 47, RULE_explainCommand = 48,
- RULE_subqueryExpression = 49, RULE_showCommand = 50, RULE_enrichCommand = 51,
- RULE_enrichPolicyName = 52, RULE_enrichWithClause = 53, RULE_sampleCommand = 54,
- RULE_changePointCommand = 55, RULE_forkCommand = 56, RULE_forkSubQueries = 57,
- RULE_forkSubQuery = 58, RULE_forkSubQueryCommand = 59, RULE_forkSubQueryProcessingCommand = 60,
- RULE_rerankCommand = 61, RULE_completionCommand = 62, RULE_inlineStatsCommand = 63,
- RULE_fuseCommand = 64, RULE_fuseConfiguration = 65, RULE_lookupCommand = 66,
- RULE_insistCommand = 67, RULE_setCommand = 68, RULE_setField = 69, RULE_booleanExpression = 70,
- RULE_regexBooleanExpression = 71, RULE_matchBooleanExpression = 72, RULE_valueExpression = 73,
- RULE_operatorExpression = 74, RULE_primaryExpression = 75, RULE_functionExpression = 76,
- RULE_functionName = 77, RULE_mapExpression = 78, RULE_entryExpression = 79,
- RULE_mapValue = 80, RULE_constant = 81, RULE_booleanValue = 82, RULE_numericValue = 83,
- RULE_decimalValue = 84, RULE_integerValue = 85, RULE_string = 86, RULE_comparisonOperator = 87,
- RULE_joinCommand = 88, RULE_joinTarget = 89, RULE_joinCondition = 90;
+ RULE_indexPatternAndMetadataFields = 14, RULE_indexPatternOrSubquery = 15,
+ RULE_subquery = 16, RULE_subqueryProcessingCommand = 17, RULE_indexPattern = 18,
+ RULE_clusterString = 19, RULE_selectorString = 20, RULE_unquotedIndexString = 21,
+ RULE_indexString = 22, RULE_metadata = 23, RULE_evalCommand = 24, RULE_statsCommand = 25,
+ RULE_aggFields = 26, RULE_aggField = 27, RULE_qualifiedName = 28, RULE_fieldName = 29,
+ RULE_qualifiedNamePattern = 30, RULE_fieldNamePattern = 31, RULE_qualifiedNamePatterns = 32,
+ RULE_identifier = 33, RULE_identifierPattern = 34, RULE_parameter = 35,
+ RULE_doubleParameter = 36, RULE_identifierOrParameter = 37, RULE_limitCommand = 38,
+ RULE_sortCommand = 39, RULE_orderExpression = 40, RULE_keepCommand = 41,
+ RULE_dropCommand = 42, RULE_renameCommand = 43, RULE_renameClause = 44,
+ RULE_dissectCommand = 45, RULE_dissectCommandOptions = 46, RULE_dissectCommandOption = 47,
+ RULE_commandNamedParameters = 48, RULE_grokCommand = 49, RULE_mvExpandCommand = 50,
+ RULE_explainCommand = 51, RULE_subqueryExpression = 52, RULE_showCommand = 53,
+ RULE_enrichCommand = 54, RULE_enrichPolicyName = 55, RULE_enrichWithClause = 56,
+ RULE_sampleCommand = 57, RULE_changePointCommand = 58, RULE_forkCommand = 59,
+ RULE_forkSubQueries = 60, RULE_forkSubQuery = 61, RULE_forkSubQueryCommand = 62,
+ RULE_forkSubQueryProcessingCommand = 63, RULE_rerankCommand = 64, RULE_completionCommand = 65,
+ RULE_inlineStatsCommand = 66, RULE_fuseCommand = 67, RULE_fuseConfiguration = 68,
+ RULE_lookupCommand = 69, RULE_insistCommand = 70, RULE_setCommand = 71,
+ RULE_setField = 72, RULE_booleanExpression = 73, RULE_regexBooleanExpression = 74,
+ RULE_matchBooleanExpression = 75, RULE_valueExpression = 76, RULE_operatorExpression = 77,
+ RULE_primaryExpression = 78, RULE_functionExpression = 79, RULE_functionName = 80,
+ RULE_mapExpression = 81, RULE_entryExpression = 82, RULE_mapValue = 83,
+ RULE_constant = 84, RULE_booleanValue = 85, RULE_numericValue = 86, RULE_decimalValue = 87,
+ RULE_integerValue = 88, RULE_string = 89, RULE_comparisonOperator = 90,
+ RULE_joinCommand = 91, RULE_joinTarget = 92, RULE_joinCondition = 93;
private static String[] makeRuleNames() {
return new String[] {
"statements", "singleStatement", "query", "sourceCommand", "processingCommand",
"whereCommand", "dataType", "rowCommand", "fields", "field", "rerankFields",
"rerankField", "fromCommand", "timeSeriesCommand", "indexPatternAndMetadataFields",
- "indexPattern", "clusterString", "selectorString", "unquotedIndexString",
- "indexString", "metadata", "evalCommand", "statsCommand", "aggFields",
- "aggField", "qualifiedName", "fieldName", "qualifiedNamePattern", "fieldNamePattern",
- "qualifiedNamePatterns", "identifier", "identifierPattern", "parameter",
- "doubleParameter", "identifierOrParameter", "limitCommand", "sortCommand",
- "orderExpression", "keepCommand", "dropCommand", "renameCommand", "renameClause",
- "dissectCommand", "dissectCommandOptions", "dissectCommandOption", "commandNamedParameters",
- "grokCommand", "mvExpandCommand", "explainCommand", "subqueryExpression",
- "showCommand", "enrichCommand", "enrichPolicyName", "enrichWithClause",
- "sampleCommand", "changePointCommand", "forkCommand", "forkSubQueries",
- "forkSubQuery", "forkSubQueryCommand", "forkSubQueryProcessingCommand",
- "rerankCommand", "completionCommand", "inlineStatsCommand", "fuseCommand",
- "fuseConfiguration", "lookupCommand", "insistCommand", "setCommand",
- "setField", "booleanExpression", "regexBooleanExpression", "matchBooleanExpression",
- "valueExpression", "operatorExpression", "primaryExpression", "functionExpression",
- "functionName", "mapExpression", "entryExpression", "mapValue", "constant",
- "booleanValue", "numericValue", "decimalValue", "integerValue", "string",
- "comparisonOperator", "joinCommand", "joinTarget", "joinCondition"
+ "indexPatternOrSubquery", "subquery", "subqueryProcessingCommand", "indexPattern",
+ "clusterString", "selectorString", "unquotedIndexString", "indexString",
+ "metadata", "evalCommand", "statsCommand", "aggFields", "aggField", "qualifiedName",
+ "fieldName", "qualifiedNamePattern", "fieldNamePattern", "qualifiedNamePatterns",
+ "identifier", "identifierPattern", "parameter", "doubleParameter", "identifierOrParameter",
+ "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand",
+ "renameCommand", "renameClause", "dissectCommand", "dissectCommandOptions",
+ "dissectCommandOption", "commandNamedParameters", "grokCommand", "mvExpandCommand",
+ "explainCommand", "subqueryExpression", "showCommand", "enrichCommand",
+ "enrichPolicyName", "enrichWithClause", "sampleCommand", "changePointCommand",
+ "forkCommand", "forkSubQueries", "forkSubQuery", "forkSubQueryCommand",
+ "forkSubQueryProcessingCommand", "rerankCommand", "completionCommand",
+ "inlineStatsCommand", "fuseCommand", "fuseConfiguration", "lookupCommand",
+ "insistCommand", "setCommand", "setField", "booleanExpression", "regexBooleanExpression",
+ "matchBooleanExpression", "valueExpression", "operatorExpression", "primaryExpression",
+ "functionExpression", "functionName", "mapExpression", "entryExpression",
+ "mapValue", "constant", "booleanValue", "numericValue", "decimalValue",
+ "integerValue", "string", "comparisonOperator", "joinCommand", "joinTarget",
+ "joinCondition"
};
}
public static final String[] ruleNames = makeRuleNames();
@@ -255,15 +258,15 @@ public final StatementsContext statements() throws RecognitionException {
enterRule(_localctx, 0, RULE_statements);
try {
int _alt;
- setState(194);
+ setState(200);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(182);
+ setState(188);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(184);
+ setState(190);
_errHandler.sync(this);
_alt = 1;
do {
@@ -271,7 +274,7 @@ public final StatementsContext statements() throws RecognitionException {
case 1:
{
{
- setState(183);
+ setState(189);
setCommand();
}
}
@@ -279,22 +282,22 @@ public final StatementsContext statements() throws RecognitionException {
default:
throw new NoViableAltException(this);
}
- setState(186);
+ setState(192);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,0,_ctx);
} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
- setState(188);
+ setState(194);
singleStatement();
- setState(189);
+ setState(195);
match(EOF);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(191);
+ setState(197);
singleStatement();
- setState(192);
+ setState(198);
match(EOF);
}
break;
@@ -343,9 +346,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(196);
+ setState(202);
query(0);
- setState(197);
+ setState(203);
match(EOF);
}
}
@@ -441,11 +444,11 @@ private QueryContext query(int _p) throws RecognitionException {
_ctx = _localctx;
_prevctx = _localctx;
- setState(200);
+ setState(206);
sourceCommand();
}
_ctx.stop = _input.LT(-1);
- setState(207);
+ setState(213);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,2,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -456,16 +459,16 @@ private QueryContext query(int _p) throws RecognitionException {
{
_localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_query);
- setState(202);
+ setState(208);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(203);
+ setState(209);
match(PIPE);
- setState(204);
+ setState(210);
processingCommand();
}
}
}
- setState(209);
+ setState(215);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,2,_ctx);
}
@@ -523,43 +526,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException {
SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState());
enterRule(_localctx, 6, RULE_sourceCommand);
try {
- setState(216);
+ setState(222);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(210);
+ setState(216);
fromCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(211);
+ setState(217);
rowCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(212);
+ setState(218);
showCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(213);
+ setState(219);
timeSeriesCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(214);
+ setState(220);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(215);
+ setState(221);
explainCommand();
}
break;
@@ -668,164 +671,164 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce
ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState());
enterRule(_localctx, 8, RULE_processingCommand);
try {
- setState(242);
+ setState(248);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,4,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(218);
+ setState(224);
evalCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(219);
+ setState(225);
whereCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(220);
+ setState(226);
keepCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(221);
+ setState(227);
limitCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(222);
+ setState(228);
statsCommand();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(223);
+ setState(229);
sortCommand();
}
break;
case 7:
enterOuterAlt(_localctx, 7);
{
- setState(224);
+ setState(230);
dropCommand();
}
break;
case 8:
enterOuterAlt(_localctx, 8);
{
- setState(225);
+ setState(231);
renameCommand();
}
break;
case 9:
enterOuterAlt(_localctx, 9);
{
- setState(226);
+ setState(232);
dissectCommand();
}
break;
case 10:
enterOuterAlt(_localctx, 10);
{
- setState(227);
+ setState(233);
grokCommand();
}
break;
case 11:
enterOuterAlt(_localctx, 11);
{
- setState(228);
+ setState(234);
enrichCommand();
}
break;
case 12:
enterOuterAlt(_localctx, 12);
{
- setState(229);
+ setState(235);
mvExpandCommand();
}
break;
case 13:
enterOuterAlt(_localctx, 13);
{
- setState(230);
+ setState(236);
joinCommand();
}
break;
case 14:
enterOuterAlt(_localctx, 14);
{
- setState(231);
+ setState(237);
changePointCommand();
}
break;
case 15:
enterOuterAlt(_localctx, 15);
{
- setState(232);
+ setState(238);
completionCommand();
}
break;
case 16:
enterOuterAlt(_localctx, 16);
{
- setState(233);
+ setState(239);
sampleCommand();
}
break;
case 17:
enterOuterAlt(_localctx, 17);
{
- setState(234);
+ setState(240);
forkCommand();
}
break;
case 18:
enterOuterAlt(_localctx, 18);
{
- setState(235);
+ setState(241);
rerankCommand();
}
break;
case 19:
enterOuterAlt(_localctx, 19);
{
- setState(236);
+ setState(242);
inlineStatsCommand();
}
break;
case 20:
enterOuterAlt(_localctx, 20);
{
- setState(237);
+ setState(243);
fuseCommand();
}
break;
case 21:
enterOuterAlt(_localctx, 21);
{
- setState(238);
+ setState(244);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(239);
+ setState(245);
lookupCommand();
}
break;
case 22:
enterOuterAlt(_localctx, 22);
{
- setState(240);
+ setState(246);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(241);
+ setState(247);
insistCommand();
}
break;
@@ -874,9 +877,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(244);
+ setState(250);
match(WHERE);
- setState(245);
+ setState(251);
booleanExpression(0);
}
}
@@ -934,7 +937,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ToDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(247);
+ setState(253);
identifier();
}
}
@@ -981,9 +984,9 @@ public final RowCommandContext rowCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(249);
+ setState(255);
match(ROW);
- setState(250);
+ setState(256);
fields();
}
}
@@ -1037,23 +1040,23 @@ public final FieldsContext fields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(252);
+ setState(258);
field();
- setState(257);
+ setState(263);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,5,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(253);
+ setState(259);
match(COMMA);
- setState(254);
+ setState(260);
field();
}
}
}
- setState(259);
+ setState(265);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,5,_ctx);
}
@@ -1105,19 +1108,19 @@ public final FieldContext field() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(263);
+ setState(269);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) {
case 1:
{
- setState(260);
+ setState(266);
qualifiedName();
- setState(261);
+ setState(267);
match(ASSIGN);
}
break;
}
- setState(265);
+ setState(271);
booleanExpression(0);
}
}
@@ -1171,23 +1174,23 @@ public final RerankFieldsContext rerankFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(267);
+ setState(273);
rerankField();
- setState(272);
+ setState(278);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,7,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(268);
+ setState(274);
match(COMMA);
- setState(269);
+ setState(275);
rerankField();
}
}
}
- setState(274);
+ setState(280);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,7,_ctx);
}
@@ -1239,16 +1242,16 @@ public final RerankFieldContext rerankField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(275);
+ setState(281);
qualifiedName();
- setState(278);
+ setState(284);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,8,_ctx) ) {
case 1:
{
- setState(276);
+ setState(282);
match(ASSIGN);
- setState(277);
+ setState(283);
booleanExpression(0);
}
break;
@@ -1298,9 +1301,9 @@ public final FromCommandContext fromCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(280);
+ setState(286);
match(FROM);
- setState(281);
+ setState(287);
indexPatternAndMetadataFields();
}
}
@@ -1347,9 +1350,9 @@ public final TimeSeriesCommandContext timeSeriesCommand() throws RecognitionExce
try {
enterOuterAlt(_localctx, 1);
{
- setState(283);
+ setState(289);
match(TS);
- setState(284);
+ setState(290);
indexPatternAndMetadataFields();
}
}
@@ -1366,11 +1369,11 @@ public final TimeSeriesCommandContext timeSeriesCommand() throws RecognitionExce
@SuppressWarnings("CheckReturnValue")
public static class IndexPatternAndMetadataFieldsContext extends ParserRuleContext {
- public List indexPattern() {
- return getRuleContexts(IndexPatternContext.class);
+ public List indexPatternOrSubquery() {
+ return getRuleContexts(IndexPatternOrSubqueryContext.class);
}
- public IndexPatternContext indexPattern(int i) {
- return getRuleContext(IndexPatternContext.class,i);
+ public IndexPatternOrSubqueryContext indexPatternOrSubquery(int i) {
+ return getRuleContext(IndexPatternOrSubqueryContext.class,i);
}
public List COMMA() { return getTokens(EsqlBaseParser.COMMA); }
public TerminalNode COMMA(int i) {
@@ -1406,32 +1409,32 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields(
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(286);
- indexPattern();
- setState(291);
+ setState(292);
+ indexPatternOrSubquery();
+ setState(297);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,9,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(287);
+ setState(293);
match(COMMA);
- setState(288);
- indexPattern();
+ setState(294);
+ indexPatternOrSubquery();
}
}
}
- setState(293);
+ setState(299);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,9,_ctx);
}
- setState(295);
+ setState(301);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) {
case 1:
{
- setState(294);
+ setState(300);
metadata();
}
break;
@@ -1449,6 +1452,195 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields(
return _localctx;
}
+ @SuppressWarnings("CheckReturnValue")
+ public static class IndexPatternOrSubqueryContext extends ParserRuleContext {
+ public IndexPatternContext indexPattern() {
+ return getRuleContext(IndexPatternContext.class,0);
+ }
+ public SubqueryContext subquery() {
+ return getRuleContext(SubqueryContext.class,0);
+ }
+ @SuppressWarnings("this-escape")
+ public IndexPatternOrSubqueryContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_indexPatternOrSubquery; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIndexPatternOrSubquery(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIndexPatternOrSubquery(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitIndexPatternOrSubquery(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final IndexPatternOrSubqueryContext indexPatternOrSubquery() throws RecognitionException {
+ IndexPatternOrSubqueryContext _localctx = new IndexPatternOrSubqueryContext(_ctx, getState());
+ enterRule(_localctx, 30, RULE_indexPatternOrSubquery);
+ try {
+ setState(306);
+ _errHandler.sync(this);
+ switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
+ case 1:
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(303);
+ indexPattern();
+ }
+ break;
+ case 2:
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(304);
+ if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
+ setState(305);
+ subquery();
+ }
+ break;
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ @SuppressWarnings("CheckReturnValue")
+ public static class SubqueryContext extends ParserRuleContext {
+ public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); }
+ public FromCommandContext fromCommand() {
+ return getRuleContext(FromCommandContext.class,0);
+ }
+ public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); }
+ public List PIPE() { return getTokens(EsqlBaseParser.PIPE); }
+ public TerminalNode PIPE(int i) {
+ return getToken(EsqlBaseParser.PIPE, i);
+ }
+ public List subqueryProcessingCommand() {
+ return getRuleContexts(SubqueryProcessingCommandContext.class);
+ }
+ public SubqueryProcessingCommandContext subqueryProcessingCommand(int i) {
+ return getRuleContext(SubqueryProcessingCommandContext.class,i);
+ }
+ @SuppressWarnings("this-escape")
+ public SubqueryContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_subquery; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSubquery(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSubquery(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitSubquery(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final SubqueryContext subquery() throws RecognitionException {
+ SubqueryContext _localctx = new SubqueryContext(_ctx, getState());
+ enterRule(_localctx, 32, RULE_subquery);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(308);
+ match(LP);
+ setState(309);
+ fromCommand();
+ setState(314);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==PIPE) {
+ {
+ {
+ setState(310);
+ match(PIPE);
+ setState(311);
+ subqueryProcessingCommand();
+ }
+ }
+ setState(316);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ setState(317);
+ match(RP);
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ @SuppressWarnings("CheckReturnValue")
+ public static class SubqueryProcessingCommandContext extends ParserRuleContext {
+ public ProcessingCommandContext processingCommand() {
+ return getRuleContext(ProcessingCommandContext.class,0);
+ }
+ @SuppressWarnings("this-escape")
+ public SubqueryProcessingCommandContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_subqueryProcessingCommand; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSubqueryProcessingCommand(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSubqueryProcessingCommand(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitSubqueryProcessingCommand(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final SubqueryProcessingCommandContext subqueryProcessingCommand() throws RecognitionException {
+ SubqueryProcessingCommandContext _localctx = new SubqueryProcessingCommandContext(_ctx, getState());
+ enterRule(_localctx, 34, RULE_subqueryProcessingCommand);
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(319);
+ processingCommand();
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
@SuppressWarnings("CheckReturnValue")
public static class IndexPatternContext extends ParserRuleContext {
public ClusterStringContext clusterString() {
@@ -1487,37 +1679,37 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IndexPatternContext indexPattern() throws RecognitionException {
IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState());
- enterRule(_localctx, 30, RULE_indexPattern);
+ enterRule(_localctx, 36, RULE_indexPattern);
try {
- setState(306);
+ setState(330);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(297);
+ setState(321);
clusterString();
- setState(298);
+ setState(322);
match(COLON);
- setState(299);
+ setState(323);
unquotedIndexString();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(301);
+ setState(325);
unquotedIndexString();
- setState(302);
+ setState(326);
match(CAST_OP);
- setState(303);
+ setState(327);
selectorString();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(305);
+ setState(329);
indexString();
}
break;
@@ -1559,11 +1751,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ClusterStringContext clusterString() throws RecognitionException {
ClusterStringContext _localctx = new ClusterStringContext(_ctx, getState());
- enterRule(_localctx, 32, RULE_clusterString);
+ enterRule(_localctx, 38, RULE_clusterString);
try {
enterOuterAlt(_localctx, 1);
{
- setState(308);
+ setState(332);
match(UNQUOTED_SOURCE);
}
}
@@ -1603,11 +1795,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SelectorStringContext selectorString() throws RecognitionException {
SelectorStringContext _localctx = new SelectorStringContext(_ctx, getState());
- enterRule(_localctx, 34, RULE_selectorString);
+ enterRule(_localctx, 40, RULE_selectorString);
try {
enterOuterAlt(_localctx, 1);
{
- setState(310);
+ setState(334);
match(UNQUOTED_SOURCE);
}
}
@@ -1647,11 +1839,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final UnquotedIndexStringContext unquotedIndexString() throws RecognitionException {
UnquotedIndexStringContext _localctx = new UnquotedIndexStringContext(_ctx, getState());
- enterRule(_localctx, 36, RULE_unquotedIndexString);
+ enterRule(_localctx, 42, RULE_unquotedIndexString);
try {
enterOuterAlt(_localctx, 1);
{
- setState(312);
+ setState(336);
match(UNQUOTED_SOURCE);
}
}
@@ -1692,12 +1884,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IndexStringContext indexString() throws RecognitionException {
IndexStringContext _localctx = new IndexStringContext(_ctx, getState());
- enterRule(_localctx, 38, RULE_indexString);
+ enterRule(_localctx, 44, RULE_indexString);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(314);
+ setState(338);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -1753,32 +1945,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MetadataContext metadata() throws RecognitionException {
MetadataContext _localctx = new MetadataContext(_ctx, getState());
- enterRule(_localctx, 40, RULE_metadata);
+ enterRule(_localctx, 46, RULE_metadata);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(316);
+ setState(340);
match(METADATA);
- setState(317);
+ setState(341);
match(UNQUOTED_SOURCE);
- setState(322);
+ setState(346);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,12,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,14,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(318);
+ setState(342);
match(COMMA);
- setState(319);
+ setState(343);
match(UNQUOTED_SOURCE);
}
}
}
- setState(324);
+ setState(348);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,12,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,14,_ctx);
}
}
}
@@ -1821,13 +2013,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EvalCommandContext evalCommand() throws RecognitionException {
EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState());
- enterRule(_localctx, 42, RULE_evalCommand);
+ enterRule(_localctx, 48, RULE_evalCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(325);
+ setState(349);
match(EVAL);
- setState(326);
+ setState(350);
fields();
}
}
@@ -1876,30 +2068,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StatsCommandContext statsCommand() throws RecognitionException {
StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState());
- enterRule(_localctx, 44, RULE_statsCommand);
+ enterRule(_localctx, 50, RULE_statsCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(328);
+ setState(352);
match(STATS);
- setState(330);
+ setState(354);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1:
{
- setState(329);
+ setState(353);
((StatsCommandContext)_localctx).stats = aggFields();
}
break;
}
- setState(334);
+ setState(358);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
case 1:
{
- setState(332);
+ setState(356);
match(BY);
- setState(333);
+ setState(357);
((StatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -1951,30 +2143,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final AggFieldsContext aggFields() throws RecognitionException {
AggFieldsContext _localctx = new AggFieldsContext(_ctx, getState());
- enterRule(_localctx, 46, RULE_aggFields);
+ enterRule(_localctx, 52, RULE_aggFields);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(336);
+ setState(360);
aggField();
- setState(341);
+ setState(365);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,15,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,17,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(337);
+ setState(361);
match(COMMA);
- setState(338);
+ setState(362);
aggField();
}
}
}
- setState(343);
+ setState(367);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,15,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,17,_ctx);
}
}
}
@@ -2020,20 +2212,20 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final AggFieldContext aggField() throws RecognitionException {
AggFieldContext _localctx = new AggFieldContext(_ctx, getState());
- enterRule(_localctx, 48, RULE_aggField);
+ enterRule(_localctx, 54, RULE_aggField);
try {
enterOuterAlt(_localctx, 1);
{
- setState(344);
+ setState(368);
field();
- setState(347);
+ setState(371);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
case 1:
{
- setState(345);
+ setState(369);
match(WHERE);
- setState(346);
+ setState(370);
booleanExpression(0);
}
break;
@@ -2090,45 +2282,45 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNameContext qualifiedName() throws RecognitionException {
QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState());
- enterRule(_localctx, 50, RULE_qualifiedName);
+ enterRule(_localctx, 56, RULE_qualifiedName);
int _la;
try {
- setState(361);
+ setState(385);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(349);
+ setState(373);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(350);
+ setState(374);
match(OPENING_BRACKET);
- setState(352);
+ setState(376);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==UNQUOTED_IDENTIFIER) {
{
- setState(351);
+ setState(375);
((QualifiedNameContext)_localctx).qualifier = match(UNQUOTED_IDENTIFIER);
}
}
- setState(354);
+ setState(378);
match(CLOSING_BRACKET);
- setState(355);
+ setState(379);
match(DOT);
- setState(356);
+ setState(380);
match(OPENING_BRACKET);
- setState(357);
+ setState(381);
((QualifiedNameContext)_localctx).name = fieldName();
- setState(358);
+ setState(382);
match(CLOSING_BRACKET);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(360);
+ setState(384);
((QualifiedNameContext)_localctx).name = fieldName();
}
break;
@@ -2179,30 +2371,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FieldNameContext fieldName() throws RecognitionException {
FieldNameContext _localctx = new FieldNameContext(_ctx, getState());
- enterRule(_localctx, 52, RULE_fieldName);
+ enterRule(_localctx, 58, RULE_fieldName);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(363);
+ setState(387);
identifierOrParameter();
- setState(368);
+ setState(392);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,19,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,21,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(364);
+ setState(388);
match(DOT);
- setState(365);
+ setState(389);
identifierOrParameter();
}
}
}
- setState(370);
+ setState(394);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,19,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,21,_ctx);
}
}
}
@@ -2256,45 +2448,45 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNamePatternContext qualifiedNamePattern() throws RecognitionException {
QualifiedNamePatternContext _localctx = new QualifiedNamePatternContext(_ctx, getState());
- enterRule(_localctx, 54, RULE_qualifiedNamePattern);
+ enterRule(_localctx, 60, RULE_qualifiedNamePattern);
int _la;
try {
- setState(383);
+ setState(407);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(371);
+ setState(395);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(372);
+ setState(396);
match(OPENING_BRACKET);
- setState(374);
+ setState(398);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==ID_PATTERN) {
{
- setState(373);
+ setState(397);
((QualifiedNamePatternContext)_localctx).qualifier = match(ID_PATTERN);
}
}
- setState(376);
+ setState(400);
match(CLOSING_BRACKET);
- setState(377);
+ setState(401);
match(DOT);
- setState(378);
+ setState(402);
match(OPENING_BRACKET);
- setState(379);
+ setState(403);
((QualifiedNamePatternContext)_localctx).name = fieldNamePattern();
- setState(380);
+ setState(404);
match(CLOSING_BRACKET);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(382);
+ setState(406);
((QualifiedNamePatternContext)_localctx).name = fieldNamePattern();
}
break;
@@ -2345,31 +2537,31 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FieldNamePatternContext fieldNamePattern() throws RecognitionException {
FieldNamePatternContext _localctx = new FieldNamePatternContext(_ctx, getState());
- enterRule(_localctx, 56, RULE_fieldNamePattern);
+ enterRule(_localctx, 62, RULE_fieldNamePattern);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(385);
+ setState(409);
identifierPattern();
- setState(390);
+ setState(414);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,22,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,24,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(386);
+ setState(410);
match(DOT);
- setState(387);
+ setState(411);
identifierPattern();
}
}
}
- setState(392);
+ setState(416);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,22,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,24,_ctx);
}
}
}
@@ -2419,30 +2611,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNamePatternsContext qualifiedNamePatterns() throws RecognitionException {
QualifiedNamePatternsContext _localctx = new QualifiedNamePatternsContext(_ctx, getState());
- enterRule(_localctx, 58, RULE_qualifiedNamePatterns);
+ enterRule(_localctx, 64, RULE_qualifiedNamePatterns);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(393);
+ setState(417);
qualifiedNamePattern();
- setState(398);
+ setState(422);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,23,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(394);
+ setState(418);
match(COMMA);
- setState(395);
+ setState(419);
qualifiedNamePattern();
}
}
}
- setState(400);
+ setState(424);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,23,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
}
}
}
@@ -2483,12 +2675,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierContext identifier() throws RecognitionException {
IdentifierContext _localctx = new IdentifierContext(_ctx, getState());
- enterRule(_localctx, 60, RULE_identifier);
+ enterRule(_localctx, 66, RULE_identifier);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(401);
+ setState(425);
_la = _input.LA(1);
if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) {
_errHandler.recoverInline(this);
@@ -2542,15 +2734,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierPatternContext identifierPattern() throws RecognitionException {
IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState());
- enterRule(_localctx, 62, RULE_identifierPattern);
+ enterRule(_localctx, 68, RULE_identifierPattern);
try {
- setState(406);
+ setState(430);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ID_PATTERN:
enterOuterAlt(_localctx, 1);
{
- setState(403);
+ setState(427);
match(ID_PATTERN);
}
break;
@@ -2558,7 +2750,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(404);
+ setState(428);
parameter();
}
break;
@@ -2566,7 +2758,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(405);
+ setState(429);
doubleParameter();
}
break;
@@ -2640,16 +2832,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ParameterContext parameter() throws RecognitionException {
ParameterContext _localctx = new ParameterContext(_ctx, getState());
- enterRule(_localctx, 64, RULE_parameter);
+ enterRule(_localctx, 70, RULE_parameter);
try {
- setState(410);
+ setState(434);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
_localctx = new InputParamContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(408);
+ setState(432);
match(PARAM);
}
break;
@@ -2657,7 +2849,7 @@ public final ParameterContext parameter() throws RecognitionException {
_localctx = new InputNamedOrPositionalParamContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(409);
+ setState(433);
match(NAMED_OR_POSITIONAL_PARAM);
}
break;
@@ -2731,16 +2923,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DoubleParameterContext doubleParameter() throws RecognitionException {
DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState());
- enterRule(_localctx, 66, RULE_doubleParameter);
+ enterRule(_localctx, 72, RULE_doubleParameter);
try {
- setState(414);
+ setState(438);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DOUBLE_PARAMS:
_localctx = new InputDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(412);
+ setState(436);
match(DOUBLE_PARAMS);
}
break;
@@ -2748,7 +2940,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
_localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(413);
+ setState(437);
match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS);
}
break;
@@ -2800,16 +2992,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierOrParameterContext identifierOrParameter() throws RecognitionException {
IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState());
- enterRule(_localctx, 68, RULE_identifierOrParameter);
+ enterRule(_localctx, 74, RULE_identifierOrParameter);
try {
- setState(419);
+ setState(443);
_errHandler.sync(this);
switch (_input.LA(1)) {
case UNQUOTED_IDENTIFIER:
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(416);
+ setState(440);
identifier();
}
break;
@@ -2817,7 +3009,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(417);
+ setState(441);
parameter();
}
break;
@@ -2825,7 +3017,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(418);
+ setState(442);
doubleParameter();
}
break;
@@ -2872,13 +3064,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final LimitCommandContext limitCommand() throws RecognitionException {
LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState());
- enterRule(_localctx, 70, RULE_limitCommand);
+ enterRule(_localctx, 76, RULE_limitCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(421);
+ setState(445);
match(LIMIT);
- setState(422);
+ setState(446);
constant();
}
}
@@ -2928,32 +3120,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SortCommandContext sortCommand() throws RecognitionException {
SortCommandContext _localctx = new SortCommandContext(_ctx, getState());
- enterRule(_localctx, 72, RULE_sortCommand);
+ enterRule(_localctx, 78, RULE_sortCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(424);
+ setState(448);
match(SORT);
- setState(425);
+ setState(449);
orderExpression();
- setState(430);
+ setState(454);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,28,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,30,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(426);
+ setState(450);
match(COMMA);
- setState(427);
+ setState(451);
orderExpression();
}
}
}
- setState(432);
+ setState(456);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,28,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,30,_ctx);
}
}
}
@@ -3002,19 +3194,19 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final OrderExpressionContext orderExpression() throws RecognitionException {
OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState());
- enterRule(_localctx, 74, RULE_orderExpression);
+ enterRule(_localctx, 80, RULE_orderExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(433);
+ setState(457);
booleanExpression(0);
- setState(435);
+ setState(459);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
case 1:
{
- setState(434);
+ setState(458);
((OrderExpressionContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -3028,14 +3220,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
}
break;
}
- setState(439);
+ setState(463);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
case 1:
{
- setState(437);
+ setState(461);
match(NULLS);
- setState(438);
+ setState(462);
((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==FIRST || _la==LAST) ) {
@@ -3090,13 +3282,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final KeepCommandContext keepCommand() throws RecognitionException {
KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState());
- enterRule(_localctx, 76, RULE_keepCommand);
+ enterRule(_localctx, 82, RULE_keepCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(441);
+ setState(465);
match(KEEP);
- setState(442);
+ setState(466);
qualifiedNamePatterns();
}
}
@@ -3139,13 +3331,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DropCommandContext dropCommand() throws RecognitionException {
DropCommandContext _localctx = new DropCommandContext(_ctx, getState());
- enterRule(_localctx, 78, RULE_dropCommand);
+ enterRule(_localctx, 84, RULE_dropCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(444);
+ setState(468);
match(DROP);
- setState(445);
+ setState(469);
qualifiedNamePatterns();
}
}
@@ -3195,32 +3387,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RenameCommandContext renameCommand() throws RecognitionException {
RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState());
- enterRule(_localctx, 80, RULE_renameCommand);
+ enterRule(_localctx, 86, RULE_renameCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(447);
+ setState(471);
match(RENAME);
- setState(448);
+ setState(472);
renameClause();
- setState(453);
+ setState(477);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(449);
+ setState(473);
match(COMMA);
- setState(450);
+ setState(474);
renameClause();
}
}
}
- setState(455);
+ setState(479);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
}
}
}
@@ -3269,30 +3461,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RenameClauseContext renameClause() throws RecognitionException {
RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState());
- enterRule(_localctx, 82, RULE_renameClause);
+ enterRule(_localctx, 88, RULE_renameClause);
try {
- setState(464);
+ setState(488);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(456);
+ setState(480);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
- setState(457);
+ setState(481);
match(AS);
- setState(458);
+ setState(482);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(460);
+ setState(484);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(461);
+ setState(485);
match(ASSIGN);
- setState(462);
+ setState(486);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
}
break;
@@ -3343,22 +3535,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DissectCommandContext dissectCommand() throws RecognitionException {
DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState());
- enterRule(_localctx, 84, RULE_dissectCommand);
+ enterRule(_localctx, 90, RULE_dissectCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(466);
+ setState(490);
match(DISSECT);
- setState(467);
+ setState(491);
primaryExpression(0);
- setState(468);
+ setState(492);
string();
- setState(470);
+ setState(494);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
case 1:
{
- setState(469);
+ setState(493);
dissectCommandOptions();
}
break;
@@ -3410,30 +3602,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DissectCommandOptionsContext dissectCommandOptions() throws RecognitionException {
DissectCommandOptionsContext _localctx = new DissectCommandOptionsContext(_ctx, getState());
- enterRule(_localctx, 86, RULE_dissectCommandOptions);
+ enterRule(_localctx, 92, RULE_dissectCommandOptions);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(472);
+ setState(496);
dissectCommandOption();
- setState(477);
+ setState(501);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,34,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(473);
+ setState(497);
match(COMMA);
- setState(474);
+ setState(498);
dissectCommandOption();
}
}
}
- setState(479);
+ setState(503);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,34,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
}
}
}
@@ -3479,15 +3671,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DissectCommandOptionContext dissectCommandOption() throws RecognitionException {
DissectCommandOptionContext _localctx = new DissectCommandOptionContext(_ctx, getState());
- enterRule(_localctx, 88, RULE_dissectCommandOption);
+ enterRule(_localctx, 94, RULE_dissectCommandOption);
try {
enterOuterAlt(_localctx, 1);
{
- setState(480);
+ setState(504);
identifier();
- setState(481);
+ setState(505);
match(ASSIGN);
- setState(482);
+ setState(506);
constant();
}
}
@@ -3530,18 +3722,18 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CommandNamedParametersContext commandNamedParameters() throws RecognitionException {
CommandNamedParametersContext _localctx = new CommandNamedParametersContext(_ctx, getState());
- enterRule(_localctx, 90, RULE_commandNamedParameters);
+ enterRule(_localctx, 96, RULE_commandNamedParameters);
try {
enterOuterAlt(_localctx, 1);
{
- setState(486);
+ setState(510);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
case 1:
{
- setState(484);
+ setState(508);
match(WITH);
- setState(485);
+ setState(509);
mapExpression();
}
break;
@@ -3590,15 +3782,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final GrokCommandContext grokCommand() throws RecognitionException {
GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState());
- enterRule(_localctx, 92, RULE_grokCommand);
+ enterRule(_localctx, 98, RULE_grokCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(488);
+ setState(512);
match(GROK);
- setState(489);
+ setState(513);
primaryExpression(0);
- setState(490);
+ setState(514);
string();
}
}
@@ -3641,13 +3833,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MvExpandCommandContext mvExpandCommand() throws RecognitionException {
MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState());
- enterRule(_localctx, 94, RULE_mvExpandCommand);
+ enterRule(_localctx, 100, RULE_mvExpandCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(492);
+ setState(516);
match(MV_EXPAND);
- setState(493);
+ setState(517);
qualifiedName();
}
}
@@ -3690,13 +3882,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ExplainCommandContext explainCommand() throws RecognitionException {
ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState());
- enterRule(_localctx, 96, RULE_explainCommand);
+ enterRule(_localctx, 102, RULE_explainCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(495);
+ setState(519);
match(DEV_EXPLAIN);
- setState(496);
+ setState(520);
subqueryExpression();
}
}
@@ -3740,15 +3932,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SubqueryExpressionContext subqueryExpression() throws RecognitionException {
SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState());
- enterRule(_localctx, 98, RULE_subqueryExpression);
+ enterRule(_localctx, 104, RULE_subqueryExpression);
try {
enterOuterAlt(_localctx, 1);
{
- setState(498);
+ setState(522);
match(LP);
- setState(499);
+ setState(523);
query(0);
- setState(500);
+ setState(524);
match(RP);
}
}
@@ -3800,14 +3992,14 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ShowCommandContext showCommand() throws RecognitionException {
ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState());
- enterRule(_localctx, 100, RULE_showCommand);
+ enterRule(_localctx, 106, RULE_showCommand);
try {
_localctx = new ShowInfoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(502);
+ setState(526);
match(SHOW);
- setState(503);
+ setState(527);
match(INFO);
}
}
@@ -3867,53 +4059,53 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EnrichCommandContext enrichCommand() throws RecognitionException {
EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState());
- enterRule(_localctx, 102, RULE_enrichCommand);
+ enterRule(_localctx, 108, RULE_enrichCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(505);
+ setState(529);
match(ENRICH);
- setState(506);
+ setState(530);
((EnrichCommandContext)_localctx).policyName = enrichPolicyName();
- setState(509);
+ setState(533);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
- setState(507);
+ setState(531);
match(ON);
- setState(508);
+ setState(532);
((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern();
}
break;
}
- setState(520);
+ setState(544);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
- setState(511);
+ setState(535);
match(WITH);
- setState(512);
+ setState(536);
enrichWithClause();
- setState(517);
+ setState(541);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,37,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(513);
+ setState(537);
match(COMMA);
- setState(514);
+ setState(538);
enrichWithClause();
}
}
}
- setState(519);
+ setState(543);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,37,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
}
}
break;
@@ -3957,12 +4149,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EnrichPolicyNameContext enrichPolicyName() throws RecognitionException {
EnrichPolicyNameContext _localctx = new EnrichPolicyNameContext(_ctx, getState());
- enterRule(_localctx, 104, RULE_enrichPolicyName);
+ enterRule(_localctx, 110, RULE_enrichPolicyName);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(522);
+ setState(546);
_la = _input.LA(1);
if ( !(_la==ENRICH_POLICY_NAME || _la==QUOTED_STRING) ) {
_errHandler.recoverInline(this);
@@ -4018,23 +4210,23 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EnrichWithClauseContext enrichWithClause() throws RecognitionException {
EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState());
- enterRule(_localctx, 106, RULE_enrichWithClause);
+ enterRule(_localctx, 112, RULE_enrichWithClause);
try {
enterOuterAlt(_localctx, 1);
{
- setState(527);
+ setState(551);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) {
case 1:
{
- setState(524);
+ setState(548);
((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(525);
+ setState(549);
match(ASSIGN);
}
break;
}
- setState(529);
+ setState(553);
((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern();
}
}
@@ -4078,13 +4270,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SampleCommandContext sampleCommand() throws RecognitionException {
SampleCommandContext _localctx = new SampleCommandContext(_ctx, getState());
- enterRule(_localctx, 108, RULE_sampleCommand);
+ enterRule(_localctx, 114, RULE_sampleCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(531);
+ setState(555);
match(SAMPLE);
- setState(532);
+ setState(556);
((SampleCommandContext)_localctx).probability = constant();
}
}
@@ -4137,38 +4329,38 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ChangePointCommandContext changePointCommand() throws RecognitionException {
ChangePointCommandContext _localctx = new ChangePointCommandContext(_ctx, getState());
- enterRule(_localctx, 110, RULE_changePointCommand);
+ enterRule(_localctx, 116, RULE_changePointCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(534);
+ setState(558);
match(CHANGE_POINT);
- setState(535);
+ setState(559);
((ChangePointCommandContext)_localctx).value = qualifiedName();
- setState(538);
+ setState(562);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) {
case 1:
{
- setState(536);
+ setState(560);
match(ON);
- setState(537);
+ setState(561);
((ChangePointCommandContext)_localctx).key = qualifiedName();
}
break;
}
- setState(545);
+ setState(569);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) {
case 1:
{
- setState(540);
+ setState(564);
match(AS);
- setState(541);
+ setState(565);
((ChangePointCommandContext)_localctx).targetType = qualifiedName();
- setState(542);
+ setState(566);
match(COMMA);
- setState(543);
+ setState(567);
((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName();
}
break;
@@ -4214,13 +4406,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkCommandContext forkCommand() throws RecognitionException {
ForkCommandContext _localctx = new ForkCommandContext(_ctx, getState());
- enterRule(_localctx, 112, RULE_forkCommand);
+ enterRule(_localctx, 118, RULE_forkCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(547);
+ setState(571);
match(FORK);
- setState(548);
+ setState(572);
forkSubQueries();
}
}
@@ -4265,12 +4457,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkSubQueriesContext forkSubQueries() throws RecognitionException {
ForkSubQueriesContext _localctx = new ForkSubQueriesContext(_ctx, getState());
- enterRule(_localctx, 114, RULE_forkSubQueries);
+ enterRule(_localctx, 120, RULE_forkSubQueries);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(551);
+ setState(575);
_errHandler.sync(this);
_alt = 1;
do {
@@ -4278,7 +4470,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException
case 1:
{
{
- setState(550);
+ setState(574);
forkSubQuery();
}
}
@@ -4286,9 +4478,9 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException
default:
throw new NoViableAltException(this);
}
- setState(553);
+ setState(577);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,42,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
}
}
@@ -4332,15 +4524,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkSubQueryContext forkSubQuery() throws RecognitionException {
ForkSubQueryContext _localctx = new ForkSubQueryContext(_ctx, getState());
- enterRule(_localctx, 116, RULE_forkSubQuery);
+ enterRule(_localctx, 122, RULE_forkSubQuery);
try {
enterOuterAlt(_localctx, 1);
{
- setState(555);
+ setState(579);
match(LP);
- setState(556);
+ setState(580);
forkSubQueryCommand(0);
- setState(557);
+ setState(581);
match(RP);
}
}
@@ -4425,8 +4617,8 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
int _parentState = getState();
ForkSubQueryCommandContext _localctx = new ForkSubQueryCommandContext(_ctx, _parentState);
ForkSubQueryCommandContext _prevctx = _localctx;
- int _startState = 118;
- enterRecursionRule(_localctx, 118, RULE_forkSubQueryCommand, _p);
+ int _startState = 124;
+ enterRecursionRule(_localctx, 124, RULE_forkSubQueryCommand, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
@@ -4436,13 +4628,13 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
_ctx = _localctx;
_prevctx = _localctx;
- setState(560);
+ setState(584);
forkSubQueryProcessingCommand();
}
_ctx.stop = _input.LT(-1);
- setState(567);
+ setState(591);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -4451,18 +4643,18 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
{
_localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand);
- setState(562);
+ setState(586);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(563);
+ setState(587);
match(PIPE);
- setState(564);
+ setState(588);
forkSubQueryProcessingCommand();
}
}
}
- setState(569);
+ setState(593);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
}
}
}
@@ -4504,11 +4696,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand() throws RecognitionException {
ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState());
- enterRule(_localctx, 120, RULE_forkSubQueryProcessingCommand);
+ enterRule(_localctx, 126, RULE_forkSubQueryProcessingCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(570);
+ setState(594);
processingCommand();
}
}
@@ -4564,31 +4756,31 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RerankCommandContext rerankCommand() throws RecognitionException {
RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState());
- enterRule(_localctx, 122, RULE_rerankCommand);
+ enterRule(_localctx, 128, RULE_rerankCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(572);
+ setState(596);
match(RERANK);
- setState(576);
+ setState(600);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
case 1:
{
- setState(573);
+ setState(597);
((RerankCommandContext)_localctx).targetField = qualifiedName();
- setState(574);
+ setState(598);
match(ASSIGN);
}
break;
}
- setState(578);
+ setState(602);
((RerankCommandContext)_localctx).queryText = constant();
- setState(579);
+ setState(603);
match(ON);
- setState(580);
+ setState(604);
rerankFields();
- setState(581);
+ setState(605);
commandNamedParameters();
}
}
@@ -4640,27 +4832,27 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CompletionCommandContext completionCommand() throws RecognitionException {
CompletionCommandContext _localctx = new CompletionCommandContext(_ctx, getState());
- enterRule(_localctx, 124, RULE_completionCommand);
+ enterRule(_localctx, 130, RULE_completionCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(583);
+ setState(607);
match(COMPLETION);
- setState(587);
+ setState(611);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) {
case 1:
{
- setState(584);
+ setState(608);
((CompletionCommandContext)_localctx).targetField = qualifiedName();
- setState(585);
+ setState(609);
match(ASSIGN);
}
break;
}
- setState(589);
+ setState(613);
((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
- setState(590);
+ setState(614);
commandNamedParameters();
}
}
@@ -4711,28 +4903,28 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionException {
InlineStatsCommandContext _localctx = new InlineStatsCommandContext(_ctx, getState());
- enterRule(_localctx, 126, RULE_inlineStatsCommand);
+ enterRule(_localctx, 132, RULE_inlineStatsCommand);
try {
- setState(605);
+ setState(629);
_errHandler.sync(this);
switch (_input.LA(1)) {
case INLINE:
enterOuterAlt(_localctx, 1);
{
- setState(592);
+ setState(616);
match(INLINE);
- setState(593);
+ setState(617);
match(INLINE_STATS);
- setState(594);
+ setState(618);
((InlineStatsCommandContext)_localctx).stats = aggFields();
- setState(597);
+ setState(621);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
{
- setState(595);
+ setState(619);
match(BY);
- setState(596);
+ setState(620);
((InlineStatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -4742,18 +4934,18 @@ public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionEx
case INLINESTATS:
enterOuterAlt(_localctx, 2);
{
- setState(599);
+ setState(623);
match(INLINESTATS);
- setState(600);
+ setState(624);
((InlineStatsCommandContext)_localctx).stats = aggFields();
- setState(603);
+ setState(627);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) {
case 1:
{
- setState(601);
+ setState(625);
match(BY);
- setState(602);
+ setState(626);
((InlineStatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -4810,38 +5002,38 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FuseCommandContext fuseCommand() throws RecognitionException {
FuseCommandContext _localctx = new FuseCommandContext(_ctx, getState());
- enterRule(_localctx, 128, RULE_fuseCommand);
+ enterRule(_localctx, 134, RULE_fuseCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(607);
+ setState(631);
match(FUSE);
- setState(609);
+ setState(633);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
case 1:
{
- setState(608);
+ setState(632);
((FuseCommandContext)_localctx).fuseType = identifier();
}
break;
}
- setState(614);
+ setState(638);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,52,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(611);
+ setState(635);
fuseConfiguration();
}
}
}
- setState(616);
+ setState(640);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,52,_ctx);
}
}
}
@@ -4898,50 +5090,50 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FuseConfigurationContext fuseConfiguration() throws RecognitionException {
FuseConfigurationContext _localctx = new FuseConfigurationContext(_ctx, getState());
- enterRule(_localctx, 130, RULE_fuseConfiguration);
+ enterRule(_localctx, 136, RULE_fuseConfiguration);
try {
- setState(628);
+ setState(652);
_errHandler.sync(this);
switch (_input.LA(1)) {
case SCORE:
enterOuterAlt(_localctx, 1);
{
- setState(617);
+ setState(641);
match(SCORE);
- setState(618);
+ setState(642);
match(BY);
- setState(619);
+ setState(643);
((FuseConfigurationContext)_localctx).score = qualifiedName();
}
break;
case KEY:
enterOuterAlt(_localctx, 2);
{
- setState(620);
+ setState(644);
match(KEY);
- setState(621);
+ setState(645);
match(BY);
- setState(622);
+ setState(646);
((FuseConfigurationContext)_localctx).key = fields();
}
break;
case GROUP:
enterOuterAlt(_localctx, 3);
{
- setState(623);
+ setState(647);
match(GROUP);
- setState(624);
+ setState(648);
match(BY);
- setState(625);
+ setState(649);
((FuseConfigurationContext)_localctx).group = qualifiedName();
}
break;
case WITH:
enterOuterAlt(_localctx, 4);
{
- setState(626);
+ setState(650);
match(WITH);
- setState(627);
+ setState(651);
((FuseConfigurationContext)_localctx).options = mapExpression();
}
break;
@@ -4994,17 +5186,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final LookupCommandContext lookupCommand() throws RecognitionException {
LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState());
- enterRule(_localctx, 132, RULE_lookupCommand);
+ enterRule(_localctx, 138, RULE_lookupCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(630);
+ setState(654);
match(DEV_LOOKUP);
- setState(631);
+ setState(655);
((LookupCommandContext)_localctx).tableName = indexPattern();
- setState(632);
+ setState(656);
match(ON);
- setState(633);
+ setState(657);
((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns();
}
}
@@ -5047,13 +5239,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final InsistCommandContext insistCommand() throws RecognitionException {
InsistCommandContext _localctx = new InsistCommandContext(_ctx, getState());
- enterRule(_localctx, 134, RULE_insistCommand);
+ enterRule(_localctx, 140, RULE_insistCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(635);
+ setState(659);
match(DEV_INSIST);
- setState(636);
+ setState(660);
qualifiedNamePatterns();
}
}
@@ -5097,15 +5289,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SetCommandContext setCommand() throws RecognitionException {
SetCommandContext _localctx = new SetCommandContext(_ctx, getState());
- enterRule(_localctx, 136, RULE_setCommand);
+ enterRule(_localctx, 142, RULE_setCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(638);
+ setState(662);
match(SET);
- setState(639);
+ setState(663);
setField();
- setState(640);
+ setState(664);
match(SEMICOLON);
}
}
@@ -5151,15 +5343,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SetFieldContext setField() throws RecognitionException {
SetFieldContext _localctx = new SetFieldContext(_ctx, getState());
- enterRule(_localctx, 138, RULE_setField);
+ enterRule(_localctx, 144, RULE_setField);
try {
enterOuterAlt(_localctx, 1);
{
- setState(642);
+ setState(666);
identifier();
- setState(643);
+ setState(667);
match(ASSIGN);
- setState(644);
+ setState(668);
constant();
}
}
@@ -5368,25 +5560,25 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _parentState = getState();
BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, _parentState);
BooleanExpressionContext _prevctx = _localctx;
- int _startState = 140;
- enterRecursionRule(_localctx, 140, RULE_booleanExpression, _p);
+ int _startState = 146;
+ enterRecursionRule(_localctx, 146, RULE_booleanExpression, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(675);
+ setState(699);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) {
case 1:
{
_localctx = new LogicalNotContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(647);
+ setState(671);
match(NOT);
- setState(648);
+ setState(672);
booleanExpression(8);
}
break;
@@ -5395,7 +5587,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(649);
+ setState(673);
valueExpression();
}
break;
@@ -5404,7 +5596,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new RegexExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(650);
+ setState(674);
regexBooleanExpression();
}
break;
@@ -5413,41 +5605,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalInContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(651);
+ setState(675);
valueExpression();
- setState(653);
+ setState(677);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(652);
+ setState(676);
match(NOT);
}
}
- setState(655);
+ setState(679);
match(IN);
- setState(656);
+ setState(680);
match(LP);
- setState(657);
+ setState(681);
valueExpression();
- setState(662);
+ setState(686);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(658);
+ setState(682);
match(COMMA);
- setState(659);
+ setState(683);
valueExpression();
}
}
- setState(664);
+ setState(688);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(665);
+ setState(689);
match(RP);
}
break;
@@ -5456,21 +5648,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new IsNullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(667);
+ setState(691);
valueExpression();
- setState(668);
+ setState(692);
match(IS);
- setState(670);
+ setState(694);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(669);
+ setState(693);
match(NOT);
}
}
- setState(672);
+ setState(696);
match(NULL);
}
break;
@@ -5479,33 +5671,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(674);
+ setState(698);
matchBooleanExpression();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(685);
+ setState(709);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,59,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(683);
+ setState(707);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) {
case 1:
{
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(677);
+ setState(701);
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
- setState(678);
+ setState(702);
((LogicalBinaryContext)_localctx).operator = match(AND);
- setState(679);
+ setState(703);
((LogicalBinaryContext)_localctx).right = booleanExpression(6);
}
break;
@@ -5514,20 +5706,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(680);
+ setState(704);
if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(681);
+ setState(705);
((LogicalBinaryContext)_localctx).operator = match(OR);
- setState(682);
+ setState(706);
((LogicalBinaryContext)_localctx).right = booleanExpression(5);
}
break;
}
}
}
- setState(687);
+ setState(711);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,59,_ctx);
}
}
}
@@ -5681,31 +5873,31 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException {
RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState());
- enterRule(_localctx, 142, RULE_regexBooleanExpression);
+ enterRule(_localctx, 148, RULE_regexBooleanExpression);
int _la;
try {
- setState(734);
+ setState(758);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
case 1:
_localctx = new LikeExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(688);
+ setState(712);
valueExpression();
- setState(690);
+ setState(714);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(689);
+ setState(713);
match(NOT);
}
}
- setState(692);
+ setState(716);
match(LIKE);
- setState(693);
+ setState(717);
string();
}
break;
@@ -5713,21 +5905,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
_localctx = new RlikeExpressionContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(695);
+ setState(719);
valueExpression();
- setState(697);
+ setState(721);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(696);
+ setState(720);
match(NOT);
}
}
- setState(699);
+ setState(723);
match(RLIKE);
- setState(700);
+ setState(724);
string();
}
break;
@@ -5735,41 +5927,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
_localctx = new LikeListExpressionContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(702);
+ setState(726);
valueExpression();
- setState(704);
+ setState(728);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(703);
+ setState(727);
match(NOT);
}
}
- setState(706);
+ setState(730);
match(LIKE);
- setState(707);
+ setState(731);
match(LP);
- setState(708);
+ setState(732);
string();
- setState(713);
+ setState(737);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(709);
+ setState(733);
match(COMMA);
- setState(710);
+ setState(734);
string();
}
}
- setState(715);
+ setState(739);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(716);
+ setState(740);
match(RP);
}
break;
@@ -5777,41 +5969,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
_localctx = new RlikeListExpressionContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(718);
+ setState(742);
valueExpression();
- setState(720);
+ setState(744);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(719);
+ setState(743);
match(NOT);
}
}
- setState(722);
+ setState(746);
match(RLIKE);
- setState(723);
+ setState(747);
match(LP);
- setState(724);
+ setState(748);
string();
- setState(729);
+ setState(753);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(725);
+ setState(749);
match(COMMA);
- setState(726);
+ setState(750);
string();
}
}
- setState(731);
+ setState(755);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(732);
+ setState(756);
match(RP);
}
break;
@@ -5866,28 +6058,28 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException {
MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState());
- enterRule(_localctx, 144, RULE_matchBooleanExpression);
+ enterRule(_localctx, 150, RULE_matchBooleanExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(736);
+ setState(760);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(739);
+ setState(763);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(737);
+ setState(761);
match(CAST_OP);
- setState(738);
+ setState(762);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(741);
+ setState(765);
match(COLON);
- setState(742);
+ setState(766);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -5969,16 +6161,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ValueExpressionContext valueExpression() throws RecognitionException {
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
- enterRule(_localctx, 146, RULE_valueExpression);
+ enterRule(_localctx, 152, RULE_valueExpression);
try {
- setState(749);
+ setState(773);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(744);
+ setState(768);
operatorExpression(0);
}
break;
@@ -5986,11 +6178,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(745);
+ setState(769);
((ComparisonContext)_localctx).left = operatorExpression(0);
- setState(746);
+ setState(770);
comparisonOperator();
- setState(747);
+ setState(771);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -6108,23 +6300,23 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _parentState = getState();
OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState);
OperatorExpressionContext _prevctx = _localctx;
- int _startState = 148;
- enterRecursionRule(_localctx, 148, RULE_operatorExpression, _p);
+ int _startState = 154;
+ enterRecursionRule(_localctx, 154, RULE_operatorExpression, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(755);
+ setState(779);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) {
case 1:
{
_localctx = new OperatorExpressionDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(752);
+ setState(776);
primaryExpression(0);
}
break;
@@ -6133,7 +6325,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(753);
+ setState(777);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -6144,31 +6336,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(754);
+ setState(778);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(765);
+ setState(789);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(763);
+ setState(787);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) {
case 1:
{
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(757);
+ setState(781);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(758);
+ setState(782);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(((((_la - 88)) & ~0x3f) == 0 && ((1L << (_la - 88)) & 7L) != 0)) ) {
@@ -6179,7 +6371,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(759);
+ setState(783);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -6188,9 +6380,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(760);
+ setState(784);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(761);
+ setState(785);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -6201,16 +6393,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(762);
+ setState(786);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
}
}
- setState(767);
+ setState(791);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
}
}
}
@@ -6360,22 +6552,22 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _parentState = getState();
PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState);
PrimaryExpressionContext _prevctx = _localctx;
- int _startState = 150;
- enterRecursionRule(_localctx, 150, RULE_primaryExpression, _p);
+ int _startState = 156;
+ enterRecursionRule(_localctx, 156, RULE_primaryExpression, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(776);
+ setState(800);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) {
case 1:
{
_localctx = new ConstantDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(769);
+ setState(793);
constant();
}
break;
@@ -6384,7 +6576,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(770);
+ setState(794);
qualifiedName();
}
break;
@@ -6393,7 +6585,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(771);
+ setState(795);
functionExpression();
}
break;
@@ -6402,19 +6594,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(772);
+ setState(796);
match(LP);
- setState(773);
+ setState(797);
booleanExpression(0);
- setState(774);
+ setState(798);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(783);
+ setState(807);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,73,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -6423,18 +6615,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(778);
+ setState(802);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(779);
+ setState(803);
match(CAST_OP);
- setState(780);
+ setState(804);
dataType();
}
}
}
- setState(785);
+ setState(809);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,73,_ctx);
}
}
}
@@ -6492,56 +6684,56 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FunctionExpressionContext functionExpression() throws RecognitionException {
FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState());
- enterRule(_localctx, 152, RULE_functionExpression);
+ enterRule(_localctx, 158, RULE_functionExpression);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(786);
+ setState(810);
functionName();
- setState(787);
+ setState(811);
match(LP);
- setState(801);
+ setState(825);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,76,_ctx) ) {
case 1:
{
- setState(788);
+ setState(812);
match(ASTERISK);
}
break;
case 2:
{
{
- setState(789);
+ setState(813);
booleanExpression(0);
- setState(794);
+ setState(818);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,74,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(790);
+ setState(814);
match(COMMA);
- setState(791);
+ setState(815);
booleanExpression(0);
}
}
}
- setState(796);
+ setState(820);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,74,_ctx);
}
- setState(799);
+ setState(823);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(797);
+ setState(821);
match(COMMA);
- setState(798);
+ setState(822);
mapExpression();
}
}
@@ -6550,7 +6742,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
}
break;
}
- setState(803);
+ setState(827);
match(RP);
}
}
@@ -6594,9 +6786,9 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FunctionNameContext functionName() throws RecognitionException {
FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState());
- enterRule(_localctx, 154, RULE_functionName);
+ enterRule(_localctx, 160, RULE_functionName);
try {
- setState(808);
+ setState(832);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
@@ -6607,21 +6799,21 @@ public final FunctionNameContext functionName() throws RecognitionException {
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(805);
+ setState(829);
identifierOrParameter();
}
break;
case FIRST:
enterOuterAlt(_localctx, 2);
{
- setState(806);
+ setState(830);
match(FIRST);
}
break;
case LAST:
enterOuterAlt(_localctx, 3);
{
- setState(807);
+ setState(831);
match(LAST);
}
break;
@@ -6676,40 +6868,40 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MapExpressionContext mapExpression() throws RecognitionException {
MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState());
- enterRule(_localctx, 156, RULE_mapExpression);
+ enterRule(_localctx, 162, RULE_mapExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(810);
+ setState(834);
match(LEFT_BRACES);
- setState(819);
+ setState(843);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==QUOTED_STRING) {
{
- setState(811);
+ setState(835);
entryExpression();
- setState(816);
+ setState(840);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(812);
+ setState(836);
match(COMMA);
- setState(813);
+ setState(837);
entryExpression();
}
}
- setState(818);
+ setState(842);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(821);
+ setState(845);
match(RIGHT_BRACES);
}
}
@@ -6757,15 +6949,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EntryExpressionContext entryExpression() throws RecognitionException {
EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState());
- enterRule(_localctx, 158, RULE_entryExpression);
+ enterRule(_localctx, 164, RULE_entryExpression);
try {
enterOuterAlt(_localctx, 1);
{
- setState(823);
+ setState(847);
((EntryExpressionContext)_localctx).key = string();
- setState(824);
+ setState(848);
match(COLON);
- setState(825);
+ setState(849);
((EntryExpressionContext)_localctx).value = mapValue();
}
}
@@ -6810,9 +7002,9 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MapValueContext mapValue() throws RecognitionException {
MapValueContext _localctx = new MapValueContext(_ctx, getState());
- enterRule(_localctx, 160, RULE_mapValue);
+ enterRule(_localctx, 166, RULE_mapValue);
try {
- setState(829);
+ setState(853);
_errHandler.sync(this);
switch (_input.LA(1)) {
case QUOTED_STRING:
@@ -6828,14 +7020,14 @@ public final MapValueContext mapValue() throws RecognitionException {
case OPENING_BRACKET:
enterOuterAlt(_localctx, 1);
{
- setState(827);
+ setState(851);
constant();
}
break;
case LEFT_BRACES:
enterOuterAlt(_localctx, 2);
{
- setState(828);
+ setState(852);
mapExpression();
}
break;
@@ -7107,17 +7299,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ConstantContext constant() throws RecognitionException {
ConstantContext _localctx = new ConstantContext(_ctx, getState());
- enterRule(_localctx, 162, RULE_constant);
+ enterRule(_localctx, 168, RULE_constant);
int _la;
try {
- setState(873);
+ setState(897);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(831);
+ setState(855);
match(NULL);
}
break;
@@ -7125,9 +7317,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(832);
+ setState(856);
integerValue();
- setState(833);
+ setState(857);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -7135,7 +7327,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(835);
+ setState(859);
decimalValue();
}
break;
@@ -7143,7 +7335,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(836);
+ setState(860);
integerValue();
}
break;
@@ -7151,7 +7343,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(837);
+ setState(861);
booleanValue();
}
break;
@@ -7159,7 +7351,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(838);
+ setState(862);
parameter();
}
break;
@@ -7167,7 +7359,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(839);
+ setState(863);
string();
}
break;
@@ -7175,27 +7367,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(840);
+ setState(864);
match(OPENING_BRACKET);
- setState(841);
+ setState(865);
numericValue();
- setState(846);
+ setState(870);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(842);
+ setState(866);
match(COMMA);
- setState(843);
+ setState(867);
numericValue();
}
}
- setState(848);
+ setState(872);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(849);
+ setState(873);
match(CLOSING_BRACKET);
}
break;
@@ -7203,27 +7395,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(851);
+ setState(875);
match(OPENING_BRACKET);
- setState(852);
+ setState(876);
booleanValue();
- setState(857);
+ setState(881);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(853);
+ setState(877);
match(COMMA);
- setState(854);
+ setState(878);
booleanValue();
}
}
- setState(859);
+ setState(883);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(860);
+ setState(884);
match(CLOSING_BRACKET);
}
break;
@@ -7231,27 +7423,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(862);
+ setState(886);
match(OPENING_BRACKET);
- setState(863);
+ setState(887);
string();
- setState(868);
+ setState(892);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(864);
+ setState(888);
match(COMMA);
- setState(865);
+ setState(889);
string();
}
}
- setState(870);
+ setState(894);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(871);
+ setState(895);
match(CLOSING_BRACKET);
}
break;
@@ -7294,12 +7486,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final BooleanValueContext booleanValue() throws RecognitionException {
BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState());
- enterRule(_localctx, 164, RULE_booleanValue);
+ enterRule(_localctx, 170, RULE_booleanValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(875);
+ setState(899);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -7352,22 +7544,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
- enterRule(_localctx, 166, RULE_numericValue);
+ enterRule(_localctx, 172, RULE_numericValue);
try {
- setState(879);
+ setState(903);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,85,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(877);
+ setState(901);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(878);
+ setState(902);
integerValue();
}
break;
@@ -7411,17 +7603,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DecimalValueContext decimalValue() throws RecognitionException {
DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState());
- enterRule(_localctx, 168, RULE_decimalValue);
+ enterRule(_localctx, 174, RULE_decimalValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(882);
+ setState(906);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(881);
+ setState(905);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -7434,7 +7626,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(884);
+ setState(908);
match(DECIMAL_LITERAL);
}
}
@@ -7476,17 +7668,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IntegerValueContext integerValue() throws RecognitionException {
IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState());
- enterRule(_localctx, 170, RULE_integerValue);
+ enterRule(_localctx, 176, RULE_integerValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(887);
+ setState(911);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(886);
+ setState(910);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -7499,7 +7691,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(889);
+ setState(913);
match(INTEGER_LITERAL);
}
}
@@ -7539,11 +7731,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StringContext string() throws RecognitionException {
StringContext _localctx = new StringContext(_ctx, getState());
- enterRule(_localctx, 172, RULE_string);
+ enterRule(_localctx, 178, RULE_string);
try {
enterOuterAlt(_localctx, 1);
{
- setState(891);
+ setState(915);
match(QUOTED_STRING);
}
}
@@ -7588,12 +7780,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ComparisonOperatorContext comparisonOperator() throws RecognitionException {
ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState());
- enterRule(_localctx, 174, RULE_comparisonOperator);
+ enterRule(_localctx, 180, RULE_comparisonOperator);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(893);
+ setState(917);
_la = _input.LA(1);
if ( !(((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
@@ -7651,12 +7843,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinCommandContext joinCommand() throws RecognitionException {
JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState());
- enterRule(_localctx, 176, RULE_joinCommand);
+ enterRule(_localctx, 182, RULE_joinCommand);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(895);
+ setState(919);
((JoinCommandContext)_localctx).type = _input.LT(1);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 218103808L) != 0)) ) {
@@ -7667,11 +7859,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(896);
+ setState(920);
match(JOIN);
- setState(897);
+ setState(921);
joinTarget();
- setState(898);
+ setState(922);
joinCondition();
}
}
@@ -7717,37 +7909,37 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinTargetContext joinTarget() throws RecognitionException {
JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState());
- enterRule(_localctx, 178, RULE_joinTarget);
+ enterRule(_localctx, 184, RULE_joinTarget);
int _la;
try {
- setState(908);
+ setState(932);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,87,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,89,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(900);
+ setState(924);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(901);
+ setState(925);
((JoinTargetContext)_localctx).index = indexPattern();
- setState(903);
+ setState(927);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==AS) {
{
- setState(902);
+ setState(926);
match(AS);
}
}
- setState(905);
+ setState(929);
((JoinTargetContext)_localctx).qualifier = match(UNQUOTED_SOURCE);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(907);
+ setState(931);
((JoinTargetContext)_localctx).index = indexPattern();
}
break;
@@ -7799,32 +7991,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinConditionContext joinCondition() throws RecognitionException {
JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState());
- enterRule(_localctx, 180, RULE_joinCondition);
+ enterRule(_localctx, 186, RULE_joinCondition);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(910);
+ setState(934);
match(ON);
- setState(911);
+ setState(935);
booleanExpression(0);
- setState(916);
+ setState(940);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,88,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,90,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(912);
+ setState(936);
match(COMMA);
- setState(913);
+ setState(937);
booleanExpression(0);
}
}
}
- setState(918);
+ setState(942);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,88,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,90,_ctx);
}
}
}
@@ -7849,19 +8041,21 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
return sourceCommand_sempred((SourceCommandContext)_localctx, predIndex);
case 4:
return processingCommand_sempred((ProcessingCommandContext)_localctx, predIndex);
- case 25:
+ case 15:
+ return indexPatternOrSubquery_sempred((IndexPatternOrSubqueryContext)_localctx, predIndex);
+ case 28:
return qualifiedName_sempred((QualifiedNameContext)_localctx, predIndex);
- case 27:
+ case 30:
return qualifiedNamePattern_sempred((QualifiedNamePatternContext)_localctx, predIndex);
- case 59:
+ case 62:
return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex);
- case 70:
+ case 73:
return booleanExpression_sempred((BooleanExpressionContext)_localctx, predIndex);
- case 74:
+ case 77:
return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex);
- case 75:
+ case 78:
return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex);
- case 89:
+ case 92:
return joinTarget_sempred((JoinTargetContext)_localctx, predIndex);
}
return true;
@@ -7896,62 +8090,69 @@ private boolean processingCommand_sempred(ProcessingCommandContext _localctx, in
}
return true;
}
- private boolean qualifiedName_sempred(QualifiedNameContext _localctx, int predIndex) {
+ private boolean indexPatternOrSubquery_sempred(IndexPatternOrSubqueryContext _localctx, int predIndex) {
switch (predIndex) {
case 5:
return this.isDevVersion();
}
return true;
}
- private boolean qualifiedNamePattern_sempred(QualifiedNamePatternContext _localctx, int predIndex) {
+ private boolean qualifiedName_sempred(QualifiedNameContext _localctx, int predIndex) {
switch (predIndex) {
case 6:
return this.isDevVersion();
}
return true;
}
- private boolean forkSubQueryCommand_sempred(ForkSubQueryCommandContext _localctx, int predIndex) {
+ private boolean qualifiedNamePattern_sempred(QualifiedNamePatternContext _localctx, int predIndex) {
switch (predIndex) {
case 7:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+ private boolean forkSubQueryCommand_sempred(ForkSubQueryCommandContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 8:
return precpred(_ctx, 1);
}
return true;
}
private boolean booleanExpression_sempred(BooleanExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 8:
- return precpred(_ctx, 5);
case 9:
+ return precpred(_ctx, 5);
+ case 10:
return precpred(_ctx, 4);
}
return true;
}
private boolean operatorExpression_sempred(OperatorExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 10:
- return precpred(_ctx, 2);
case 11:
+ return precpred(_ctx, 2);
+ case 12:
return precpred(_ctx, 1);
}
return true;
}
private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 12:
+ case 13:
return precpred(_ctx, 1);
}
return true;
}
private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) {
switch (predIndex) {
- case 13:
+ case 14:
return this.isDevVersion();
}
return true;
}
public static final String _serializedATN =
- "\u0004\u0001\u0097\u0398\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u0097\u03b0\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
"\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004"+
"\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007"+
"\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b"+
@@ -7973,554 +8174,568 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) {
"J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007"+
"O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007"+
"T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007"+
- "Y\u0002Z\u0007Z\u0001\u0000\u0001\u0000\u0004\u0000\u00b9\b\u0000\u000b"+
- "\u0000\f\u0000\u00ba\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+
- "\u0000\u0001\u0000\u0003\u0000\u00c3\b\u0000\u0001\u0001\u0001\u0001\u0001"+
- "\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+
- "\u0002\u0005\u0002\u00ce\b\u0002\n\u0002\f\u0002\u00d1\t\u0002\u0001\u0003"+
- "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003"+
- "\u00d9\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
+ "Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0001\u0000"+
+ "\u0001\u0000\u0004\u0000\u00bf\b\u0000\u000b\u0000\f\u0000\u00c0\u0001"+
+ "\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0003"+
+ "\u0000\u00c9\b\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001"+
+ "\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0005\u0002\u00d4"+
+ "\b\u0002\n\u0002\f\u0002\u00d7\t\u0002\u0001\u0003\u0001\u0003\u0001\u0003"+
+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003\u00df\b\u0003\u0001\u0004"+
"\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
"\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
"\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
- "\u0001\u0004\u0003\u0004\u00f3\b\u0004\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001"+
- "\b\u0001\b\u0005\b\u0100\b\b\n\b\f\b\u0103\t\b\u0001\t\u0001\t\u0001\t"+
- "\u0003\t\u0108\b\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0005\n\u010f"+
- "\b\n\n\n\f\n\u0112\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0003\u000b"+
- "\u0117\b\u000b\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\u000e"+
- "\u0001\u000e\u0001\u000e\u0005\u000e\u0122\b\u000e\n\u000e\f\u000e\u0125"+
- "\t\u000e\u0001\u000e\u0003\u000e\u0128\b\u000e\u0001\u000f\u0001\u000f"+
- "\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f"+
- "\u0001\u000f\u0003\u000f\u0133\b\u000f\u0001\u0010\u0001\u0010\u0001\u0011"+
- "\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0014"+
- "\u0001\u0014\u0001\u0014\u0001\u0014\u0005\u0014\u0141\b\u0014\n\u0014"+
- "\f\u0014\u0144\t\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016"+
- "\u0001\u0016\u0003\u0016\u014b\b\u0016\u0001\u0016\u0001\u0016\u0003\u0016"+
- "\u014f\b\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0005\u0017\u0154\b"+
- "\u0017\n\u0017\f\u0017\u0157\t\u0017\u0001\u0018\u0001\u0018\u0001\u0018"+
- "\u0003\u0018\u015c\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0003\u0019"+
- "\u0161\b\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+
- "\u0001\u0019\u0001\u0019\u0003\u0019\u016a\b\u0019\u0001\u001a\u0001\u001a"+
- "\u0001\u001a\u0005\u001a\u016f\b\u001a\n\u001a\f\u001a\u0172\t\u001a\u0001"+
- "\u001b\u0001\u001b\u0001\u001b\u0003\u001b\u0177\b\u001b\u0001\u001b\u0001"+
- "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0003"+
- "\u001b\u0180\b\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u0185"+
- "\b\u001c\n\u001c\f\u001c\u0188\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d"+
- "\u0005\u001d\u018d\b\u001d\n\u001d\f\u001d\u0190\t\u001d\u0001\u001e\u0001"+
- "\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0003\u001f\u0197\b\u001f\u0001"+
- " \u0001 \u0003 \u019b\b \u0001!\u0001!\u0003!\u019f\b!\u0001\"\u0001\""+
- "\u0001\"\u0003\"\u01a4\b\"\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001"+
- "$\u0005$\u01ad\b$\n$\f$\u01b0\t$\u0001%\u0001%\u0003%\u01b4\b%\u0001%"+
- "\u0001%\u0003%\u01b8\b%\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001"+
- "(\u0001(\u0001(\u0001(\u0005(\u01c4\b(\n(\f(\u01c7\t(\u0001)\u0001)\u0001"+
- ")\u0001)\u0001)\u0001)\u0001)\u0001)\u0003)\u01d1\b)\u0001*\u0001*\u0001"+
- "*\u0001*\u0003*\u01d7\b*\u0001+\u0001+\u0001+\u0005+\u01dc\b+\n+\f+\u01df"+
- "\t+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0003-\u01e7\b-\u0001.\u0001"+
- ".\u0001.\u0001.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00011\u0001"+
- "1\u00011\u00011\u00012\u00012\u00012\u00013\u00013\u00013\u00013\u0003"+
- "3\u01fe\b3\u00013\u00013\u00013\u00013\u00053\u0204\b3\n3\f3\u0207\t3"+
- "\u00033\u0209\b3\u00014\u00014\u00015\u00015\u00015\u00035\u0210\b5\u0001"+
- "5\u00015\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u00037\u021b"+
- "\b7\u00017\u00017\u00017\u00017\u00017\u00037\u0222\b7\u00018\u00018\u0001"+
- "8\u00019\u00049\u0228\b9\u000b9\f9\u0229\u0001:\u0001:\u0001:\u0001:\u0001"+
- ";\u0001;\u0001;\u0001;\u0001;\u0001;\u0005;\u0236\b;\n;\f;\u0239\t;\u0001"+
- "<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=\u0241\b=\u0001=\u0001=\u0001"+
- "=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0003>\u024c\b>\u0001>\u0001"+
- ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001?\u0003?\u0256\b?\u0001?\u0001"+
- "?\u0001?\u0001?\u0003?\u025c\b?\u0003?\u025e\b?\u0001@\u0001@\u0003@\u0262"+
- "\b@\u0001@\u0005@\u0265\b@\n@\f@\u0268\t@\u0001A\u0001A\u0001A\u0001A"+
- "\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0003A\u0275\bA\u0001"+
- "B\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001"+
- "D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001"+
- "F\u0001F\u0001F\u0003F\u028e\bF\u0001F\u0001F\u0001F\u0001F\u0001F\u0005"+
- "F\u0295\bF\nF\fF\u0298\tF\u0001F\u0001F\u0001F\u0001F\u0001F\u0003F\u029f"+
- "\bF\u0001F\u0001F\u0001F\u0003F\u02a4\bF\u0001F\u0001F\u0001F\u0001F\u0001"+
- "F\u0001F\u0005F\u02ac\bF\nF\fF\u02af\tF\u0001G\u0001G\u0003G\u02b3\bG"+
- "\u0001G\u0001G\u0001G\u0001G\u0001G\u0003G\u02ba\bG\u0001G\u0001G\u0001"+
- "G\u0001G\u0001G\u0003G\u02c1\bG\u0001G\u0001G\u0001G\u0001G\u0001G\u0005"+
- "G\u02c8\bG\nG\fG\u02cb\tG\u0001G\u0001G\u0001G\u0001G\u0003G\u02d1\bG"+
- "\u0001G\u0001G\u0001G\u0001G\u0001G\u0005G\u02d8\bG\nG\fG\u02db\tG\u0001"+
- "G\u0001G\u0003G\u02df\bG\u0001H\u0001H\u0001H\u0003H\u02e4\bH\u0001H\u0001"+
- "H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02ee\bI\u0001J\u0001"+
- "J\u0001J\u0001J\u0003J\u02f4\bJ\u0001J\u0001J\u0001J\u0001J\u0001J\u0001"+
- "J\u0005J\u02fc\bJ\nJ\fJ\u02ff\tJ\u0001K\u0001K\u0001K\u0001K\u0001K\u0001"+
- "K\u0001K\u0001K\u0003K\u0309\bK\u0001K\u0001K\u0001K\u0005K\u030e\bK\n"+
- "K\fK\u0311\tK\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0005L\u0319\b"+
- "L\nL\fL\u031c\tL\u0001L\u0001L\u0003L\u0320\bL\u0003L\u0322\bL\u0001L"+
- "\u0001L\u0001M\u0001M\u0001M\u0003M\u0329\bM\u0001N\u0001N\u0001N\u0001"+
- "N\u0005N\u032f\bN\nN\fN\u0332\tN\u0003N\u0334\bN\u0001N\u0001N\u0001O"+
- "\u0001O\u0001O\u0001O\u0001P\u0001P\u0003P\u033e\bP\u0001Q\u0001Q\u0001"+
- "Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001"+
- "Q\u0005Q\u034d\bQ\nQ\fQ\u0350\tQ\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001"+
- "Q\u0005Q\u0358\bQ\nQ\fQ\u035b\tQ\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001"+
- "Q\u0005Q\u0363\bQ\nQ\fQ\u0366\tQ\u0001Q\u0001Q\u0003Q\u036a\bQ\u0001R"+
- "\u0001R\u0001S\u0001S\u0003S\u0370\bS\u0001T\u0003T\u0373\bT\u0001T\u0001"+
- "T\u0001U\u0003U\u0378\bU\u0001U\u0001U\u0001V\u0001V\u0001W\u0001W\u0001"+
- "X\u0001X\u0001X\u0001X\u0001X\u0001Y\u0001Y\u0001Y\u0003Y\u0388\bY\u0001"+
- "Y\u0001Y\u0001Y\u0003Y\u038d\bY\u0001Z\u0001Z\u0001Z\u0001Z\u0005Z\u0393"+
- "\bZ\nZ\fZ\u0396\tZ\u0001Z\u0000\u0005\u0004v\u008c\u0094\u0096[\u0000"+
- "\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c"+
- "\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084"+
- "\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c"+
- "\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4"+
- "\u0000\n\u0002\u000033jj\u0001\u0000de\u0002\u000077>>\u0002\u0000AAD"+
- "D\u0002\u0000((33\u0001\u0000VW\u0001\u0000XZ\u0002\u0000@@MM\u0002\u0000"+
- "OOQU\u0002\u0000\u0018\u0018\u001a\u001b\u03c3\u0000\u00c2\u0001\u0000"+
- "\u0000\u0000\u0002\u00c4\u0001\u0000\u0000\u0000\u0004\u00c7\u0001\u0000"+
- "\u0000\u0000\u0006\u00d8\u0001\u0000\u0000\u0000\b\u00f2\u0001\u0000\u0000"+
- "\u0000\n\u00f4\u0001\u0000\u0000\u0000\f\u00f7\u0001\u0000\u0000\u0000"+
- "\u000e\u00f9\u0001\u0000\u0000\u0000\u0010\u00fc\u0001\u0000\u0000\u0000"+
- "\u0012\u0107\u0001\u0000\u0000\u0000\u0014\u010b\u0001\u0000\u0000\u0000"+
- "\u0016\u0113\u0001\u0000\u0000\u0000\u0018\u0118\u0001\u0000\u0000\u0000"+
- "\u001a\u011b\u0001\u0000\u0000\u0000\u001c\u011e\u0001\u0000\u0000\u0000"+
- "\u001e\u0132\u0001\u0000\u0000\u0000 \u0134\u0001\u0000\u0000\u0000\""+
- "\u0136\u0001\u0000\u0000\u0000$\u0138\u0001\u0000\u0000\u0000&\u013a\u0001"+
- "\u0000\u0000\u0000(\u013c\u0001\u0000\u0000\u0000*\u0145\u0001\u0000\u0000"+
- "\u0000,\u0148\u0001\u0000\u0000\u0000.\u0150\u0001\u0000\u0000\u00000"+
- "\u0158\u0001\u0000\u0000\u00002\u0169\u0001\u0000\u0000\u00004\u016b\u0001"+
- "\u0000\u0000\u00006\u017f\u0001\u0000\u0000\u00008\u0181\u0001\u0000\u0000"+
- "\u0000:\u0189\u0001\u0000\u0000\u0000<\u0191\u0001\u0000\u0000\u0000>"+
- "\u0196\u0001\u0000\u0000\u0000@\u019a\u0001\u0000\u0000\u0000B\u019e\u0001"+
- "\u0000\u0000\u0000D\u01a3\u0001\u0000\u0000\u0000F\u01a5\u0001\u0000\u0000"+
- "\u0000H\u01a8\u0001\u0000\u0000\u0000J\u01b1\u0001\u0000\u0000\u0000L"+
- "\u01b9\u0001\u0000\u0000\u0000N\u01bc\u0001\u0000\u0000\u0000P\u01bf\u0001"+
- "\u0000\u0000\u0000R\u01d0\u0001\u0000\u0000\u0000T\u01d2\u0001\u0000\u0000"+
- "\u0000V\u01d8\u0001\u0000\u0000\u0000X\u01e0\u0001\u0000\u0000\u0000Z"+
- "\u01e6\u0001\u0000\u0000\u0000\\\u01e8\u0001\u0000\u0000\u0000^\u01ec"+
- "\u0001\u0000\u0000\u0000`\u01ef\u0001\u0000\u0000\u0000b\u01f2\u0001\u0000"+
- "\u0000\u0000d\u01f6\u0001\u0000\u0000\u0000f\u01f9\u0001\u0000\u0000\u0000"+
- "h\u020a\u0001\u0000\u0000\u0000j\u020f\u0001\u0000\u0000\u0000l\u0213"+
- "\u0001\u0000\u0000\u0000n\u0216\u0001\u0000\u0000\u0000p\u0223\u0001\u0000"+
- "\u0000\u0000r\u0227\u0001\u0000\u0000\u0000t\u022b\u0001\u0000\u0000\u0000"+
- "v\u022f\u0001\u0000\u0000\u0000x\u023a\u0001\u0000\u0000\u0000z\u023c"+
- "\u0001\u0000\u0000\u0000|\u0247\u0001\u0000\u0000\u0000~\u025d\u0001\u0000"+
- "\u0000\u0000\u0080\u025f\u0001\u0000\u0000\u0000\u0082\u0274\u0001\u0000"+
- "\u0000\u0000\u0084\u0276\u0001\u0000\u0000\u0000\u0086\u027b\u0001\u0000"+
- "\u0000\u0000\u0088\u027e\u0001\u0000\u0000\u0000\u008a\u0282\u0001\u0000"+
- "\u0000\u0000\u008c\u02a3\u0001\u0000\u0000\u0000\u008e\u02de\u0001\u0000"+
- "\u0000\u0000\u0090\u02e0\u0001\u0000\u0000\u0000\u0092\u02ed\u0001\u0000"+
- "\u0000\u0000\u0094\u02f3\u0001\u0000\u0000\u0000\u0096\u0308\u0001\u0000"+
- "\u0000\u0000\u0098\u0312\u0001\u0000\u0000\u0000\u009a\u0328\u0001\u0000"+
- "\u0000\u0000\u009c\u032a\u0001\u0000\u0000\u0000\u009e\u0337\u0001\u0000"+
- "\u0000\u0000\u00a0\u033d\u0001\u0000\u0000\u0000\u00a2\u0369\u0001\u0000"+
- "\u0000\u0000\u00a4\u036b\u0001\u0000\u0000\u0000\u00a6\u036f\u0001\u0000"+
- "\u0000\u0000\u00a8\u0372\u0001\u0000\u0000\u0000\u00aa\u0377\u0001\u0000"+
- "\u0000\u0000\u00ac\u037b\u0001\u0000\u0000\u0000\u00ae\u037d\u0001\u0000"+
- "\u0000\u0000\u00b0\u037f\u0001\u0000\u0000\u0000\u00b2\u038c\u0001\u0000"+
- "\u0000\u0000\u00b4\u038e\u0001\u0000\u0000\u0000\u00b6\u00b8\u0004\u0000"+
- "\u0000\u0000\u00b7\u00b9\u0003\u0088D\u0000\u00b8\u00b7\u0001\u0000\u0000"+
- "\u0000\u00b9\u00ba\u0001\u0000\u0000\u0000\u00ba\u00b8\u0001\u0000\u0000"+
- "\u0000\u00ba\u00bb\u0001\u0000\u0000\u0000\u00bb\u00bc\u0001\u0000\u0000"+
- "\u0000\u00bc\u00bd\u0003\u0002\u0001\u0000\u00bd\u00be\u0005\u0000\u0000"+
- "\u0001\u00be\u00c3\u0001\u0000\u0000\u0000\u00bf\u00c0\u0003\u0002\u0001"+
- "\u0000\u00c0\u00c1\u0005\u0000\u0000\u0001\u00c1\u00c3\u0001\u0000\u0000"+
- "\u0000\u00c2\u00b6\u0001\u0000\u0000\u0000\u00c2\u00bf\u0001\u0000\u0000"+
- "\u0000\u00c3\u0001\u0001\u0000\u0000\u0000\u00c4\u00c5\u0003\u0004\u0002"+
- "\u0000\u00c5\u00c6\u0005\u0000\u0000\u0001\u00c6\u0003\u0001\u0000\u0000"+
- "\u0000\u00c7\u00c8\u0006\u0002\uffff\uffff\u0000\u00c8\u00c9\u0003\u0006"+
- "\u0003\u0000\u00c9\u00cf\u0001\u0000\u0000\u0000\u00ca\u00cb\n\u0001\u0000"+
- "\u0000\u00cb\u00cc\u00052\u0000\u0000\u00cc\u00ce\u0003\b\u0004\u0000"+
- "\u00cd\u00ca\u0001\u0000\u0000\u0000\u00ce\u00d1\u0001\u0000\u0000\u0000"+
- "\u00cf\u00cd\u0001\u0000\u0000\u0000\u00cf\u00d0\u0001\u0000\u0000\u0000"+
- "\u00d0\u0005\u0001\u0000\u0000\u0000\u00d1\u00cf\u0001\u0000\u0000\u0000"+
- "\u00d2\u00d9\u0003\u0018\f\u0000\u00d3\u00d9\u0003\u000e\u0007\u0000\u00d4"+
- "\u00d9\u0003d2\u0000\u00d5\u00d9\u0003\u001a\r\u0000\u00d6\u00d7\u0004"+
- "\u0003\u0002\u0000\u00d7\u00d9\u0003`0\u0000\u00d8\u00d2\u0001\u0000\u0000"+
- "\u0000\u00d8\u00d3\u0001\u0000\u0000\u0000\u00d8\u00d4\u0001\u0000\u0000"+
- "\u0000\u00d8\u00d5\u0001\u0000\u0000\u0000\u00d8\u00d6\u0001\u0000\u0000"+
- "\u0000\u00d9\u0007\u0001\u0000\u0000\u0000\u00da\u00f3\u0003*\u0015\u0000"+
- "\u00db\u00f3\u0003\n\u0005\u0000\u00dc\u00f3\u0003L&\u0000\u00dd\u00f3"+
- "\u0003F#\u0000\u00de\u00f3\u0003,\u0016\u0000\u00df\u00f3\u0003H$\u0000"+
- "\u00e0\u00f3\u0003N\'\u0000\u00e1\u00f3\u0003P(\u0000\u00e2\u00f3\u0003"+
- "T*\u0000\u00e3\u00f3\u0003\\.\u0000\u00e4\u00f3\u0003f3\u0000\u00e5\u00f3"+
- "\u0003^/\u0000\u00e6\u00f3\u0003\u00b0X\u0000\u00e7\u00f3\u0003n7\u0000"+
- "\u00e8\u00f3\u0003|>\u0000\u00e9\u00f3\u0003l6\u0000\u00ea\u00f3\u0003"+
- "p8\u0000\u00eb\u00f3\u0003z=\u0000\u00ec\u00f3\u0003~?\u0000\u00ed\u00f3"+
- "\u0003\u0080@\u0000\u00ee\u00ef\u0004\u0004\u0003\u0000\u00ef\u00f3\u0003"+
- "\u0084B\u0000\u00f0\u00f1\u0004\u0004\u0004\u0000\u00f1\u00f3\u0003\u0086"+
- "C\u0000\u00f2\u00da\u0001\u0000\u0000\u0000\u00f2\u00db\u0001\u0000\u0000"+
- "\u0000\u00f2\u00dc\u0001\u0000\u0000\u0000\u00f2\u00dd\u0001\u0000\u0000"+
- "\u0000\u00f2\u00de\u0001\u0000\u0000\u0000\u00f2\u00df\u0001\u0000\u0000"+
- "\u0000\u00f2\u00e0\u0001\u0000\u0000\u0000\u00f2\u00e1\u0001\u0000\u0000"+
- "\u0000\u00f2\u00e2\u0001\u0000\u0000\u0000\u00f2\u00e3\u0001\u0000\u0000"+
- "\u0000\u00f2\u00e4\u0001\u0000\u0000\u0000\u00f2\u00e5\u0001\u0000\u0000"+
- "\u0000\u00f2\u00e6\u0001\u0000\u0000\u0000\u00f2\u00e7\u0001\u0000\u0000"+
- "\u0000\u00f2\u00e8\u0001\u0000\u0000\u0000\u00f2\u00e9\u0001\u0000\u0000"+
- "\u0000\u00f2\u00ea\u0001\u0000\u0000\u0000\u00f2\u00eb\u0001\u0000\u0000"+
- "\u0000\u00f2\u00ec\u0001\u0000\u0000\u0000\u00f2\u00ed\u0001\u0000\u0000"+
- "\u0000\u00f2\u00ee\u0001\u0000\u0000\u0000\u00f2\u00f0\u0001\u0000\u0000"+
- "\u0000\u00f3\t\u0001\u0000\u0000\u0000\u00f4\u00f5\u0005\u0011\u0000\u0000"+
- "\u00f5\u00f6\u0003\u008cF\u0000\u00f6\u000b\u0001\u0000\u0000\u0000\u00f7"+
- "\u00f8\u0003<\u001e\u0000\u00f8\r\u0001\u0000\u0000\u0000\u00f9\u00fa"+
- "\u0005\r\u0000\u0000\u00fa\u00fb\u0003\u0010\b\u0000\u00fb\u000f\u0001"+
- "\u0000\u0000\u0000\u00fc\u0101\u0003\u0012\t\u0000\u00fd\u00fe\u0005="+
- "\u0000\u0000\u00fe\u0100\u0003\u0012\t\u0000\u00ff\u00fd\u0001\u0000\u0000"+
- "\u0000\u0100\u0103\u0001\u0000\u0000\u0000\u0101\u00ff\u0001\u0000\u0000"+
- "\u0000\u0101\u0102\u0001\u0000\u0000\u0000\u0102\u0011\u0001\u0000\u0000"+
- "\u0000\u0103\u0101\u0001\u0000\u0000\u0000\u0104\u0105\u00032\u0019\u0000"+
- "\u0105\u0106\u00058\u0000\u0000\u0106\u0108\u0001\u0000\u0000\u0000\u0107"+
- "\u0104\u0001\u0000\u0000\u0000\u0107\u0108\u0001\u0000\u0000\u0000\u0108"+
- "\u0109\u0001\u0000\u0000\u0000\u0109\u010a\u0003\u008cF\u0000\u010a\u0013"+
- "\u0001\u0000\u0000\u0000\u010b\u0110\u0003\u0016\u000b\u0000\u010c\u010d"+
- "\u0005=\u0000\u0000\u010d\u010f\u0003\u0016\u000b\u0000\u010e\u010c\u0001"+
- "\u0000\u0000\u0000\u010f\u0112\u0001\u0000\u0000\u0000\u0110\u010e\u0001"+
- "\u0000\u0000\u0000\u0110\u0111\u0001\u0000\u0000\u0000\u0111\u0015\u0001"+
- "\u0000\u0000\u0000\u0112\u0110\u0001\u0000\u0000\u0000\u0113\u0116\u0003"+
- "2\u0019\u0000\u0114\u0115\u00058\u0000\u0000\u0115\u0117\u0003\u008cF"+
- "\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0116\u0117\u0001\u0000\u0000"+
- "\u0000\u0117\u0017\u0001\u0000\u0000\u0000\u0118\u0119\u0005\u0012\u0000"+
- "\u0000\u0119\u011a\u0003\u001c\u000e\u0000\u011a\u0019\u0001\u0000\u0000"+
- "\u0000\u011b\u011c\u0005\u0013\u0000\u0000\u011c\u011d\u0003\u001c\u000e"+
- "\u0000\u011d\u001b\u0001\u0000\u0000\u0000\u011e\u0123\u0003\u001e\u000f"+
- "\u0000\u011f\u0120\u0005=\u0000\u0000\u0120\u0122\u0003\u001e\u000f\u0000"+
- "\u0121\u011f\u0001\u0000\u0000\u0000\u0122\u0125\u0001\u0000\u0000\u0000"+
- "\u0123\u0121\u0001\u0000\u0000\u0000\u0123\u0124\u0001\u0000\u0000\u0000"+
- "\u0124\u0127\u0001\u0000\u0000\u0000\u0125\u0123\u0001\u0000\u0000\u0000"+
- "\u0126\u0128\u0003(\u0014\u0000\u0127\u0126\u0001\u0000\u0000\u0000\u0127"+
- "\u0128\u0001\u0000\u0000\u0000\u0128\u001d\u0001\u0000\u0000\u0000\u0129"+
- "\u012a\u0003 \u0010\u0000\u012a\u012b\u0005;\u0000\u0000\u012b\u012c\u0003"+
- "$\u0012\u0000\u012c\u0133\u0001\u0000\u0000\u0000\u012d\u012e\u0003$\u0012"+
- "\u0000\u012e\u012f\u0005:\u0000\u0000\u012f\u0130\u0003\"\u0011\u0000"+
- "\u0130\u0133\u0001\u0000\u0000\u0000\u0131\u0133\u0003&\u0013\u0000\u0132"+
- "\u0129\u0001\u0000\u0000\u0000\u0132\u012d\u0001\u0000\u0000\u0000\u0132"+
- "\u0131\u0001\u0000\u0000\u0000\u0133\u001f\u0001\u0000\u0000\u0000\u0134"+
- "\u0135\u0005j\u0000\u0000\u0135!\u0001\u0000\u0000\u0000\u0136\u0137\u0005"+
- "j\u0000\u0000\u0137#\u0001\u0000\u0000\u0000\u0138\u0139\u0005j\u0000"+
- "\u0000\u0139%\u0001\u0000\u0000\u0000\u013a\u013b\u0007\u0000\u0000\u0000"+
- "\u013b\'\u0001\u0000\u0000\u0000\u013c\u013d\u0005i\u0000\u0000\u013d"+
- "\u0142\u0005j\u0000\u0000\u013e\u013f\u0005=\u0000\u0000\u013f\u0141\u0005"+
- "j\u0000\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0141\u0144\u0001\u0000"+
- "\u0000\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0142\u0143\u0001\u0000"+
- "\u0000\u0000\u0143)\u0001\u0000\u0000\u0000\u0144\u0142\u0001\u0000\u0000"+
- "\u0000\u0145\u0146\u0005\t\u0000\u0000\u0146\u0147\u0003\u0010\b\u0000"+
- "\u0147+\u0001\u0000\u0000\u0000\u0148\u014a\u0005\u0010\u0000\u0000\u0149"+
- "\u014b\u0003.\u0017\u0000\u014a\u0149\u0001\u0000\u0000\u0000\u014a\u014b"+
- "\u0001\u0000\u0000\u0000\u014b\u014e\u0001\u0000\u0000\u0000\u014c\u014d"+
- "\u00059\u0000\u0000\u014d\u014f\u0003\u0010\b\u0000\u014e\u014c\u0001"+
- "\u0000\u0000\u0000\u014e\u014f\u0001\u0000\u0000\u0000\u014f-\u0001\u0000"+
- "\u0000\u0000\u0150\u0155\u00030\u0018\u0000\u0151\u0152\u0005=\u0000\u0000"+
- "\u0152\u0154\u00030\u0018\u0000\u0153\u0151\u0001\u0000\u0000\u0000\u0154"+
- "\u0157\u0001\u0000\u0000\u0000\u0155\u0153\u0001\u0000\u0000\u0000\u0155"+
- "\u0156\u0001\u0000\u0000\u0000\u0156/\u0001\u0000\u0000\u0000\u0157\u0155"+
- "\u0001\u0000\u0000\u0000\u0158\u015b\u0003\u0012\t\u0000\u0159\u015a\u0005"+
- "\u0011\u0000\u0000\u015a\u015c\u0003\u008cF\u0000\u015b\u0159\u0001\u0000"+
- "\u0000\u0000\u015b\u015c\u0001\u0000\u0000\u0000\u015c1\u0001\u0000\u0000"+
- "\u0000\u015d\u015e\u0004\u0019\u0005\u0000\u015e\u0160\u0005`\u0000\u0000"+
- "\u015f\u0161\u0005d\u0000\u0000\u0160\u015f\u0001\u0000\u0000\u0000\u0160"+
- "\u0161\u0001\u0000\u0000\u0000\u0161\u0162\u0001\u0000\u0000\u0000\u0162"+
- "\u0163\u0005a\u0000\u0000\u0163\u0164\u0005?\u0000\u0000\u0164\u0165\u0005"+
- "`\u0000\u0000\u0165\u0166\u00034\u001a\u0000\u0166\u0167\u0005a\u0000"+
- "\u0000\u0167\u016a\u0001\u0000\u0000\u0000\u0168\u016a\u00034\u001a\u0000"+
- "\u0169\u015d\u0001\u0000\u0000\u0000\u0169\u0168\u0001\u0000\u0000\u0000"+
- "\u016a3\u0001\u0000\u0000\u0000\u016b\u0170\u0003D\"\u0000\u016c\u016d"+
- "\u0005?\u0000\u0000\u016d\u016f\u0003D\"\u0000\u016e\u016c\u0001\u0000"+
- "\u0000\u0000\u016f\u0172\u0001\u0000\u0000\u0000\u0170\u016e\u0001\u0000"+
- "\u0000\u0000\u0170\u0171\u0001\u0000\u0000\u0000\u01715\u0001\u0000\u0000"+
- "\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0174\u0004\u001b\u0006"+
- "\u0000\u0174\u0176\u0005`\u0000\u0000\u0175\u0177\u0005\u0089\u0000\u0000"+
- "\u0176\u0175\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000"+
- "\u0177\u0178\u0001\u0000\u0000\u0000\u0178\u0179\u0005a\u0000\u0000\u0179"+
- "\u017a\u0005?\u0000\u0000\u017a\u017b\u0005`\u0000\u0000\u017b\u017c\u0003"+
- "8\u001c\u0000\u017c\u017d\u0005a\u0000\u0000\u017d\u0180\u0001\u0000\u0000"+
- "\u0000\u017e\u0180\u00038\u001c\u0000\u017f\u0173\u0001\u0000\u0000\u0000"+
- "\u017f\u017e\u0001\u0000\u0000\u0000\u01807\u0001\u0000\u0000\u0000\u0181"+
- "\u0186\u0003>\u001f\u0000\u0182\u0183\u0005?\u0000\u0000\u0183\u0185\u0003"+
- ">\u001f\u0000\u0184\u0182\u0001\u0000\u0000\u0000\u0185\u0188\u0001\u0000"+
- "\u0000\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0186\u0187\u0001\u0000"+
- "\u0000\u0000\u01879\u0001\u0000\u0000\u0000\u0188\u0186\u0001\u0000\u0000"+
- "\u0000\u0189\u018e\u00036\u001b\u0000\u018a\u018b\u0005=\u0000\u0000\u018b"+
- "\u018d\u00036\u001b\u0000\u018c\u018a\u0001\u0000\u0000\u0000\u018d\u0190"+
- "\u0001\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000\u0000\u018e\u018f"+
- "\u0001\u0000\u0000\u0000\u018f;\u0001\u0000\u0000\u0000\u0190\u018e\u0001"+
- "\u0000\u0000\u0000\u0191\u0192\u0007\u0001\u0000\u0000\u0192=\u0001\u0000"+
- "\u0000\u0000\u0193\u0197\u0005\u0089\u0000\u0000\u0194\u0197\u0003@ \u0000"+
- "\u0195\u0197\u0003B!\u0000\u0196\u0193\u0001\u0000\u0000\u0000\u0196\u0194"+
- "\u0001\u0000\u0000\u0000\u0196\u0195\u0001\u0000\u0000\u0000\u0197?\u0001"+
- "\u0000\u0000\u0000\u0198\u019b\u0005K\u0000\u0000\u0199\u019b\u0005^\u0000"+
- "\u0000\u019a\u0198\u0001\u0000\u0000\u0000\u019a\u0199\u0001\u0000\u0000"+
- "\u0000\u019bA\u0001\u0000\u0000\u0000\u019c\u019f\u0005]\u0000\u0000\u019d"+
- "\u019f\u0005_\u0000\u0000\u019e\u019c\u0001\u0000\u0000\u0000\u019e\u019d"+
- "\u0001\u0000\u0000\u0000\u019fC\u0001\u0000\u0000\u0000\u01a0\u01a4\u0003"+
- "<\u001e\u0000\u01a1\u01a4\u0003@ \u0000\u01a2\u01a4\u0003B!\u0000\u01a3"+
- "\u01a0\u0001\u0000\u0000\u0000\u01a3\u01a1\u0001\u0000\u0000\u0000\u01a3"+
- "\u01a2\u0001\u0000\u0000\u0000\u01a4E\u0001\u0000\u0000\u0000\u01a5\u01a6"+
- "\u0005\u000b\u0000\u0000\u01a6\u01a7\u0003\u00a2Q\u0000\u01a7G\u0001\u0000"+
- "\u0000\u0000\u01a8\u01a9\u0005\u000f\u0000\u0000\u01a9\u01ae\u0003J%\u0000"+
- "\u01aa\u01ab\u0005=\u0000\u0000\u01ab\u01ad\u0003J%\u0000\u01ac\u01aa"+
- "\u0001\u0000\u0000\u0000\u01ad\u01b0\u0001\u0000\u0000\u0000\u01ae\u01ac"+
- "\u0001\u0000\u0000\u0000\u01ae\u01af\u0001\u0000\u0000\u0000\u01afI\u0001"+
- "\u0000\u0000\u0000\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b1\u01b3\u0003"+
- "\u008cF\u0000\u01b2\u01b4\u0007\u0002\u0000\u0000\u01b3\u01b2\u0001\u0000"+
- "\u0000\u0000\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b7\u0001\u0000"+
- "\u0000\u0000\u01b5\u01b6\u0005H\u0000\u0000\u01b6\u01b8\u0007\u0003\u0000"+
- "\u0000\u01b7\u01b5\u0001\u0000\u0000\u0000\u01b7\u01b8\u0001\u0000\u0000"+
- "\u0000\u01b8K\u0001\u0000\u0000\u0000\u01b9\u01ba\u0005\u001f\u0000\u0000"+
- "\u01ba\u01bb\u0003:\u001d\u0000\u01bbM\u0001\u0000\u0000\u0000\u01bc\u01bd"+
- "\u0005\u001e\u0000\u0000\u01bd\u01be\u0003:\u001d\u0000\u01beO\u0001\u0000"+
- "\u0000\u0000\u01bf\u01c0\u0005!\u0000\u0000\u01c0\u01c5\u0003R)\u0000"+
- "\u01c1\u01c2\u0005=\u0000\u0000\u01c2\u01c4\u0003R)\u0000\u01c3\u01c1"+
- "\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000\u01c5\u01c3"+
- "\u0001\u0000\u0000\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6Q\u0001"+
- "\u0000\u0000\u0000\u01c7\u01c5\u0001\u0000\u0000\u0000\u01c8\u01c9\u0003"+
- "6\u001b\u0000\u01c9\u01ca\u0005\u008d\u0000\u0000\u01ca\u01cb\u00036\u001b"+
- "\u0000\u01cb\u01d1\u0001\u0000\u0000\u0000\u01cc\u01cd\u00036\u001b\u0000"+
- "\u01cd\u01ce\u00058\u0000\u0000\u01ce\u01cf\u00036\u001b\u0000\u01cf\u01d1"+
- "\u0001\u0000\u0000\u0000\u01d0\u01c8\u0001\u0000\u0000\u0000\u01d0\u01cc"+
- "\u0001\u0000\u0000\u0000\u01d1S\u0001\u0000\u0000\u0000\u01d2\u01d3\u0005"+
- "\b\u0000\u0000\u01d3\u01d4\u0003\u0096K\u0000\u01d4\u01d6\u0003\u00ac"+
- "V\u0000\u01d5\u01d7\u0003V+\u0000\u01d6\u01d5\u0001\u0000\u0000\u0000"+
- "\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7U\u0001\u0000\u0000\u0000\u01d8"+
- "\u01dd\u0003X,\u0000\u01d9\u01da\u0005=\u0000\u0000\u01da\u01dc\u0003"+
- "X,\u0000\u01db\u01d9\u0001\u0000\u0000\u0000\u01dc\u01df\u0001\u0000\u0000"+
- "\u0000\u01dd\u01db\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000"+
- "\u0000\u01deW\u0001\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000\u0000"+
- "\u01e0\u01e1\u0003<\u001e\u0000\u01e1\u01e2\u00058\u0000\u0000\u01e2\u01e3"+
- "\u0003\u00a2Q\u0000\u01e3Y\u0001\u0000\u0000\u0000\u01e4\u01e5\u0005N"+
- "\u0000\u0000\u01e5\u01e7\u0003\u009cN\u0000\u01e6\u01e4\u0001\u0000\u0000"+
- "\u0000\u01e6\u01e7\u0001\u0000\u0000\u0000\u01e7[\u0001\u0000\u0000\u0000"+
- "\u01e8\u01e9\u0005\n\u0000\u0000\u01e9\u01ea\u0003\u0096K\u0000\u01ea"+
- "\u01eb\u0003\u00acV\u0000\u01eb]\u0001\u0000\u0000\u0000\u01ec\u01ed\u0005"+
- "\u001d\u0000\u0000\u01ed\u01ee\u00032\u0019\u0000\u01ee_\u0001\u0000\u0000"+
- "\u0000\u01ef\u01f0\u0005\u0006\u0000\u0000\u01f0\u01f1\u0003b1\u0000\u01f1"+
- "a\u0001\u0000\u0000\u0000\u01f2\u01f3\u0005b\u0000\u0000\u01f3\u01f4\u0003"+
- "\u0004\u0002\u0000\u01f4\u01f5\u0005c\u0000\u0000\u01f5c\u0001\u0000\u0000"+
- "\u0000\u01f6\u01f7\u0005#\u0000\u0000\u01f7\u01f8\u0005\u0094\u0000\u0000"+
- "\u01f8e\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005\u0005\u0000\u0000\u01fa"+
- "\u01fd\u0003h4\u0000\u01fb\u01fc\u0005I\u0000\u0000\u01fc\u01fe\u0003"+
- "6\u001b\u0000\u01fd\u01fb\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001\u0000"+
- "\u0000\u0000\u01fe\u0208\u0001\u0000\u0000\u0000\u01ff\u0200\u0005N\u0000"+
- "\u0000\u0200\u0205\u0003j5\u0000\u0201\u0202\u0005=\u0000\u0000\u0202"+
- "\u0204\u0003j5\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0204\u0207\u0001"+
- "\u0000\u0000\u0000\u0205\u0203\u0001\u0000\u0000\u0000\u0205\u0206\u0001"+
- "\u0000\u0000\u0000\u0206\u0209\u0001\u0000\u0000\u0000\u0207\u0205\u0001"+
- "\u0000\u0000\u0000\u0208\u01ff\u0001\u0000\u0000\u0000\u0208\u0209\u0001"+
- "\u0000\u0000\u0000\u0209g\u0001\u0000\u0000\u0000\u020a\u020b\u0007\u0004"+
- "\u0000\u0000\u020bi\u0001\u0000\u0000\u0000\u020c\u020d\u00036\u001b\u0000"+
- "\u020d\u020e\u00058\u0000\u0000\u020e\u0210\u0001\u0000\u0000\u0000\u020f"+
- "\u020c\u0001\u0000\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000\u0210"+
- "\u0211\u0001\u0000\u0000\u0000\u0211\u0212\u00036\u001b\u0000\u0212k\u0001"+
- "\u0000\u0000\u0000\u0213\u0214\u0005\u000e\u0000\u0000\u0214\u0215\u0003"+
- "\u00a2Q\u0000\u0215m\u0001\u0000\u0000\u0000\u0216\u0217\u0005\u0004\u0000"+
- "\u0000\u0217\u021a\u00032\u0019\u0000\u0218\u0219\u0005I\u0000\u0000\u0219"+
- "\u021b\u00032\u0019\u0000\u021a\u0218\u0001\u0000\u0000\u0000\u021a\u021b"+
- "\u0001\u0000\u0000\u0000\u021b\u0221\u0001\u0000\u0000\u0000\u021c\u021d"+
- "\u0005\u008d\u0000\u0000\u021d\u021e\u00032\u0019\u0000\u021e\u021f\u0005"+
- "=\u0000\u0000\u021f\u0220\u00032\u0019\u0000\u0220\u0222\u0001\u0000\u0000"+
- "\u0000\u0221\u021c\u0001\u0000\u0000\u0000\u0221\u0222\u0001\u0000\u0000"+
- "\u0000\u0222o\u0001\u0000\u0000\u0000\u0223\u0224\u0005\u0014\u0000\u0000"+
- "\u0224\u0225\u0003r9\u0000\u0225q\u0001\u0000\u0000\u0000\u0226\u0228"+
- "\u0003t:\u0000\u0227\u0226\u0001\u0000\u0000\u0000\u0228\u0229\u0001\u0000"+
- "\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001\u0000"+
- "\u0000\u0000\u022as\u0001\u0000\u0000\u0000\u022b\u022c\u0005b\u0000\u0000"+
- "\u022c\u022d\u0003v;\u0000\u022d\u022e\u0005c\u0000\u0000\u022eu\u0001"+
- "\u0000\u0000\u0000\u022f\u0230\u0006;\uffff\uffff\u0000\u0230\u0231\u0003"+
- "x<\u0000\u0231\u0237\u0001\u0000\u0000\u0000\u0232\u0233\n\u0001\u0000"+
- "\u0000\u0233\u0234\u00052\u0000\u0000\u0234\u0236\u0003x<\u0000\u0235"+
- "\u0232\u0001\u0000\u0000\u0000\u0236\u0239\u0001\u0000\u0000\u0000\u0237"+
- "\u0235\u0001\u0000\u0000\u0000\u0237\u0238\u0001\u0000\u0000\u0000\u0238"+
- "w\u0001\u0000\u0000\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u023a\u023b"+
- "\u0003\b\u0004\u0000\u023by\u0001\u0000\u0000\u0000\u023c\u0240\u0005"+
- "\f\u0000\u0000\u023d\u023e\u00032\u0019\u0000\u023e\u023f\u00058\u0000"+
- "\u0000\u023f\u0241\u0001\u0000\u0000\u0000\u0240\u023d\u0001\u0000\u0000"+
- "\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u0242\u0001\u0000\u0000"+
- "\u0000\u0242\u0243\u0003\u00a2Q\u0000\u0243\u0244\u0005I\u0000\u0000\u0244"+
- "\u0245\u0003\u0014\n\u0000\u0245\u0246\u0003Z-\u0000\u0246{\u0001\u0000"+
- "\u0000\u0000\u0247\u024b\u0005\u0007\u0000\u0000\u0248\u0249\u00032\u0019"+
- "\u0000\u0249\u024a\u00058\u0000\u0000\u024a\u024c\u0001\u0000\u0000\u0000"+
- "\u024b\u0248\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000\u0000\u0000"+
- "\u024c\u024d\u0001\u0000\u0000\u0000\u024d\u024e\u0003\u0096K\u0000\u024e"+
- "\u024f\u0003Z-\u0000\u024f}\u0001\u0000\u0000\u0000\u0250\u0251\u0005"+
- "\u0016\u0000\u0000\u0251\u0252\u0005w\u0000\u0000\u0252\u0255\u0003.\u0017"+
- "\u0000\u0253\u0254\u00059\u0000\u0000\u0254\u0256\u0003\u0010\b\u0000"+
- "\u0255\u0253\u0001\u0000\u0000\u0000\u0255\u0256\u0001\u0000\u0000\u0000"+
- "\u0256\u025e\u0001\u0000\u0000\u0000\u0257\u0258\u0005\u0017\u0000\u0000"+
- "\u0258\u025b\u0003.\u0017\u0000\u0259\u025a\u00059\u0000\u0000\u025a\u025c"+
- "\u0003\u0010\b\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025b\u025c\u0001"+
- "\u0000\u0000\u0000\u025c\u025e\u0001\u0000\u0000\u0000\u025d\u0250\u0001"+
- "\u0000\u0000\u0000\u025d\u0257\u0001\u0000\u0000\u0000\u025e\u007f\u0001"+
- "\u0000\u0000\u0000\u025f\u0261\u0005\u0015\u0000\u0000\u0260\u0262\u0003"+
- "<\u001e\u0000\u0261\u0260\u0001\u0000\u0000\u0000\u0261\u0262\u0001\u0000"+
- "\u0000\u0000\u0262\u0266\u0001\u0000\u0000\u0000\u0263\u0265\u0003\u0082"+
- "A\u0000\u0264\u0263\u0001\u0000\u0000\u0000\u0265\u0268\u0001\u0000\u0000"+
- "\u0000\u0266\u0264\u0001\u0000\u0000\u0000\u0266\u0267\u0001\u0000\u0000"+
- "\u0000\u0267\u0081\u0001\u0000\u0000\u0000\u0268\u0266\u0001\u0000\u0000"+
- "\u0000\u0269\u026a\u0005r\u0000\u0000\u026a\u026b\u00059\u0000\u0000\u026b"+
- "\u0275\u00032\u0019\u0000\u026c\u026d\u0005s\u0000\u0000\u026d\u026e\u0005"+
- "9\u0000\u0000\u026e\u0275\u0003\u0010\b\u0000\u026f\u0270\u0005q\u0000"+
- "\u0000\u0270\u0271\u00059\u0000\u0000\u0271\u0275\u00032\u0019\u0000\u0272"+
- "\u0273\u0005N\u0000\u0000\u0273\u0275\u0003\u009cN\u0000\u0274\u0269\u0001"+
- "\u0000\u0000\u0000\u0274\u026c\u0001\u0000\u0000\u0000\u0274\u026f\u0001"+
- "\u0000\u0000\u0000\u0274\u0272\u0001\u0000\u0000\u0000\u0275\u0083\u0001"+
- "\u0000\u0000\u0000\u0276\u0277\u0005\u001c\u0000\u0000\u0277\u0278\u0003"+
- "\u001e\u000f\u0000\u0278\u0279\u0005I\u0000\u0000\u0279\u027a\u0003:\u001d"+
- "\u0000\u027a\u0085\u0001\u0000\u0000\u0000\u027b\u027c\u0005 \u0000\u0000"+
- "\u027c\u027d\u0003:\u001d\u0000\u027d\u0087\u0001\u0000\u0000\u0000\u027e"+
- "\u027f\u0005\"\u0000\u0000\u027f\u0280\u0003\u008aE\u0000\u0280\u0281"+
- "\u0005<\u0000\u0000\u0281\u0089\u0001\u0000\u0000\u0000\u0282\u0283\u0003"+
- "<\u001e\u0000\u0283\u0284\u00058\u0000\u0000\u0284\u0285\u0003\u00a2Q"+
- "\u0000\u0285\u008b\u0001\u0000\u0000\u0000\u0286\u0287\u0006F\uffff\uffff"+
- "\u0000\u0287\u0288\u0005F\u0000\u0000\u0288\u02a4\u0003\u008cF\b\u0289"+
- "\u02a4\u0003\u0092I\u0000\u028a\u02a4\u0003\u008eG\u0000\u028b\u028d\u0003"+
- "\u0092I\u0000\u028c\u028e\u0005F\u0000\u0000\u028d\u028c\u0001\u0000\u0000"+
- "\u0000\u028d\u028e\u0001\u0000\u0000\u0000\u028e\u028f\u0001\u0000\u0000"+
- "\u0000\u028f\u0290\u0005B\u0000\u0000\u0290\u0291\u0005b\u0000\u0000\u0291"+
- "\u0296\u0003\u0092I\u0000\u0292\u0293\u0005=\u0000\u0000\u0293\u0295\u0003"+
- "\u0092I\u0000\u0294\u0292\u0001\u0000\u0000\u0000\u0295\u0298\u0001\u0000"+
- "\u0000\u0000\u0296\u0294\u0001\u0000\u0000\u0000\u0296\u0297\u0001\u0000"+
- "\u0000\u0000\u0297\u0299\u0001\u0000\u0000\u0000\u0298\u0296\u0001\u0000"+
- "\u0000\u0000\u0299\u029a\u0005c\u0000\u0000\u029a\u02a4\u0001\u0000\u0000"+
- "\u0000\u029b\u029c\u0003\u0092I\u0000\u029c\u029e\u0005C\u0000\u0000\u029d"+
- "\u029f\u0005F\u0000\u0000\u029e\u029d\u0001\u0000\u0000\u0000\u029e\u029f"+
- "\u0001\u0000\u0000\u0000\u029f\u02a0\u0001\u0000\u0000\u0000\u02a0\u02a1"+
- "\u0005G\u0000\u0000\u02a1\u02a4\u0001\u0000\u0000\u0000\u02a2\u02a4\u0003"+
- "\u0090H\u0000\u02a3\u0286\u0001\u0000\u0000\u0000\u02a3\u0289\u0001\u0000"+
- "\u0000\u0000\u02a3\u028a\u0001\u0000\u0000\u0000\u02a3\u028b\u0001\u0000"+
- "\u0000\u0000\u02a3\u029b\u0001\u0000\u0000\u0000\u02a3\u02a2\u0001\u0000"+
- "\u0000\u0000\u02a4\u02ad\u0001\u0000\u0000\u0000\u02a5\u02a6\n\u0005\u0000"+
- "\u0000\u02a6\u02a7\u00056\u0000\u0000\u02a7\u02ac\u0003\u008cF\u0006\u02a8"+
- "\u02a9\n\u0004\u0000\u0000\u02a9\u02aa\u0005J\u0000\u0000\u02aa\u02ac"+
- "\u0003\u008cF\u0005\u02ab\u02a5\u0001\u0000\u0000\u0000\u02ab\u02a8\u0001"+
- "\u0000\u0000\u0000\u02ac\u02af\u0001\u0000\u0000\u0000\u02ad\u02ab\u0001"+
- "\u0000\u0000\u0000\u02ad\u02ae\u0001\u0000\u0000\u0000\u02ae\u008d\u0001"+
- "\u0000\u0000\u0000\u02af\u02ad\u0001\u0000\u0000\u0000\u02b0\u02b2\u0003"+
- "\u0092I\u0000\u02b1\u02b3\u0005F\u0000\u0000\u02b2\u02b1\u0001\u0000\u0000"+
- "\u0000\u02b2\u02b3\u0001\u0000\u0000\u0000\u02b3\u02b4\u0001\u0000\u0000"+
- "\u0000\u02b4\u02b5\u0005E\u0000\u0000\u02b5\u02b6\u0003\u00acV\u0000\u02b6"+
- "\u02df\u0001\u0000\u0000\u0000\u02b7\u02b9\u0003\u0092I\u0000\u02b8\u02ba"+
- "\u0005F\u0000\u0000\u02b9\u02b8\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001"+
- "\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000\u0000\u02bb\u02bc\u0005"+
- "L\u0000\u0000\u02bc\u02bd\u0003\u00acV\u0000\u02bd\u02df\u0001\u0000\u0000"+
- "\u0000\u02be\u02c0\u0003\u0092I\u0000\u02bf\u02c1\u0005F\u0000\u0000\u02c0"+
- "\u02bf\u0001\u0000\u0000\u0000\u02c0\u02c1\u0001\u0000\u0000\u0000\u02c1"+
- "\u02c2\u0001\u0000\u0000\u0000\u02c2\u02c3\u0005E\u0000\u0000\u02c3\u02c4"+
- "\u0005b\u0000\u0000\u02c4\u02c9\u0003\u00acV\u0000\u02c5\u02c6\u0005="+
- "\u0000\u0000\u02c6\u02c8\u0003\u00acV\u0000\u02c7\u02c5\u0001\u0000\u0000"+
- "\u0000\u02c8\u02cb\u0001\u0000\u0000\u0000\u02c9\u02c7\u0001\u0000\u0000"+
- "\u0000\u02c9\u02ca\u0001\u0000\u0000\u0000\u02ca\u02cc\u0001\u0000\u0000"+
- "\u0000\u02cb\u02c9\u0001\u0000\u0000\u0000\u02cc\u02cd\u0005c\u0000\u0000"+
- "\u02cd\u02df\u0001\u0000\u0000\u0000\u02ce\u02d0\u0003\u0092I\u0000\u02cf"+
- "\u02d1\u0005F\u0000\u0000\u02d0\u02cf\u0001\u0000\u0000\u0000\u02d0\u02d1"+
- "\u0001\u0000\u0000\u0000\u02d1\u02d2\u0001\u0000\u0000\u0000\u02d2\u02d3"+
- "\u0005L\u0000\u0000\u02d3\u02d4\u0005b\u0000\u0000\u02d4\u02d9\u0003\u00ac"+
- "V\u0000\u02d5\u02d6\u0005=\u0000\u0000\u02d6\u02d8\u0003\u00acV\u0000"+
- "\u02d7\u02d5\u0001\u0000\u0000\u0000\u02d8\u02db\u0001\u0000\u0000\u0000"+
- "\u02d9\u02d7\u0001\u0000\u0000\u0000\u02d9\u02da\u0001\u0000\u0000\u0000"+
- "\u02da\u02dc\u0001\u0000\u0000\u0000\u02db\u02d9\u0001\u0000\u0000\u0000"+
- "\u02dc\u02dd\u0005c\u0000\u0000\u02dd\u02df\u0001\u0000\u0000\u0000\u02de"+
- "\u02b0\u0001\u0000\u0000\u0000\u02de\u02b7\u0001\u0000\u0000\u0000\u02de"+
- "\u02be\u0001\u0000\u0000\u0000\u02de\u02ce\u0001\u0000\u0000\u0000\u02df"+
- "\u008f\u0001\u0000\u0000\u0000\u02e0\u02e3\u00032\u0019\u0000\u02e1\u02e2"+
- "\u0005:\u0000\u0000\u02e2\u02e4\u0003\f\u0006\u0000\u02e3\u02e1\u0001"+
- "\u0000\u0000\u0000\u02e3\u02e4\u0001\u0000\u0000\u0000\u02e4\u02e5\u0001"+
- "\u0000\u0000\u0000\u02e5\u02e6\u0005;\u0000\u0000\u02e6\u02e7\u0003\u00a2"+
- "Q\u0000\u02e7\u0091\u0001\u0000\u0000\u0000\u02e8\u02ee\u0003\u0094J\u0000"+
- "\u02e9\u02ea\u0003\u0094J\u0000\u02ea\u02eb\u0003\u00aeW\u0000\u02eb\u02ec"+
- "\u0003\u0094J\u0000\u02ec\u02ee\u0001\u0000\u0000\u0000\u02ed\u02e8\u0001"+
- "\u0000\u0000\u0000\u02ed\u02e9\u0001\u0000\u0000\u0000\u02ee\u0093\u0001"+
- "\u0000\u0000\u0000\u02ef\u02f0\u0006J\uffff\uffff\u0000\u02f0\u02f4\u0003"+
- "\u0096K\u0000\u02f1\u02f2\u0007\u0005\u0000\u0000\u02f2\u02f4\u0003\u0094"+
- "J\u0003\u02f3\u02ef\u0001\u0000\u0000\u0000\u02f3\u02f1\u0001\u0000\u0000"+
- "\u0000\u02f4\u02fd\u0001\u0000\u0000\u0000\u02f5\u02f6\n\u0002\u0000\u0000"+
- "\u02f6\u02f7\u0007\u0006\u0000\u0000\u02f7\u02fc\u0003\u0094J\u0003\u02f8"+
- "\u02f9\n\u0001\u0000\u0000\u02f9\u02fa\u0007\u0005\u0000\u0000\u02fa\u02fc"+
- "\u0003\u0094J\u0002\u02fb\u02f5\u0001\u0000\u0000\u0000\u02fb\u02f8\u0001"+
- "\u0000\u0000\u0000\u02fc\u02ff\u0001\u0000\u0000\u0000\u02fd\u02fb\u0001"+
- "\u0000\u0000\u0000\u02fd\u02fe\u0001\u0000\u0000\u0000\u02fe\u0095\u0001"+
- "\u0000\u0000\u0000\u02ff\u02fd\u0001\u0000\u0000\u0000\u0300\u0301\u0006"+
- "K\uffff\uffff\u0000\u0301\u0309\u0003\u00a2Q\u0000\u0302\u0309\u00032"+
- "\u0019\u0000\u0303\u0309\u0003\u0098L\u0000\u0304\u0305\u0005b\u0000\u0000"+
- "\u0305\u0306\u0003\u008cF\u0000\u0306\u0307\u0005c\u0000\u0000\u0307\u0309"+
- "\u0001\u0000\u0000\u0000\u0308\u0300\u0001\u0000\u0000\u0000\u0308\u0302"+
- "\u0001\u0000\u0000\u0000\u0308\u0303\u0001\u0000\u0000\u0000\u0308\u0304"+
- "\u0001\u0000\u0000\u0000\u0309\u030f\u0001\u0000\u0000\u0000\u030a\u030b"+
- "\n\u0001\u0000\u0000\u030b\u030c\u0005:\u0000\u0000\u030c\u030e\u0003"+
- "\f\u0006\u0000\u030d\u030a\u0001\u0000\u0000\u0000\u030e\u0311\u0001\u0000"+
- "\u0000\u0000\u030f\u030d\u0001\u0000\u0000\u0000\u030f\u0310\u0001\u0000"+
- "\u0000\u0000\u0310\u0097\u0001\u0000\u0000\u0000\u0311\u030f\u0001\u0000"+
- "\u0000\u0000\u0312\u0313\u0003\u009aM\u0000\u0313\u0321\u0005b\u0000\u0000"+
- "\u0314\u0322\u0005X\u0000\u0000\u0315\u031a\u0003\u008cF\u0000\u0316\u0317"+
- "\u0005=\u0000\u0000\u0317\u0319\u0003\u008cF\u0000\u0318\u0316\u0001\u0000"+
- "\u0000\u0000\u0319\u031c\u0001\u0000\u0000\u0000\u031a\u0318\u0001\u0000"+
- "\u0000\u0000\u031a\u031b\u0001\u0000\u0000\u0000\u031b\u031f\u0001\u0000"+
- "\u0000\u0000\u031c\u031a\u0001\u0000\u0000\u0000\u031d\u031e\u0005=\u0000"+
- "\u0000\u031e\u0320\u0003\u009cN\u0000\u031f\u031d\u0001\u0000\u0000\u0000"+
- "\u031f\u0320\u0001\u0000\u0000\u0000\u0320\u0322\u0001\u0000\u0000\u0000"+
- "\u0321\u0314\u0001\u0000\u0000\u0000\u0321\u0315\u0001\u0000\u0000\u0000"+
- "\u0321\u0322\u0001\u0000\u0000\u0000\u0322\u0323\u0001\u0000\u0000\u0000"+
- "\u0323\u0324\u0005c\u0000\u0000\u0324\u0099\u0001\u0000\u0000\u0000\u0325"+
- "\u0329\u0003D\"\u0000\u0326\u0329\u0005A\u0000\u0000\u0327\u0329\u0005"+
- "D\u0000\u0000\u0328\u0325\u0001\u0000\u0000\u0000\u0328\u0326\u0001\u0000"+
- "\u0000\u0000\u0328\u0327\u0001\u0000\u0000\u0000\u0329\u009b\u0001\u0000"+
- "\u0000\u0000\u032a\u0333\u0005[\u0000\u0000\u032b\u0330\u0003\u009eO\u0000"+
- "\u032c\u032d\u0005=\u0000\u0000\u032d\u032f\u0003\u009eO\u0000\u032e\u032c"+
- "\u0001\u0000\u0000\u0000\u032f\u0332\u0001\u0000\u0000\u0000\u0330\u032e"+
- "\u0001\u0000\u0000\u0000\u0330\u0331\u0001\u0000\u0000\u0000\u0331\u0334"+
- "\u0001\u0000\u0000\u0000\u0332\u0330\u0001\u0000\u0000\u0000\u0333\u032b"+
- "\u0001\u0000\u0000\u0000\u0333\u0334\u0001\u0000\u0000\u0000\u0334\u0335"+
- "\u0001\u0000\u0000\u0000\u0335\u0336\u0005\\\u0000\u0000\u0336\u009d\u0001"+
- "\u0000\u0000\u0000\u0337\u0338\u0003\u00acV\u0000\u0338\u0339\u0005;\u0000"+
- "\u0000\u0339\u033a\u0003\u00a0P\u0000\u033a\u009f\u0001\u0000\u0000\u0000"+
- "\u033b\u033e\u0003\u00a2Q\u0000\u033c\u033e\u0003\u009cN\u0000\u033d\u033b"+
- "\u0001\u0000\u0000\u0000\u033d\u033c\u0001\u0000\u0000\u0000\u033e\u00a1"+
- "\u0001\u0000\u0000\u0000\u033f\u036a\u0005G\u0000\u0000\u0340\u0341\u0003"+
- "\u00aaU\u0000\u0341\u0342\u0005d\u0000\u0000\u0342\u036a\u0001\u0000\u0000"+
- "\u0000\u0343\u036a\u0003\u00a8T\u0000\u0344\u036a\u0003\u00aaU\u0000\u0345"+
- "\u036a\u0003\u00a4R\u0000\u0346\u036a\u0003@ \u0000\u0347\u036a\u0003"+
- "\u00acV\u0000\u0348\u0349\u0005`\u0000\u0000\u0349\u034e\u0003\u00a6S"+
- "\u0000\u034a\u034b\u0005=\u0000\u0000\u034b\u034d\u0003\u00a6S\u0000\u034c"+
- "\u034a\u0001\u0000\u0000\u0000\u034d\u0350\u0001\u0000\u0000\u0000\u034e"+
- "\u034c\u0001\u0000\u0000\u0000\u034e\u034f\u0001\u0000\u0000\u0000\u034f"+
- "\u0351\u0001\u0000\u0000\u0000\u0350\u034e\u0001\u0000\u0000\u0000\u0351"+
- "\u0352\u0005a\u0000\u0000\u0352\u036a\u0001\u0000\u0000\u0000\u0353\u0354"+
- "\u0005`\u0000\u0000\u0354\u0359\u0003\u00a4R\u0000\u0355\u0356\u0005="+
- "\u0000\u0000\u0356\u0358\u0003\u00a4R\u0000\u0357\u0355\u0001\u0000\u0000"+
- "\u0000\u0358\u035b\u0001\u0000\u0000\u0000\u0359\u0357\u0001\u0000\u0000"+
- "\u0000\u0359\u035a\u0001\u0000\u0000\u0000\u035a\u035c\u0001\u0000\u0000"+
- "\u0000\u035b\u0359\u0001\u0000\u0000\u0000\u035c\u035d\u0005a\u0000\u0000"+
- "\u035d\u036a\u0001\u0000\u0000\u0000\u035e\u035f\u0005`\u0000\u0000\u035f"+
- "\u0364\u0003\u00acV\u0000\u0360\u0361\u0005=\u0000\u0000\u0361\u0363\u0003"+
- "\u00acV\u0000\u0362\u0360\u0001\u0000\u0000\u0000\u0363\u0366\u0001\u0000"+
- "\u0000\u0000\u0364\u0362\u0001\u0000\u0000\u0000\u0364\u0365\u0001\u0000"+
- "\u0000\u0000\u0365\u0367\u0001\u0000\u0000\u0000\u0366\u0364\u0001\u0000"+
- "\u0000\u0000\u0367\u0368\u0005a\u0000\u0000\u0368\u036a\u0001\u0000\u0000"+
- "\u0000\u0369\u033f\u0001\u0000\u0000\u0000\u0369\u0340\u0001\u0000\u0000"+
- "\u0000\u0369\u0343\u0001\u0000\u0000\u0000\u0369\u0344\u0001\u0000\u0000"+
- "\u0000\u0369\u0345\u0001\u0000\u0000\u0000\u0369\u0346\u0001\u0000\u0000"+
- "\u0000\u0369\u0347\u0001\u0000\u0000\u0000\u0369\u0348\u0001\u0000\u0000"+
- "\u0000\u0369\u0353\u0001\u0000\u0000\u0000\u0369\u035e\u0001\u0000\u0000"+
- "\u0000\u036a\u00a3\u0001\u0000\u0000\u0000\u036b\u036c\u0007\u0007\u0000"+
- "\u0000\u036c\u00a5\u0001\u0000\u0000\u0000\u036d\u0370\u0003\u00a8T\u0000"+
- "\u036e\u0370\u0003\u00aaU\u0000\u036f\u036d\u0001\u0000\u0000\u0000\u036f"+
- "\u036e\u0001\u0000\u0000\u0000\u0370\u00a7\u0001\u0000\u0000\u0000\u0371"+
- "\u0373\u0007\u0005\u0000\u0000\u0372\u0371\u0001\u0000\u0000\u0000\u0372"+
- "\u0373\u0001\u0000\u0000\u0000\u0373\u0374\u0001\u0000\u0000\u0000\u0374"+
- "\u0375\u00055\u0000\u0000\u0375\u00a9\u0001\u0000\u0000\u0000\u0376\u0378"+
- "\u0007\u0005\u0000\u0000\u0377\u0376\u0001\u0000\u0000\u0000\u0377\u0378"+
- "\u0001\u0000\u0000\u0000\u0378\u0379\u0001\u0000\u0000\u0000\u0379\u037a"+
- "\u00054\u0000\u0000\u037a\u00ab\u0001\u0000\u0000\u0000\u037b\u037c\u0005"+
- "3\u0000\u0000\u037c\u00ad\u0001\u0000\u0000\u0000\u037d\u037e\u0007\b"+
- "\u0000\u0000\u037e\u00af\u0001\u0000\u0000\u0000\u037f\u0380\u0007\t\u0000"+
- "\u0000\u0380\u0381\u0005{\u0000\u0000\u0381\u0382\u0003\u00b2Y\u0000\u0382"+
- "\u0383\u0003\u00b4Z\u0000\u0383\u00b1\u0001\u0000\u0000\u0000\u0384\u0385"+
- "\u0004Y\r\u0000\u0385\u0387\u0003\u001e\u000f\u0000\u0386\u0388\u0005"+
- "\u008d\u0000\u0000\u0387\u0386\u0001\u0000\u0000\u0000\u0387\u0388\u0001"+
- "\u0000\u0000\u0000\u0388\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u0005"+
- "j\u0000\u0000\u038a\u038d\u0001\u0000\u0000\u0000\u038b\u038d\u0003\u001e"+
- "\u000f\u0000\u038c\u0384\u0001\u0000\u0000\u0000\u038c\u038b\u0001\u0000"+
- "\u0000\u0000\u038d\u00b3\u0001\u0000\u0000\u0000\u038e\u038f\u0005I\u0000"+
- "\u0000\u038f\u0394\u0003\u008cF\u0000\u0390\u0391\u0005=\u0000\u0000\u0391"+
- "\u0393\u0003\u008cF\u0000\u0392\u0390\u0001\u0000\u0000\u0000\u0393\u0396"+
- "\u0001\u0000\u0000\u0000\u0394\u0392\u0001\u0000\u0000\u0000\u0394\u0395"+
- "\u0001\u0000\u0000\u0000\u0395\u00b5\u0001\u0000\u0000\u0000\u0396\u0394"+
- "\u0001\u0000\u0000\u0000Y\u00ba\u00c2\u00cf\u00d8\u00f2\u0101\u0107\u0110"+
- "\u0116\u0123\u0127\u0132\u0142\u014a\u014e\u0155\u015b\u0160\u0169\u0170"+
- "\u0176\u017f\u0186\u018e\u0196\u019a\u019e\u01a3\u01ae\u01b3\u01b7\u01c5"+
- "\u01d0\u01d6\u01dd\u01e6\u01fd\u0205\u0208\u020f\u021a\u0221\u0229\u0237"+
- "\u0240\u024b\u0255\u025b\u025d\u0261\u0266\u0274\u028d\u0296\u029e\u02a3"+
- "\u02ab\u02ad\u02b2\u02b9\u02c0\u02c9\u02d0\u02d9\u02de\u02e3\u02ed\u02f3"+
- "\u02fb\u02fd\u0308\u030f\u031a\u031f\u0321\u0328\u0330\u0333\u033d\u034e"+
- "\u0359\u0364\u0369\u036f\u0372\u0377\u0387\u038c\u0394";
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004"+
+ "\u00f9\b\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006"+
+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0005\b\u0106"+
+ "\b\b\n\b\f\b\u0109\t\b\u0001\t\u0001\t\u0001\t\u0003\t\u010e\b\t\u0001"+
+ "\t\u0001\t\u0001\n\u0001\n\u0001\n\u0005\n\u0115\b\n\n\n\f\n\u0118\t\n"+
+ "\u0001\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u011d\b\u000b\u0001\f"+
+ "\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001"+
+ "\u000e\u0005\u000e\u0128\b\u000e\n\u000e\f\u000e\u012b\t\u000e\u0001\u000e"+
+ "\u0003\u000e\u012e\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0003\u000f"+
+ "\u0133\b\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010"+
+ "\u0139\b\u0010\n\u0010\f\u0010\u013c\t\u0010\u0001\u0010\u0001\u0010\u0001"+
+ "\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+
+ "\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u014b"+
+ "\b\u0012\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0015\u0001"+
+ "\u0015\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+
+ "\u0017\u0005\u0017\u0159\b\u0017\n\u0017\f\u0017\u015c\t\u0017\u0001\u0018"+
+ "\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0003\u0019\u0163\b\u0019"+
+ "\u0001\u0019\u0001\u0019\u0003\u0019\u0167\b\u0019\u0001\u001a\u0001\u001a"+
+ "\u0001\u001a\u0005\u001a\u016c\b\u001a\n\u001a\f\u001a\u016f\t\u001a\u0001"+
+ "\u001b\u0001\u001b\u0001\u001b\u0003\u001b\u0174\b\u001b\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0003\u001c\u0179\b\u001c\u0001\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u0182"+
+ "\b\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0005\u001d\u0187\b\u001d"+
+ "\n\u001d\f\u001d\u018a\t\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0003"+
+ "\u001e\u018f\b\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001"+
+ "\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u0198\b\u001e\u0001\u001f\u0001"+
+ "\u001f\u0001\u001f\u0005\u001f\u019d\b\u001f\n\u001f\f\u001f\u01a0\t\u001f"+
+ "\u0001 \u0001 \u0001 \u0005 \u01a5\b \n \f \u01a8\t \u0001!\u0001!\u0001"+
+ "\"\u0001\"\u0001\"\u0003\"\u01af\b\"\u0001#\u0001#\u0003#\u01b3\b#\u0001"+
+ "$\u0001$\u0003$\u01b7\b$\u0001%\u0001%\u0001%\u0003%\u01bc\b%\u0001&\u0001"+
+ "&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0005\'\u01c5\b\'\n\'\f\'\u01c8"+
+ "\t\'\u0001(\u0001(\u0003(\u01cc\b(\u0001(\u0001(\u0003(\u01d0\b(\u0001"+
+ ")\u0001)\u0001)\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001+\u0005"+
+ "+\u01dc\b+\n+\f+\u01df\t+\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001"+
+ ",\u0001,\u0003,\u01e9\b,\u0001-\u0001-\u0001-\u0001-\u0003-\u01ef\b-\u0001"+
+ ".\u0001.\u0001.\u0005.\u01f4\b.\n.\f.\u01f7\t.\u0001/\u0001/\u0001/\u0001"+
+ "/\u00010\u00010\u00030\u01ff\b0\u00011\u00011\u00011\u00011\u00012\u0001"+
+ "2\u00012\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u00015\u0001"+
+ "5\u00015\u00016\u00016\u00016\u00016\u00036\u0216\b6\u00016\u00016\u0001"+
+ "6\u00016\u00056\u021c\b6\n6\f6\u021f\t6\u00036\u0221\b6\u00017\u00017"+
+ "\u00018\u00018\u00018\u00038\u0228\b8\u00018\u00018\u00019\u00019\u0001"+
+ "9\u0001:\u0001:\u0001:\u0001:\u0003:\u0233\b:\u0001:\u0001:\u0001:\u0001"+
+ ":\u0001:\u0003:\u023a\b:\u0001;\u0001;\u0001;\u0001<\u0004<\u0240\b<\u000b"+
+ "<\f<\u0241\u0001=\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001"+
+ ">\u0001>\u0005>\u024e\b>\n>\f>\u0251\t>\u0001?\u0001?\u0001@\u0001@\u0001"+
+ "@\u0001@\u0003@\u0259\b@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001A\u0001"+
+ "A\u0001A\u0001A\u0003A\u0264\bA\u0001A\u0001A\u0001A\u0001B\u0001B\u0001"+
+ "B\u0001B\u0001B\u0003B\u026e\bB\u0001B\u0001B\u0001B\u0001B\u0003B\u0274"+
+ "\bB\u0003B\u0276\bB\u0001C\u0001C\u0003C\u027a\bC\u0001C\u0005C\u027d"+
+ "\bC\nC\fC\u0280\tC\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001"+
+ "D\u0001D\u0001D\u0001D\u0003D\u028d\bD\u0001E\u0001E\u0001E\u0001E\u0001"+
+ "E\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001"+
+ "H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02a6"+
+ "\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0005I\u02ad\bI\nI\fI\u02b0\tI"+
+ "\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02b7\bI\u0001I\u0001I\u0001"+
+ "I\u0003I\u02bc\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0005I\u02c4"+
+ "\bI\nI\fI\u02c7\tI\u0001J\u0001J\u0003J\u02cb\bJ\u0001J\u0001J\u0001J"+
+ "\u0001J\u0001J\u0003J\u02d2\bJ\u0001J\u0001J\u0001J\u0001J\u0001J\u0003"+
+ "J\u02d9\bJ\u0001J\u0001J\u0001J\u0001J\u0001J\u0005J\u02e0\bJ\nJ\fJ\u02e3"+
+ "\tJ\u0001J\u0001J\u0001J\u0001J\u0003J\u02e9\bJ\u0001J\u0001J\u0001J\u0001"+
+ "J\u0001J\u0005J\u02f0\bJ\nJ\fJ\u02f3\tJ\u0001J\u0001J\u0003J\u02f7\bJ"+
+ "\u0001K\u0001K\u0001K\u0003K\u02fc\bK\u0001K\u0001K\u0001K\u0001L\u0001"+
+ "L\u0001L\u0001L\u0001L\u0003L\u0306\bL\u0001M\u0001M\u0001M\u0001M\u0003"+
+ "M\u030c\bM\u0001M\u0001M\u0001M\u0001M\u0001M\u0001M\u0005M\u0314\bM\n"+
+ "M\fM\u0317\tM\u0001N\u0001N\u0001N\u0001N\u0001N\u0001N\u0001N\u0001N"+
+ "\u0003N\u0321\bN\u0001N\u0001N\u0001N\u0005N\u0326\bN\nN\fN\u0329\tN\u0001"+
+ "O\u0001O\u0001O\u0001O\u0001O\u0001O\u0005O\u0331\bO\nO\fO\u0334\tO\u0001"+
+ "O\u0001O\u0003O\u0338\bO\u0003O\u033a\bO\u0001O\u0001O\u0001P\u0001P\u0001"+
+ "P\u0003P\u0341\bP\u0001Q\u0001Q\u0001Q\u0001Q\u0005Q\u0347\bQ\nQ\fQ\u034a"+
+ "\tQ\u0003Q\u034c\bQ\u0001Q\u0001Q\u0001R\u0001R\u0001R\u0001R\u0001S\u0001"+
+ "S\u0003S\u0356\bS\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001"+
+ "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0005T\u0365\bT\nT\fT\u0368\tT\u0001"+
+ "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0005T\u0370\bT\nT\fT\u0373\tT\u0001"+
+ "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0005T\u037b\bT\nT\fT\u037e\tT\u0001"+
+ "T\u0001T\u0003T\u0382\bT\u0001U\u0001U\u0001V\u0001V\u0003V\u0388\bV\u0001"+
+ "W\u0003W\u038b\bW\u0001W\u0001W\u0001X\u0003X\u0390\bX\u0001X\u0001X\u0001"+
+ "Y\u0001Y\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0001[\u0001[\u0001\\\u0001"+
+ "\\\u0001\\\u0003\\\u03a0\b\\\u0001\\\u0001\\\u0001\\\u0003\\\u03a5\b\\"+
+ "\u0001]\u0001]\u0001]\u0001]\u0005]\u03ab\b]\n]\f]\u03ae\t]\u0001]\u0000"+
+ "\u0005\u0004|\u0092\u009a\u009c^\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010"+
+ "\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPR"+
+ "TVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e"+
+ "\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u00a6"+
+ "\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4\u00b6\u00b8\u00ba\u0000\n\u0002"+
+ "\u000033jj\u0001\u0000de\u0002\u000077>>\u0002\u0000AADD\u0002\u0000("+
+ "(33\u0001\u0000VW\u0001\u0000XZ\u0002\u0000@@MM\u0002\u0000OOQU\u0002"+
+ "\u0000\u0018\u0018\u001a\u001b\u03da\u0000\u00c8\u0001\u0000\u0000\u0000"+
+ "\u0002\u00ca\u0001\u0000\u0000\u0000\u0004\u00cd\u0001\u0000\u0000\u0000"+
+ "\u0006\u00de\u0001\u0000\u0000\u0000\b\u00f8\u0001\u0000\u0000\u0000\n"+
+ "\u00fa\u0001\u0000\u0000\u0000\f\u00fd\u0001\u0000\u0000\u0000\u000e\u00ff"+
+ "\u0001\u0000\u0000\u0000\u0010\u0102\u0001\u0000\u0000\u0000\u0012\u010d"+
+ "\u0001\u0000\u0000\u0000\u0014\u0111\u0001\u0000\u0000\u0000\u0016\u0119"+
+ "\u0001\u0000\u0000\u0000\u0018\u011e\u0001\u0000\u0000\u0000\u001a\u0121"+
+ "\u0001\u0000\u0000\u0000\u001c\u0124\u0001\u0000\u0000\u0000\u001e\u0132"+
+ "\u0001\u0000\u0000\u0000 \u0134\u0001\u0000\u0000\u0000\"\u013f\u0001"+
+ "\u0000\u0000\u0000$\u014a\u0001\u0000\u0000\u0000&\u014c\u0001\u0000\u0000"+
+ "\u0000(\u014e\u0001\u0000\u0000\u0000*\u0150\u0001\u0000\u0000\u0000,"+
+ "\u0152\u0001\u0000\u0000\u0000.\u0154\u0001\u0000\u0000\u00000\u015d\u0001"+
+ "\u0000\u0000\u00002\u0160\u0001\u0000\u0000\u00004\u0168\u0001\u0000\u0000"+
+ "\u00006\u0170\u0001\u0000\u0000\u00008\u0181\u0001\u0000\u0000\u0000:"+
+ "\u0183\u0001\u0000\u0000\u0000<\u0197\u0001\u0000\u0000\u0000>\u0199\u0001"+
+ "\u0000\u0000\u0000@\u01a1\u0001\u0000\u0000\u0000B\u01a9\u0001\u0000\u0000"+
+ "\u0000D\u01ae\u0001\u0000\u0000\u0000F\u01b2\u0001\u0000\u0000\u0000H"+
+ "\u01b6\u0001\u0000\u0000\u0000J\u01bb\u0001\u0000\u0000\u0000L\u01bd\u0001"+
+ "\u0000\u0000\u0000N\u01c0\u0001\u0000\u0000\u0000P\u01c9\u0001\u0000\u0000"+
+ "\u0000R\u01d1\u0001\u0000\u0000\u0000T\u01d4\u0001\u0000\u0000\u0000V"+
+ "\u01d7\u0001\u0000\u0000\u0000X\u01e8\u0001\u0000\u0000\u0000Z\u01ea\u0001"+
+ "\u0000\u0000\u0000\\\u01f0\u0001\u0000\u0000\u0000^\u01f8\u0001\u0000"+
+ "\u0000\u0000`\u01fe\u0001\u0000\u0000\u0000b\u0200\u0001\u0000\u0000\u0000"+
+ "d\u0204\u0001\u0000\u0000\u0000f\u0207\u0001\u0000\u0000\u0000h\u020a"+
+ "\u0001\u0000\u0000\u0000j\u020e\u0001\u0000\u0000\u0000l\u0211\u0001\u0000"+
+ "\u0000\u0000n\u0222\u0001\u0000\u0000\u0000p\u0227\u0001\u0000\u0000\u0000"+
+ "r\u022b\u0001\u0000\u0000\u0000t\u022e\u0001\u0000\u0000\u0000v\u023b"+
+ "\u0001\u0000\u0000\u0000x\u023f\u0001\u0000\u0000\u0000z\u0243\u0001\u0000"+
+ "\u0000\u0000|\u0247\u0001\u0000\u0000\u0000~\u0252\u0001\u0000\u0000\u0000"+
+ "\u0080\u0254\u0001\u0000\u0000\u0000\u0082\u025f\u0001\u0000\u0000\u0000"+
+ "\u0084\u0275\u0001\u0000\u0000\u0000\u0086\u0277\u0001\u0000\u0000\u0000"+
+ "\u0088\u028c\u0001\u0000\u0000\u0000\u008a\u028e\u0001\u0000\u0000\u0000"+
+ "\u008c\u0293\u0001\u0000\u0000\u0000\u008e\u0296\u0001\u0000\u0000\u0000"+
+ "\u0090\u029a\u0001\u0000\u0000\u0000\u0092\u02bb\u0001\u0000\u0000\u0000"+
+ "\u0094\u02f6\u0001\u0000\u0000\u0000\u0096\u02f8\u0001\u0000\u0000\u0000"+
+ "\u0098\u0305\u0001\u0000\u0000\u0000\u009a\u030b\u0001\u0000\u0000\u0000"+
+ "\u009c\u0320\u0001\u0000\u0000\u0000\u009e\u032a\u0001\u0000\u0000\u0000"+
+ "\u00a0\u0340\u0001\u0000\u0000\u0000\u00a2\u0342\u0001\u0000\u0000\u0000"+
+ "\u00a4\u034f\u0001\u0000\u0000\u0000\u00a6\u0355\u0001\u0000\u0000\u0000"+
+ "\u00a8\u0381\u0001\u0000\u0000\u0000\u00aa\u0383\u0001\u0000\u0000\u0000"+
+ "\u00ac\u0387\u0001\u0000\u0000\u0000\u00ae\u038a\u0001\u0000\u0000\u0000"+
+ "\u00b0\u038f\u0001\u0000\u0000\u0000\u00b2\u0393\u0001\u0000\u0000\u0000"+
+ "\u00b4\u0395\u0001\u0000\u0000\u0000\u00b6\u0397\u0001\u0000\u0000\u0000"+
+ "\u00b8\u03a4\u0001\u0000\u0000\u0000\u00ba\u03a6\u0001\u0000\u0000\u0000"+
+ "\u00bc\u00be\u0004\u0000\u0000\u0000\u00bd\u00bf\u0003\u008eG\u0000\u00be"+
+ "\u00bd\u0001\u0000\u0000\u0000\u00bf\u00c0\u0001\u0000\u0000\u0000\u00c0"+
+ "\u00be\u0001\u0000\u0000\u0000\u00c0\u00c1\u0001\u0000\u0000\u0000\u00c1"+
+ "\u00c2\u0001\u0000\u0000\u0000\u00c2\u00c3\u0003\u0002\u0001\u0000\u00c3"+
+ "\u00c4\u0005\u0000\u0000\u0001\u00c4\u00c9\u0001\u0000\u0000\u0000\u00c5"+
+ "\u00c6\u0003\u0002\u0001\u0000\u00c6\u00c7\u0005\u0000\u0000\u0001\u00c7"+
+ "\u00c9\u0001\u0000\u0000\u0000\u00c8\u00bc\u0001\u0000\u0000\u0000\u00c8"+
+ "\u00c5\u0001\u0000\u0000\u0000\u00c9\u0001\u0001\u0000\u0000\u0000\u00ca"+
+ "\u00cb\u0003\u0004\u0002\u0000\u00cb\u00cc\u0005\u0000\u0000\u0001\u00cc"+
+ "\u0003\u0001\u0000\u0000\u0000\u00cd\u00ce\u0006\u0002\uffff\uffff\u0000"+
+ "\u00ce\u00cf\u0003\u0006\u0003\u0000\u00cf\u00d5\u0001\u0000\u0000\u0000"+
+ "\u00d0\u00d1\n\u0001\u0000\u0000\u00d1\u00d2\u00052\u0000\u0000\u00d2"+
+ "\u00d4\u0003\b\u0004\u0000\u00d3\u00d0\u0001\u0000\u0000\u0000\u00d4\u00d7"+
+ "\u0001\u0000\u0000\u0000\u00d5\u00d3\u0001\u0000\u0000\u0000\u00d5\u00d6"+
+ "\u0001\u0000\u0000\u0000\u00d6\u0005\u0001\u0000\u0000\u0000\u00d7\u00d5"+
+ "\u0001\u0000\u0000\u0000\u00d8\u00df\u0003\u0018\f\u0000\u00d9\u00df\u0003"+
+ "\u000e\u0007\u0000\u00da\u00df\u0003j5\u0000\u00db\u00df\u0003\u001a\r"+
+ "\u0000\u00dc\u00dd\u0004\u0003\u0002\u0000\u00dd\u00df\u0003f3\u0000\u00de"+
+ "\u00d8\u0001\u0000\u0000\u0000\u00de\u00d9\u0001\u0000\u0000\u0000\u00de"+
+ "\u00da\u0001\u0000\u0000\u0000\u00de\u00db\u0001\u0000\u0000\u0000\u00de"+
+ "\u00dc\u0001\u0000\u0000\u0000\u00df\u0007\u0001\u0000\u0000\u0000\u00e0"+
+ "\u00f9\u00030\u0018\u0000\u00e1\u00f9\u0003\n\u0005\u0000\u00e2\u00f9"+
+ "\u0003R)\u0000\u00e3\u00f9\u0003L&\u0000\u00e4\u00f9\u00032\u0019\u0000"+
+ "\u00e5\u00f9\u0003N\'\u0000\u00e6\u00f9\u0003T*\u0000\u00e7\u00f9\u0003"+
+ "V+\u0000\u00e8\u00f9\u0003Z-\u0000\u00e9\u00f9\u0003b1\u0000\u00ea\u00f9"+
+ "\u0003l6\u0000\u00eb\u00f9\u0003d2\u0000\u00ec\u00f9\u0003\u00b6[\u0000"+
+ "\u00ed\u00f9\u0003t:\u0000\u00ee\u00f9\u0003\u0082A\u0000\u00ef\u00f9"+
+ "\u0003r9\u0000\u00f0\u00f9\u0003v;\u0000\u00f1\u00f9\u0003\u0080@\u0000"+
+ "\u00f2\u00f9\u0003\u0084B\u0000\u00f3\u00f9\u0003\u0086C\u0000\u00f4\u00f5"+
+ "\u0004\u0004\u0003\u0000\u00f5\u00f9\u0003\u008aE\u0000\u00f6\u00f7\u0004"+
+ "\u0004\u0004\u0000\u00f7\u00f9\u0003\u008cF\u0000\u00f8\u00e0\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00e1\u0001\u0000\u0000\u0000\u00f8\u00e2\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00e3\u0001\u0000\u0000\u0000\u00f8\u00e4\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00e5\u0001\u0000\u0000\u0000\u00f8\u00e6\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00e7\u0001\u0000\u0000\u0000\u00f8\u00e8\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00e9\u0001\u0000\u0000\u0000\u00f8\u00ea\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00eb\u0001\u0000\u0000\u0000\u00f8\u00ec\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00ed\u0001\u0000\u0000\u0000\u00f8\u00ee\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00ef\u0001\u0000\u0000\u0000\u00f8\u00f0\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00f1\u0001\u0000\u0000\u0000\u00f8\u00f2\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00f3\u0001\u0000\u0000\u0000\u00f8\u00f4\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00f6\u0001\u0000\u0000\u0000\u00f9\t\u0001\u0000\u0000"+
+ "\u0000\u00fa\u00fb\u0005\u0011\u0000\u0000\u00fb\u00fc\u0003\u0092I\u0000"+
+ "\u00fc\u000b\u0001\u0000\u0000\u0000\u00fd\u00fe\u0003B!\u0000\u00fe\r"+
+ "\u0001\u0000\u0000\u0000\u00ff\u0100\u0005\r\u0000\u0000\u0100\u0101\u0003"+
+ "\u0010\b\u0000\u0101\u000f\u0001\u0000\u0000\u0000\u0102\u0107\u0003\u0012"+
+ "\t\u0000\u0103\u0104\u0005=\u0000\u0000\u0104\u0106\u0003\u0012\t\u0000"+
+ "\u0105\u0103\u0001\u0000\u0000\u0000\u0106\u0109\u0001\u0000\u0000\u0000"+
+ "\u0107\u0105\u0001\u0000\u0000\u0000\u0107\u0108\u0001\u0000\u0000\u0000"+
+ "\u0108\u0011\u0001\u0000\u0000\u0000\u0109\u0107\u0001\u0000\u0000\u0000"+
+ "\u010a\u010b\u00038\u001c\u0000\u010b\u010c\u00058\u0000\u0000\u010c\u010e"+
+ "\u0001\u0000\u0000\u0000\u010d\u010a\u0001\u0000\u0000\u0000\u010d\u010e"+
+ "\u0001\u0000\u0000\u0000\u010e\u010f\u0001\u0000\u0000\u0000\u010f\u0110"+
+ "\u0003\u0092I\u0000\u0110\u0013\u0001\u0000\u0000\u0000\u0111\u0116\u0003"+
+ "\u0016\u000b\u0000\u0112\u0113\u0005=\u0000\u0000\u0113\u0115\u0003\u0016"+
+ "\u000b\u0000\u0114\u0112\u0001\u0000\u0000\u0000\u0115\u0118\u0001\u0000"+
+ "\u0000\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0116\u0117\u0001\u0000"+
+ "\u0000\u0000\u0117\u0015\u0001\u0000\u0000\u0000\u0118\u0116\u0001\u0000"+
+ "\u0000\u0000\u0119\u011c\u00038\u001c\u0000\u011a\u011b\u00058\u0000\u0000"+
+ "\u011b\u011d\u0003\u0092I\u0000\u011c\u011a\u0001\u0000\u0000\u0000\u011c"+
+ "\u011d\u0001\u0000\u0000\u0000\u011d\u0017\u0001\u0000\u0000\u0000\u011e"+
+ "\u011f\u0005\u0012\u0000\u0000\u011f\u0120\u0003\u001c\u000e\u0000\u0120"+
+ "\u0019\u0001\u0000\u0000\u0000\u0121\u0122\u0005\u0013\u0000\u0000\u0122"+
+ "\u0123\u0003\u001c\u000e\u0000\u0123\u001b\u0001\u0000\u0000\u0000\u0124"+
+ "\u0129\u0003\u001e\u000f\u0000\u0125\u0126\u0005=\u0000\u0000\u0126\u0128"+
+ "\u0003\u001e\u000f\u0000\u0127\u0125\u0001\u0000\u0000\u0000\u0128\u012b"+
+ "\u0001\u0000\u0000\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u0129\u012a"+
+ "\u0001\u0000\u0000\u0000\u012a\u012d\u0001\u0000\u0000\u0000\u012b\u0129"+
+ "\u0001\u0000\u0000\u0000\u012c\u012e\u0003.\u0017\u0000\u012d\u012c\u0001"+
+ "\u0000\u0000\u0000\u012d\u012e\u0001\u0000\u0000\u0000\u012e\u001d\u0001"+
+ "\u0000\u0000\u0000\u012f\u0133\u0003$\u0012\u0000\u0130\u0131\u0004\u000f"+
+ "\u0005\u0000\u0131\u0133\u0003 \u0010\u0000\u0132\u012f\u0001\u0000\u0000"+
+ "\u0000\u0132\u0130\u0001\u0000\u0000\u0000\u0133\u001f\u0001\u0000\u0000"+
+ "\u0000\u0134\u0135\u0005b\u0000\u0000\u0135\u013a\u0003\u0018\f\u0000"+
+ "\u0136\u0137\u00052\u0000\u0000\u0137\u0139\u0003\"\u0011\u0000\u0138"+
+ "\u0136\u0001\u0000\u0000\u0000\u0139\u013c\u0001\u0000\u0000\u0000\u013a"+
+ "\u0138\u0001\u0000\u0000\u0000\u013a\u013b\u0001\u0000\u0000\u0000\u013b"+
+ "\u013d\u0001\u0000\u0000\u0000\u013c\u013a\u0001\u0000\u0000\u0000\u013d"+
+ "\u013e\u0005c\u0000\u0000\u013e!\u0001\u0000\u0000\u0000\u013f\u0140\u0003"+
+ "\b\u0004\u0000\u0140#\u0001\u0000\u0000\u0000\u0141\u0142\u0003&\u0013"+
+ "\u0000\u0142\u0143\u0005;\u0000\u0000\u0143\u0144\u0003*\u0015\u0000\u0144"+
+ "\u014b\u0001\u0000\u0000\u0000\u0145\u0146\u0003*\u0015\u0000\u0146\u0147"+
+ "\u0005:\u0000\u0000\u0147\u0148\u0003(\u0014\u0000\u0148\u014b\u0001\u0000"+
+ "\u0000\u0000\u0149\u014b\u0003,\u0016\u0000\u014a\u0141\u0001\u0000\u0000"+
+ "\u0000\u014a\u0145\u0001\u0000\u0000\u0000\u014a\u0149\u0001\u0000\u0000"+
+ "\u0000\u014b%\u0001\u0000\u0000\u0000\u014c\u014d\u0005j\u0000\u0000\u014d"+
+ "\'\u0001\u0000\u0000\u0000\u014e\u014f\u0005j\u0000\u0000\u014f)\u0001"+
+ "\u0000\u0000\u0000\u0150\u0151\u0005j\u0000\u0000\u0151+\u0001\u0000\u0000"+
+ "\u0000\u0152\u0153\u0007\u0000\u0000\u0000\u0153-\u0001\u0000\u0000\u0000"+
+ "\u0154\u0155\u0005i\u0000\u0000\u0155\u015a\u0005j\u0000\u0000\u0156\u0157"+
+ "\u0005=\u0000\u0000\u0157\u0159\u0005j\u0000\u0000\u0158\u0156\u0001\u0000"+
+ "\u0000\u0000\u0159\u015c\u0001\u0000\u0000\u0000\u015a\u0158\u0001\u0000"+
+ "\u0000\u0000\u015a\u015b\u0001\u0000\u0000\u0000\u015b/\u0001\u0000\u0000"+
+ "\u0000\u015c\u015a\u0001\u0000\u0000\u0000\u015d\u015e\u0005\t\u0000\u0000"+
+ "\u015e\u015f\u0003\u0010\b\u0000\u015f1\u0001\u0000\u0000\u0000\u0160"+
+ "\u0162\u0005\u0010\u0000\u0000\u0161\u0163\u00034\u001a\u0000\u0162\u0161"+
+ "\u0001\u0000\u0000\u0000\u0162\u0163\u0001\u0000\u0000\u0000\u0163\u0166"+
+ "\u0001\u0000\u0000\u0000\u0164\u0165\u00059\u0000\u0000\u0165\u0167\u0003"+
+ "\u0010\b\u0000\u0166\u0164\u0001\u0000\u0000\u0000\u0166\u0167\u0001\u0000"+
+ "\u0000\u0000\u01673\u0001\u0000\u0000\u0000\u0168\u016d\u00036\u001b\u0000"+
+ "\u0169\u016a\u0005=\u0000\u0000\u016a\u016c\u00036\u001b\u0000\u016b\u0169"+
+ "\u0001\u0000\u0000\u0000\u016c\u016f\u0001\u0000\u0000\u0000\u016d\u016b"+
+ "\u0001\u0000\u0000\u0000\u016d\u016e\u0001\u0000\u0000\u0000\u016e5\u0001"+
+ "\u0000\u0000\u0000\u016f\u016d\u0001\u0000\u0000\u0000\u0170\u0173\u0003"+
+ "\u0012\t\u0000\u0171\u0172\u0005\u0011\u0000\u0000\u0172\u0174\u0003\u0092"+
+ "I\u0000\u0173\u0171\u0001\u0000\u0000\u0000\u0173\u0174\u0001\u0000\u0000"+
+ "\u0000\u01747\u0001\u0000\u0000\u0000\u0175\u0176\u0004\u001c\u0006\u0000"+
+ "\u0176\u0178\u0005`\u0000\u0000\u0177\u0179\u0005d\u0000\u0000\u0178\u0177"+
+ "\u0001\u0000\u0000\u0000\u0178\u0179\u0001\u0000\u0000\u0000\u0179\u017a"+
+ "\u0001\u0000\u0000\u0000\u017a\u017b\u0005a\u0000\u0000\u017b\u017c\u0005"+
+ "?\u0000\u0000\u017c\u017d\u0005`\u0000\u0000\u017d\u017e\u0003:\u001d"+
+ "\u0000\u017e\u017f\u0005a\u0000\u0000\u017f\u0182\u0001\u0000\u0000\u0000"+
+ "\u0180\u0182\u0003:\u001d\u0000\u0181\u0175\u0001\u0000\u0000\u0000\u0181"+
+ "\u0180\u0001\u0000\u0000\u0000\u01829\u0001\u0000\u0000\u0000\u0183\u0188"+
+ "\u0003J%\u0000\u0184\u0185\u0005?\u0000\u0000\u0185\u0187\u0003J%\u0000"+
+ "\u0186\u0184\u0001\u0000\u0000\u0000\u0187\u018a\u0001\u0000\u0000\u0000"+
+ "\u0188\u0186\u0001\u0000\u0000\u0000\u0188\u0189\u0001\u0000\u0000\u0000"+
+ "\u0189;\u0001\u0000\u0000\u0000\u018a\u0188\u0001\u0000\u0000\u0000\u018b"+
+ "\u018c\u0004\u001e\u0007\u0000\u018c\u018e\u0005`\u0000\u0000\u018d\u018f"+
+ "\u0005\u0089\u0000\u0000\u018e\u018d\u0001\u0000\u0000\u0000\u018e\u018f"+
+ "\u0001\u0000\u0000\u0000\u018f\u0190\u0001\u0000\u0000\u0000\u0190\u0191"+
+ "\u0005a\u0000\u0000\u0191\u0192\u0005?\u0000\u0000\u0192\u0193\u0005`"+
+ "\u0000\u0000\u0193\u0194\u0003>\u001f\u0000\u0194\u0195\u0005a\u0000\u0000"+
+ "\u0195\u0198\u0001\u0000\u0000\u0000\u0196\u0198\u0003>\u001f\u0000\u0197"+
+ "\u018b\u0001\u0000\u0000\u0000\u0197\u0196\u0001\u0000\u0000\u0000\u0198"+
+ "=\u0001\u0000\u0000\u0000\u0199\u019e\u0003D\"\u0000\u019a\u019b\u0005"+
+ "?\u0000\u0000\u019b\u019d\u0003D\"\u0000\u019c\u019a\u0001\u0000\u0000"+
+ "\u0000\u019d\u01a0\u0001\u0000\u0000\u0000\u019e\u019c\u0001\u0000\u0000"+
+ "\u0000\u019e\u019f\u0001\u0000\u0000\u0000\u019f?\u0001\u0000\u0000\u0000"+
+ "\u01a0\u019e\u0001\u0000\u0000\u0000\u01a1\u01a6\u0003<\u001e\u0000\u01a2"+
+ "\u01a3\u0005=\u0000\u0000\u01a3\u01a5\u0003<\u001e\u0000\u01a4\u01a2\u0001"+
+ "\u0000\u0000\u0000\u01a5\u01a8\u0001\u0000\u0000\u0000\u01a6\u01a4\u0001"+
+ "\u0000\u0000\u0000\u01a6\u01a7\u0001\u0000\u0000\u0000\u01a7A\u0001\u0000"+
+ "\u0000\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01aa\u0007\u0001"+
+ "\u0000\u0000\u01aaC\u0001\u0000\u0000\u0000\u01ab\u01af\u0005\u0089\u0000"+
+ "\u0000\u01ac\u01af\u0003F#\u0000\u01ad\u01af\u0003H$\u0000\u01ae\u01ab"+
+ "\u0001\u0000\u0000\u0000\u01ae\u01ac\u0001\u0000\u0000\u0000\u01ae\u01ad"+
+ "\u0001\u0000\u0000\u0000\u01afE\u0001\u0000\u0000\u0000\u01b0\u01b3\u0005"+
+ "K\u0000\u0000\u01b1\u01b3\u0005^\u0000\u0000\u01b2\u01b0\u0001\u0000\u0000"+
+ "\u0000\u01b2\u01b1\u0001\u0000\u0000\u0000\u01b3G\u0001\u0000\u0000\u0000"+
+ "\u01b4\u01b7\u0005]\u0000\u0000\u01b5\u01b7\u0005_\u0000\u0000\u01b6\u01b4"+
+ "\u0001\u0000\u0000\u0000\u01b6\u01b5\u0001\u0000\u0000\u0000\u01b7I\u0001"+
+ "\u0000\u0000\u0000\u01b8\u01bc\u0003B!\u0000\u01b9\u01bc\u0003F#\u0000"+
+ "\u01ba\u01bc\u0003H$\u0000\u01bb\u01b8\u0001\u0000\u0000\u0000\u01bb\u01b9"+
+ "\u0001\u0000\u0000\u0000\u01bb\u01ba\u0001\u0000\u0000\u0000\u01bcK\u0001"+
+ "\u0000\u0000\u0000\u01bd\u01be\u0005\u000b\u0000\u0000\u01be\u01bf\u0003"+
+ "\u00a8T\u0000\u01bfM\u0001\u0000\u0000\u0000\u01c0\u01c1\u0005\u000f\u0000"+
+ "\u0000\u01c1\u01c6\u0003P(\u0000\u01c2\u01c3\u0005=\u0000\u0000\u01c3"+
+ "\u01c5\u0003P(\u0000\u01c4\u01c2\u0001\u0000\u0000\u0000\u01c5\u01c8\u0001"+
+ "\u0000\u0000\u0000\u01c6\u01c4\u0001\u0000\u0000\u0000\u01c6\u01c7\u0001"+
+ "\u0000\u0000\u0000\u01c7O\u0001\u0000\u0000\u0000\u01c8\u01c6\u0001\u0000"+
+ "\u0000\u0000\u01c9\u01cb\u0003\u0092I\u0000\u01ca\u01cc\u0007\u0002\u0000"+
+ "\u0000\u01cb\u01ca\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000\u0000"+
+ "\u0000\u01cc\u01cf\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005H\u0000\u0000"+
+ "\u01ce\u01d0\u0007\u0003\u0000\u0000\u01cf\u01cd\u0001\u0000\u0000\u0000"+
+ "\u01cf\u01d0\u0001\u0000\u0000\u0000\u01d0Q\u0001\u0000\u0000\u0000\u01d1"+
+ "\u01d2\u0005\u001f\u0000\u0000\u01d2\u01d3\u0003@ \u0000\u01d3S\u0001"+
+ "\u0000\u0000\u0000\u01d4\u01d5\u0005\u001e\u0000\u0000\u01d5\u01d6\u0003"+
+ "@ \u0000\u01d6U\u0001\u0000\u0000\u0000\u01d7\u01d8\u0005!\u0000\u0000"+
+ "\u01d8\u01dd\u0003X,\u0000\u01d9\u01da\u0005=\u0000\u0000\u01da\u01dc"+
+ "\u0003X,\u0000\u01db\u01d9\u0001\u0000\u0000\u0000\u01dc\u01df\u0001\u0000"+
+ "\u0000\u0000\u01dd\u01db\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000"+
+ "\u0000\u0000\u01deW\u0001\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000"+
+ "\u0000\u01e0\u01e1\u0003<\u001e\u0000\u01e1\u01e2\u0005\u008d\u0000\u0000"+
+ "\u01e2\u01e3\u0003<\u001e\u0000\u01e3\u01e9\u0001\u0000\u0000\u0000\u01e4"+
+ "\u01e5\u0003<\u001e\u0000\u01e5\u01e6\u00058\u0000\u0000\u01e6\u01e7\u0003"+
+ "<\u001e\u0000\u01e7\u01e9\u0001\u0000\u0000\u0000\u01e8\u01e0\u0001\u0000"+
+ "\u0000\u0000\u01e8\u01e4\u0001\u0000\u0000\u0000\u01e9Y\u0001\u0000\u0000"+
+ "\u0000\u01ea\u01eb\u0005\b\u0000\u0000\u01eb\u01ec\u0003\u009cN\u0000"+
+ "\u01ec\u01ee\u0003\u00b2Y\u0000\u01ed\u01ef\u0003\\.\u0000\u01ee\u01ed"+
+ "\u0001\u0000\u0000\u0000\u01ee\u01ef\u0001\u0000\u0000\u0000\u01ef[\u0001"+
+ "\u0000\u0000\u0000\u01f0\u01f5\u0003^/\u0000\u01f1\u01f2\u0005=\u0000"+
+ "\u0000\u01f2\u01f4\u0003^/\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000\u01f4"+
+ "\u01f7\u0001\u0000\u0000\u0000\u01f5\u01f3\u0001\u0000\u0000\u0000\u01f5"+
+ "\u01f6\u0001\u0000\u0000\u0000\u01f6]\u0001\u0000\u0000\u0000\u01f7\u01f5"+
+ "\u0001\u0000\u0000\u0000\u01f8\u01f9\u0003B!\u0000\u01f9\u01fa\u00058"+
+ "\u0000\u0000\u01fa\u01fb\u0003\u00a8T\u0000\u01fb_\u0001\u0000\u0000\u0000"+
+ "\u01fc\u01fd\u0005N\u0000\u0000\u01fd\u01ff\u0003\u00a2Q\u0000\u01fe\u01fc"+
+ "\u0001\u0000\u0000\u0000\u01fe\u01ff\u0001\u0000\u0000\u0000\u01ffa\u0001"+
+ "\u0000\u0000\u0000\u0200\u0201\u0005\n\u0000\u0000\u0201\u0202\u0003\u009c"+
+ "N\u0000\u0202\u0203\u0003\u00b2Y\u0000\u0203c\u0001\u0000\u0000\u0000"+
+ "\u0204\u0205\u0005\u001d\u0000\u0000\u0205\u0206\u00038\u001c\u0000\u0206"+
+ "e\u0001\u0000\u0000\u0000\u0207\u0208\u0005\u0006\u0000\u0000\u0208\u0209"+
+ "\u0003h4\u0000\u0209g\u0001\u0000\u0000\u0000\u020a\u020b\u0005b\u0000"+
+ "\u0000\u020b\u020c\u0003\u0004\u0002\u0000\u020c\u020d\u0005c\u0000\u0000"+
+ "\u020di\u0001\u0000\u0000\u0000\u020e\u020f\u0005#\u0000\u0000\u020f\u0210"+
+ "\u0005\u0094\u0000\u0000\u0210k\u0001\u0000\u0000\u0000\u0211\u0212\u0005"+
+ "\u0005\u0000\u0000\u0212\u0215\u0003n7\u0000\u0213\u0214\u0005I\u0000"+
+ "\u0000\u0214\u0216\u0003<\u001e\u0000\u0215\u0213\u0001\u0000\u0000\u0000"+
+ "\u0215\u0216\u0001\u0000\u0000\u0000\u0216\u0220\u0001\u0000\u0000\u0000"+
+ "\u0217\u0218\u0005N\u0000\u0000\u0218\u021d\u0003p8\u0000\u0219\u021a"+
+ "\u0005=\u0000\u0000\u021a\u021c\u0003p8\u0000\u021b\u0219\u0001\u0000"+
+ "\u0000\u0000\u021c\u021f\u0001\u0000\u0000\u0000\u021d\u021b\u0001\u0000"+
+ "\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021e\u0221\u0001\u0000"+
+ "\u0000\u0000\u021f\u021d\u0001\u0000\u0000\u0000\u0220\u0217\u0001\u0000"+
+ "\u0000\u0000\u0220\u0221\u0001\u0000\u0000\u0000\u0221m\u0001\u0000\u0000"+
+ "\u0000\u0222\u0223\u0007\u0004\u0000\u0000\u0223o\u0001\u0000\u0000\u0000"+
+ "\u0224\u0225\u0003<\u001e\u0000\u0225\u0226\u00058\u0000\u0000\u0226\u0228"+
+ "\u0001\u0000\u0000\u0000\u0227\u0224\u0001\u0000\u0000\u0000\u0227\u0228"+
+ "\u0001\u0000\u0000\u0000\u0228\u0229\u0001\u0000\u0000\u0000\u0229\u022a"+
+ "\u0003<\u001e\u0000\u022aq\u0001\u0000\u0000\u0000\u022b\u022c\u0005\u000e"+
+ "\u0000\u0000\u022c\u022d\u0003\u00a8T\u0000\u022ds\u0001\u0000\u0000\u0000"+
+ "\u022e\u022f\u0005\u0004\u0000\u0000\u022f\u0232\u00038\u001c\u0000\u0230"+
+ "\u0231\u0005I\u0000\u0000\u0231\u0233\u00038\u001c\u0000\u0232\u0230\u0001"+
+ "\u0000\u0000\u0000\u0232\u0233\u0001\u0000\u0000\u0000\u0233\u0239\u0001"+
+ "\u0000\u0000\u0000\u0234\u0235\u0005\u008d\u0000\u0000\u0235\u0236\u0003"+
+ "8\u001c\u0000\u0236\u0237\u0005=\u0000\u0000\u0237\u0238\u00038\u001c"+
+ "\u0000\u0238\u023a\u0001\u0000\u0000\u0000\u0239\u0234\u0001\u0000\u0000"+
+ "\u0000\u0239\u023a\u0001\u0000\u0000\u0000\u023au\u0001\u0000\u0000\u0000"+
+ "\u023b\u023c\u0005\u0014\u0000\u0000\u023c\u023d\u0003x<\u0000\u023dw"+
+ "\u0001\u0000\u0000\u0000\u023e\u0240\u0003z=\u0000\u023f\u023e\u0001\u0000"+
+ "\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u023f\u0001\u0000"+
+ "\u0000\u0000\u0241\u0242\u0001\u0000\u0000\u0000\u0242y\u0001\u0000\u0000"+
+ "\u0000\u0243\u0244\u0005b\u0000\u0000\u0244\u0245\u0003|>\u0000\u0245"+
+ "\u0246\u0005c\u0000\u0000\u0246{\u0001\u0000\u0000\u0000\u0247\u0248\u0006"+
+ ">\uffff\uffff\u0000\u0248\u0249\u0003~?\u0000\u0249\u024f\u0001\u0000"+
+ "\u0000\u0000\u024a\u024b\n\u0001\u0000\u0000\u024b\u024c\u00052\u0000"+
+ "\u0000\u024c\u024e\u0003~?\u0000\u024d\u024a\u0001\u0000\u0000\u0000\u024e"+
+ "\u0251\u0001\u0000\u0000\u0000\u024f\u024d\u0001\u0000\u0000\u0000\u024f"+
+ "\u0250\u0001\u0000\u0000\u0000\u0250}\u0001\u0000\u0000\u0000\u0251\u024f"+
+ "\u0001\u0000\u0000\u0000\u0252\u0253\u0003\b\u0004\u0000\u0253\u007f\u0001"+
+ "\u0000\u0000\u0000\u0254\u0258\u0005\f\u0000\u0000\u0255\u0256\u00038"+
+ "\u001c\u0000\u0256\u0257\u00058\u0000\u0000\u0257\u0259\u0001\u0000\u0000"+
+ "\u0000\u0258\u0255\u0001\u0000\u0000\u0000\u0258\u0259\u0001\u0000\u0000"+
+ "\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025a\u025b\u0003\u00a8T\u0000"+
+ "\u025b\u025c\u0005I\u0000\u0000\u025c\u025d\u0003\u0014\n\u0000\u025d"+
+ "\u025e\u0003`0\u0000\u025e\u0081\u0001\u0000\u0000\u0000\u025f\u0263\u0005"+
+ "\u0007\u0000\u0000\u0260\u0261\u00038\u001c\u0000\u0261\u0262\u00058\u0000"+
+ "\u0000\u0262\u0264\u0001\u0000\u0000\u0000\u0263\u0260\u0001\u0000\u0000"+
+ "\u0000\u0263\u0264\u0001\u0000\u0000\u0000\u0264\u0265\u0001\u0000\u0000"+
+ "\u0000\u0265\u0266\u0003\u009cN\u0000\u0266\u0267\u0003`0\u0000\u0267"+
+ "\u0083\u0001\u0000\u0000\u0000\u0268\u0269\u0005\u0016\u0000\u0000\u0269"+
+ "\u026a\u0005w\u0000\u0000\u026a\u026d\u00034\u001a\u0000\u026b\u026c\u0005"+
+ "9\u0000\u0000\u026c\u026e\u0003\u0010\b\u0000\u026d\u026b\u0001\u0000"+
+ "\u0000\u0000\u026d\u026e\u0001\u0000\u0000\u0000\u026e\u0276\u0001\u0000"+
+ "\u0000\u0000\u026f\u0270\u0005\u0017\u0000\u0000\u0270\u0273\u00034\u001a"+
+ "\u0000\u0271\u0272\u00059\u0000\u0000\u0272\u0274\u0003\u0010\b\u0000"+
+ "\u0273\u0271\u0001\u0000\u0000\u0000\u0273\u0274\u0001\u0000\u0000\u0000"+
+ "\u0274\u0276\u0001\u0000\u0000\u0000\u0275\u0268\u0001\u0000\u0000\u0000"+
+ "\u0275\u026f\u0001\u0000\u0000\u0000\u0276\u0085\u0001\u0000\u0000\u0000"+
+ "\u0277\u0279\u0005\u0015\u0000\u0000\u0278\u027a\u0003B!\u0000\u0279\u0278"+
+ "\u0001\u0000\u0000\u0000\u0279\u027a\u0001\u0000\u0000\u0000\u027a\u027e"+
+ "\u0001\u0000\u0000\u0000\u027b\u027d\u0003\u0088D\u0000\u027c\u027b\u0001"+
+ "\u0000\u0000\u0000\u027d\u0280\u0001\u0000\u0000\u0000\u027e\u027c\u0001"+
+ "\u0000\u0000\u0000\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0087\u0001"+
+ "\u0000\u0000\u0000\u0280\u027e\u0001\u0000\u0000\u0000\u0281\u0282\u0005"+
+ "r\u0000\u0000\u0282\u0283\u00059\u0000\u0000\u0283\u028d\u00038\u001c"+
+ "\u0000\u0284\u0285\u0005s\u0000\u0000\u0285\u0286\u00059\u0000\u0000\u0286"+
+ "\u028d\u0003\u0010\b\u0000\u0287\u0288\u0005q\u0000\u0000\u0288\u0289"+
+ "\u00059\u0000\u0000\u0289\u028d\u00038\u001c\u0000\u028a\u028b\u0005N"+
+ "\u0000\u0000\u028b\u028d\u0003\u00a2Q\u0000\u028c\u0281\u0001\u0000\u0000"+
+ "\u0000\u028c\u0284\u0001\u0000\u0000\u0000\u028c\u0287\u0001\u0000\u0000"+
+ "\u0000\u028c\u028a\u0001\u0000\u0000\u0000\u028d\u0089\u0001\u0000\u0000"+
+ "\u0000\u028e\u028f\u0005\u001c\u0000\u0000\u028f\u0290\u0003$\u0012\u0000"+
+ "\u0290\u0291\u0005I\u0000\u0000\u0291\u0292\u0003@ \u0000\u0292\u008b"+
+ "\u0001\u0000\u0000\u0000\u0293\u0294\u0005 \u0000\u0000\u0294\u0295\u0003"+
+ "@ \u0000\u0295\u008d\u0001\u0000\u0000\u0000\u0296\u0297\u0005\"\u0000"+
+ "\u0000\u0297\u0298\u0003\u0090H\u0000\u0298\u0299\u0005<\u0000\u0000\u0299"+
+ "\u008f\u0001\u0000\u0000\u0000\u029a\u029b\u0003B!\u0000\u029b\u029c\u0005"+
+ "8\u0000\u0000\u029c\u029d\u0003\u00a8T\u0000\u029d\u0091\u0001\u0000\u0000"+
+ "\u0000\u029e\u029f\u0006I\uffff\uffff\u0000\u029f\u02a0\u0005F\u0000\u0000"+
+ "\u02a0\u02bc\u0003\u0092I\b\u02a1\u02bc\u0003\u0098L\u0000\u02a2\u02bc"+
+ "\u0003\u0094J\u0000\u02a3\u02a5\u0003\u0098L\u0000\u02a4\u02a6\u0005F"+
+ "\u0000\u0000\u02a5\u02a4\u0001\u0000\u0000\u0000\u02a5\u02a6\u0001\u0000"+
+ "\u0000\u0000\u02a6\u02a7\u0001\u0000\u0000\u0000\u02a7\u02a8\u0005B\u0000"+
+ "\u0000\u02a8\u02a9\u0005b\u0000\u0000\u02a9\u02ae\u0003\u0098L\u0000\u02aa"+
+ "\u02ab\u0005=\u0000\u0000\u02ab\u02ad\u0003\u0098L\u0000\u02ac\u02aa\u0001"+
+ "\u0000\u0000\u0000\u02ad\u02b0\u0001\u0000\u0000\u0000\u02ae\u02ac\u0001"+
+ "\u0000\u0000\u0000\u02ae\u02af\u0001\u0000\u0000\u0000\u02af\u02b1\u0001"+
+ "\u0000\u0000\u0000\u02b0\u02ae\u0001\u0000\u0000\u0000\u02b1\u02b2\u0005"+
+ "c\u0000\u0000\u02b2\u02bc\u0001\u0000\u0000\u0000\u02b3\u02b4\u0003\u0098"+
+ "L\u0000\u02b4\u02b6\u0005C\u0000\u0000\u02b5\u02b7\u0005F\u0000\u0000"+
+ "\u02b6\u02b5\u0001\u0000\u0000\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000"+
+ "\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02b9\u0005G\u0000\u0000\u02b9"+
+ "\u02bc\u0001\u0000\u0000\u0000\u02ba\u02bc\u0003\u0096K\u0000\u02bb\u029e"+
+ "\u0001\u0000\u0000\u0000\u02bb\u02a1\u0001\u0000\u0000\u0000\u02bb\u02a2"+
+ "\u0001\u0000\u0000\u0000\u02bb\u02a3\u0001\u0000\u0000\u0000\u02bb\u02b3"+
+ "\u0001\u0000\u0000\u0000\u02bb\u02ba\u0001\u0000\u0000\u0000\u02bc\u02c5"+
+ "\u0001\u0000\u0000\u0000\u02bd\u02be\n\u0005\u0000\u0000\u02be\u02bf\u0005"+
+ "6\u0000\u0000\u02bf\u02c4\u0003\u0092I\u0006\u02c0\u02c1\n\u0004\u0000"+
+ "\u0000\u02c1\u02c2\u0005J\u0000\u0000\u02c2\u02c4\u0003\u0092I\u0005\u02c3"+
+ "\u02bd\u0001\u0000\u0000\u0000\u02c3\u02c0\u0001\u0000\u0000\u0000\u02c4"+
+ "\u02c7\u0001\u0000\u0000\u0000\u02c5\u02c3\u0001\u0000\u0000\u0000\u02c5"+
+ "\u02c6\u0001\u0000\u0000\u0000\u02c6\u0093\u0001\u0000\u0000\u0000\u02c7"+
+ "\u02c5\u0001\u0000\u0000\u0000\u02c8\u02ca\u0003\u0098L\u0000\u02c9\u02cb"+
+ "\u0005F\u0000\u0000\u02ca\u02c9\u0001\u0000\u0000\u0000\u02ca\u02cb\u0001"+
+ "\u0000\u0000\u0000\u02cb\u02cc\u0001\u0000\u0000\u0000\u02cc\u02cd\u0005"+
+ "E\u0000\u0000\u02cd\u02ce\u0003\u00b2Y\u0000\u02ce\u02f7\u0001\u0000\u0000"+
+ "\u0000\u02cf\u02d1\u0003\u0098L\u0000\u02d0\u02d2\u0005F\u0000\u0000\u02d1"+
+ "\u02d0\u0001\u0000\u0000\u0000\u02d1\u02d2\u0001\u0000\u0000\u0000\u02d2"+
+ "\u02d3\u0001\u0000\u0000\u0000\u02d3\u02d4\u0005L\u0000\u0000\u02d4\u02d5"+
+ "\u0003\u00b2Y\u0000\u02d5\u02f7\u0001\u0000\u0000\u0000\u02d6\u02d8\u0003"+
+ "\u0098L\u0000\u02d7\u02d9\u0005F\u0000\u0000\u02d8\u02d7\u0001\u0000\u0000"+
+ "\u0000\u02d8\u02d9\u0001\u0000\u0000\u0000\u02d9\u02da\u0001\u0000\u0000"+
+ "\u0000\u02da\u02db\u0005E\u0000\u0000\u02db\u02dc\u0005b\u0000\u0000\u02dc"+
+ "\u02e1\u0003\u00b2Y\u0000\u02dd\u02de\u0005=\u0000\u0000\u02de\u02e0\u0003"+
+ "\u00b2Y\u0000\u02df\u02dd\u0001\u0000\u0000\u0000\u02e0\u02e3\u0001\u0000"+
+ "\u0000\u0000\u02e1\u02df\u0001\u0000\u0000\u0000\u02e1\u02e2\u0001\u0000"+
+ "\u0000\u0000\u02e2\u02e4\u0001\u0000\u0000\u0000\u02e3\u02e1\u0001\u0000"+
+ "\u0000\u0000\u02e4\u02e5\u0005c\u0000\u0000\u02e5\u02f7\u0001\u0000\u0000"+
+ "\u0000\u02e6\u02e8\u0003\u0098L\u0000\u02e7\u02e9\u0005F\u0000\u0000\u02e8"+
+ "\u02e7\u0001\u0000\u0000\u0000\u02e8\u02e9\u0001\u0000\u0000\u0000\u02e9"+
+ "\u02ea\u0001\u0000\u0000\u0000\u02ea\u02eb\u0005L\u0000\u0000\u02eb\u02ec"+
+ "\u0005b\u0000\u0000\u02ec\u02f1\u0003\u00b2Y\u0000\u02ed\u02ee\u0005="+
+ "\u0000\u0000\u02ee\u02f0\u0003\u00b2Y\u0000\u02ef\u02ed\u0001\u0000\u0000"+
+ "\u0000\u02f0\u02f3\u0001\u0000\u0000\u0000\u02f1\u02ef\u0001\u0000\u0000"+
+ "\u0000\u02f1\u02f2\u0001\u0000\u0000\u0000\u02f2\u02f4\u0001\u0000\u0000"+
+ "\u0000\u02f3\u02f1\u0001\u0000\u0000\u0000\u02f4\u02f5\u0005c\u0000\u0000"+
+ "\u02f5\u02f7\u0001\u0000\u0000\u0000\u02f6\u02c8\u0001\u0000\u0000\u0000"+
+ "\u02f6\u02cf\u0001\u0000\u0000\u0000\u02f6\u02d6\u0001\u0000\u0000\u0000"+
+ "\u02f6\u02e6\u0001\u0000\u0000\u0000\u02f7\u0095\u0001\u0000\u0000\u0000"+
+ "\u02f8\u02fb\u00038\u001c\u0000\u02f9\u02fa\u0005:\u0000\u0000\u02fa\u02fc"+
+ "\u0003\f\u0006\u0000\u02fb\u02f9\u0001\u0000\u0000\u0000\u02fb\u02fc\u0001"+
+ "\u0000\u0000\u0000\u02fc\u02fd\u0001\u0000\u0000\u0000\u02fd\u02fe\u0005"+
+ ";\u0000\u0000\u02fe\u02ff\u0003\u00a8T\u0000\u02ff\u0097\u0001\u0000\u0000"+
+ "\u0000\u0300\u0306\u0003\u009aM\u0000\u0301\u0302\u0003\u009aM\u0000\u0302"+
+ "\u0303\u0003\u00b4Z\u0000\u0303\u0304\u0003\u009aM\u0000\u0304\u0306\u0001"+
+ "\u0000\u0000\u0000\u0305\u0300\u0001\u0000\u0000\u0000\u0305\u0301\u0001"+
+ "\u0000\u0000\u0000\u0306\u0099\u0001\u0000\u0000\u0000\u0307\u0308\u0006"+
+ "M\uffff\uffff\u0000\u0308\u030c\u0003\u009cN\u0000\u0309\u030a\u0007\u0005"+
+ "\u0000\u0000\u030a\u030c\u0003\u009aM\u0003\u030b\u0307\u0001\u0000\u0000"+
+ "\u0000\u030b\u0309\u0001\u0000\u0000\u0000\u030c\u0315\u0001\u0000\u0000"+
+ "\u0000\u030d\u030e\n\u0002\u0000\u0000\u030e\u030f\u0007\u0006\u0000\u0000"+
+ "\u030f\u0314\u0003\u009aM\u0003\u0310\u0311\n\u0001\u0000\u0000\u0311"+
+ "\u0312\u0007\u0005\u0000\u0000\u0312\u0314\u0003\u009aM\u0002\u0313\u030d"+
+ "\u0001\u0000\u0000\u0000\u0313\u0310\u0001\u0000\u0000\u0000\u0314\u0317"+
+ "\u0001\u0000\u0000\u0000\u0315\u0313\u0001\u0000\u0000\u0000\u0315\u0316"+
+ "\u0001\u0000\u0000\u0000\u0316\u009b\u0001\u0000\u0000\u0000\u0317\u0315"+
+ "\u0001\u0000\u0000\u0000\u0318\u0319\u0006N\uffff\uffff\u0000\u0319\u0321"+
+ "\u0003\u00a8T\u0000\u031a\u0321\u00038\u001c\u0000\u031b\u0321\u0003\u009e"+
+ "O\u0000\u031c\u031d\u0005b\u0000\u0000\u031d\u031e\u0003\u0092I\u0000"+
+ "\u031e\u031f\u0005c\u0000\u0000\u031f\u0321\u0001\u0000\u0000\u0000\u0320"+
+ "\u0318\u0001\u0000\u0000\u0000\u0320\u031a\u0001\u0000\u0000\u0000\u0320"+
+ "\u031b\u0001\u0000\u0000\u0000\u0320\u031c\u0001\u0000\u0000\u0000\u0321"+
+ "\u0327\u0001\u0000\u0000\u0000\u0322\u0323\n\u0001\u0000\u0000\u0323\u0324"+
+ "\u0005:\u0000\u0000\u0324\u0326\u0003\f\u0006\u0000\u0325\u0322\u0001"+
+ "\u0000\u0000\u0000\u0326\u0329\u0001\u0000\u0000\u0000\u0327\u0325\u0001"+
+ "\u0000\u0000\u0000\u0327\u0328\u0001\u0000\u0000\u0000\u0328\u009d\u0001"+
+ "\u0000\u0000\u0000\u0329\u0327\u0001\u0000\u0000\u0000\u032a\u032b\u0003"+
+ "\u00a0P\u0000\u032b\u0339\u0005b\u0000\u0000\u032c\u033a\u0005X\u0000"+
+ "\u0000\u032d\u0332\u0003\u0092I\u0000\u032e\u032f\u0005=\u0000\u0000\u032f"+
+ "\u0331\u0003\u0092I\u0000\u0330\u032e\u0001\u0000\u0000\u0000\u0331\u0334"+
+ "\u0001\u0000\u0000\u0000\u0332\u0330\u0001\u0000\u0000\u0000\u0332\u0333"+
+ "\u0001\u0000\u0000\u0000\u0333\u0337\u0001\u0000\u0000\u0000\u0334\u0332"+
+ "\u0001\u0000\u0000\u0000\u0335\u0336\u0005=\u0000\u0000\u0336\u0338\u0003"+
+ "\u00a2Q\u0000\u0337\u0335\u0001\u0000\u0000\u0000\u0337\u0338\u0001\u0000"+
+ "\u0000\u0000\u0338\u033a\u0001\u0000\u0000\u0000\u0339\u032c\u0001\u0000"+
+ "\u0000\u0000\u0339\u032d\u0001\u0000\u0000\u0000\u0339\u033a\u0001\u0000"+
+ "\u0000\u0000\u033a\u033b\u0001\u0000\u0000\u0000\u033b\u033c\u0005c\u0000"+
+ "\u0000\u033c\u009f\u0001\u0000\u0000\u0000\u033d\u0341\u0003J%\u0000\u033e"+
+ "\u0341\u0005A\u0000\u0000\u033f\u0341\u0005D\u0000\u0000\u0340\u033d\u0001"+
+ "\u0000\u0000\u0000\u0340\u033e\u0001\u0000\u0000\u0000\u0340\u033f\u0001"+
+ "\u0000\u0000\u0000\u0341\u00a1\u0001\u0000\u0000\u0000\u0342\u034b\u0005"+
+ "[\u0000\u0000\u0343\u0348\u0003\u00a4R\u0000\u0344\u0345\u0005=\u0000"+
+ "\u0000\u0345\u0347\u0003\u00a4R\u0000\u0346\u0344\u0001\u0000\u0000\u0000"+
+ "\u0347\u034a\u0001\u0000\u0000\u0000\u0348\u0346\u0001\u0000\u0000\u0000"+
+ "\u0348\u0349\u0001\u0000\u0000\u0000\u0349\u034c\u0001\u0000\u0000\u0000"+
+ "\u034a\u0348\u0001\u0000\u0000\u0000\u034b\u0343\u0001\u0000\u0000\u0000"+
+ "\u034b\u034c\u0001\u0000\u0000\u0000\u034c\u034d\u0001\u0000\u0000\u0000"+
+ "\u034d\u034e\u0005\\\u0000\u0000\u034e\u00a3\u0001\u0000\u0000\u0000\u034f"+
+ "\u0350\u0003\u00b2Y\u0000\u0350\u0351\u0005;\u0000\u0000\u0351\u0352\u0003"+
+ "\u00a6S\u0000\u0352\u00a5\u0001\u0000\u0000\u0000\u0353\u0356\u0003\u00a8"+
+ "T\u0000\u0354\u0356\u0003\u00a2Q\u0000\u0355\u0353\u0001\u0000\u0000\u0000"+
+ "\u0355\u0354\u0001\u0000\u0000\u0000\u0356\u00a7\u0001\u0000\u0000\u0000"+
+ "\u0357\u0382\u0005G\u0000\u0000\u0358\u0359\u0003\u00b0X\u0000\u0359\u035a"+
+ "\u0005d\u0000\u0000\u035a\u0382\u0001\u0000\u0000\u0000\u035b\u0382\u0003"+
+ "\u00aeW\u0000\u035c\u0382\u0003\u00b0X\u0000\u035d\u0382\u0003\u00aaU"+
+ "\u0000\u035e\u0382\u0003F#\u0000\u035f\u0382\u0003\u00b2Y\u0000\u0360"+
+ "\u0361\u0005`\u0000\u0000\u0361\u0366\u0003\u00acV\u0000\u0362\u0363\u0005"+
+ "=\u0000\u0000\u0363\u0365\u0003\u00acV\u0000\u0364\u0362\u0001\u0000\u0000"+
+ "\u0000\u0365\u0368\u0001\u0000\u0000\u0000\u0366\u0364\u0001\u0000\u0000"+
+ "\u0000\u0366\u0367\u0001\u0000\u0000\u0000\u0367\u0369\u0001\u0000\u0000"+
+ "\u0000\u0368\u0366\u0001\u0000\u0000\u0000\u0369\u036a\u0005a\u0000\u0000"+
+ "\u036a\u0382\u0001\u0000\u0000\u0000\u036b\u036c\u0005`\u0000\u0000\u036c"+
+ "\u0371\u0003\u00aaU\u0000\u036d\u036e\u0005=\u0000\u0000\u036e\u0370\u0003"+
+ "\u00aaU\u0000\u036f\u036d\u0001\u0000\u0000\u0000\u0370\u0373\u0001\u0000"+
+ "\u0000\u0000\u0371\u036f\u0001\u0000\u0000\u0000\u0371\u0372\u0001\u0000"+
+ "\u0000\u0000\u0372\u0374\u0001\u0000\u0000\u0000\u0373\u0371\u0001\u0000"+
+ "\u0000\u0000\u0374\u0375\u0005a\u0000\u0000\u0375\u0382\u0001\u0000\u0000"+
+ "\u0000\u0376\u0377\u0005`\u0000\u0000\u0377\u037c\u0003\u00b2Y\u0000\u0378"+
+ "\u0379\u0005=\u0000\u0000\u0379\u037b\u0003\u00b2Y\u0000\u037a\u0378\u0001"+
+ "\u0000\u0000\u0000\u037b\u037e\u0001\u0000\u0000\u0000\u037c\u037a\u0001"+
+ "\u0000\u0000\u0000\u037c\u037d\u0001\u0000\u0000\u0000\u037d\u037f\u0001"+
+ "\u0000\u0000\u0000\u037e\u037c\u0001\u0000\u0000\u0000\u037f\u0380\u0005"+
+ "a\u0000\u0000\u0380\u0382\u0001\u0000\u0000\u0000\u0381\u0357\u0001\u0000"+
+ "\u0000\u0000\u0381\u0358\u0001\u0000\u0000\u0000\u0381\u035b\u0001\u0000"+
+ "\u0000\u0000\u0381\u035c\u0001\u0000\u0000\u0000\u0381\u035d\u0001\u0000"+
+ "\u0000\u0000\u0381\u035e\u0001\u0000\u0000\u0000\u0381\u035f\u0001\u0000"+
+ "\u0000\u0000\u0381\u0360\u0001\u0000\u0000\u0000\u0381\u036b\u0001\u0000"+
+ "\u0000\u0000\u0381\u0376\u0001\u0000\u0000\u0000\u0382\u00a9\u0001\u0000"+
+ "\u0000\u0000\u0383\u0384\u0007\u0007\u0000\u0000\u0384\u00ab\u0001\u0000"+
+ "\u0000\u0000\u0385\u0388\u0003\u00aeW\u0000\u0386\u0388\u0003\u00b0X\u0000"+
+ "\u0387\u0385\u0001\u0000\u0000\u0000\u0387\u0386\u0001\u0000\u0000\u0000"+
+ "\u0388\u00ad\u0001\u0000\u0000\u0000\u0389\u038b\u0007\u0005\u0000\u0000"+
+ "\u038a\u0389\u0001\u0000\u0000\u0000\u038a\u038b\u0001\u0000\u0000\u0000"+
+ "\u038b\u038c\u0001\u0000\u0000\u0000\u038c\u038d\u00055\u0000\u0000\u038d"+
+ "\u00af\u0001\u0000\u0000\u0000\u038e\u0390\u0007\u0005\u0000\u0000\u038f"+
+ "\u038e\u0001\u0000\u0000\u0000\u038f\u0390\u0001\u0000\u0000\u0000\u0390"+
+ "\u0391\u0001\u0000\u0000\u0000\u0391\u0392\u00054\u0000\u0000\u0392\u00b1"+
+ "\u0001\u0000\u0000\u0000\u0393\u0394\u00053\u0000\u0000\u0394\u00b3\u0001"+
+ "\u0000\u0000\u0000\u0395\u0396\u0007\b\u0000\u0000\u0396\u00b5\u0001\u0000"+
+ "\u0000\u0000\u0397\u0398\u0007\t\u0000\u0000\u0398\u0399\u0005{\u0000"+
+ "\u0000\u0399\u039a\u0003\u00b8\\\u0000\u039a\u039b\u0003\u00ba]\u0000"+
+ "\u039b\u00b7\u0001\u0000\u0000\u0000\u039c\u039d\u0004\\\u000e\u0000\u039d"+
+ "\u039f\u0003$\u0012\u0000\u039e\u03a0\u0005\u008d\u0000\u0000\u039f\u039e"+
+ "\u0001\u0000\u0000\u0000\u039f\u03a0\u0001\u0000\u0000\u0000\u03a0\u03a1"+
+ "\u0001\u0000\u0000\u0000\u03a1\u03a2\u0005j\u0000\u0000\u03a2\u03a5\u0001"+
+ "\u0000\u0000\u0000\u03a3\u03a5\u0003$\u0012\u0000\u03a4\u039c\u0001\u0000"+
+ "\u0000\u0000\u03a4\u03a3\u0001\u0000\u0000\u0000\u03a5\u00b9\u0001\u0000"+
+ "\u0000\u0000\u03a6\u03a7\u0005I\u0000\u0000\u03a7\u03ac\u0003\u0092I\u0000"+
+ "\u03a8\u03a9\u0005=\u0000\u0000\u03a9\u03ab\u0003\u0092I\u0000\u03aa\u03a8"+
+ "\u0001\u0000\u0000\u0000\u03ab\u03ae\u0001\u0000\u0000\u0000\u03ac\u03aa"+
+ "\u0001\u0000\u0000\u0000\u03ac\u03ad\u0001\u0000\u0000\u0000\u03ad\u00bb"+
+ "\u0001\u0000\u0000\u0000\u03ae\u03ac\u0001\u0000\u0000\u0000[\u00c0\u00c8"+
+ "\u00d5\u00de\u00f8\u0107\u010d\u0116\u011c\u0129\u012d\u0132\u013a\u014a"+
+ "\u015a\u0162\u0166\u016d\u0173\u0178\u0181\u0188\u018e\u0197\u019e\u01a6"+
+ "\u01ae\u01b2\u01b6\u01bb\u01c6\u01cb\u01cf\u01dd\u01e8\u01ee\u01f5\u01fe"+
+ "\u0215\u021d\u0220\u0227\u0232\u0239\u0241\u024f\u0258\u0263\u026d\u0273"+
+ "\u0275\u0279\u027e\u028c\u02a5\u02ae\u02b6\u02bb\u02c3\u02c5\u02ca\u02d1"+
+ "\u02d8\u02e1\u02e8\u02f1\u02f6\u02fb\u0305\u030b\u0313\u0315\u0320\u0327"+
+ "\u0332\u0337\u0339\u0340\u0348\u034b\u0355\u0366\u0371\u037c\u0381\u0387"+
+ "\u038a\u038f\u039f\u03a4\u03ac";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
index d515106595161..65b4fcfab437c 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
@@ -212,6 +212,42 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitIndexPatternAndMetadataFields(EsqlBaseParser.IndexPatternAndMetadataFieldsContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterIndexPatternOrSubquery(EsqlBaseParser.IndexPatternOrSubqueryContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitIndexPatternOrSubquery(EsqlBaseParser.IndexPatternOrSubqueryContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterSubquery(EsqlBaseParser.SubqueryContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitSubquery(EsqlBaseParser.SubqueryContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterSubqueryProcessingCommand(EsqlBaseParser.SubqueryProcessingCommandContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitSubqueryProcessingCommand(EsqlBaseParser.SubqueryProcessingCommandContext ctx) { }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
index 9bc4bfedb94af..1fbbf9170ffd4 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
@@ -132,6 +132,27 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitIndexPatternAndMetadataFields(EsqlBaseParser.IndexPatternAndMetadataFieldsContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitIndexPatternOrSubquery(EsqlBaseParser.IndexPatternOrSubqueryContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSubquery(EsqlBaseParser.SubqueryContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSubqueryProcessingCommand(EsqlBaseParser.SubqueryProcessingCommandContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
index 0507122f09b1e..977692365c676 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
@@ -181,6 +181,36 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitIndexPatternAndMetadataFields(EsqlBaseParser.IndexPatternAndMetadataFieldsContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#indexPatternOrSubquery}.
+ * @param ctx the parse tree
+ */
+ void enterIndexPatternOrSubquery(EsqlBaseParser.IndexPatternOrSubqueryContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#indexPatternOrSubquery}.
+ * @param ctx the parse tree
+ */
+ void exitIndexPatternOrSubquery(EsqlBaseParser.IndexPatternOrSubqueryContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#subquery}.
+ * @param ctx the parse tree
+ */
+ void enterSubquery(EsqlBaseParser.SubqueryContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#subquery}.
+ * @param ctx the parse tree
+ */
+ void exitSubquery(EsqlBaseParser.SubqueryContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#subqueryProcessingCommand}.
+ * @param ctx the parse tree
+ */
+ void enterSubqueryProcessingCommand(EsqlBaseParser.SubqueryProcessingCommandContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#subqueryProcessingCommand}.
+ * @param ctx the parse tree
+ */
+ void exitSubqueryProcessingCommand(EsqlBaseParser.SubqueryProcessingCommandContext ctx);
/**
* Enter a parse tree produced by {@link EsqlBaseParser#indexPattern}.
* @param ctx the parse tree
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
index 55f7d101ed241..250c8186cd1e3 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
@@ -117,6 +117,24 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitIndexPatternAndMetadataFields(EsqlBaseParser.IndexPatternAndMetadataFieldsContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#indexPatternOrSubquery}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitIndexPatternOrSubquery(EsqlBaseParser.IndexPatternOrSubqueryContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#subquery}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSubquery(EsqlBaseParser.SubqueryContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#subqueryProcessingCommand}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSubqueryProcessingCommand(EsqlBaseParser.SubqueryProcessingCommandContext ctx);
/**
* Visit a parse tree produced by {@link EsqlBaseParser#indexPattern}.
* @param ctx the parse tree
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
index dbd18446e748d..212c8a04299dd 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
@@ -73,7 +73,9 @@
import org.elasticsearch.xpack.esql.plan.logical.Rename;
import org.elasticsearch.xpack.esql.plan.logical.Row;
import org.elasticsearch.xpack.esql.plan.logical.Sample;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
import org.elasticsearch.xpack.esql.plan.logical.TimeSeriesAggregate;
+import org.elasticsearch.xpack.esql.plan.logical.UnionAll;
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse;
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
@@ -313,8 +315,23 @@ public LogicalPlan visitRowCommand(EsqlBaseParser.RowCommandContext ctx) {
return new Row(source(ctx), (List) (List) mergeOutputExpressions(visitFields(ctx.fields()), List.of()));
}
- private UnresolvedRelation visitRelation(Source source, IndexMode indexMode, EsqlBaseParser.IndexPatternAndMetadataFieldsContext ctx) {
- IndexPattern table = new IndexPattern(source, visitIndexPattern(ctx.indexPattern()));
+ private LogicalPlan visitRelation(Source source, IndexMode indexMode, EsqlBaseParser.IndexPatternAndMetadataFieldsContext ctx) {
+ List ctxs = ctx == null ? null : ctx.indexPatternOrSubquery();
+ List indexPatternsCtx = new ArrayList<>();
+ List subqueriesCtx = new ArrayList<>();
+ if (ctxs != null) {
+ ctxs.forEach(c -> {
+ if (c.indexPattern() != null) {
+ indexPatternsCtx.add(c.indexPattern());
+ } else {
+ subqueriesCtx.add(c.subquery());
+ }
+ });
+ } else { // We should not reach here as the grammar does not allow it
+ throw new ParsingException("no index pattern or subquery provided");
+ }
+ IndexPattern table = new IndexPattern(source, visitIndexPattern(indexPatternsCtx));
+ List subqueries = visitSubqueriesInFromCommand(subqueriesCtx);
Map metadataMap = new LinkedHashMap<>();
if (ctx.metadata() != null) {
for (var c : ctx.metadata().UNQUOTED_SOURCE()) {
@@ -331,7 +348,66 @@ private UnresolvedRelation visitRelation(Source source, IndexMode indexMode, Esq
}
List metadataFields = List.of(metadataMap.values().toArray(Attribute[]::new));
final String commandName = indexMode == IndexMode.TIME_SERIES ? "TS" : "FROM";
- return new UnresolvedRelation(source, table, false, metadataFields, indexMode, null, commandName);
+ UnresolvedRelation unresolvedRelation = new UnresolvedRelation(source, table, false, metadataFields, indexMode, null, commandName);
+ if (subqueries.isEmpty()) {
+ return unresolvedRelation;
+ } else {
+ // subquery is not supported with time-series indices at the moment
+ if (indexMode == IndexMode.TIME_SERIES) {
+ throw new ParsingException(source, "Subqueries are not supported in TS command");
+ }
+
+ List mainQueryAndSubqueries = new ArrayList<>(subqueries.size() + 1);
+ if (table.indexPattern().isEmpty() == false) {
+ mainQueryAndSubqueries.add(unresolvedRelation);
+ telemetryAccounting(unresolvedRelation);
+ }
+ mainQueryAndSubqueries.addAll(subqueries);
+
+ if (mainQueryAndSubqueries.size() == 1) {
+ // if there is only one child, return it directly, no need for UnionAll
+ return table.indexPattern().isEmpty() ? subqueries.get(0).plan() : unresolvedRelation;
+ } else {
+ // the output of UnionAll is resolved by analyzer
+ return new UnionAll(source, mainQueryAndSubqueries, List.of());
+ }
+ }
+ }
+
+ private List visitSubqueriesInFromCommand(List ctxs) {
+ if (EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled() == false) {
+ return List.of();
+ }
+ if (ctxs == null) {
+ return List.of();
+ }
+ List subqueries = new ArrayList<>();
+ for (EsqlBaseParser.SubqueryContext ctx : ctxs) {
+ LogicalPlan plan = visitSubquery(ctx);
+ telemetryAccounting(plan);
+ subqueries.add(new Subquery(source(ctx), plan));
+ }
+ return subqueries;
+ }
+
+ @Override
+ public LogicalPlan visitSubquery(EsqlBaseParser.SubqueryContext ctx) {
+ // build a subquery tree
+ EsqlBaseParser.FromCommandContext fromCtx = ctx.fromCommand();
+ if (fromCtx != null) {
+ LogicalPlan from = visitFromCommand(fromCtx);
+ List processingCommands = visitList(this, ctx.subqueryProcessingCommand(), PlanFactory.class);
+ LogicalPlan child = from;
+ LogicalPlan parent = from;
+ for (PlanFactory processingCommand : processingCommands) {
+ parent = processingCommand.apply(child);
+ telemetryAccounting(child);
+ child = parent;
+ }
+ return parent;
+ } else { // We should not reach here as the grammar does not allow it
+ throw new ParsingException("FROM is required in a subquery");
+ }
}
@Override
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java
index 03c9957754b89..52da0691d336e 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java
@@ -22,6 +22,7 @@
import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.Sample;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
import org.elasticsearch.xpack.esql.plan.logical.TimeSeriesAggregate;
import org.elasticsearch.xpack.esql.plan.logical.TopN;
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
@@ -93,6 +94,7 @@ public static List logical() {
Project.ENTRY,
Rerank.ENTRY,
Sample.ENTRY,
+ Subquery.ENTRY,
TimeSeriesAggregate.ENTRY,
TopN.ENTRY
);
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Subquery.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Subquery.java
new file mode 100644
index 0000000000000..021665c42ce47
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Subquery.java
@@ -0,0 +1,93 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+package org.elasticsearch.xpack.esql.plan.logical;
+
+import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
+import org.elasticsearch.xpack.esql.core.expression.Attribute;
+import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Objects;
+
+public class Subquery extends UnaryPlan implements TelemetryAware, SortAgnostic {
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Subquery", Subquery::new);
+
+ // subquery alias/qualifier could be added in the future if needed
+
+ public Subquery(Source source, LogicalPlan subqueryPlan) {
+ super(source, subqueryPlan);
+ }
+
+ private Subquery(StreamInput in) throws IOException {
+ this(Source.readFrom((PlanStreamInput) in), in.readNamedWriteable(LogicalPlan.class));
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ Source.EMPTY.writeTo(out);
+ out.writeNamedWriteable(child());
+ }
+
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ protected NodeInfo info() {
+ return NodeInfo.create(this, Subquery::new, child());
+ }
+
+ @Override
+ public UnaryPlan replaceChild(LogicalPlan newChild) {
+ return new Subquery(source(), newChild);
+ }
+
+ @Override
+ public List output() {
+ return child().output();
+ }
+
+ @Override
+ public boolean expressionsResolved() {
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(child());
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (this == obj) {
+ return true;
+ }
+
+ if (obj == null || getClass() != obj.getClass()) {
+ return false;
+ }
+
+ Subquery other = (Subquery) obj;
+ return Objects.equals(child(), other.child());
+ }
+
+ @Override
+ public String nodeString() {
+ return nodeName() + "[]";
+ }
+
+ public LogicalPlan plan() {
+ return child();
+ }
+}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/UnionAll.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/UnionAll.java
new file mode 100644
index 0000000000000..b0cd4515337ff
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/UnionAll.java
@@ -0,0 +1,120 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+package org.elasticsearch.xpack.esql.plan.logical;
+
+import org.elasticsearch.xpack.esql.capabilities.PostOptimizationPlanVerificationAware;
+import org.elasticsearch.xpack.esql.common.Failure;
+import org.elasticsearch.xpack.esql.common.Failures;
+import org.elasticsearch.xpack.esql.core.expression.Attribute;
+import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.core.type.DataType;
+
+import java.util.List;
+import java.util.Map;
+import java.util.Objects;
+import java.util.function.BiConsumer;
+import java.util.stream.Collectors;
+
+public class UnionAll extends Fork implements PostOptimizationPlanVerificationAware {
+
+ public UnionAll(Source source, List children, List output) {
+ super(source, children, output);
+ }
+
+ @Override
+ public LogicalPlan replaceChildren(List newChildren) {
+ return new UnionAll(source(), newChildren, output());
+ }
+
+ @Override
+ protected NodeInfo extends LogicalPlan> info() {
+ return NodeInfo.create(this, UnionAll::new, children(), output());
+ }
+
+ @Override
+ public UnionAll replaceSubPlans(List subPlans) {
+ return new UnionAll(source(), subPlans, output());
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(UnionAll.class, children());
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ UnionAll other = (UnionAll) o;
+
+ return Objects.equals(children(), other.children());
+ }
+
+ @Override
+ public BiConsumer postAnalysisPlanVerification() {
+ return UnionAll::checkUnionAll;
+ }
+
+ private static void checkUnionAll(LogicalPlan plan, Failures failures) {
+ if (plan instanceof UnionAll == false) {
+ return;
+ }
+ UnionAll unionAll = (UnionAll) plan;
+
+ Map outputTypes = unionAll.output().stream().collect(Collectors.toMap(Attribute::name, Attribute::dataType));
+
+ unionAll.children().forEach(subPlan -> {
+ for (Attribute attr : subPlan.output()) {
+ var expected = outputTypes.get(attr.name());
+
+ // UnionAll with unsupported types should not be allowed, otherwise runtime couldn't handle it
+ // Verifier checkUnresolvedAttributes should have caught it already, this check is similar to Fork
+ if (expected == DataType.UNSUPPORTED) {
+ continue;
+ }
+
+ var actual = attr.dataType();
+ if (actual != expected) {
+ failures.add(
+ Failure.fail(
+ attr,
+ "Column [{}] has conflicting data types in subqueries: [{}] and [{}]",
+ attr.name(),
+ actual,
+ expected
+ )
+ );
+ }
+ }
+ });
+ }
+
+ @Override
+ public BiConsumer postOptimizationPlanVerification() {
+ return UnionAll::checkNestedUnionAlls;
+ }
+
+ /**
+ * Defer the check for nested UnionAlls until after logical planner as some of the nested subqueries can be flattened
+ * by logical planner in the future.
+ */
+ private static void checkNestedUnionAlls(LogicalPlan logicalPlan, Failures failures) {
+ if (logicalPlan instanceof UnionAll unionAll) {
+ unionAll.forEachDown(UnionAll.class, otherUnionAll -> {
+ if (unionAll == otherUnionAll) {
+ return;
+ }
+ failures.add(Failure.fail(otherUnionAll, "Nested subqueries are not supported"));
+ });
+ }
+ }
+}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java
index aabb18326fe11..181d556b60fb4 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java
@@ -23,6 +23,7 @@
import org.elasticsearch.xpack.esql.plan.logical.MvExpand;
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.Sample;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
import org.elasticsearch.xpack.esql.plan.logical.TimeSeriesAggregate;
import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval;
@@ -143,6 +144,11 @@ static PhysicalPlan mapUnary(UnaryPlan p, PhysicalPlan child) {
return new SampleExec(sample.source(), child, sample.probability());
}
+ if (p instanceof Subquery) {
+ // A Subquery node is just a placeholder for the subquery plan, so we just return the child plan
+ return child;
+ }
+
return unsupported(p);
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java
index 6455c5f423988..10bc74c737fb9 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java
@@ -459,10 +459,93 @@ public void analyzedPlan(
.andThen((l, r) -> {
inferenceService.inferenceResolver(functionRegistry).resolveInferenceIds(parsed, l.map(r::withInferenceResolution));
})
+ .andThen(
+ (l, r) -> preAnalyzeSubqueryIndices(preAnalysis, preAnalysis.subqueryIndices().iterator(), r, executionInfo, l)
+ )
.andThen((l, r) -> analyzeWithRetry(parsed, requestFilter, preAnalysis, executionInfo, r, l))
.addListener(logicalPlanListener);
}
+ private void preAnalyzeSubqueryIndices(
+ PreAnalyzer.PreAnalysis preAnalysis,
+ Iterator subqueryIndices,
+ PreAnalysisResult preAnalysisResult,
+ EsqlExecutionInfo executionInfo,
+ ActionListener listener
+ ) {
+ if (subqueryIndices.hasNext()) {
+ preAnalyzeSubqueryIndex(
+ preAnalysis,
+ subqueryIndices.next(),
+ preAnalysisResult,
+ executionInfo,
+ listener.delegateFailureAndWrap((l, r) -> {
+ preAnalyzeSubqueryIndices(preAnalysis, subqueryIndices, r, executionInfo, l);
+ })
+ );
+ } else {
+ listener.onResponse(preAnalysisResult);
+ }
+ }
+
+ private void preAnalyzeSubqueryIndex(
+ PreAnalyzer.PreAnalysis preAnalysis,
+ IndexPattern subqueryIndexPattern,
+ PreAnalysisResult result,
+ EsqlExecutionInfo executionInfo,
+ ActionListener listener
+ ) {
+ assert ThreadPool.assertCurrentThreadPool(
+ ThreadPool.Names.SEARCH,
+ ThreadPool.Names.SEARCH_COORDINATION,
+ ThreadPool.Names.SYSTEM_READ
+ );
+ if (subqueryIndexPattern != null) {
+ /*
+ * TODO subqueries with remote clusters need to be tested.
+ * Subquery index pattern can contain remote clusters, which need to be
+ * resolved against the available clusters. The input executionInfo is built for
+ * the main index pattern, not for subqueries. Create an index pattern with
+ * remote clusters for subquery's index pattern, make a copy of the main
+ * EsqlExecutionInfo for this subquery, and reuse the existing API to build
+ * the subqueryIndexExpression.
+ */
+ String indexExpressionToResolve = subqueryIndexExpression(executionInfo, subqueryIndexPattern);
+ if (indexExpressionToResolve.isEmpty()) {
+ listener.onResponse(
+ result.addSubqueryIndexResolution(subqueryIndexPattern.indexPattern(), IndexResolution.invalid("[none available]"))
+ );
+ return;
+ }
+ // time-series index is not supported in subqueries yet, the grammar does not allow it
+ indexResolver.resolveAsMergedMapping(
+ indexExpressionToResolve,
+ result.fieldNames,
+ null,
+ false,
+ false,
+ preAnalysis.supportsDenseVector(),
+ listener.delegateFailure((l, indexResolution) -> {
+ l.onResponse(result.addSubqueryIndexResolution(subqueryIndexPattern.indexPattern(), indexResolution));
+ })
+ );
+ } else {
+ // occurs when dealing with local relations (row a = 1)
+ listener.onResponse(result.withIndices(IndexResolution.invalid("[none specified]")));
+ }
+ }
+
+ private String subqueryIndexExpression(EsqlExecutionInfo mainExecutionInfo, IndexPattern subqueryIndexPattern) {
+ // Clone mainInfo (assuming a copy constructor or similar method exists)
+ EsqlExecutionInfo subqueryExecutionInfo = new EsqlExecutionInfo(
+ mainExecutionInfo.skipOnFailurePredicate(),
+ mainExecutionInfo.includeCCSMetadata()
+ );
+ EsqlCCSUtils.initCrossClusterState(indicesExpressionGrouper, verifier.licenseState(), subqueryIndexPattern, subqueryExecutionInfo);
+
+ return EsqlCCSUtils.createIndexExpressionFromAvailableClusters(subqueryExecutionInfo);
+ }
+
private void preAnalyzeLookupIndices(
Iterator lookupIndices,
PreAnalysisResult preAnalysisResult,
@@ -797,7 +880,15 @@ private PhysicalPlan logicalPlanToPhysicalPlan(LogicalPlan optimizedPlan, EsqlQu
private LogicalPlan analyzedPlan(LogicalPlan parsed, PreAnalysisResult r, EsqlExecutionInfo executionInfo) throws Exception {
handleFieldCapsFailures(configuration.allowPartialResults(), executionInfo, r.indices.failures());
Analyzer analyzer = new Analyzer(
- new AnalyzerContext(configuration, functionRegistry, r.indices, r.lookupIndices, r.enrichResolution, r.inferenceResolution),
+ new AnalyzerContext(
+ configuration,
+ functionRegistry,
+ r.indices,
+ r.lookupIndices,
+ r.enrichResolution,
+ r.inferenceResolution,
+ r.subqueryIndices
+ ),
verifier
);
LogicalPlan plan = analyzer.analyze(parsed);
@@ -840,15 +931,24 @@ public record PreAnalysisResult(
IndexResolution indices,
Map lookupIndices,
EnrichResolution enrichResolution,
- InferenceResolution inferenceResolution
+ InferenceResolution inferenceResolution,
+ Map subqueryIndices
) {
public PreAnalysisResult(Set fieldNames, Set wildcardJoinIndices) {
- this(fieldNames, wildcardJoinIndices, null, new HashMap<>(), null, InferenceResolution.EMPTY);
+ this(fieldNames, wildcardJoinIndices, null, new HashMap<>(), null, InferenceResolution.EMPTY, new HashMap<>());
}
PreAnalysisResult withIndices(IndexResolution indices) {
- return new PreAnalysisResult(fieldNames, wildcardJoinIndices, indices, lookupIndices, enrichResolution, inferenceResolution);
+ return new PreAnalysisResult(
+ fieldNames,
+ wildcardJoinIndices,
+ indices,
+ lookupIndices,
+ enrichResolution,
+ inferenceResolution,
+ subqueryIndices
+ );
}
PreAnalysisResult addLookupIndexResolution(String index, IndexResolution indexResolution) {
@@ -857,11 +957,32 @@ PreAnalysisResult addLookupIndexResolution(String index, IndexResolution indexRe
}
PreAnalysisResult withEnrichResolution(EnrichResolution enrichResolution) {
- return new PreAnalysisResult(fieldNames, wildcardJoinIndices, indices, lookupIndices, enrichResolution, inferenceResolution);
+ return new PreAnalysisResult(
+ fieldNames,
+ wildcardJoinIndices,
+ indices,
+ lookupIndices,
+ enrichResolution,
+ inferenceResolution,
+ subqueryIndices
+ );
}
PreAnalysisResult withInferenceResolution(InferenceResolution inferenceResolution) {
- return new PreAnalysisResult(fieldNames, wildcardJoinIndices, indices, lookupIndices, enrichResolution, inferenceResolution);
+ return new PreAnalysisResult(
+ fieldNames,
+ wildcardJoinIndices,
+ indices,
+ lookupIndices,
+ enrichResolution,
+ inferenceResolution,
+ subqueryIndices
+ );
+ }
+
+ PreAnalysisResult addSubqueryIndexResolution(String index, IndexResolution newIndexResolution) {
+ subqueryIndices.put(index, newIndexResolution);
+ return this;
}
}
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java
index 34dabe3d03782..125a104aee0c9 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java
@@ -32,6 +32,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Rename;
import org.elasticsearch.xpack.esql.plan.logical.Row;
import org.elasticsearch.xpack.esql.plan.logical.Sample;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse;
import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval;
@@ -75,7 +76,8 @@ public enum FeatureMetric {
FORK(Fork.class::isInstance),
FUSE(Fuse.class::isInstance),
COMPLETION(Completion.class::isInstance),
- SAMPLE(Sample.class::isInstance);
+ SAMPLE(Sample.class::isInstance),
+ SUBQUERY(Subquery.class::isInstance);
/**
* List here plans we want to exclude from telemetry
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java
index 56b97759db83c..bee4c7706cf9f 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java
@@ -340,6 +340,10 @@ public final void test() throws Throwable {
"CSV tests cannot currently handle multi_match function that depends on Lucene",
testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.MULTI_MATCH_FUNCTION.capabilityName())
);
+ assumeFalse(
+ "CSV tests cannot currently handle subqueries",
+ testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.capabilityName())
+ );
if (Build.current().isSnapshot()) {
assertThat(
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java
index 6f6c76efaf08e..9bf5bc7390991 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java
@@ -93,7 +93,8 @@ public static Analyzer analyzer(
indexResolution,
lookupResolution,
enrichResolution,
- defaultInferenceResolution()
+ defaultInferenceResolution(),
+ defaultSubqueryResolution()
),
verifier
);
@@ -222,6 +223,17 @@ public static InferenceResolution defaultInferenceResolution() {
.build();
}
+ public static Map defaultSubqueryResolution() {
+ return Map.of(
+ "languages",
+ loadMapping("mapping-languages.json", "languages"),
+ "sample_data",
+ loadMapping("mapping-sample_data.json", "sample_data"),
+ "test_mixed_types",
+ loadMapping("mapping-default-incompatible.json", "test_mixed_types")
+ );
+ }
+
public static String randomInferenceId() {
return ESTestCase.randomFrom(VALID_INFERENCE_IDS);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
index 096b2a1f5c3fe..3bd855cdd91ce 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
@@ -44,6 +44,7 @@
import org.elasticsearch.xpack.esql.core.type.MultiTypeEsField;
import org.elasticsearch.xpack.esql.core.type.PotentiallyUnmappedKeywordEsField;
import org.elasticsearch.xpack.esql.enrich.ResolvedEnrichPolicy;
+import org.elasticsearch.xpack.esql.expression.Order;
import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry;
import org.elasticsearch.xpack.esql.expression.function.UnsupportedAttribute;
import org.elasticsearch.xpack.esql.expression.function.aggregate.Count;
@@ -87,13 +88,17 @@
import org.elasticsearch.xpack.esql.plan.logical.Limit;
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
import org.elasticsearch.xpack.esql.plan.logical.Lookup;
+import org.elasticsearch.xpack.esql.plan.logical.MvExpand;
import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.Row;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
+import org.elasticsearch.xpack.esql.plan.logical.UnionAll;
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval;
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
+import org.elasticsearch.xpack.esql.plan.logical.join.LookupJoin;
import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject;
import org.elasticsearch.xpack.esql.plugin.EsqlPlugin;
import org.elasticsearch.xpack.esql.session.IndexResolver;
@@ -141,6 +146,7 @@
import static org.elasticsearch.xpack.esql.core.type.DataType.DATE_PERIOD;
import static org.elasticsearch.xpack.esql.core.type.DataType.DENSE_VECTOR;
import static org.elasticsearch.xpack.esql.core.type.DataType.DOUBLE;
+import static org.elasticsearch.xpack.esql.core.type.DataType.INTEGER;
import static org.elasticsearch.xpack.esql.core.type.DataType.KEYWORD;
import static org.elasticsearch.xpack.esql.core.type.DataType.LONG;
import static org.elasticsearch.xpack.esql.core.type.DataType.UNSUPPORTED;
@@ -264,7 +270,7 @@ public void testRowAttributeResolution() {
var plan = analyzer.analyze(
new Eval(
EMPTY,
- new Row(EMPTY, List.of(new Alias(EMPTY, "emp_no", new Literal(EMPTY, 1, DataType.INTEGER)))),
+ new Row(EMPTY, List.of(new Alias(EMPTY, "emp_no", new Literal(EMPTY, 1, INTEGER)))),
List.of(new Alias(EMPTY, "e", new UnresolvedAttribute(EMPTY, "emp_no")))
)
);
@@ -272,7 +278,7 @@ public void testRowAttributeResolution() {
var limit = as(plan, Limit.class);
var eval = as(limit.child(), Eval.class);
assertEquals(1, eval.fields().size());
- assertEquals(new Alias(EMPTY, "e", new ReferenceAttribute(EMPTY, "emp_no", DataType.INTEGER)), eval.fields().get(0));
+ assertEquals(new Alias(EMPTY, "e", new ReferenceAttribute(EMPTY, "emp_no", INTEGER)), eval.fields().get(0));
assertEquals(2, eval.output().size());
Attribute empNo = eval.output().get(0);
@@ -403,16 +409,16 @@ public void testNoProjection() {
from test
""",
DataType.KEYWORD,
- DataType.INTEGER,
+ INTEGER,
DataType.KEYWORD,
DataType.TEXT,
DATETIME,
DataType.TEXT,
DataType.KEYWORD,
- DataType.INTEGER,
+ INTEGER,
DataType.KEYWORD,
DataType.LONG,
- DataType.INTEGER
+ INTEGER
);
}
@@ -1917,7 +1923,7 @@ public void testUnresolvedMvExpand() {
public void testRegularStats() {
var plan = analyze("""
- from tests
+ from test
| stats by salary
""");
@@ -2637,7 +2643,7 @@ private void validateConditionalFunctions(LogicalPlan plan) {
assertEquals(projection.dataType(), DataType.DOUBLE);
projection = as(projections.get(1), ReferenceAttribute.class);
assertEquals(projection.name(), "y");
- assertEquals(projection.dataType(), DataType.INTEGER);
+ assertEquals(projection.dataType(), INTEGER);
projection = as(projections.get(2), ReferenceAttribute.class);
assertEquals(projection.name(), "z");
assertEquals(projection.dataType(), DataType.LONG);
@@ -3113,7 +3119,7 @@ public void testResolveInsist_fieldExists_insistedOutputContainsNoUnmappedFields
Attribute last = plan.output().getLast();
assertThat(last.name(), is("emp_no"));
- assertThat(last.dataType(), is(DataType.INTEGER));
+ assertThat(last.dataType(), is(INTEGER));
assertThat(
plan.output()
.stream()
@@ -4608,6 +4614,381 @@ public void testTBucketWithDatePeriodInBothAggregationAndGrouping() {
assertEquals(oneWeek, literal);
}
+ public void testSubqueryInFrom() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ LogicalPlan plan = analyze("""
+ FROM test, (FROM languages | WHERE language_code > 1)
+ | WHERE emp_no > 10000
+ | SORT emp_no, language_code
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ List order = orderBy.order();
+ assertEquals(2, order.size());
+ ReferenceAttribute empNo = as(order.get(0).child(), ReferenceAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ ReferenceAttribute languageCode = as(order.get(1).child(), ReferenceAttribute.class);
+ assertEquals("language_code", languageCode.name());
+ Filter filter = as(orderBy.child(), Filter.class);
+ GreaterThan greaterThan = as(filter.condition(), GreaterThan.class);
+ empNo = as(greaterThan.left(), ReferenceAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ Literal literal = as(greaterThan.right(), Literal.class);
+ assertEquals(10000, literal.value());
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+ // leg1
+ Limit subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ Literal limitLiteral = as(subqueryLimit.limit(), Literal.class);
+ assertEquals(1000, limitLiteral.value());
+ EsqlProject subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ List extends NamedExpression> projections = subqueryProject.projections();
+ assertEquals(13, projections.size()); // all fields from the two indices
+ Eval subqueryEval = as(subqueryProject.child(), Eval.class);
+ List aliases = subqueryEval.fields(); // nullEvals from languages index
+ assertEquals(2, aliases.size());
+ assertEquals("language_code", aliases.get(0).name());
+ Literal nullLiteral = as(aliases.get(0).child(), Literal.class);
+ assertNull(nullLiteral.value());
+ assertEquals(INTEGER, nullLiteral.dataType());
+ assertEquals("language_name", aliases.get(1).name());
+ nullLiteral = as(aliases.get(1).child(), Literal.class);
+ assertNull(nullLiteral.value());
+ assertEquals(KEYWORD, nullLiteral.dataType());
+ EsRelation subqueryIndex = as(subqueryEval.child(), EsRelation.class);
+ assertEquals("test", subqueryIndex.indexPattern());
+ // leg2
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ limitLiteral = as(subqueryLimit.limit(), Literal.class);
+ assertEquals(1000, limitLiteral.value());
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ projections = subqueryProject.projections();
+ assertEquals(13, projections.size()); // all fields from the two indices
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ aliases = subqueryEval.fields(); // nullEvals from test index
+ assertEquals(11, aliases.size());
+ Subquery subquery = as(subqueryEval.child(), Subquery.class);
+ Filter subqueryFilter = as(subquery.child(), Filter.class);
+ subqueryIndex = as(subqueryFilter.child(), EsRelation.class);
+ assertEquals("languages", subqueryIndex.indexPattern());
+ }
+
+ public void testMultipleSubqueriesInFrom() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ LogicalPlan plan = analyze("""
+ FROM test
+ , (FROM languages | WHERE language_code > 10 | RENAME language_name as languageName)
+ , (FROM sample_data | STATS max(@timestamp))
+ , (FROM test | EVAL language_code = languages | LOOKUP JOIN languages_lookup ON language_code)
+ | WHERE emp_no > 10000
+ | STATS count(*) by emp_no, language_code
+ | RENAME emp_no AS empNo, language_code AS languageCode
+ | MV_EXPAND languageCode
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ MvExpand mvExpand = as(limit.child(), MvExpand.class);
+ NamedExpression mvExpandTarget = as(mvExpand.target(), NamedExpression.class);
+ assertEquals("languageCode", mvExpandTarget.name());
+ ReferenceAttribute mvExpandExpanded = as(mvExpand.expanded(), ReferenceAttribute.class);
+ assertEquals("languageCode", mvExpandExpanded.name());
+ EsqlProject rename = as(mvExpand.child(), EsqlProject.class);
+ List extends NamedExpression> projections = rename.projections();
+ assertEquals(3, projections.size());
+ Alias a = as(projections.get(1), Alias.class);
+ assertEquals("empNo", a.name());
+ ReferenceAttribute ra = as(a.child(), ReferenceAttribute.class);
+ assertEquals("emp_no", ra.name());
+ a = as(projections.get(2), Alias.class);
+ assertEquals("languageCode", a.name());
+ ra = as(a.child(), ReferenceAttribute.class);
+ assertEquals("language_code", ra.name());
+ Aggregate aggregate = as(rename.child(), Aggregate.class);
+ List extends NamedExpression> aggregates = aggregate.aggregates();
+ assertEquals(3, aggregates.size());
+ a = as(aggregates.get(0), Alias.class);
+ assertEquals("count(*)", a.name());
+ List groupings = aggregate.groupings();
+ assertEquals(2, groupings.size());
+ ra = as(groupings.get(0), ReferenceAttribute.class);
+ assertEquals("emp_no", ra.name());
+ ra = as(groupings.get(1), ReferenceAttribute.class);
+ assertEquals("language_code", ra.name());
+ Filter filter = as(aggregate.child(), Filter.class);
+ GreaterThan greaterThan = as(filter.condition(), GreaterThan.class);
+ ReferenceAttribute empNo = as(greaterThan.left(), ReferenceAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ Literal literal = as(greaterThan.right(), Literal.class);
+ assertEquals(10000, literal.value());
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ assertEquals(4, unionAll.children().size());
+ // leg1
+ Limit subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ Literal limitLiteral = as(subqueryLimit.limit(), Literal.class);
+ assertEquals(1000, limitLiteral.value());
+ EsqlProject subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ projections = subqueryProject.projections();
+ assertEquals(15, projections.size()); // all fields from the other legs
+ Eval subqueryEval = as(subqueryProject.child(), Eval.class);
+ List aliases = subqueryEval.fields(); // nullEvals from the other legs
+ assertEquals(4, aliases.size());
+ EsRelation subqueryIndex = as(subqueryEval.child(), EsRelation.class);
+ assertEquals("test", subqueryIndex.indexPattern());
+ // leg2
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ projections = subqueryProject.projections();
+ assertEquals(15, projections.size()); // all fields from the other legs
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ aliases = subqueryEval.fields(); // nullEvals from the other legs
+ assertEquals(13, aliases.size());
+ Subquery subquery = as(subqueryEval.child(), Subquery.class);
+ rename = as(subquery.child(), EsqlProject.class);
+ List extends NamedExpression> renameProjections = rename.projections();
+ assertEquals(2, renameProjections.size());
+ FieldAttribute language_code = as(renameProjections.get(0), FieldAttribute.class);
+ assertEquals("language_code", language_code.name());
+ a = as(renameProjections.get(1), Alias.class);
+ assertEquals("languageName", a.name());
+ FieldAttribute language_name = as(a.child(), FieldAttribute.class);
+ assertEquals("language_name", language_name.name());
+ Filter subqueryFilter = as(rename.child(), Filter.class);
+ greaterThan = as(subqueryFilter.condition(), GreaterThan.class);
+ language_code = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("language_code", language_code.name());
+ literal = as(greaterThan.right(), Literal.class);
+ assertEquals(10, literal.value());
+ subqueryIndex = as(subqueryFilter.child(), EsRelation.class);
+ assertEquals("languages", subqueryIndex.indexPattern());
+ // leg3
+ subqueryLimit = as(unionAll.children().get(2), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ projections = subqueryProject.projections();
+ assertEquals(15, projections.size()); // all fields from the other legs
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ aliases = subqueryEval.fields(); // nullEvals from the other legs
+ assertEquals(14, aliases.size());
+ subquery = as(subqueryEval.child(), Subquery.class);
+ Aggregate subqueryAggregate = as(subquery.child(), Aggregate.class);
+ subqueryIndex = as(subqueryAggregate.child(), EsRelation.class);
+ assertEquals("sample_data", subqueryIndex.indexPattern());
+ // leg4
+ subqueryLimit = as(unionAll.children().get(3), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ projections = subqueryProject.projections();
+ assertEquals(15, projections.size()); // all fields from the other legs
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ aliases = subqueryEval.fields(); // nullEvals from the other legs
+ assertEquals(2, aliases.size());
+ subquery = as(subqueryEval.child(), Subquery.class);
+ LookupJoin lookupJoin = as(subquery.child(), LookupJoin.class);
+ subqueryIndex = as(lookupJoin.right(), EsRelation.class);
+ assertEquals("languages_lookup", subqueryIndex.indexPattern());
+ subqueryEval = as(lookupJoin.left(), Eval.class);
+ subqueryIndex = as(subqueryEval.child(), EsRelation.class);
+ assertEquals("test", subqueryIndex.indexPattern());
+ }
+
+ /**
+ * Nested fork/subquery is not supported, it passes Analyzer, but the query will
+ * fail in logical planner verifier. We may add a rule in logical planner to flatten nested
+ * subqueries in the future, so leave the check of nested subqueries after logical planner.
+ */
+ public void testNestedSubqueryInFrom() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ LogicalPlan plan = analyze("""
+ FROM test, (FROM languages, (FROM sample_data | STATS count(*)) | WHERE language_code > 10)
+ | WHERE emp_no > 10000
+ | SORT emp_no, language_code
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Filter filter = as(orderBy.child(), Filter.class);
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+ // leg1
+ Limit subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ EsqlProject subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ Eval subqueryEval = as(subqueryProject.child(), Eval.class);
+ EsRelation subqueryIndex = as(subqueryEval.child(), EsRelation.class);
+ assertEquals("test", subqueryIndex.indexPattern());
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ Subquery subquery = as(subqueryEval.child(), Subquery.class);
+ Filter subqueryFilter = as(subquery.child(), Filter.class);
+ unionAll = as(subqueryFilter.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+ // leg2
+ subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ subqueryIndex = as(subqueryEval.child(), EsRelation.class);
+ assertEquals("languages", subqueryIndex.indexPattern());
+ // leg3
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ subquery = as(subqueryEval.child(), Subquery.class);
+ Aggregate subqueryAggregate = as(subquery.child(), Aggregate.class);
+ subqueryIndex = as(subqueryAggregate.child(), EsRelation.class);
+ assertEquals("sample_data", subqueryIndex.indexPattern());
+ }
+
+ // nested fork/subquery is not supported, it passes Analyzer and the query will fail in logical planner verifier
+ public void testNestedSubqueryInFromWithMetadata() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ LogicalPlan plan = analyze("""
+ FROM test, (FROM languages, (FROM sample_data | STATS count(*)) | WHERE language_code > 10) metadata _index
+ | WHERE emp_no > 10000
+ | SORT emp_no, language_code
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Filter filter = as(orderBy.child(), Filter.class);
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+ // leg1
+ Limit subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ EsqlProject subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ Eval subqueryEval = as(subqueryProject.child(), Eval.class);
+ EsRelation subqueryIndex = as(subqueryEval.child(), EsRelation.class);
+ assertEquals("test", subqueryIndex.indexPattern());
+ List output = subqueryIndex.output();
+ assertEquals(12, output.size());
+ MetadataAttribute metadataAttribute = as(output.get(11), MetadataAttribute.class);
+ assertEquals("_index", metadataAttribute.name());
+
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ Subquery subquery = as(subqueryEval.child(), Subquery.class);
+ Filter subqueryFilter = as(subquery.child(), Filter.class);
+ unionAll = as(subqueryFilter.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+ // leg2
+ subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ subqueryIndex = as(subqueryEval.child(), EsRelation.class);
+ assertEquals("languages", subqueryIndex.indexPattern());
+ output = subqueryIndex.output();
+ assertEquals(2, output.size());
+ // leg3
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ subqueryEval = as(subqueryProject.child(), Eval.class);
+ subquery = as(subqueryEval.child(), Subquery.class);
+ Aggregate subqueryAggregate = as(subquery.child(), Aggregate.class);
+ subqueryIndex = as(subqueryAggregate.child(), EsRelation.class);
+ assertEquals("sample_data", subqueryIndex.indexPattern());
+ output = subqueryIndex.output();
+ assertEquals(4, output.size());
+ }
+
+ /**
+ * When there are mixed date types between the main query and the subquery,
+ * the fields/references are casted to the common types in the UnionAll legs, otherwise
+ * FORK's postAnalysisPlanVerification will fail.
+ */
+ public void testMixedDataTypesInSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ LogicalPlan plan = analyze("""
+ FROM test, (FROM test_mixed_types | WHERE languages > 0)
+ | WHERE emp_no > 10000
+ | SORT emp_no
+ """, "mapping-default.json");
+
+ Limit limit = as(plan, Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Filter filter = as(orderBy.child(), Filter.class);
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ List output = unionAll.output();
+ // all fields from the two indices
+ assertEquals(25, output.size());
+ assertEquals(2, unionAll.children().size());
+ // leg1
+ Limit subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ EsqlProject subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ Eval castingEval = as(subqueryProject.child(), Eval.class);
+ Eval nullEval = as(castingEval.child(), Eval.class);
+ EsRelation subqueryIndex = as(nullEval.child(), EsRelation.class);
+ assertEquals("test", subqueryIndex.indexPattern());
+ // leg2
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ castingEval = as(subqueryProject.child(), Eval.class);
+ nullEval = as(castingEval.child(), Eval.class);
+ Subquery subquery = as(nullEval.child(), Subquery.class);
+ Filter subqueryFilter = as(subquery.child(), Filter.class);
+ GreaterThan greaterThan = as(subqueryFilter.condition(), GreaterThan.class);
+ FieldAttribute fa = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", fa.name());
+ assertEquals(INTEGER, fa.dataType());
+ Literal literal = as(greaterThan.right(), Literal.class);
+ assertEquals(0, literal.value());
+ assertEquals(INTEGER, literal.dataType());
+ subqueryIndex = as(subqueryFilter.child(), EsRelation.class);
+ assertEquals("test_mixed_types", subqueryIndex.indexPattern());
+ }
+
+ public void testMixedDataTypesWithExplicitCastingInSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ LogicalPlan plan = analyze("""
+ FROM test, (FROM test_mixed_types | WHERE languages > 0)
+ | WHERE emp_no > 10000
+ | EVAL still_hired = still_hired::string, is_rehired = is_rehired::string
+ | SORT still_hired, is_rehired
+ """, "mapping-default.json");
+
+ Limit limit = as(plan, Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Eval eval = as(orderBy.child(), Eval.class);
+ List aliases = eval.fields();
+ assertEquals(2, aliases.size());
+ Alias a = aliases.get(0);
+ assertEquals("still_hired", a.name());
+ ReferenceAttribute still_hired = as(a.child(), ReferenceAttribute.class);
+ assertEquals("still_hired", still_hired.name());
+ a = aliases.get(1);
+ assertEquals("is_rehired", a.name());
+ ReferenceAttribute is_rehired = as(a.child(), ReferenceAttribute.class);
+ assertEquals("is_rehired", is_rehired.name());
+ Filter filter = as(eval.child(), Filter.class);
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ List output = unionAll.output();
+ // all fields from the two indices
+ assertEquals(25, output.size());
+ assertEquals(2, unionAll.children().size());
+ // leg1
+ Limit subqueryLimit = as(unionAll.children().get(0), Limit.class);
+ EsqlProject subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ Eval castingEval = as(subqueryProject.child(), Eval.class);
+ Eval nullEval = as(castingEval.child(), Eval.class);
+ nullEval = as(nullEval.child(), Eval.class);
+ EsRelation subqueryIndex = as(nullEval.child(), EsRelation.class);
+ assertEquals("test", subqueryIndex.indexPattern());
+ // leg2
+ subqueryLimit = as(unionAll.children().get(1), Limit.class);
+ subqueryProject = as(subqueryLimit.child(), EsqlProject.class);
+ castingEval = as(subqueryProject.child(), Eval.class);
+ nullEval = as(castingEval.child(), Eval.class);
+ Subquery subquery = as(nullEval.child(), Subquery.class);
+ Filter subqueryFilter = as(subquery.child(), Filter.class);
+ GreaterThan greaterThan = as(subqueryFilter.condition(), GreaterThan.class);
+ FieldAttribute fa = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", fa.name());
+ assertEquals(INTEGER, fa.dataType());
+ Literal literal = as(greaterThan.right(), Literal.class);
+ assertEquals(0, literal.value());
+ assertEquals(INTEGER, literal.dataType());
+ subqueryIndex = as(subqueryFilter.child(), EsRelation.class);
+ assertEquals("test_mixed_types", subqueryIndex.indexPattern());
+ }
+
private void verifyNameAndType(String actualName, DataType actualType, String expectedName, DataType expectedType) {
assertEquals(expectedName, actualName);
assertEquals(expectedType, actualType);
@@ -4702,6 +5083,6 @@ static Literal string(String value) {
}
static Literal literal(int value) {
- return new Literal(EMPTY, value, DataType.INTEGER);
+ return new Literal(EMPTY, value, INTEGER);
}
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/VerifierTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/VerifierTests.java
index 15198ff179f3e..e5ee04f187bdb 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/VerifierTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/VerifierTests.java
@@ -2766,6 +2766,24 @@ public void testTextEmbeddingFunctionInvalidInferenceId() {
);
}
+ /**
+ * If there is no common data type for a field in a subquery and the main query, {@code VerificationException} is thrown.
+ */
+ public void testMixedDataTypesInSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ assertThat(
+ error("""
+ FROM test, (FROM test_mixed_types | WHERE languages > 0)
+ | WHERE emp_no > 10000
+ | SORT is_rehired, still_hired
+ """),
+ equalTo(
+ "1:1: Column [is_rehired] has conflicting data types in subqueries: [boolean, keyword]\n"
+ + "line 1:1: Column [still_hired] has conflicting data types in subqueries: [boolean, keyword]"
+ )
+ );
+ }
+
private void checkVectorFunctionsNullArgs(String functionInvocation) throws Exception {
query("from test | eval similarity = " + functionInvocation, fullTextAnalyzer);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/AbstractLogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/AbstractLogicalPlanOptimizerTests.java
index 35c75d99ab925..178033e480c73 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/AbstractLogicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/AbstractLogicalPlanOptimizerTests.java
@@ -53,6 +53,7 @@ public abstract class AbstractLogicalPlanOptimizerTests extends ESTestCase {
protected static Analyzer metricsAnalyzer;
protected static Analyzer multiIndexAnalyzer;
protected static Analyzer sampleDataIndexAnalyzer;
+ protected static Analyzer subqueryAnalyzer;
protected static EnrichResolution enrichResolution;
@@ -190,6 +191,25 @@ public static void init() {
),
TEST_VERIFIER
);
+
+ EsIndex test1 = new EsIndex("test1", mapping, Map.of("test1", IndexMode.STANDARD));
+ IndexResolution subqueryIndex1 = IndexResolution.valid(test1);
+ var mappingLanguages = loadMapping("mapping-languages.json");
+ EsIndex languages = new EsIndex("languages", mappingLanguages, Map.of("languages", IndexMode.STANDARD));
+ IndexResolution subqueryIndex2 = IndexResolution.valid(languages);
+
+ subqueryAnalyzer = new Analyzer(
+ new AnalyzerContext(
+ EsqlTestUtils.TEST_CFG,
+ new EsqlFunctionRegistry(),
+ getIndexResult,
+ defaultLookupResolution(),
+ enrichResolution,
+ emptyInferenceResolution(),
+ Map.of("test1", subqueryIndex1, "languages", subqueryIndex2)
+ ),
+ TEST_VERIFIER
+ );
}
protected LogicalPlan optimizedPlan(String query) {
@@ -237,6 +257,11 @@ protected LogicalPlan planSample(String query) {
return logicalOptimizer.optimize(analyzed);
}
+ protected LogicalPlan planSubquery(String query) {
+ var analyzed = subqueryAnalyzer.analyze(parser.createStatement(query, EsqlTestUtils.TEST_CFG));
+ return logicalOptimizer.optimize(analyzed);
+ }
+
@Override
protected List filteredWarnings() {
return withDefaultLimitWarning(super.filteredWarnings());
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java
index e1797d6c2c16a..ca314951f3c84 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java
@@ -77,6 +77,7 @@
import static org.hamcrest.Matchers.is;
import static org.mockito.Mockito.mock;
+//@TestLogging(value = "org.elasticsearch.xpack.esql:TRACE", reason = "debug")
public class PushDownAndCombineFiltersTests extends AbstractLogicalPlanOptimizerTests {
private final LogicalOptimizerContext optimizerContext = new LogicalOptimizerContext(null, FoldContext.small());
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownFilterAndLimitIntoUnionAllTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownFilterAndLimitIntoUnionAllTests.java
new file mode 100644
index 0000000000000..6ddbcc4587b49
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownFilterAndLimitIntoUnionAllTests.java
@@ -0,0 +1,662 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.optimizer.rules.logical;
+
+import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
+import org.elasticsearch.xpack.esql.core.expression.Alias;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.expression.FieldAttribute;
+import org.elasticsearch.xpack.esql.core.expression.Literal;
+import org.elasticsearch.xpack.esql.core.expression.NamedExpression;
+import org.elasticsearch.xpack.esql.core.expression.ReferenceAttribute;
+import org.elasticsearch.xpack.esql.expression.predicate.logical.And;
+import org.elasticsearch.xpack.esql.expression.predicate.logical.Or;
+import org.elasticsearch.xpack.esql.expression.predicate.nulls.IsNotNull;
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.GreaterThan;
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.LessThan;
+import org.elasticsearch.xpack.esql.optimizer.AbstractLogicalPlanOptimizerTests;
+import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
+import org.elasticsearch.xpack.esql.plan.logical.EsRelation;
+import org.elasticsearch.xpack.esql.plan.logical.Eval;
+import org.elasticsearch.xpack.esql.plan.logical.Filter;
+import org.elasticsearch.xpack.esql.plan.logical.Limit;
+import org.elasticsearch.xpack.esql.plan.logical.Project;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
+import org.elasticsearch.xpack.esql.plan.logical.TopN;
+import org.elasticsearch.xpack.esql.plan.logical.UnionAll;
+import org.elasticsearch.xpack.esql.plan.logical.join.Join;
+import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject;
+import org.elasticsearch.xpack.esql.plan.logical.local.LocalRelation;
+
+import java.util.List;
+
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.as;
+
+//@TestLogging(value = "org.elasticsearch.xpack.esql:TRACE", reason = "debug")
+public class PushDownFilterAndLimitIntoUnionAllTests extends AbstractLogicalPlanOptimizerTests {
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_UnionAll[[_meta_field{r}#44, emp_no{r}#45, first_name{r}#46, gender{r}#47, hire_date{r}#48, job{r}#49, job.raw{r}#50, l
+ * anguages{r}#51, last_name{r}#52, long_noidx{r}#53, salary{r}#54, language_code{r}#55, language_name{r}#56]]
+ * |_EsqlProject[[_meta_field{f}#11, emp_no{f}#5, first_name{f}#6, gender{f}#7, hire_date{f}#12, job{f}#13, job.raw{f}#14, lang
+ * uages{f}#8, last_name{f}#9, long_noidx{f}#15, salary{f}#10, language_code{r}#29, language_name{r}#30]]
+ * | \_Eval[[null[INTEGER] AS language_code#29, null[KEYWORD] AS language_name#30]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[emp_no{f}#5 > 10000[INTEGER]]
+ * | \_EsRelation[test][_meta_field{f}#11, emp_no{f}#5, first_name{f}#6, ge..]
+ * |_EsqlProject[[_meta_field{f}#22, emp_no{f}#16, first_name{f}#17, gender{f}#18, hire_date{f}#23, job{f}#24, job.raw{f}#25, l
+ * anguages{f}#19, last_name{f}#20, long_noidx{f}#26, salary{f}#21, language_code{r}#31, language_name{r}#32]]
+ * | \_Eval[[null[INTEGER] AS language_code#31, null[KEYWORD] AS language_name#32]]
+ * | \_Subquery[]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[languages{f}#19 > 0[INTEGER] AND emp_no{f}#16 > 10000[INTEGER]]
+ * | \_EsRelation[test1][_meta_field{f}#22, emp_no{f}#16, first_name{f}#17, ..]
+ * \_LocalRelation[[_meta_field{r}#33, emp_no{r}#34, first_name{r}#35, gender{r}#36, hire_date{r}#37, job{r}#38, job.raw{r}#39, l
+ * anguages{r}#40, last_name{r}#41, long_noidx{r}#42, salary{r}#43, language_code{f}#27, language_name{f}#28],EMPT
+ * Y]
+ */
+ public void testPushDownSimpleFilterPastUnionAll() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test, (FROM test1 | WHERE languages > 0), (FROM languages | WHERE language_code > 0)
+ | WHERE emp_no > 10000
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(3, unionAll.children().size());
+
+ EsqlProject child1 = as(unionAll.children().get(0), EsqlProject.class);
+ Eval eval = as(child1.child(), Eval.class);
+ Limit childLimit = as(eval.child(), Limit.class);
+ Filter childFilter = as(childLimit.child(), Filter.class);
+ GreaterThan greaterThan = as(childFilter.condition(), GreaterThan.class);
+ FieldAttribute empNo = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ Literal right = as(greaterThan.right(), Literal.class);
+ assertEquals(10000, right.value());
+ EsRelation relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test", relation.indexPattern());
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ eval = as(child2.child(), Eval.class);
+ Subquery subquery = as(eval.child(), Subquery.class);
+ childLimit = as(subquery.child(), Limit.class);
+ childFilter = as(childLimit.child(), Filter.class);
+ And and = as(childFilter.condition(), And.class);
+ greaterThan = as(and.left(), GreaterThan.class);
+ empNo = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", empNo.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ greaterThan = as(and.right(), GreaterThan.class);
+ empNo = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(10000, right.value());
+ relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+
+ LocalRelation localRelation = as(unionAll.children().get(2), LocalRelation.class);
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_UnionAll[[_meta_field{r}#26, emp_no{r}#27, first_name{r}#28, gender{r}#29, hire_date{r}#30, job{r}#31, job.raw{r}#32, l
+ * anguages{r}#33, last_name{r}#34, long_noidx{r}#35, salary{r}#36]]
+ * |_EsqlProject[[_meta_field{f}#10, emp_no{f}#4, first_name{f}#5, gender{f}#6, hire_date{f}#11, job{f}#12, job.raw{f}#13, lang
+ * uages{f}#7, last_name{f}#8, long_noidx{f}#14, salary{f}#9]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_EsRelation[test][_meta_field{f}#10, emp_no{f}#4, first_name{f}#5, ge..]
+ * \_EsqlProject[[_meta_field{f}#21, emp_no{f}#15, first_name{f}#16, gender{f}#17, hire_date{f}#22, job{f}#23, job.raw{f}#24, l
+ * anguages{f}#18, last_name{f}#19, long_noidx{f}#25, salary{f}#20]]
+ * \_Subquery[]
+ * \_TopN[[Order[emp_no{f}#15,ASC,LAST]],1000[INTEGER]]
+ * \_Filter[languages{f}#18 > 0[INTEGER]]
+ * \_EsRelation[test1][_meta_field{f}#21, emp_no{f}#15, first_name{f}#16, ..]
+ */
+ public void testPushDownLimitPastSubqueryWithSort() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test, (FROM test1 | WHERE languages > 0 | SORT emp_no)
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+
+ EsqlProject child1 = as(unionAll.children().get(0), EsqlProject.class);
+ Limit childLimit = as(child1.child(), Limit.class);
+ EsRelation relation = as(childLimit.child(), EsRelation.class);
+ assertEquals("test", relation.indexPattern());
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ Subquery subquery = as(child2.child(), Subquery.class);
+ TopN topN = as(subquery.child(), TopN.class);
+ Filter childFilter = as(topN.child(), Filter.class);
+ GreaterThan greaterThan = as(childFilter.condition(), GreaterThan.class);
+ FieldAttribute empNo = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", empNo.name());
+ Literal right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_UnionAll[[_meta_field{r}#45, emp_no{r}#46, first_name{r}#47, gender{r}#48, hire_date{r}#49, job{r}#50, job.raw{r}#51, l
+ * anguages{r}#52, last_name{r}#53, long_noidx{r}#54, salary{r}#55, language_code{r}#56, language_name{r}#57]]
+ * |_EsqlProject[[_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, gender{f}#8, hire_date{f}#13, job{f}#14, job.raw{f}#15, lang
+ * uages{f}#9, last_name{f}#10, long_noidx{f}#16, salary{f}#11, language_code{r}#30, language_name{r}#31]]
+ * | \_Eval[[null[INTEGER] AS language_code#30, null[KEYWORD] AS language_name#31]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[emp_no{f}#6 > 10000[INTEGER]]
+ * | \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
+ * |_EsqlProject[[_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, gender{f}#19, hire_date{f}#24, job{f}#25, job.raw{f}#26, l
+ * anguages{f}#20, last_name{f}#21, long_noidx{f}#27, salary{f}#22, language_code{r}#32, language_name{r}#33]]
+ * | \_Eval[[null[INTEGER] AS language_code#32, null[KEYWORD] AS language_name#33]]
+ * | \_Subquery[]
+ * | \_TopN[[Order[emp_no{f}#17,ASC,LAST]],1000[INTEGER]]
+ * | \_Filter[languages{f}#20 > 0[INTEGER] AND emp_no{f}#17 > 10000[INTEGER]]
+ * | \_EsRelation[test1][_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, ..]
+ * \_LocalRelation[[_meta_field{r}#34, emp_no{r}#35, first_name{r}#36, gender{r}#37, hire_date{r}#38, job{r}#39, job.raw{r}#40, l
+ * anguages{r}#41, last_name{r}#42, long_noidx{r}#43, salary{r}#44, language_code{f}#28, language_name{f}#29],EMPT
+ * Y]
+ */
+ public void testPushDownFilterAndLimitPastSubqueryWithSort() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test, (FROM test1 | WHERE languages > 0 | SORT emp_no)
+ | WHERE emp_no > 10000
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+
+ EsqlProject child1 = as(unionAll.children().get(0), EsqlProject.class);
+ Limit childLimit = as(child1.child(), Limit.class);
+ Filter childFilter = as(childLimit.child(), Filter.class);
+ GreaterThan greaterThan = as(childFilter.condition(), GreaterThan.class);
+ FieldAttribute empNo = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ Literal right = as(greaterThan.right(), Literal.class);
+ assertEquals(10000, right.value());
+ EsRelation relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test", relation.indexPattern());
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ Subquery subquery = as(child2.child(), Subquery.class);
+ TopN topN = as(subquery.child(), TopN.class);
+ childFilter = as(topN.child(), Filter.class);
+ And and = as(childFilter.condition(), And.class);
+ greaterThan = as(and.left(), GreaterThan.class);
+ empNo = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", empNo.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ greaterThan = as(and.right(), GreaterThan.class);
+ empNo = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(10000, right.value());
+ relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+ }
+
+ /**
+ * \_UnionAll[[_meta_field{r}#45, emp_no{r}#46, first_name{r}#47, gender{r}#48, hire_date{r}#49, job{r}#50, job.raw{r}#51, l
+ * anguages{r}#52, last_name{r}#53, long_noidx{r}#54, salary{r}#55, language_code{r}#56, language_name{r}#57]]
+ * |_EsqlProject[[_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, gender{f}#8, hire_date{f}#13, job{f}#14, job.raw{f}#15, lang
+ * uages{f}#9, last_name{f}#10, long_noidx{f}#16, salary{f}#11, language_code{r}#30, language_name{r}#31]]
+ * | \_Eval[[null[INTEGER] AS language_code#30, null[KEYWORD] AS language_name#31]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[emp_no{f}#6 > 10000[INTEGER] AND salary{f}#11 > 50000[INTEGER]]
+ * | \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
+ * |_EsqlProject[[_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, gender{f}#19, hire_date{f}#24, job{f}#25, job.raw{f}#26, l
+ * anguages{f}#20, last_name{f}#21, long_noidx{f}#27, salary{f}#22, language_code{r}#32, language_name{r}#33]]
+ * | \_Eval[[null[INTEGER] AS language_code#32, null[KEYWORD] AS language_name#33]]
+ * | \_Subquery[]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[languages{f}#20 > 0[INTEGER] AND emp_no{f}#17 > 10000[INTEGER] AND salary{f}#22 > 50000[INTEGER]]
+ * | \_EsRelation[test1][_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, ..]
+ * \_LocalRelation[[_meta_field{r}#34, emp_no{r}#35, first_name{r}#36, gender{r}#37, hire_date{r}#38, job{r}#39, job.raw{r}#40, l
+ * anguages{r}#41, last_name{r}#42, long_noidx{r}#43, salary{r}#44, language_code{f}#28, language_name{f}#29],EMPT
+ * Y]
+ */
+ public void testPushDownConjunctiveFilterPastUnionAll() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test, (FROM test1 | WHERE languages > 0), (FROM languages | WHERE language_code > 0)
+ | WHERE emp_no > 10000 and salary > 50000
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(3, unionAll.children().size());
+
+ EsqlProject child1 = as(unionAll.children().get(0), EsqlProject.class);
+ Eval eval = as(child1.child(), Eval.class);
+ Limit childLimit = as(eval.child(), Limit.class);
+ Filter childFilter = as(childLimit.child(), Filter.class);
+ And and = as(childFilter.condition(), And.class);
+ GreaterThan emp_no = as(and.left(), GreaterThan.class);
+ FieldAttribute empNo = as(emp_no.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ Literal right = as(emp_no.right(), Literal.class);
+ assertEquals(10000, right.value());
+ GreaterThan salary = as(and.right(), GreaterThan.class);
+ FieldAttribute salaryField = as(salary.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ right = as(salary.right(), Literal.class);
+ assertEquals(50000, right.value());
+ EsRelation relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test", relation.indexPattern());
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ eval = as(child2.child(), Eval.class);
+ Subquery subquery = as(eval.child(), Subquery.class);
+ childLimit = as(subquery.child(), Limit.class);
+ childFilter = as(childLimit.child(), Filter.class);
+ and = as(childFilter.condition(), And.class);
+ GreaterThan greaterThan = as(and.left(), GreaterThan.class);
+ FieldAttribute languages = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", languages.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ and = as(and.right(), And.class);
+ emp_no = as(and.left(), GreaterThan.class);
+ empNo = as(emp_no.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ right = as(emp_no.right(), Literal.class);
+ assertEquals(10000, right.value());
+ salary = as(and.right(), GreaterThan.class);
+ salaryField = as(salary.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ right = as(salary.right(), Literal.class);
+ assertEquals(50000, right.value());
+ relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+
+ LocalRelation localRelation = as(unionAll.children().get(2), LocalRelation.class);
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_UnionAll[[_meta_field{r}#45, emp_no{r}#46, first_name{r}#47, gender{r}#48, hire_date{r}#49, job{r}#50, job.raw{r}#51, l
+ * anguages{r}#52, last_name{r}#53, long_noidx{r}#54, salary{r}#55, language_code{r}#56, language_name{r}#57]]
+ * |_EsqlProject[[_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, gender{f}#8, hire_date{f}#13, job{f}#14, job.raw{f}#15, lang
+ * uages{f}#9, last_name{f}#10, long_noidx{f}#16, salary{f}#11, language_code{r}#30, language_name{r}#31]]
+ * | \_Eval[[null[INTEGER] AS language_code#30, null[KEYWORD] AS language_name#31]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[emp_no{f}#6 > 10000[INTEGER] OR salary{f}#11 > 50000[INTEGER]]
+ * | \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
+ * |_EsqlProject[[_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, gender{f}#19, hire_date{f}#24, job{f}#25, job.raw{f}#26, l
+ * anguages{f}#20, last_name{f}#21, long_noidx{f}#27, salary{f}#22, language_code{r}#32, language_name{r}#33]]
+ * | \_Eval[[null[INTEGER] AS language_code#32, null[KEYWORD] AS language_name#33]]
+ * | \_Subquery[]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[languages{f}#20 > 0[INTEGER] AND emp_no{f}#17 > 10000[INTEGER] OR salary{f}#22 > 50000[INTEGER]]
+ * | \_EsRelation[test1][_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, ..]
+ * \_LocalRelation[[_meta_field{r}#34, emp_no{r}#35, first_name{r}#36, gender{r}#37, hire_date{r}#38, job{r}#39, job.raw{r}#40, l
+ * anguages{r}#41, last_name{r}#42, long_noidx{r}#43, salary{r}#44, language_code{f}#28, language_name{f}#29],EMPT
+ * Y]
+ */
+ public void testPushDownDisjunctiveFilterPastUnionAll() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test, (FROM test1 | WHERE languages > 0), (FROM languages | WHERE language_code > 0)
+ | WHERE emp_no > 10000 or salary > 50000
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(3, unionAll.children().size());
+
+ EsqlProject child1 = as(unionAll.children().get(0), EsqlProject.class);
+ Eval eval = as(child1.child(), Eval.class);
+ Limit childLimit = as(eval.child(), Limit.class);
+ Filter childFilter = as(childLimit.child(), Filter.class);
+ Or or = as(childFilter.condition(), Or.class);
+ GreaterThan emp_no = as(or.left(), GreaterThan.class);
+ FieldAttribute empNo = as(emp_no.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ Literal right = as(emp_no.right(), Literal.class);
+ assertEquals(10000, right.value());
+ GreaterThan salary = as(or.right(), GreaterThan.class);
+ FieldAttribute salaryField = as(salary.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ right = as(salary.right(), Literal.class);
+ assertEquals(50000, right.value());
+ EsRelation relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test", relation.indexPattern());
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ eval = as(child2.child(), Eval.class);
+ Subquery subquery = as(eval.child(), Subquery.class);
+ childLimit = as(subquery.child(), Limit.class);
+ childFilter = as(childLimit.child(), Filter.class);
+ And and = as(childFilter.condition(), And.class);
+ GreaterThan greaterThan = as(and.left(), GreaterThan.class);
+ FieldAttribute languages = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", languages.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ or = as(and.right(), Or.class);
+ emp_no = as(or.left(), GreaterThan.class);
+ empNo = as(emp_no.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ right = as(emp_no.right(), Literal.class);
+ assertEquals(10000, right.value());
+ salary = as(or.right(), GreaterThan.class);
+ salaryField = as(salary.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ right = as(salary.right(), Literal.class);
+ assertEquals(50000, right.value());
+ relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+
+ LocalRelation localRelation = as(unionAll.children().get(2), LocalRelation.class);
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_UnionAll[[_meta_field{r}#45, emp_no{r}#46, first_name{r}#47, gender{r}#48, hire_date{r}#49, job{r}#50, job.raw{r}#51, l
+ * anguages{r}#52, last_name{r}#53, long_noidx{r}#54, salary{r}#55, language_code{r}#56, language_name{r}#57]]
+ * |_EsqlProject[[_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, gender{f}#8, hire_date{f}#13, job{f}#14, job.raw{f}#15, lang
+ * uages{f}#9, last_name{f}#10, long_noidx{f}#16, salary{f}#11, language_code{r}#30, language_name{r}#31]]
+ * | \_Eval[[null[INTEGER] AS language_code#30, null[KEYWORD] AS language_name#31]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[emp_no{f}#6 > 10000[INTEGER] AND salary{f}#11 < 50000[INTEGER]]
+ * | \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
+ * |_EsqlProject[[_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, gender{f}#19, hire_date{f}#24, job{f}#25, job.raw{f}#26, l
+ * anguages{f}#20, last_name{f}#21, long_noidx{f}#27, salary{f}#22, language_code{r}#32, language_name{r}#33]]
+ * | \_Eval[[null[INTEGER] AS language_code#32, null[KEYWORD] AS language_name#33]]
+ * | \_Subquery[]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[salary{f}#22 < 50000[INTEGER] AND emp_no{f}#17 > 10000[INTEGER]]
+ * | \_EsRelation[test1][_meta_field{f}#23, emp_no{f}#17, first_name{f}#18, ..]
+ * \_LocalRelation[[_meta_field{r}#34, emp_no{r}#35, first_name{r}#36, gender{r}#37, hire_date{r}#38, job{r}#39, job.raw{r}#40, l
+ * anguages{r}#41, last_name{r}#42, long_noidx{r}#43, salary{r}#44, language_code{f}#28, language_name{f}#29],EMPT
+ * Y]
+ */
+ public void testPushDownFilterPastUnionAllAndCombineWithFilterInSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test, (FROM test1 | where salary < 100000), (FROM languages | WHERE language_code > 0)
+ | WHERE emp_no > 10000 and salary < 50000
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(3, unionAll.children().size());
+
+ EsqlProject child1 = as(unionAll.children().get(0), EsqlProject.class);
+ Eval eval = as(child1.child(), Eval.class);
+ Limit childLimit = as(eval.child(), Limit.class);
+ Filter childFilter = as(childLimit.child(), Filter.class);
+ And and = as(childFilter.condition(), And.class);
+ GreaterThan emp_no = as(and.left(), GreaterThan.class);
+ FieldAttribute empNo = as(emp_no.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ Literal right = as(emp_no.right(), Literal.class);
+ assertEquals(10000, right.value());
+ LessThan salary = as(and.right(), LessThan.class);
+ FieldAttribute salaryField = as(salary.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ right = as(salary.right(), Literal.class);
+ assertEquals(50000, right.value());
+ EsRelation relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test", relation.indexPattern());
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ eval = as(child2.child(), Eval.class);
+ Subquery subquery = as(eval.child(), Subquery.class);
+ childLimit = as(subquery.child(), Limit.class);
+ childFilter = as(childLimit.child(), Filter.class);
+ and = as(childFilter.condition(), And.class);
+ emp_no = as(and.right(), GreaterThan.class);
+ empNo = as(emp_no.left(), FieldAttribute.class);
+ assertEquals("emp_no", empNo.name());
+ right = as(emp_no.right(), Literal.class);
+ assertEquals(10000, right.value());
+ salary = as(and.left(), LessThan.class);
+ salaryField = as(salary.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ right = as(salary.right(), Literal.class);
+ assertEquals(50000, right.value());
+ relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+
+ LocalRelation localRelation = as(unionAll.children().get(2), LocalRelation.class);
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_UnionAll[[_meta_field{r}#95, emp_no{r}#96, first_name{r}#97, gender{r}#98, hire_date{r}#99, job{r}#100, job.raw{r}#101,
+ * languages{r}#102, last_name{r}#103, long_noidx{r}#104, salary{r}#105, x{r}#106, y{r}#107, z{r}#108, language_name{r}#109]]
+ * |_LocalRelation[[_meta_field{f}#44, emp_no{f}#38, first_name{f}#39, gender{f}#40, hire_date{f}#45, job{f}#46, job.raw{f}#47, l
+ * anguages{f}#41, last_name{f}#42, long_noidx{f}#48, salary{f}#43, x{r}#75, y{r}#110, z{r}#77, language_name{r}#78],
+ * EMPTY]
+ * |_EsqlProject[[_meta_field{f}#55, emp_no{f}#49, first_name{f}#50, gender{f}#51, hire_date{f}#56, job{f}#57, job.raw{f}#58, l
+ * anguages{f}#52, last_name{f}#53, long_noidx{f}#59, salary{f}#54, x{r}#4, y{r}#111, z{r}#10, language_name{r}#79]]
+ * | \_Filter[ISNOTNULL(y{r}#111)]
+ * | \_Eval[[null[KEYWORD] AS language_name#79, TOLONG(y{r}#7) AS y#111]]
+ * | \_Subquery[]
+ * | \_Project[[_meta_field{f}#55, emp_no{f}#49, first_name{f}#50, gender{f}#51, hire_date{f}#56, job{f}#57, job.raw{f}#58, l
+ * anguages{f}#52, last_name{f}#53, long_noidx{f}#59, salary{f}#54, x{r}#4, emp_no{f}#49 AS y#7, z{r}#10]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[z{r}#10 > 0[INTEGER]]
+ * | \_Eval[[1[INTEGER] AS x#4, emp_no{f}#49 + 1[INTEGER] AS z#10]]
+ * | \_Filter[salary{f}#54 < 100000[INTEGER]]
+ * | \_EsRelation[test1][_meta_field{f}#55, emp_no{f}#49, first_name{f}#50, ..]
+ * |_EsqlProject[[_meta_field{r}#80, emp_no{r}#81, first_name{r}#82, gender{r}#83, hire_date{r}#84, job{r}#85, job.raw{r}#86, l
+ * anguages{r}#87, last_name{r}#88, long_noidx{r}#89, salary{r}#90, x{r}#21, y{r}#19, z{r}#16, language_name{r}#91]]
+ * | \_Eval[[null[KEYWORD] AS _meta_field#80, null[INTEGER] AS emp_no#81, null[KEYWORD] AS first_name#82, null[TEXT] AS ge
+ * nder#83, null[DATETIME] AS hire_date#84, null[TEXT] AS job#85, null[KEYWORD] AS job.raw#86, null[INTEGER] AS languages#87,
+ * null[KEYWORD] AS last_name#88, null[LONG] AS long_noidx#89, null[INTEGER] AS salary#90, null[KEYWORD] AS language_name#91]]
+ * | \_Subquery[]
+ * | \_Eval[[1[INTEGER] AS x#21]]
+ * | \_Limit[1000[INTEGER],false]
+ * | \_Filter[ISNOTNULL(y{r}#19) AND z{r}#16 > 0[INTEGER]]
+ * | \_Aggregate[[language_code{f}#60],[COUNT(*[KEYWORD],true[BOOLEAN]) AS y#19, language_code{f}#60 AS z#16]]
+ * | \_EsRelation[languages][language_code{f}#60, language_name{f}#61]
+ * \_EsqlProject[[_meta_field{f}#68, emp_no{r}#92, first_name{f}#63, gender{f}#64, hire_date{f}#69, job{f}#70, job.raw{f}#71, l
+ * anguages{r}#93, last_name{f}#66, long_noidx{f}#72, salary{r}#94, x{r}#28, y{r}#112, z{r}#34, language_name{f}#74]]
+ * \_Filter[ISNOTNULL(y{r}#112)]
+ * \_Eval[[null[INTEGER] AS emp_no#92, null[INTEGER] AS languages#93, null[INTEGER] AS salary#94, TOLONG(y{r}#31) AS y#1
+ * 12]]
+ * \_Subquery[]
+ * \_Project[[_meta_field{f}#68, emp_no{f}#62 AS x#28, first_name{f}#63, gender{f}#64, hire_date{f}#69, job{f}#70, job.raw{
+ * f}#71, languages{f}#65 AS z#34, last_name{f}#66, long_noidx{f}#72, salary{f}#67 AS y#31, language_name{f}#74]]
+ * \_Limit[1000[INTEGER],true]
+ * \_Join[LEFT,[languages{f}#65],[language_code{f}#73],null]
+ * |_Limit[1000[INTEGER],false]
+ * | \_Filter[ISNOTNULL(emp_no{f}#62) AND languages{f}#65 > 0[INTEGER]]
+ * | \_EsRelation[test1][_meta_field{f}#68, emp_no{f}#62, first_name{f}#63, ..]
+ * \_EsRelation[languages_lookup][LOOKUP][language_code{f}#73, language_name{f}#74]
+ */
+ public void testPushDownFilterOnReferenceAttributesPastUnionAll() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test
+ , (FROM test1
+ | where salary < 100000
+ | EVAL x = 1, y = emp_no, z = emp_no + 1)
+ , (FROM languages
+ | STATS cnt = COUNT(*) by language_code
+ | RENAME language_code AS z, cnt AS y
+ | EVAL x = 1)
+ , (FROM test1
+ | RENAME languages AS language_code
+ | LOOKUP JOIN languages_lookup ON language_code
+ | RENAME emp_no AS x, salary AS y, language_code AS z)
+ | WHERE x is not null and y is not null and z > 0
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(4, unionAll.children().size());
+
+ LocalRelation child1 = as(unionAll.children().get(0), LocalRelation.class);
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ Filter filter = as(child2.child(), Filter.class);
+ IsNotNull isNotNull = as(filter.condition(), IsNotNull.class);
+ ReferenceAttribute y = as(isNotNull.field(), ReferenceAttribute.class);
+ assertEquals("y", y.name());
+ Eval eval = as(filter.child(), Eval.class);
+ List aliases = eval.fields();
+ assertEquals(2, aliases.size());
+ assertEquals("language_name", aliases.get(0).name());
+ assertEquals("y", aliases.get(1).name());
+ Subquery subquery = as(eval.child(), Subquery.class);
+ Project project = as(subquery.child(), Project.class);
+ Limit childLimit = as(project.child(), Limit.class);
+ Filter childFilter = as(childLimit.child(), Filter.class);
+ GreaterThan greaterThan = as(childFilter.condition(), GreaterThan.class);
+ ReferenceAttribute z = as(greaterThan.left(), ReferenceAttribute.class);
+ assertEquals("z", z.name());
+ Literal right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ eval = as(childFilter.child(), Eval.class);
+ aliases = eval.fields();
+ assertEquals(2, aliases.size());
+ Alias aliasX = aliases.get(0);
+ assertEquals("x", aliasX.name());
+ Literal xLiteral = as(aliasX.child(), Literal.class);
+ assertEquals(1, xLiteral.value());
+ Alias aliasZ = aliases.get(1);
+ assertEquals("z", aliasZ.name());
+ childFilter = as(eval.child(), Filter.class);
+ LessThan lessThan = as(childFilter.condition(), LessThan.class);
+ FieldAttribute salaryField = as(lessThan.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ Literal literal = as(lessThan.right(), Literal.class);
+ assertEquals(100000, literal.value());
+ EsRelation relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+
+ EsqlProject child3 = as(unionAll.children().get(2), EsqlProject.class);
+ eval = as(child3.child(), Eval.class);
+ subquery = as(eval.child(), Subquery.class);
+ eval = as(subquery.child(), Eval.class);
+ limit = as(eval.child(), Limit.class);
+ filter = as(limit.child(), Filter.class);
+ And and = as(filter.condition(), And.class);
+ isNotNull = as(and.left(), IsNotNull.class);
+ y = as(isNotNull.field(), ReferenceAttribute.class);
+ assertEquals("y", y.name());
+ greaterThan = as(and.right(), GreaterThan.class);
+ z = as(greaterThan.left(), ReferenceAttribute.class);
+ assertEquals("z", z.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ Aggregate aggregate = as(filter.child(), Aggregate.class);
+ List groupings = aggregate.groupings();
+ assertEquals(1, groupings.size());
+ FieldAttribute language_code = as(groupings.get(0), FieldAttribute.class);
+ assertEquals("language_code", language_code.name());
+ List extends NamedExpression> aggregates = aggregate.aggregates();
+ assertEquals(2, aggregates.size());
+ assertEquals("y", aggregates.get(0).name());
+ assertEquals("z", aggregates.get(1).name());
+ relation = as(aggregate.child(), EsRelation.class);
+ assertEquals("languages", relation.indexPattern());
+
+ EsqlProject child4 = as(unionAll.children().get(3), EsqlProject.class);
+ filter = as(child4.child(), Filter.class);
+ isNotNull = as(filter.condition(), IsNotNull.class);
+ ReferenceAttribute x = as(isNotNull.field(), ReferenceAttribute.class);
+ assertEquals("y", x.name());
+ eval = as(filter.child(), Eval.class);
+ aliases = eval.fields();
+ assertEquals(4, aliases.size());
+ subquery = as(eval.child(), Subquery.class);
+ project = as(subquery.child(), Project.class);
+ limit = as(project.child(), Limit.class);
+ Join lookupJoin = as(limit.child(), Join.class);
+ limit = as(lookupJoin.left(), Limit.class);
+ Filter leftFilter = as(limit.child(), Filter.class);
+ and = as(leftFilter.condition(), And.class);
+ isNotNull = as(and.left(), IsNotNull.class);
+ FieldAttribute emp_no = as(isNotNull.field(), FieldAttribute.class);
+ assertEquals("emp_no", emp_no.name());
+ greaterThan = as(and.right(), GreaterThan.class);
+ language_code = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("languages", language_code.name());
+ right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ relation = as(leftFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+ relation = as(lookupJoin.right(), EsRelation.class);
+ assertEquals("languages_lookup", relation.indexPattern());
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_UnionAll[[_meta_field{r}#35, emp_no{r}#36, first_name{r}#37, gender{r}#38, hire_date{r}#39, job{r}#40, job.raw{r}#41, l
+ * anguages{r}#42, last_name{r}#43, long_noidx{r}#44, salary{r}#45, x{r}#46, y{r}#47]]
+ * |_LocalRelation[[_meta_field{f}#17, emp_no{f}#11, first_name{f}#12, gender{f}#13, hire_date{f}#18, job{f}#19, job.raw{f}#20, l
+ * anguages{f}#14, last_name{f}#15, long_noidx{f}#21, salary{f}#16, x{r}#33, y{r}#34],EMPTY]
+ * \_EsqlProject[[_meta_field{f}#28, emp_no{f}#22, first_name{f}#23, gender{f}#24, hire_date{f}#29, job{f}#30, job.raw{f}#31, l
+ * anguages{f}#25, last_name{f}#26, long_noidx{f}#32, salary{f}#27, x{r}#4, y{r}#7]]
+ * \_Subquery[]
+ * \_Limit[1000[INTEGER],false]
+ * \_Filter[y{r}#7 > 0[INTEGER]]
+ * \_Eval[[1[INTEGER] AS x#4, emp_no{f}#22 + 1[INTEGER] AS y#7]]
+ * \_Filter[salary{f}#27 < 100000[INTEGER] AND emp_no{f}#22 > 0[INTEGER]]
+ * \_EsRelation[test1][_meta_field{f}#28, emp_no{f}#22, first_name{f}#23, ..]
+ */
+ public void testPushDownFilterOnReferenceAttributesAndFieldAttributesPastUnionAll() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var plan = planSubquery("""
+ FROM test, (FROM test1 | where salary < 100000 | EVAL x = 1, y = emp_no + 1)
+ | WHERE x is not null and y > 0 and emp_no > 0
+ """);
+
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ assertEquals(2, unionAll.children().size());
+
+ LocalRelation child1 = as(unionAll.children().get(0), LocalRelation.class);
+
+ EsqlProject child2 = as(unionAll.children().get(1), EsqlProject.class);
+ Subquery subquery = as(child2.child(), Subquery.class);
+ Limit childLimit = as(subquery.child(), Limit.class);
+ Filter childFilter = as(childLimit.child(), Filter.class);
+ GreaterThan greaterThan = as(childFilter.condition(), GreaterThan.class);
+ ReferenceAttribute y = as(greaterThan.left(), ReferenceAttribute.class);
+ assertEquals("y", y.name());
+ Literal right = as(greaterThan.right(), Literal.class);
+ assertEquals(0, right.value());
+ Eval eval = as(childFilter.child(), Eval.class);
+ List aliases = eval.fields();
+ assertEquals(2, aliases.size());
+ Alias aliasX = aliases.get(0);
+ assertEquals("x", aliasX.name());
+ Literal xLiteral = as(aliasX.child(), Literal.class);
+ assertEquals(1, xLiteral.value());
+ Alias aliasZ = aliases.get(1);
+ assertEquals("y", aliasZ.name());
+ childFilter = as(eval.child(), Filter.class);
+ And and = as(childFilter.condition(), And.class);
+ greaterThan = as(and.right(), GreaterThan.class);
+ FieldAttribute emp_no = as(greaterThan.left(), FieldAttribute.class);
+ assertEquals("emp_no", emp_no.name());
+ LessThan lessThan = as(and.left(), LessThan.class);
+ FieldAttribute salaryField = as(lessThan.left(), FieldAttribute.class);
+ assertEquals("salary", salaryField.name());
+ Literal literal = as(lessThan.right(), Literal.class);
+ assertEquals(100000, literal.value());
+ EsRelation relation = as(childFilter.child(), EsRelation.class);
+ assertEquals("test1", relation.indexPattern());
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index 30ad258954d0c..4b9d8ed24e61e 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -1206,10 +1206,7 @@ public void testMetadataFieldOnOtherSources() {
expectError("row a = 1 metadata _index", "line 1:20: extraneous input '_index' expecting ");
expectError("show info metadata _index", "line 1:11: token recognition error at: 'm'");
if (EsqlCapabilities.Cap.EXPLAIN.isEnabled()) {
- expectError(
- "explain ( from foo ) metadata _index",
- "line 1:22: mismatched input 'metadata' expecting {'|', ',', ')', 'metadata'}"
- );
+ expectError("explain ( from foo ) metadata _index", "line 1:22: token recognition error at: 'm'");
}
}
@@ -3919,7 +3916,7 @@ public void testPreserveParentheses() {
public void testExplainErrors() {
assumeTrue("Requires EXPLAIN capability", EsqlCapabilities.Cap.EXPLAIN.isEnabled());
// TODO this one is incorrect
- expectError("explain ( from test ) | limit 1", "line 1:23: mismatched input '|' expecting {'|', ',', ')', 'metadata'}");
+ expectError("explain ( from test ) | limit 1", "line 1:1: EXPLAIN does not support downstream commands");
expectError(
"explain (row x=\"Elastic\" | eval y=concat(x,to_upper(\"search\"))) | mv_expand y",
"line 1:1: EXPLAIN does not support downstream commands"
@@ -5181,8 +5178,8 @@ public void testBracketsInIndexNames() {
expectSuccessForBracketsWithinQuotes(pattern);
}
- expectError("from test)", "line 1:10: extraneous input ')' expecting ");
- expectError("from te()st", "line 1:8: token recognition error at: '('");
+ expectError("from test)", "line -1:-1: Invalid query [from test)]");
+ expectError("from te()st", "line 1:8: mismatched input '(' expecting {, '|', ',', 'metadata'");
expectError("from test | enrich foo)", "line -1:-1: Invalid query [from test | enrich foo)]");
expectError("from test | lookup join foo) on bar", "line 1:28: token recognition error at: ')'");
if (EsqlCapabilities.Cap.LOOKUP_JOIN_ON_BOOLEAN_EXPRESSION.isEnabled()) {
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/SubqueryTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/SubqueryTests.java
new file mode 100644
index 0000000000000..3d3aeb353850b
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/SubqueryTests.java
@@ -0,0 +1,1127 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.parser;
+
+import org.elasticsearch.common.logging.LoggerMessageFormat;
+import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
+import org.elasticsearch.xpack.esql.core.expression.Attribute;
+import org.elasticsearch.xpack.esql.core.expression.Literal;
+import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute;
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.LessThan;
+import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
+import org.elasticsearch.xpack.esql.plan.logical.ChangePoint;
+import org.elasticsearch.xpack.esql.plan.logical.Dissect;
+import org.elasticsearch.xpack.esql.plan.logical.Drop;
+import org.elasticsearch.xpack.esql.plan.logical.Enrich;
+import org.elasticsearch.xpack.esql.plan.logical.Eval;
+import org.elasticsearch.xpack.esql.plan.logical.Filter;
+import org.elasticsearch.xpack.esql.plan.logical.Fork;
+import org.elasticsearch.xpack.esql.plan.logical.Grok;
+import org.elasticsearch.xpack.esql.plan.logical.InlineStats;
+import org.elasticsearch.xpack.esql.plan.logical.Keep;
+import org.elasticsearch.xpack.esql.plan.logical.Limit;
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.MvExpand;
+import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
+import org.elasticsearch.xpack.esql.plan.logical.Rename;
+import org.elasticsearch.xpack.esql.plan.logical.Sample;
+import org.elasticsearch.xpack.esql.plan.logical.Subquery;
+import org.elasticsearch.xpack.esql.plan.logical.UnionAll;
+import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
+import org.elasticsearch.xpack.esql.plan.logical.join.LookupJoin;
+
+import java.util.List;
+
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.as;
+import static org.elasticsearch.xpack.esql.IdentifierGenerator.Features.CROSS_CLUSTER;
+import static org.elasticsearch.xpack.esql.IdentifierGenerator.randomIndexPatterns;
+import static org.elasticsearch.xpack.esql.IdentifierGenerator.unquoteIndexPattern;
+import static org.elasticsearch.xpack.esql.IdentifierGenerator.without;
+import static org.hamcrest.Matchers.containsString;
+
+public class SubqueryTests extends AbstractStatementParserTests {
+
+ /**
+ * UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_UnresolvedRelation[]
+ */
+ public void testIndexPatternWithSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var mainQueryIndexPattern = randomIndexPatterns();
+ var subqueryIndexPattern = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {})
+ """, mainQueryIndexPattern, subqueryIndexPattern);
+
+ LogicalPlan plan = statement(query);
+
+ UnionAll unionAll = as(plan, UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(mainQueryIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+
+ Subquery subquery = as(children.get(1), Subquery.class);
+ unresolvedRelation = as(subquery.plan(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+ }
+
+ /**
+ * Subqueries in the FROM command with all the processing commands in the main query.
+ * All processing commands are supported in the main query when subqueries exist in the
+ * FROM command. With an exception on FORK, the grammar or parser doesn't block FORK,
+ * however nested FORK will error out in the analysis or logical planning phase. We are hoping
+ * to lift this restriction in the future, so it is not blocked in the grammar.
+ *
+ * Rerank[test_reranker[KEYWORD],war and peace[KEYWORD],[?title AS title#45],?_score]
+ * \_Sample[0.5[DOUBLE]]
+ * \_Completion[test_completion[KEYWORD],?prompt,?completion_output]
+ * \_ChangePoint[?count,?@timestamp,type{r}#39,pvalue{r}#40]
+ * \_Enrich[ANY,clientip_policy[KEYWORD],?client_ip,null,{},[?env]]
+ * \_LookupJoin[LEFT,[?n],[?n],false,null]
+ * |_MvExpand[?m,?m]
+ * | \_Rename[[?k AS l#29]]
+ * | \_Keep[[?j]]
+ * | \_Drop[[?i]]
+ * | \_Limit[10[INTEGER],false]
+ * | \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * | \_Grok[?h,Parser[pattern=%{WORD:word} %{NUMBER:number},
+ * grok=org.elasticsearch.grok.Grok@710201ab],[number{r}#22, word{
+ * r}#23]]
+ * | \_Dissect[?g,Parser[pattern=%{b} %{c}, appendSeparator=,
+ * parser=org.elasticsearch.dissect.DissectParser@6bd8533a],[b{r}#16
+ * , c{r}#17]]
+ * | \_InlineStats[]
+ * | \_Aggregate[[?f],[?MAX[?e] AS max_e#14, ?f]]
+ * | \_Aggregate[[?e],[?COUNT[*] AS cnt#11, ?e]]
+ * | \_Fork[[]]
+ * | |_Eval[[fork1[KEYWORD] AS _fork#7]]
+ * | | \_Filter[?c > 100[INTEGER]]
+ * | | \_Eval[[?a * 2[INTEGER] AS b#5]]
+ * | | \_Filter[?a > 10[INTEGER]]
+ * | | \_UnionAll[[]]
+ * | | |_UnresolvedRelation[]
+ * | | \_Subquery[]
+ * | | \_Filter[?a < 100[INTEGER]]
+ * | | \_UnresolvedRelation[]
+ * | \_Eval[[fork2[KEYWORD] AS _fork#7]]
+ * | \_Filter[?d > 200[INTEGER]]
+ * | \_Eval[[?a * 2[INTEGER] AS b#5]]
+ * | \_Filter[?a < 10[INTEGER]]
+ * | \_UnionAll[[]]
+ * | |_UnresolvedRelation[]
+ * | \_Subquery[]
+ * | \_Filter[?a < 100[INTEGER]]
+ * | \_UnresolvedRelation[]
+ * \_UnresolvedRelation[lookup_index]
+ */
+ public void testSubqueryWithAllProcessingCommandsInMainquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ // remote cluster does not support COMPLETION or RERANK
+ var mainQueryIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var subqueryIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var joinIndexPattern = "lookup_index"; // randomIndexPatterns may generate on as index pattern, it collides with the ON token
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {} | WHERE a < 100)
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | INLINE STATS max_e = MAX(e) BY f
+ | DISSECT g "%{b} %{c}"
+ | GROK h "%{WORD:word} %{NUMBER:number}"
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP i
+ | KEEP j
+ | RENAME k AS l
+ | MV_EXPAND m
+ | LOOKUP JOIN {} ON n
+ | ENRICH clientip_policy ON client_ip WITH env
+ | CHANGE_POINT count ON @timestamp AS type, pvalue
+ | COMPLETION completion_output = prompt WITH { "inference_id" : "test_completion" }
+ | SAMPLE 0.5
+ | RERANK "war and peace" ON title WITH { "inference_id" : "test_reranker" }
+ """, mainQueryIndexPattern, subqueryIndexPattern, joinIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ Rerank rerank = as(plan, Rerank.class);
+ Sample sample = as(rerank.child(), Sample.class);
+ Completion completion = as(sample.child(), Completion.class);
+ ChangePoint changePoint = as(completion.child(), ChangePoint.class);
+ Enrich enrich = as(changePoint.child(), Enrich.class);
+ LookupJoin lookupJoin = as(enrich.child(), LookupJoin.class);
+ UnresolvedRelation joinRelation = as(lookupJoin.right(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(joinIndexPattern), joinRelation.indexPattern().indexPattern());
+ MvExpand mvExpand = as(lookupJoin.left(), MvExpand.class);
+ Rename rename = as(mvExpand.child(), Rename.class);
+ Keep keep = as(rename.child(), Keep.class);
+ Drop drop = as(keep.child(), Drop.class);
+ Limit limit = as(drop.child(), Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Grok grok = as(orderBy.child(), Grok.class);
+ Dissect dissect = as(grok.child(), Dissect.class);
+ InlineStats inlineStats = as(dissect.child(), InlineStats.class);
+ Aggregate aggregate = as(inlineStats.child(), Aggregate.class);
+ aggregate = as(aggregate.child(), Aggregate.class);
+ Fork fork = as(aggregate.child(), Fork.class);
+ List forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEval : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ Filter forkFilter = as(forkEval.child(), Filter.class);
+ Eval eval = as(forkFilter.child(), Eval.class);
+ Filter filter = as(eval.child(), Filter.class);
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+ // leg1
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(mainQueryIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+ // leg2
+ Subquery subquery = as(children.get(1), Subquery.class);
+ Filter subqueryFilter = as(subquery.plan(), Filter.class);
+ LessThan lessThan = as(subqueryFilter.condition(), LessThan.class);
+ Attribute left = as(lessThan.left(), Attribute.class);
+ assertEquals("a", left.name());
+ Literal right = as(lessThan.right(), Literal.class);
+ assertEquals(100, right.value());
+ UnresolvedRelation subqueryRelation = as(subqueryFilter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern), subqueryRelation.indexPattern().indexPattern());
+ }
+ }
+
+ /**
+ * Subqueries in the FROM command with all the processing commands in the subquery query.
+ * The grammar allows all processing commands inside the subquery. With an exception on FORK,
+ * the grammar or parser doesn't block FORK, however nested FORK will error out in the analysis
+ * or logical planning phase. We are hoping to lift this restriction in the future, so it is not blocked
+ * in the grammar.
+ *
+ * UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_Rerank[test_reranker[KEYWORD],war and peace[KEYWORD],[?title AS title#30],?_score]
+ * \_Sample[0.5[DOUBLE]]
+ * \_Completion[test_completion[KEYWORD],?prompt,?completion_output]
+ * \_ChangePoint[?count,?@timestamp,type{r}#24,pvalue{r}#25]
+ * \_Enrich[ANY,clientip_policy[KEYWORD],?client_ip,null,{},[?env]]
+ * \_LookupJoin[LEFT,[?n],[?n],false,null]
+ * |_MvExpand[?m,?m]
+ * | \_Rename[[?k AS l#17]]
+ * | \_Keep[[?j]]
+ * | \_Drop[[?i]]
+ * | \_Limit[10[INTEGER],false]
+ * | \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * | \_Grok[?h,Parser[pattern=%{WORD:word} %{NUMBER:number},
+ * grok=org.elasticsearch.grok.Grok@2d54cab4],[number{r}#41, word{
+ * r}#42]]
+ * | \_Dissect[?g,Parser[pattern=%{b} %{c}, appendSeparator=,
+ * parser=org.elasticsearch.dissect.DissectParser@5ca49d89],[b{r}#35
+ * , c{r}#36]]
+ * | \_InlineStats[]
+ * | \_Aggregate[[?f],[?MAX[?e] AS max_e#10, ?f]]
+ * | \_Aggregate[[?e],[?COUNT[*] AS cnt#7, ?e]]
+ * | \_Fork[[]]
+ * | |_Eval[[fork1[KEYWORD] AS _fork#3]]
+ * | | \_Filter[?c < 100[INTEGER]]
+ * | | \_Eval[[?a * 2[INTEGER] AS b#34]]
+ * | | \_Filter[?a > 10[INTEGER]]
+ * | | \_UnresolvedRelation[]
+ * | \_Eval[[fork2[KEYWORD] AS _fork#3]]
+ * | \_Filter[?d > 200[INTEGER]]
+ * | \_Eval[[?a * 2[INTEGER] AS b#34]]
+ * | \_Filter[?a > 10[INTEGER]]
+ * | \_UnresolvedRelation[]
+ * \_UnresolvedRelation[lookup_index]
+ */
+ public void testWithSubqueryWithProcessingCommandsInSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var mainQueryIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var subqueryIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var joinIndexPattern = "lookup_index";
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | INLINE STATS max_e = MAX(e) BY f
+ | DISSECT g "%{b} %{c}"
+ | GROK h "%{WORD:word} %{NUMBER:number}"
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP i
+ | KEEP j
+ | RENAME k AS l
+ | MV_EXPAND m
+ | LOOKUP JOIN {} ON n
+ | ENRICH clientip_policy ON client_ip WITH env
+ | CHANGE_POINT count ON @timestamp AS type, pvalue
+ | COMPLETION completion_output = prompt WITH { "inference_id" : "test_completion" }
+ | SAMPLE 0.5
+ | RERANK "war and peace" ON title WITH { "inference_id" : "test_reranker" })
+ """, mainQueryIndexPattern, subqueryIndexPattern, joinIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ UnionAll unionAll = as(plan, UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+ // leg1
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(mainQueryIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+ // leg2
+ Subquery subquery = as(children.get(1), Subquery.class);
+ Rerank rerank = as(subquery.plan(), Rerank.class);
+ Sample sample = as(rerank.child(), Sample.class);
+ Completion completion = as(sample.child(), Completion.class);
+ ChangePoint changePoint = as(completion.child(), ChangePoint.class);
+ Enrich enrich = as(changePoint.child(), Enrich.class);
+ LookupJoin lookupJoin = as(enrich.child(), LookupJoin.class);
+ UnresolvedRelation joinRelation = as(lookupJoin.right(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(joinIndexPattern), joinRelation.indexPattern().indexPattern());
+ MvExpand mvExpand = as(lookupJoin.left(), MvExpand.class);
+ Rename rename = as(mvExpand.child(), Rename.class);
+ Keep keep = as(rename.child(), Keep.class);
+ Drop drop = as(keep.child(), Drop.class);
+ Limit limit = as(drop.child(), Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Grok grok = as(orderBy.child(), Grok.class);
+ Dissect dissect = as(grok.child(), Dissect.class);
+ InlineStats inlineStats = as(dissect.child(), InlineStats.class);
+ Aggregate aggregate = as(inlineStats.child(), Aggregate.class);
+ aggregate = as(aggregate.child(), Aggregate.class);
+ Fork fork = as(aggregate.child(), Fork.class);
+ List forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEval : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ Filter forkFilter = as(forkEval.child(), Filter.class);
+ Eval eval = as(forkFilter.child(), Eval.class);
+ Filter filter = as(eval.child(), Filter.class);
+ UnresolvedRelation subqueryRelation = as(filter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern), subqueryRelation.indexPattern().indexPattern());
+ }
+ }
+
+ /**
+ * A combination of the two previous tests with processing commands in both the subquery and main query.
+ * Plan string is skipped as it is too long.
+ */
+ public void testSubqueryWithProcessingCommandsInSubqueryAndMainquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var mainQueryIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var subqueryIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var joinIndexPattern = "lookup_index";
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | INLINE STATS max_e = MAX(e) BY f
+ | DISSECT g "%{b} %{c}"
+ | GROK h "%{WORD:word} %{NUMBER:number}"
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP i
+ | KEEP j
+ | RENAME k AS l
+ | MV_EXPAND m
+ | LOOKUP JOIN {} ON n
+ | ENRICH clientip_policy ON client_ip WITH env
+ | CHANGE_POINT count ON @timestamp AS type, pvalue
+ | COMPLETION completion_output = prompt WITH { "inference_id" : "test_completion" }
+ | SAMPLE 0.5
+ | RERANK "war and peace" ON title WITH { "inference_id" : "test_reranker" })
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | INLINE STATS max_e = MAX(e) BY f
+ | DISSECT g "%{b} %{c}"
+ | GROK h "%{WORD:word} %{NUMBER:number}"
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP i
+ | KEEP j
+ | RENAME k AS l
+ | MV_EXPAND m
+ | LOOKUP JOIN {} ON n
+ | ENRICH clientip_policy ON client_ip WITH env
+ | CHANGE_POINT count ON @timestamp AS type, pvalue
+ | COMPLETION completion_output = prompt WITH { "inference_id" : "test_completion" }
+ | SAMPLE 0.5
+ | RERANK "war and peace" ON title WITH { "inference_id" : "test_reranker" }
+ """, mainQueryIndexPattern, subqueryIndexPattern, joinIndexPattern, joinIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ Rerank rerank = as(plan, Rerank.class);
+ Sample sample = as(rerank.child(), Sample.class);
+ Completion completion = as(sample.child(), Completion.class);
+ ChangePoint changePoint = as(completion.child(), ChangePoint.class);
+ Enrich enrich = as(changePoint.child(), Enrich.class);
+ LookupJoin lookupJoin = as(enrich.child(), LookupJoin.class);
+ UnresolvedRelation joinRelation = as(lookupJoin.right(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(joinIndexPattern), joinRelation.indexPattern().indexPattern());
+ MvExpand mvExpand = as(lookupJoin.left(), MvExpand.class);
+ Rename rename = as(mvExpand.child(), Rename.class);
+ Keep keep = as(rename.child(), Keep.class);
+ Drop drop = as(keep.child(), Drop.class);
+ Limit limit = as(drop.child(), Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Grok grok = as(orderBy.child(), Grok.class);
+ Dissect dissect = as(grok.child(), Dissect.class);
+ InlineStats inlineStats = as(dissect.child(), InlineStats.class);
+ Aggregate aggregate = as(inlineStats.child(), Aggregate.class);
+ aggregate = as(aggregate.child(), Aggregate.class);
+ Fork fork = as(aggregate.child(), Fork.class);
+ List forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEval : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ Filter forkFilter = as(forkEval.child(), Filter.class);
+ Eval eval = as(forkFilter.child(), Eval.class);
+ Filter filter = as(eval.child(), Filter.class);
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+ // leg1
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(mainQueryIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+ // leg2
+ Subquery subquery = as(children.get(1), Subquery.class);
+ rerank = as(subquery.plan(), Rerank.class);
+ sample = as(rerank.child(), Sample.class);
+ completion = as(sample.child(), Completion.class);
+ changePoint = as(completion.child(), ChangePoint.class);
+ enrich = as(changePoint.child(), Enrich.class);
+ lookupJoin = as(enrich.child(), LookupJoin.class);
+ joinRelation = as(lookupJoin.right(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(joinIndexPattern), joinRelation.indexPattern().indexPattern());
+ mvExpand = as(lookupJoin.left(), MvExpand.class);
+ rename = as(mvExpand.child(), Rename.class);
+ keep = as(rename.child(), Keep.class);
+ drop = as(keep.child(), Drop.class);
+ limit = as(drop.child(), Limit.class);
+ orderBy = as(limit.child(), OrderBy.class);
+ grok = as(orderBy.child(), Grok.class);
+ dissect = as(grok.child(), Dissect.class);
+ inlineStats = as(dissect.child(), InlineStats.class);
+ aggregate = as(inlineStats.child(), Aggregate.class);
+ aggregate = as(aggregate.child(), Aggregate.class);
+ fork = as(aggregate.child(), Fork.class);
+ forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEvalSubquery : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ forkFilter = as(forkEvalSubquery.child(), Filter.class);
+ eval = as(forkFilter.child(), Eval.class);
+ filter = as(eval.child(), Filter.class);
+ UnresolvedRelation subqueryRelation = as(filter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern), subqueryRelation.indexPattern().indexPattern());
+ }
+ }
+ }
+
+ /**
+ * Verify there is no parsing error if the subquery ends with different modes.
+ */
+ public void testSubqueryEndsWithProcessingCommandsInDifferentMode() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ List processingCommandInDifferentMode = List.of(
+ "INLINE STATS max_e = MAX(e) BY f", // inline mode, expression mode
+ "DISSECT g \"%{b} %{c}\"", // expression mode
+ "LOOKUP JOIN index1 ON n", // join mode
+ "ENRICH clientip_policy ON client_ip WITH env", // enrich mode
+ "CHANGE_POINT count ON @timestamp AS type, pvalue", // change_point mode
+ "FORK (WHERE c < 100) (WHERE d > 200)", // fork mode
+ "MV_EXPAND m", // mv_expand mode
+ "RENAME k AS l", // rename mode
+ "DROP i" // project mode
+ );
+ var mainQueryIndexPattern = randomIndexPatterns();
+ var subqueryIndexPattern = randomIndexPatterns();
+ for (String processingCommand : processingCommandInDifferentMode) {
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}
+ | {})
+ | WHERE a > 10
+ """, mainQueryIndexPattern, subqueryIndexPattern, processingCommand);
+
+ LogicalPlan plan = statement(query);
+ Filter filter = as(plan, Filter.class);
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+ // leg1
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(mainQueryIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+ // leg2
+ Subquery subquery = as(children.get(1), Subquery.class);
+ }
+ }
+
+ /**
+ * UnionAll[[]]
+ * |_Subquery[]
+ * | \_UnresolvedRelation[]
+ * |_Subquery[]
+ * | \_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_UnresolvedRelation[]
+ */
+ public void testSubqueryOnly() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var subqueryIndexPattern1 = randomIndexPatterns();
+ var subqueryIndexPattern2 = randomIndexPatterns();
+ var subqueryIndexPattern3 = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM (FROM {}), (FROM {}), (FROM {})
+ """, subqueryIndexPattern1, subqueryIndexPattern2, subqueryIndexPattern3);
+
+ LogicalPlan plan = statement(query);
+ UnionAll unionAll = as(plan, UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(3, children.size());
+
+ Subquery subquery = as(children.get(0), Subquery.class);
+ UnresolvedRelation unresolvedRelation = as(subquery.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern1), unresolvedRelation.indexPattern().indexPattern());
+
+ subquery = as(children.get(1), Subquery.class);
+ unresolvedRelation = as(subquery.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern2), unresolvedRelation.indexPattern().indexPattern());
+
+ subquery = as(children.get(2), Subquery.class);
+ unresolvedRelation = as(subquery.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern3), unresolvedRelation.indexPattern().indexPattern());
+ }
+
+ /**
+ * If the FROM command contains only a subquery, the subquery is merged into an index pattern.
+ *
+ * Keep[[?g]]
+ * \_Drop[[?f]]
+ * \_Limit[10[INTEGER],false]
+ * \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * \_Aggregate[[?e],[?COUNT[*] AS cnt#10, ?e]]
+ * \_Fork[[]]
+ * |_Eval[[fork1[KEYWORD] AS _fork#6]]
+ * | \_Filter[?c < 100[INTEGER]]
+ * | \_Eval[[?a * 2[INTEGER] AS b#4]]
+ * | \_Filter[?a > 10[INTEGER]]
+ * | \_UnresolvedRelation[]
+ * \_Eval[[fork2[KEYWORD] AS _fork#6]]
+ * \_Filter[?d > 200[INTEGER]]
+ * \_Eval[[?a * 2[INTEGER] AS b#4]]
+ * \_Filter[?a > 10[INTEGER]]
+ * \_UnresolvedRelation[]
+ */
+ public void testSubqueryOnlyWithProcessingCommandInMainquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var subqueryIndexPattern = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM (FROM {})
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP f
+ | KEEP g
+ """, subqueryIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ Keep keep = as(plan, Keep.class);
+ Drop drop = as(keep.child(), Drop.class);
+ Limit limit = as(drop.child(), Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Aggregate aggregate = as(orderBy.child(), Aggregate.class);
+ Fork fork = as(aggregate.child(), Fork.class);
+ List forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEval : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ Filter forkFilter = as(forkEval.child(), Filter.class);
+ Eval eval = as(forkFilter.child(), Eval.class);
+ Filter filter = as(eval.child(), Filter.class);
+ UnresolvedRelation unresolvedRelation = as(filter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+ }
+ }
+
+ /**
+ * Keep[[?g]]
+ * \_Drop[[?f]]
+ * \_Limit[10[INTEGER],false]
+ * \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * \_Aggregate[[?e],[?COUNT[*] AS cnt#7, ?e]]
+ * \_Fork[[]]
+ * |_Eval[[fork1[KEYWORD] AS _fork#3]]
+ * | \_Filter[?c < 100[INTEGER]]
+ * | \_Eval[[?a * 2[INTEGER] AS b#13]]
+ * | \_Filter[?a > 10[INTEGER]]
+ * | \_UnresolvedRelation[]
+ * \_Eval[[fork2[KEYWORD] AS _fork#3]]
+ * \_Filter[?d > 200[INTEGER]]
+ * \_Eval[[?a * 2[INTEGER] AS b#13]]
+ * \_Filter[?a > 10[INTEGER]]
+ * \_UnresolvedRelation[]
+ */
+ public void testSubqueryOnlyWithProcessingCommandsInSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var subqueryIndexPattern = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM (FROM {}
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP f
+ | KEEP g)
+ """, subqueryIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ Keep keep = as(plan, Keep.class);
+ Drop drop = as(keep.child(), Drop.class);
+ Limit limit = as(drop.child(), Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Aggregate aggregate = as(orderBy.child(), Aggregate.class);
+ Fork fork = as(aggregate.child(), Fork.class);
+ List forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEval : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ Filter forkFilter = as(forkEval.child(), Filter.class);
+ Eval eval = as(forkFilter.child(), Eval.class);
+ Filter filter = as(eval.child(), Filter.class);
+ UnresolvedRelation subqueryRelation = as(filter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern), subqueryRelation.indexPattern().indexPattern());
+ }
+ }
+
+ /**
+ * If the FROM command contains only a subquery, the subquery is merged into an index pattern.
+ *
+ * Keep[[?g]]
+ * \_Drop[[?f]]
+ * \_Limit[10[INTEGER],false]
+ * \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * \_Aggregate[[?e],[?COUNT[*] AS cnt#23, ?e]]
+ * \_Fork[[]]
+ * |_Eval[[fork1[KEYWORD] AS _fork#19]]
+ * | \_Filter[?c < 100[INTEGER]]
+ * | \_Eval[[?a * 2[INTEGER] AS b#17]]
+ * | \_Filter[?a > 10[INTEGER]]
+ * | \_Keep[[?g]]
+ * | \_Drop[[?f]]
+ * | \_Limit[10[INTEGER],false]
+ * | \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * | \_Aggregate[[?e],[?COUNT[*] AS cnt#7, ?e]]
+ * | \_Fork[[]]
+ * | |_Eval[[fork1[KEYWORD] AS _fork#3]]
+ * | | \_Filter[?c < 100[INTEGER]]
+ * | | \_Eval[[?a * 2[INTEGER] AS b#13]]
+ * | | \_Filter[?a > 10[INTEGER]]
+ * | | \_UnresolvedRelation[]
+ * | \_Eval[[fork2[KEYWORD] AS _fork#3]]
+ * | \_Filter[?d > 200[INTEGER]]
+ * | \_Eval[[?a * 2[INTEGER] AS b#13]]
+ * | \_Filter[?a > 10[INTEGER]]
+ * | \_UnresolvedRelation[]
+ * \_Eval[[fork2[KEYWORD] AS _fork#19]]
+ * \_Filter[?d > 200[INTEGER]]
+ * \_Eval[[?a * 2[INTEGER] AS b#17]]
+ * \_Filter[?a > 10[INTEGER]]
+ * \_Keep[[?g]]
+ * \_Drop[[?f]]
+ * \_Limit[10[INTEGER],false]
+ * \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * \_Aggregate[[?e],[?COUNT[*] AS cnt#7, ?e]]
+ * \_Fork[[]]
+ * |_Eval[[fork1[KEYWORD] AS _fork#3]]
+ * | \_Filter[?c < 100[INTEGER]]
+ * | \_Eval[[?a * 2[INTEGER] AS b#13]]
+ * | \_Filter[?a > 10[INTEGER]]
+ * | \_UnresolvedRelation[]
+ * \_Eval[[fork2[KEYWORD] AS _fork#3]]
+ * \_Filter[?d > 200[INTEGER]]
+ * \_Eval[[?a * 2[INTEGER] AS b#13]]
+ * \_Filter[?a > 10[INTEGER]]
+ * \_UnresolvedRelation[]
+ */
+ public void testSubqueryOnlyWithProcessingCommandsInSubqueryAndMainquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var subqueryIndexPattern = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM (FROM {}
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP f
+ | KEEP g)
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP f
+ | KEEP g
+ """, subqueryIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ Keep keep = as(plan, Keep.class);
+ Drop drop = as(keep.child(), Drop.class);
+ Limit limit = as(drop.child(), Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Aggregate aggregate = as(orderBy.child(), Aggregate.class);
+ Fork fork = as(aggregate.child(), Fork.class);
+ List forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEval : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ Filter forkFilter = as(forkEval.child(), Filter.class);
+ Eval eval = as(forkFilter.child(), Eval.class);
+ Filter filter = as(eval.child(), Filter.class);
+ Keep subqueryKeep = as(filter.child(), Keep.class);
+ Drop subqueryDrop = as(subqueryKeep.child(), Drop.class);
+ Limit subqueryLimit = as(subqueryDrop.child(), Limit.class);
+ OrderBy subqueryOrderby = as(subqueryLimit.child(), OrderBy.class);
+ Aggregate subqueryAggregate = as(subqueryOrderby.child(), Aggregate.class);
+ Fork subqueryFork = as(subqueryAggregate.child(), Fork.class);
+ List subqueryForkChildren = subqueryFork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval subqueryForkEval : List.of(
+ as(subqueryForkChildren.get(0), Eval.class),
+ as(subqueryForkChildren.get(1), Eval.class)
+ )) {
+ Filter subqueryForkFilter = as(subqueryForkEval.child(), Filter.class);
+ Eval subqueryEval = as(subqueryForkFilter.child(), Eval.class);
+ Filter subqueryFilter = as(subqueryEval.child(), Filter.class);
+ UnresolvedRelation subqueryRelation = as(subqueryFilter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern), subqueryRelation.indexPattern().indexPattern());
+ }
+ }
+ }
+
+ /**
+ * UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * |_Subquery[]
+ * | \_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_UnresolvedRelation[]
+ */
+ public void testMultipleMixedIndexPatternsAndSubqueries() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var indexPattern1 = randomIndexPatterns();
+ var indexPattern2 = randomIndexPatterns();
+ var indexPattern3 = randomIndexPatterns();
+ var indexPattern4 = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}), {}, (FROM {})
+ """, indexPattern1, indexPattern2, indexPattern3, indexPattern4);
+
+ LogicalPlan plan = statement(query);
+ UnionAll unionAll = as(plan, UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(3, children.size());
+
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(
+ unquoteIndexPattern(indexPattern1) + "," + unquoteIndexPattern(indexPattern3),
+ unresolvedRelation.indexPattern().indexPattern()
+ );
+
+ Subquery subquery1 = as(children.get(1), Subquery.class);
+ unresolvedRelation = as(subquery1.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern2), unresolvedRelation.indexPattern().indexPattern());
+
+ Subquery subquery2 = as(children.get(2), Subquery.class);
+ unresolvedRelation = as(subquery2.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern4), unresolvedRelation.indexPattern().indexPattern());
+ }
+
+ /**
+ * Keep[[?g]]
+ * \_Drop[[?f]]
+ * \_Limit[10[INTEGER],false]
+ * \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * \_Aggregate[[?e],[?COUNT[*] AS cnt#25, ?e]]
+ * \_Fork[[]]
+ * |_Eval[[fork1[KEYWORD] AS _fork#21]]
+ * | \_Filter[?c < 100[INTEGER]]
+ * | \_LookupJoin[LEFT,[?c],[?c],true,null]
+ * | |_Eval[[?a * 2[INTEGER] AS b#18]]
+ * | | \_Filter[?a > 10[INTEGER]]
+ * | | \_UnionAll[[]]
+ * | | |_UnresolvedRelation[]
+ * | | |_Subquery[]
+ * | | | \_Keep[[?g]]
+ * | | | \_Drop[[?f]]
+ * | | | \_Limit[10[INTEGER],false]
+ * | | | \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * | | | \_Aggregate[[?e],[?COUNT[*] AS cnt#8, ?e]]
+ * | | | \_Fork[[]]
+ * | | | |_Eval[[fork1[KEYWORD] AS _fork#4]]
+ * | | | | \_Filter[?c < 100[INTEGER]]
+ * | | | | \_LookupJoin[LEFT,[?c],[?c],true,null]
+ * | | | | |_Eval[[?a * 2[INTEGER] AS b#14]]
+ * | | | | | \_Filter[?a > 10[INTEGER]]
+ * | | | | | \_UnresolvedRelation[]
+ * | | | | \_UnresolvedRelation[lookup_index]
+ * | | | \_Eval[[fork2[KEYWORD] AS _fork#4]]
+ * | | | \_Filter[?d > 200[INTEGER]]
+ * | | | \_LookupJoin[LEFT,[?c],[?c],true,null]
+ * | | | |_Eval[[?a * 2[INTEGER] AS b#14]]
+ * | | | | \_Filter[?a > 10[INTEGER]]
+ * | | | | \_UnresolvedRelation[]
+ * | | | \_UnresolvedRelation[lookup_index]
+ * | | \_Subquery[]
+ * | | \_UnresolvedRelation[]
+ * | \_UnresolvedRelation[lookup_index]
+ * \_Eval[[fork2[KEYWORD] AS _fork#21]]
+ * \_Filter[?d > 200[INTEGER]]
+ * \_LookupJoin[LEFT,[?c],[?c],true,null]
+ * |_Eval[[?a * 2[INTEGER] AS b#18]]
+ * | \_Filter[?a > 10[INTEGER]]
+ * | \_UnionAll[[]]
+ * | |_UnresolvedRelation[]
+ * | |_Subquery[]
+ * | | \_Keep[[?g]]
+ * | | \_Drop[[?f]]
+ * | | \_Limit[10[INTEGER],false]
+ * | | \_OrderBy[[Order[?cnt,DESC,FIRST]]]
+ * | | \_Aggregate[[?e],[?COUNT[*] AS cnt#8, ?e]]
+ * | | \_Fork[[]]
+ * | | |_Eval[[fork1[KEYWORD] AS _fork#4]]
+ * | | | \_Filter[?c < 100[INTEGER]]
+ * | | | \_LookupJoin[LEFT,[?c],[?c],true,null]
+ * | | | |_Eval[[?a * 2[INTEGER] AS b#14]]
+ * | | | | \_Filter[?a > 10[INTEGER]]
+ * | | | | \_UnresolvedRelation[]
+ * | | | \_UnresolvedRelation[lookup_index]
+ * | | \_Eval[[fork2[KEYWORD] AS _fork#4]]
+ * | | \_Filter[?d > 200[INTEGER]]
+ * | | \_LookupJoin[LEFT,[?c],[?c],true,null]
+ * | | |_Eval[[?a * 2[INTEGER] AS b#14]]
+ * | | | \_Filter[?a > 10[INTEGER]]
+ * | | | \_UnresolvedRelation[]
+ * | | \_UnresolvedRelation[lookup_index]
+ * | \_Subquery[]
+ * | \_UnresolvedRelation[]
+ * \_UnresolvedRelation[lookup_index]
+ */
+ public void testMultipleSubqueriesWithProcessingCommands() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var mainIndexPattern1 = randomIndexPatterns();
+ var mainIndexPattern2 = randomIndexPatterns();
+ var subqueryIndexPattern1 = randomIndexPatterns();
+ var subqueryIndexPattern2 = randomIndexPatterns();
+ var joinIndexPattern = "lookup_index";
+ var combinedIndexPattern = unquoteIndexPattern(mainIndexPattern1) + "," + unquoteIndexPattern(mainIndexPattern2);
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | LOOKUP JOIN {} ON c
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP f
+ | KEEP g)
+ , {}, (FROM {})
+ | WHERE a > 10
+ | EVAL b = a * 2
+ | LOOKUP JOIN {} ON c
+ | FORK (WHERE c < 100) (WHERE d > 200)
+ | STATS cnt = COUNT(*) BY e
+ | SORT cnt desc
+ | LIMIT 10
+ | DROP f
+ | KEEP g
+ """, mainIndexPattern1, subqueryIndexPattern1, joinIndexPattern, mainIndexPattern2, subqueryIndexPattern2, joinIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ Keep keep = as(plan, Keep.class);
+ Drop drop = as(keep.child(), Drop.class);
+ Limit limit = as(drop.child(), Limit.class);
+ OrderBy orderBy = as(limit.child(), OrderBy.class);
+ Aggregate aggregate = as(orderBy.child(), Aggregate.class);
+ Fork fork = as(aggregate.child(), Fork.class);
+ List forkChildren = fork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval forkEval : List.of(as(forkChildren.get(0), Eval.class), as(forkChildren.get(1), Eval.class))) {
+ Filter forkFilter = as(forkEval.child(), Filter.class);
+ LookupJoin lookupJoin = as(forkFilter.child(), LookupJoin.class);
+ Eval eval = as(lookupJoin.left(), Eval.class);
+ UnresolvedRelation joinRelation = as(lookupJoin.right(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(joinIndexPattern), joinRelation.indexPattern().indexPattern());
+ Filter filter = as(eval.child(), Filter.class);
+
+ UnionAll unionAll = as(filter.child(), UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(3, children.size());
+
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(combinedIndexPattern), unresolvedRelation.indexPattern().indexPattern());
+ Subquery subquery1 = as(children.get(1), Subquery.class);
+ Keep subqueryKeep = as(subquery1.plan(), Keep.class);
+ Drop subqueryDrop = as(subqueryKeep.child(), Drop.class);
+ Limit subqueryLimit = as(subqueryDrop.child(), Limit.class);
+ OrderBy subqueryOrderby = as(subqueryLimit.child(), OrderBy.class);
+ Aggregate subqueryAggregate = as(subqueryOrderby.child(), Aggregate.class);
+ Fork subqueryFork = as(subqueryAggregate.child(), Fork.class);
+ List subqueryForkChildren = subqueryFork.children();
+ assertEquals(2, forkChildren.size());
+ for (Eval subqueryForkEval : List.of(
+ as(subqueryForkChildren.get(0), Eval.class),
+ as(subqueryForkChildren.get(1), Eval.class)
+ )) {
+ Filter subqueryForkFilter = as(subqueryForkEval.child(), Filter.class);
+ LookupJoin subqueryLookupJoin = as(subqueryForkFilter.child(), LookupJoin.class);
+ Eval subqueryEval = as(subqueryLookupJoin.left(), Eval.class);
+ joinRelation = as(subqueryLookupJoin.right(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(joinIndexPattern), joinRelation.indexPattern().indexPattern());
+ Filter subqueryFilter = as(subqueryEval.child(), Filter.class);
+ unresolvedRelation = as(subqueryFilter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern1), unresolvedRelation.indexPattern().indexPattern());
+ }
+
+ Subquery subquery2 = as(children.get(2), Subquery.class);
+ unresolvedRelation = as(subquery2.plan(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(subqueryIndexPattern2), unresolvedRelation.indexPattern().indexPattern());
+ }
+ }
+
+ /**
+ * UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_UnresolvedRelation[]
+ */
+ public void testSimpleNestedSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var indexPattern1 = randomIndexPatterns();
+ var indexPattern2 = randomIndexPatterns();
+ var indexPattern3 = randomIndexPatterns();
+ var indexPattern4 = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}, (FROM {}, (FROM {})))
+ """, indexPattern1, indexPattern2, indexPattern3, indexPattern4);
+
+ LogicalPlan plan = statement(query);
+
+ UnionAll unionAll = as(plan, UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern1), unresolvedRelation.indexPattern().indexPattern());
+
+ Subquery subquery1 = as(children.get(1), Subquery.class);
+ unionAll = as(subquery1.plan(), UnionAll.class);
+ children = unionAll.children();
+ assertEquals(2, children.size());
+
+ unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern2), unresolvedRelation.indexPattern().indexPattern());
+
+ Subquery subquery2 = as(children.get(1), Subquery.class);
+ unionAll = as(subquery2.plan(), UnionAll.class);
+ children = unionAll.children();
+ assertEquals(2, children.size());
+
+ unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern3), unresolvedRelation.indexPattern().indexPattern());
+ Subquery subquery3 = as(children.get(1), Subquery.class);
+ unresolvedRelation = as(subquery3.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern4), unresolvedRelation.indexPattern().indexPattern());
+ }
+
+ /**
+ * LogicalPlanBuilder does not flatten nested subqueries with processing commands,
+ * the structure of the nested subqueries s preserved in the parsed plan.
+ *
+ * Limit[10[INTEGER],false]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_Aggregate[[?e],[?COUNT[*] AS cnt#7, ?e]]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_Eval[[?a * 2[INTEGER] AS b#4]]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_Filter[?a > 10[INTEGER]]
+ * \_UnresolvedRelation[]
+ */
+ public void testNestedSubqueryWithProcessingCommands() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var indexPattern1 = randomIndexPatterns();
+ var indexPattern2 = randomIndexPatterns();
+ var indexPattern3 = randomIndexPatterns();
+ var indexPattern4 = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}, (FROM {}, (FROM {}
+ | WHERE a > 10)
+ | EVAL b = a * 2)
+ |STATS cnt = COUNT(*) BY e)
+ | LIMIT 10
+ """, indexPattern1, indexPattern2, indexPattern3, indexPattern4);
+
+ LogicalPlan plan = statement(query);
+ Limit limit = as(plan, Limit.class);
+ UnionAll unionAll = as(limit.child(), UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+ UnresolvedRelation unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern1), unresolvedRelation.indexPattern().indexPattern());
+ Subquery subquery1 = as(children.get(1), Subquery.class);
+ Aggregate aggregate = as(subquery1.plan(), Aggregate.class);
+ unionAll = as(aggregate.child(), UnionAll.class);
+ children = unionAll.children();
+ assertEquals(2, children.size());
+ unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern2), unresolvedRelation.indexPattern().indexPattern());
+ Subquery subquery2 = as(children.get(1), Subquery.class);
+ Eval eval = as(subquery2.plan(), Eval.class);
+ unionAll = as(eval.child(), UnionAll.class);
+ children = unionAll.children();
+ assertEquals(2, children.size());
+ unresolvedRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern3), unresolvedRelation.indexPattern().indexPattern());
+ Subquery subquery3 = as(children.get(1), Subquery.class);
+ Filter filter = as(subquery3.plan(), Filter.class);
+ unresolvedRelation = as(filter.child(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern4), unresolvedRelation.indexPattern().indexPattern());
+ }
+
+ /**
+ * The medatada options from the main query are not propagated into subqueries.
+ *
+ * Aggregate[[?a],[?COUNT[*] AS cnt#6, ?a]]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_Filter[?a > 10[INTEGER]]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_UnresolvedRelation[]
+ */
+ public void testSubqueriesWithMetadada() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var indexPattern1 = randomIndexPatterns();
+ var indexPattern2 = randomIndexPatterns();
+ var indexPattern3 = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, (FROM {}, (FROM {}) metadata _score | WHERE a > 10) metadata _index
+ | STATS cnt = COUNT(*) BY a
+ """, indexPattern1, indexPattern2, indexPattern3);
+
+ LogicalPlan plan = statement(query);
+ Aggregate aggregate = as(plan, Aggregate.class);
+ UnionAll unionAll = as(aggregate.child(), UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+ // main query
+ UnresolvedRelation mainRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern1), mainRelation.indexPattern().indexPattern());
+ List metadata = mainRelation.metadataFields();
+ assertEquals(1, metadata.size());
+ MetadataAttribute metadataAttribute = as(metadata.get(0), MetadataAttribute.class);
+ assertEquals("_index", metadataAttribute.name());
+ // subquery1
+ Subquery subquery = as(children.get(1), Subquery.class);
+ Filter filter = as(subquery.plan(), Filter.class);
+ unionAll = as(filter.child(), UnionAll.class);
+ children = unionAll.children();
+ assertEquals(2, children.size());
+ UnresolvedRelation subqueryRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern2), subqueryRelation.indexPattern().indexPattern());
+ metadata = subqueryRelation.metadataFields();
+ assertEquals(1, metadata.size());
+ metadataAttribute = as(metadata.get(0), MetadataAttribute.class);
+ assertEquals("_score", metadataAttribute.name());
+ // subquery2
+ subquery = as(children.get(1), Subquery.class);
+ subqueryRelation = as(subquery.plan(), UnresolvedRelation.class);
+ assertEquals(unquoteIndexPattern(indexPattern3), subqueryRelation.indexPattern().indexPattern());
+ metadata = subqueryRelation.metadataFields();
+ assertEquals(0, metadata.size());
+ }
+
+ /**
+ * Aggregate[[?a],[?COUNT[*] AS cnt#4, ?a]]
+ * \_UnionAll[[]]
+ * |_UnresolvedRelation[]
+ * \_Subquery[]
+ * \_Filter[?a > 10[INTEGER]]
+ * \_UnresolvedRelation[]
+ */
+ public void testSubqueryWithRemoteCluster() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var mainRemoteIndexPattern = randomIndexPatterns(CROSS_CLUSTER);
+ var mainIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var combinedMainIndexPattern = unquoteIndexPattern(mainRemoteIndexPattern) + "," + unquoteIndexPattern(mainIndexPattern);
+ var subqueryRemoteIndexPattern = randomIndexPatterns(CROSS_CLUSTER);
+ var subqueryIndexPattern = randomIndexPatterns(without(CROSS_CLUSTER));
+ var combinedSubqueryIndexPattern = unquoteIndexPattern(subqueryRemoteIndexPattern)
+ + ","
+ + unquoteIndexPattern(subqueryIndexPattern);
+ String query = LoggerMessageFormat.format(null, """
+ FROM {}, {}, (FROM {}, {} | WHERE a > 10)
+ | STATS cnt = COUNT(*) BY a
+ """, mainRemoteIndexPattern, mainIndexPattern, subqueryRemoteIndexPattern, subqueryIndexPattern);
+
+ LogicalPlan plan = statement(query);
+ Aggregate aggregate = as(plan, Aggregate.class);
+ UnionAll unionAll = as(aggregate.child(), UnionAll.class);
+ List children = unionAll.children();
+ assertEquals(2, children.size());
+ // main query
+ UnresolvedRelation mainRelation = as(children.get(0), UnresolvedRelation.class);
+ assertEquals(combinedMainIndexPattern, mainRelation.indexPattern().indexPattern());
+ // subquery
+ Subquery subquery = as(children.get(1), Subquery.class);
+ Filter filter = as(subquery.plan(), Filter.class);
+ UnresolvedRelation unresolvedRelation = as(filter.child(), UnresolvedRelation.class);
+ assertEquals(combinedSubqueryIndexPattern, unresolvedRelation.indexPattern().indexPattern());
+ }
+
+ public void testTimeSeriesWithSubquery() {
+ assumeTrue("Requires subquery in FROM command support", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+ var mainIndexPattern = randomIndexPatterns();
+ var subqueryIndexPattern = randomIndexPatterns();
+ String query = LoggerMessageFormat.format(null, """
+ TS index1, (FROM index2)
+ """, mainIndexPattern, subqueryIndexPattern);
+
+ expectThrows(
+ ParsingException.class,
+ containsString("line 1:2: Subqueries are not supported in TS command"),
+ () -> statement(query)
+ );
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SubquerySerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SubquerySerializationTests.java
new file mode 100644
index 0000000000000..a0ac3b86d8b06
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SubquerySerializationTests.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.plan.logical;
+
+import org.elasticsearch.xpack.esql.core.tree.Source;
+
+import java.io.IOException;
+
+public class SubquerySerializationTests extends AbstractLogicalPlanSerializationTests {
+ @Override
+ protected Subquery createTestInstance() {
+ Source source = randomSource();
+ LogicalPlan child = randomChild(0);
+ return new Subquery(source, child);
+ }
+
+ @Override
+ protected Subquery mutateInstance(Subquery instance) throws IOException {
+ LogicalPlan child = instance.child();
+ child = randomValueOtherThan(child, () -> randomChild(0));
+ return new Subquery(instance.source(), child);
+ }
+
+ @Override
+ protected boolean alwaysEmptySource() {
+ return true;
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/telemetry/VerifierMetricsTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/telemetry/VerifierMetricsTests.java
index 05e0f70b949f0..178bea2feb30a 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/telemetry/VerifierMetricsTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/telemetry/VerifierMetricsTests.java
@@ -71,6 +71,7 @@ public void testDissectQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("concat", c));
}
@@ -95,6 +96,7 @@ public void testEvalQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("length", c));
}
@@ -119,6 +121,7 @@ public void testGrokQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("concat", c));
}
@@ -143,6 +146,7 @@ public void testLimitQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
}
public void testSortQuery() {
@@ -166,6 +170,7 @@ public void testSortQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
}
public void testStatsQuery() {
@@ -189,6 +194,7 @@ public void testStatsQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("max", c));
}
@@ -213,6 +219,7 @@ public void testWhereQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
}
public void testTwoWhereQuery() {
@@ -236,6 +243,7 @@ public void testTwoWhereQuery() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
}
public void testTwoQueriesExecuted() {
@@ -279,6 +287,7 @@ public void testTwoQueriesExecuted() {
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
assertEquals(0, inlineStats(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("length", c));
assertEquals(1, function("concat", c));
@@ -366,6 +375,7 @@ public void testEnrich() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("to_string", c));
}
@@ -399,6 +409,7 @@ public void testMvExpand() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
}
public void testShowInfo() {
@@ -422,6 +433,7 @@ public void testShowInfo() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("count", c));
}
@@ -446,6 +458,7 @@ public void testRow() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
}
public void testDropAndRename() {
@@ -469,6 +482,7 @@ public void testDropAndRename() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("count", c));
}
@@ -498,6 +512,7 @@ public void testKeep() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
}
public void testCategorize() {
@@ -525,6 +540,7 @@ public void testCategorize() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("count", c));
assertEquals(1, function("categorize", c));
}
@@ -554,6 +570,7 @@ public void testInlineStatsStandalone() {
assertEquals(1L, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("max", c));
}
@@ -583,6 +600,7 @@ public void testInlineStatsWithOtherStats() {
assertEquals(1L, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("max", c));
}
@@ -611,6 +629,7 @@ public void testBinaryPlanAfterStats() {
assertEquals(0, inlineStats(c));
assertEquals(1L, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("max", c));
}
@@ -644,6 +663,7 @@ public void testBinaryPlanAfterStatsExpressionJoin() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(1L, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("max", c));
}
@@ -673,6 +693,7 @@ public void testBinaryPlanAfterInlineStats() {
assertEquals(1L, inlineStats(c));
assertEquals(1L, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("max", c));
}
@@ -700,6 +721,7 @@ public void testTimeSeriesAggregate() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
assertEquals(1, function("sum", c));
assertEquals(1, function("avg_over_time", c));
}
@@ -728,6 +750,40 @@ public void testTimeSeriesNoAggregate() {
assertEquals(0, inlineStats(c));
assertEquals(0, lookupJoinOnFields(c));
assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(0, subqueryInFromCommand(c));
+ }
+
+ public void testBinaryPlanAfterSubqueryInFromCommand() {
+ assumeTrue("requires SUBQUERY IN FROM capability", EsqlCapabilities.Cap.SUBQUERY_IN_FROM_COMMAND.isEnabled());
+
+ Counters c = esql("""
+ from employees
+ , (from employees | stats max = max(salary) by languages)
+ , (from employees | stats min = min(salary) by languages)
+ | where min > 0 and max < 100000
+ """);
+ assertEquals(0, dissect(c));
+ assertEquals(1L, eval(c));
+ assertEquals(0, grok(c));
+ assertEquals(0, limit(c));
+ assertEquals(0, sort(c));
+ assertEquals(1L, stats(c));
+ assertEquals(1L, where(c));
+ assertEquals(0, enrich(c));
+ assertEquals(0, mvExpand(c));
+ assertEquals(0, show(c));
+ assertEquals(0, row(c));
+ assertEquals(1L, from(c));
+ assertEquals(0, ts(c));
+ assertEquals(0, drop(c));
+ assertEquals(0, keep(c));
+ assertEquals(0, rename(c));
+ assertEquals(0, inlineStats(c));
+ assertEquals(0, lookupJoinOnFields(c));
+ assertEquals(0, lookupJoinOnExpression(c));
+ assertEquals(1L, subqueryInFromCommand(c));
+ assertEquals(1L, function("max", c));
+ assertEquals(1L, function("min", c));
}
private long dissect(Counters c) {
@@ -806,6 +862,10 @@ private long lookupJoinOnExpression(Counters c) {
return c.get(FEATURES_PREFIX + LOOKUP_JOIN_ON_EXPRESSION);
}
+ private long subqueryInFromCommand(Counters c) {
+ return c.get(FEATURES_PREFIX + FeatureMetric.SUBQUERY);
+ }
+
private long function(String function, Counters c) {
return c.get(FUNC_PREFIX + function);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java
index 2f848d07f657f..b91fdc6090e95 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java
@@ -44,12 +44,15 @@
import org.elasticsearch.xpack.esql.expression.function.scalar.math.Pow;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Concat;
import org.elasticsearch.xpack.esql.expression.predicate.fulltext.FullTextPredicate;
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.Equals;
import org.elasticsearch.xpack.esql.index.EsIndex;
import org.elasticsearch.xpack.esql.plan.logical.Dissect;
import org.elasticsearch.xpack.esql.plan.logical.EsRelation;
+import org.elasticsearch.xpack.esql.plan.logical.Filter;
import org.elasticsearch.xpack.esql.plan.logical.Fork;
import org.elasticsearch.xpack.esql.plan.logical.Grok;
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.UnionAll;
import org.elasticsearch.xpack.esql.plan.logical.join.JoinConfig;
import org.elasticsearch.xpack.esql.plan.logical.join.JoinType;
import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes;
@@ -96,6 +99,7 @@
import static java.util.Collections.emptyList;
import static org.elasticsearch.xpack.esql.ConfigurationTestUtils.randomConfiguration;
import static org.elasticsearch.xpack.esql.core.type.DataType.GEO_POINT;
+import static org.elasticsearch.xpack.esql.core.type.DataType.INTEGER;
import static org.elasticsearch.xpack.esql.index.EsIndexSerializationTests.randomEsIndex;
import static org.elasticsearch.xpack.esql.index.EsIndexSerializationTests.randomIndexNameWithModes;
import static org.elasticsearch.xpack.esql.plan.AbstractNodeSerializationTests.randomFieldAttributes;
@@ -150,7 +154,7 @@ public static List