From 284ec53565c1b48a61f76e99f586e608c738991b Mon Sep 17 00:00:00 2001 From: zstan Date: Thu, 16 Apr 2026 10:08:00 +0300 Subject: [PATCH 01/13] IGNITE-28556 Calcite. Support wrap_key and wrap_value flags --- .../calcite/exec/ddl/DdlCommandHandler.java | 55 ++++- .../prepare/ddl/CreateTableCommand.java | 37 +++- .../prepare/ddl/DdlSqlToCommandConverter.java | 31 ++- .../sql/IgniteSqlCreateTableOptionEnum.java | 6 + .../integration/TableDdlIntegrationTest.java | 206 +++++++++++++++++- .../query/calcite/jdbc/JdbcQueryTest.java | 182 ++++++++++++++++ .../query/h2/sql/GridSqlCreateTable.java | 2 +- .../index/DynamicColumnsAbstractTest.java | 2 +- .../cache/index/H2DynamicTableSelfTest.java | 2 +- 9 files changed, 512 insertions(+), 11 deletions(-) diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java index e7c268d8918d0..2b2bcea6580c5 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java @@ -64,6 +64,10 @@ import static org.apache.ignite.internal.processors.query.QueryUtils.convert; import static org.apache.ignite.internal.processors.query.QueryUtils.isDdlOnSchemaSupported; +import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.KEY_TYPE; +import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.VALUE_TYPE; +import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.WRAP_KEY; +import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.WRAP_VALUE; /** */ public class DdlCommandHandler { @@ -136,6 +140,8 @@ private void handle0(CreateTableCommand cmd) throws IgniteCheckedException { throw new SchemaOperationException(SchemaOperationException.CODE_TABLE_EXISTS, cmd.tableName()); } + checkKVWrappedParam(cmd); + CacheConfiguration ccfg = new CacheConfiguration<>(cmd.tableName()); QueryEntity e = toQueryEntity(cmd); @@ -177,6 +183,37 @@ private void handle0(CreateTableCommand cmd) throws IgniteCheckedException { } } + /** */ + private void checkKVWrappedParam(CreateTableCommand cmd) { + Boolean wrapKey = cmd.wrapKey(); + + if (wrapKey != null && !wrapKey) { + if (cmd.primaryKeyColumns().size() > 1) { + throw new IgniteSQLException(WRAP_KEY + " parameter cannot be \"false\" when composite primary key exists.", + IgniteQueryErrorCode.PARSING); + } + + if (!F.isEmpty(cmd.keyTypeName())) { + throw new IgniteSQLException(WRAP_KEY + " cannot be \"false\" when " + KEY_TYPE + " is defined.", + IgniteQueryErrorCode.PARSING); + } + } + + boolean wrapVal = cmd.wrapValue(); + + if (!wrapVal) { + if (!cmd.primaryKeyColumns().isEmpty() && cmd.columns().size() - cmd.primaryKeyColumns().size() > 1) { + throw new IgniteSQLException(WRAP_VALUE + " parameter cannot be \"false\" with multiple columns.", + IgniteQueryErrorCode.PARSING); + } + + if (!F.isEmpty(cmd.valueTypeName())) { + throw new IgniteSQLException(WRAP_VALUE + " cannot be \"false\" when " + VALUE_TYPE + " is defined.", + IgniteQueryErrorCode.PARSING); + } + } + } + /** */ private void handle0(DropTableCommand cmd) throws IgniteCheckedException { isDdlOnSchemaSupported(cmd.schemaName()); @@ -214,7 +251,7 @@ private void handle0(AlterTableAddCommand cmd) throws IgniteCheckedException { if (QueryUtils.isSqlType(typeDesc.valueClass())) { throw new SchemaOperationException("Cannot add column(s) because table was created " + - "with WRAP_VALUE=false option."); + "based on cache configured with built-in types or with " + WRAP_VALUE + "=false option."); } List cols = new ArrayList<>(cmd.columns().size()); @@ -386,6 +423,22 @@ else if (!F.isEmpty(cmd.primaryKeyColumns()) && cmd.primaryKeyColumns().size() = res = new QueryEntityEx(res).implicitPk(true); } + if (!cmd.wrapValue()) { + ColumnDefinition valCol = null; + + for (ColumnDefinition col : cmd.columns()) { + if (!cmd.primaryKeyColumns().contains(col.name())) { + valCol = col; + break; + } + } + + if (valCol != null) { + valTypeName = Commons.typeFactory().getResultClass(valCol.type()).getTypeName(); + res.setValueFieldName(valCol.name()); + } + } + res.setValueType(F.isEmpty(cmd.valueTypeName()) ? valTypeName : cmd.valueTypeName()); res.setKeyType(keyTypeName); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java index 12436c54da7ea..5d1f1c763267a 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java @@ -17,6 +17,7 @@ package org.apache.ignite.internal.processors.query.calcite.prepare.ddl; +import java.util.Collections; import java.util.List; import org.apache.calcite.sql.SqlInsert; import org.apache.ignite.cache.CacheAtomicityMode; @@ -45,6 +46,12 @@ public class CreateTableCommand implements DdlCommand { /** Name of cache key type. */ private String keyTypeName; + /** Wrap key flag. */ + private Boolean wrapKey; + + /** Wrap value flag. */ + private boolean wrapValue = true; + /** Name of cache value type. */ private String valTypeName; @@ -67,7 +74,7 @@ public class CreateTableCommand implements DdlCommand { private List cols; /** Primary key columns. */ - private List pkCols; + private List pkCols = Collections.emptyList(); /** Name of the column that represents affinity key. */ private String affinityKey; @@ -109,6 +116,34 @@ public void cacheName(String cacheName) { this.cacheName = cacheName; } + /** + * @return wrap_key flag. + */ + @Nullable public Boolean wrapKey() { + return wrapKey; + } + + /** + * @param wrapKey wrap_key flag. + */ + public void wrapKey(boolean wrapKey) { + this.wrapKey = wrapKey; + } + + /** + * @return wrap_value flag. + */ + public boolean wrapValue() { + return wrapValue; + } + + /** + * @param wrapValue wrap_value flag. + */ + public void wrapValue(boolean wrapValue) { + this.wrapValue = wrapValue; + } + /** * @return Name of cache key type. */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java index 2e59be33c0dfb..3f9b7cf162c1c 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java @@ -22,6 +22,7 @@ import java.util.Arrays; import java.util.HashSet; import java.util.List; +import java.util.Locale; import java.util.Map; import java.util.Set; import java.util.function.BiConsumer; @@ -74,20 +75,40 @@ import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.KEY_TYPE; import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.TEMPLATE; import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.VALUE_TYPE; +import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.WRAP_KEY; +import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.WRAP_VALUE; import static org.apache.ignite.internal.processors.query.calcite.sql.IgniteSqlCreateTableOptionEnum.WRITE_SYNCHRONIZATION_MODE; import static org.apache.ignite.internal.processors.query.calcite.util.PlanUtils.deriveObjectName; import static org.apache.ignite.internal.processors.query.calcite.util.PlanUtils.deriveSchemaName; /** */ public class DdlSqlToCommandConverter { + /** */ + private static final String SIMPLE_PREDICATE = "a simple identifier"; + /** Processor that validates a value is a Sql Identifier. */ private static final BiFunction VALUE_IS_IDENTIFIER_VALIDATOR = (opt, ctx) -> { - if (!(opt.value() instanceof SqlIdentifier) || !((SqlIdentifier)opt.value()).isSimple()) - throwOptionParsingException(opt, "a simple identifier", ctx.query()); + SqlNode val = opt.value(); + if (!(val instanceof SqlIdentifier) || !((SqlIdentifier)val).isSimple()) + throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); - return ((SqlIdentifier)opt.value()).getSimple(); + return ((SqlIdentifier)val).getSimple(); }; + /** Processor that validates that value can be parsed as boolean. */ + private static final BiFunction VALUE_IS_BOOL_IDENTIFIER_VALIDATOR = + (opt, ctx) -> { + SqlNode val = opt.value(); + if (!(val instanceof SqlIdentifier) || !((SqlIdentifier)val).isSimple()) + throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); + + String simple = ((SqlIdentifier)val).getSimple().toLowerCase(Locale.ROOT); + if (!"true".equals(simple) && !"false".equals(simple)) + throwOptionParsingException(opt, "Unexpected identifier: " + simple, ctx.query()); + + return Boolean.valueOf(((SqlIdentifier)val).getSimple()); + }; + /** Processor that unconditionally throws an AssertionException. */ private static final TableOptionProcessor UNSUPPORTED_OPTION_PROCESSOR = new TableOptionProcessor<>( null, @@ -105,6 +126,8 @@ public class DdlSqlToCommandConverter { new TableOptionProcessor<>(DATA_REGION, VALUE_IS_IDENTIFIER_VALIDATOR, CreateTableCommand::dataRegionName), new TableOptionProcessor<>(KEY_TYPE, VALUE_IS_IDENTIFIER_VALIDATOR, CreateTableCommand::keyTypeName), new TableOptionProcessor<>(VALUE_TYPE, VALUE_IS_IDENTIFIER_VALIDATOR, CreateTableCommand::valueTypeName), + new TableOptionProcessor<>(WRAP_KEY, VALUE_IS_BOOL_IDENTIFIER_VALIDATOR, CreateTableCommand::wrapKey), + new TableOptionProcessor<>(WRAP_VALUE, VALUE_IS_BOOL_IDENTIFIER_VALIDATOR, CreateTableCommand::wrapValue), new TableOptionProcessor<>(ATOMICITY, validatorForEnumValue(CacheAtomicityMode.class), CreateTableCommand::atomicityMode), new TableOptionProcessor<>(WRITE_SYNCHRONIZATION_MODE, validatorForEnumValue(CacheWriteSynchronizationMode.class), CreateTableCommand::writeSynchronizationMode), @@ -450,7 +473,7 @@ private AlterTableDropCommand convertAlterTableDrop(IgniteSqlAlterTableDropColum */ private String paramIsSqlIdentifierValidator(IgniteSqlCreateTableOption opt, PlanningContext ctx) { if (!(opt.value() instanceof SqlIdentifier) || !((SqlIdentifier)opt.value()).isSimple()) - throwOptionParsingException(opt, "a simple identifier", ctx.query()); + throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); return ((SqlIdentifier)opt.value()).getSimple(); } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/IgniteSqlCreateTableOptionEnum.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/IgniteSqlCreateTableOptionEnum.java index e1d71adbd7ef4..e519aea7962ea 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/IgniteSqlCreateTableOptionEnum.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/IgniteSqlCreateTableOptionEnum.java @@ -52,4 +52,10 @@ public enum IgniteSqlCreateTableOptionEnum { /** This flag specified whether the encryption should be enabled for the underlying cache. */ ENCRYPTED, + + /** Flag controls whether a single column PRIMARY KEY should be wrapped in the BinaryObjects format. */ + WRAP_KEY, + + /** Flag controls whether a single column value of a primitive type should be wrapped in the BinaryObjects format. */ + WRAP_VALUE, } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index cba85ba7e9af9..636e580d41bfc 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -27,6 +27,7 @@ import java.util.List; import java.util.Map; import java.util.Set; +import java.util.concurrent.Callable; import java.util.function.Predicate; import java.util.stream.Collectors; import org.apache.ignite.IgniteCache; @@ -47,7 +48,7 @@ import org.apache.ignite.testframework.GridTestUtils; import org.hamcrest.CustomMatcher; import org.hamcrest.Matcher; -import org.junit.Ignore; +import org.jetbrains.annotations.Nullable; import org.junit.Test; import static org.apache.ignite.internal.processors.query.calcite.TestUtils.hasSize; @@ -347,6 +348,208 @@ public void createTableIfNotExists() { sql("create table if not exists my_table (id int, val varchar)"); } + /** Test that it's impossible to create tables with same name regardless of key/value wrapping settings. */ + @Test + public void createTableWithWrappedKeyVal() { + { + sql("create table t1 (id int primary key) WITH \"wrap_value=false\""); + sql("create table t2 (id1 int, id2 int, primary key(id1, id2)) WITH \"wrap_value=false\""); + + sql("DROP TABLE t1; DROP TABLE t2"); + } + { + sql("create table my_table (id int, val varchar)"); + + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + "Table already exists: MY_TABLE"); + + // WRAP_KEY, by default, this flag is set to false + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""), + "Table already exists: MY_TABLE"); + + // WRAP_VALUE, by default, this flag is set to true + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""), + "Table already exists: MY_TABLE"); + + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""), + "Table already exists: MY_TABLE"); + + sql("DROP TABLE my_table"); + } + + { + sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""); + + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + "Table already exists: MY_TABLE"); + + // WRAP_VALUE, by default, this flag is set to true + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""), + "Table already exists: MY_TABLE"); + + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""), + "Table already exists: MY_TABLE"); + + sql("DROP TABLE my_table"); + } + + { + sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""); + + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + "Table already exists: MY_TABLE"); + + // WRAP_VALUE, by default, this flag is set to true + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""), + "Table already exists: MY_TABLE"); + + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""), + "Table already exists: MY_TABLE"); + + sql("DROP TABLE my_table"); + } + + { + sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""); + + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + "Table already exists: MY_TABLE"); + + // WRAP_VALUE, by default, this flag is set to true + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""), + "Table already exists: MY_TABLE"); + + // WRAP_VALUE, by default, this flag is set to true + assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""), + "Table already exists: MY_TABLE"); + + sql("DROP TABLE my_table"); + } + } + + /** Tests wrap=false is forbidden when key or value has more than one column. */ + @Test + public void testWrappingAlwaysOnWithComplexKV() { + assertThrowsSqlException(() -> sql("create table a (id int, x varchar, c bigint, primary key(id, c)) with \"wrap_key=false\""), + "WRAP_KEY parameter cannot be \"false\" when composite primary key exists."); + + assertThrowsSqlException(() -> + sql("create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_key=false, key_type=custom\""), + "WRAP_KEY cannot be \"false\" when KEY_TYPE is defined."); + + assertThrowsSqlException(() -> sql("create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_value=false\""), + "WRAP_VALUE parameter cannot be \"false\" with multiple columns."); + + assertThrowsSqlException(() -> + sql("create table a (id int, x varchar, primary key(id)) with \"wrap_value=false, value_type=custom\""), + "WRAP_VALUE cannot be \"false\" when VALUE_TYPE is defined."); + } + + /** */ + @SuppressWarnings("ThrowableNotThrown") + private static void assertThrowsSqlException(Callable call, @Nullable String msg) { + GridTestUtils.assertThrows(log, call, IgniteSQLException.class, msg); + } + + /** + * Test that {@code ADD COLUMN} fails. + */ + @Test + public void testAlterTableFailOnSingleCacheValue() { + CacheConfiguration c = + new CacheConfiguration("ints").setIndexedTypes(Integer.class, Integer.class) + .setSqlSchema(QueryUtils.DFLT_SCHEMA); + + try { + client.getOrCreateCache(c); + + doTestAlterTableOnFlatValue("INTEGER"); + } + finally { + client.destroyCache("ints"); + } + } + + /** + * Test that {@code ADD COLUMN} fails. + */ + @Test + public void testAlterTableFailOnSingleTableValue() { + try { + sql("CREATE TABLE TEST (id INT PRIMARY KEY, x VARCHAR) with \"wrap_value=false\""); + + doTestAlterTableOnFlatValue("TEST"); + } + finally { + sql("DROP TABLE TEST"); + } + } + + /** + * Test that {@code ADD COLUMN} fails for tables that have single value. + * + * @param tblName table name. + */ + private void doTestAlterTableOnFlatValue(String tblName) { + assertThrows("ALTER TABLE " + tblName + " ADD COLUMN y varchar", IgniteSQLException.class, + "Cannot add column(s) because table was created"); + } + + /** + * Test single column PK without wrapping calculate correct inline size. + */ + @Test + public void testInlineSizeNoWrap() { + try { + sql("CREATE TABLE IF NOT EXISTS T ( " + + " id varchar(15), " + + " col varchar(100), " + + " PRIMARY KEY(id) ) "); + assertEquals(18, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } + } + + /** + * Test single column PK with wrapping calculate correct inline size. + */ + @Test + public void testInlineSizeWrap() { + try { + sql("CREATE TABLE IF NOT EXISTS T ( " + + " id varchar(15), " + + " col varchar(100), " + + " PRIMARY KEY(id) ) WITH \"wrap_key=true\""); + assertEquals(18, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } + } + + /** + * Test two column PK with wrapping calculate correct inline size. + */ + @Test + public void testInlineSizeWrapMultiPk() { + try { + sql("CREATE TABLE IF NOT EXISTS T ( " + + " id varchar(15), " + + " id2 uuid, " + + " col varchar(100), " + + " PRIMARY KEY(id, id2) ) WITH \"wrap_key=true\""); + assertEquals(35, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } + } + /** * Create table using reserved word */ @@ -884,7 +1087,6 @@ public void alterTableDropForbiddenColumn() { * Alter table from server and client nodes. */ @Test - @Ignore("https://issues.apache.org/jira/browse/IGNITE-16292") public void alterTableServerAndClient() throws Exception { sql(grid(0), "create table my_table (id int primary key, val varchar)"); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java index c7d39bfa20876..3201036c0772c 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java @@ -33,6 +33,7 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; +import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Objects; @@ -46,6 +47,7 @@ import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.configuration.SqlConfiguration; import org.apache.ignite.internal.processors.affinity.AffinityTopologyVersion; +import org.apache.ignite.internal.processors.query.QueryUtils; import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.testframework.GridTestUtils; import org.apache.ignite.testframework.junits.WithSystemProperty; @@ -477,6 +479,186 @@ public void testParametersMetadata() throws Exception { } } + /** + * Test behavior when neither key nor value should be wrapped. + * @throws SQLException if failed. + */ + @Test + public void testNoWrap() throws SQLException { + doTestKeyValueWrap(false, false, false); + } + + /** + * Test behavior when only key is wrapped. + * @throws SQLException if failed. + */ + @Test + public void testKeyWrap() throws SQLException { + doTestKeyValueWrap(true, false, false); + } + + /** + * Test behavior when only value is wrapped. + * @throws SQLException if failed. + */ + @Test + public void testValueWrap() throws SQLException { + doTestKeyValueWrap(false, true, false); + } + + /** + * Test behavior when both key and value is wrapped. + * @throws SQLException if failed. + */ + @Test + public void testKeyAndValueWrap() throws SQLException { + doTestKeyValueWrap(true, true, false); + } + + /** + * Test behavior when neither key nor value should be wrapped. + * Key and value are UUID. + * @throws SQLException if failed. + */ + @Test + public void testUuidNoWrap() throws SQLException { + doTestKeyValueWrap(false, false, true); + } + + /** + * Test behavior when only key is wrapped. + * Key and value are UUID. + * @throws SQLException if failed. + */ + @Test + public void testUuidKeyWrap() throws SQLException { + doTestKeyValueWrap(true, false, true); + } + + /** + * Test behavior when only value is wrapped. + * Key and value are UUID. + * @throws SQLException if failed. + */ + @Test + public void testUuidValueWrap() throws SQLException { + doTestKeyValueWrap(false, true, true); + } + + /** + * Test behavior when both key and value is wrapped. + * Key and value are UUID. + * @throws SQLException if failed. + */ + @Test + public void testUuidKeyAndValueWrap() throws SQLException { + doTestKeyValueWrap(true, true, true); + } + + /** + * Test behavior for given combination of wrap flags. + * @param wrapKey Whether key wrap should be enforced. + * @param wrapVal Whether value wrap should be enforced. + * @throws SQLException if failed. + */ + private void doTestKeyValueWrap(boolean wrapKey, boolean wrapVal, boolean testUuid) throws SQLException { + try { + String sql = testUuid ? String.format("CREATE TABLE T (\"Id\" UUID primary key, \"xX\" UUID) WITH " + + "\"wrap_key=%b,wrap_value=%b", wrapKey, wrapVal) : + String.format("CREATE TABLE T (\"Id\" int primary key, \"xX\" varchar) WITH " + + "\"wrap_key=%b,wrap_value=%b", wrapKey, wrapVal); + + UUID guid = UUID.randomUUID(); + + if (wrapKey) + sql += ",key_type=" + (testUuid ? "tkey_guid" : "tkey"); + + if (wrapVal) + sql += ",value_type=" + (testUuid ? "tval_guid" : "tval"); + + sql += "\""; + + stmt.execute(sql); + + if (testUuid) + stmt.executeUpdate("INSERT INTO T(\"Id\", \"xX\") values('" + guid + "', '" + guid + "')"); + else + stmt.executeUpdate("INSERT INTO T(\"Id\", \"xX\") values(1, 'a')"); + + LinkedHashMap resCols = new LinkedHashMap<>(); + + List resData = new ArrayList<>(); + + try (ResultSet colsRs = stmt.executeQuery("SELECT * FROM T;")) { + assertTrue(colsRs.next()); + + ResultSetMetaData md = colsRs.getMetaData(); + + for (int i = 1; i < md.getColumnCount() + 1; i++) + resCols.put(md.getColumnName(i), md.getColumnClassName(i)); + } + + try (PreparedStatement ps = conn.prepareStatement("SELECT * FROM T")) { + try (ResultSet dataRs = ps.executeQuery()) { + assertTrue(dataRs.next()); + + for (int i = 0; i < dataRs.getMetaData().getColumnCount(); i++) + resData.add(dataRs.getObject(i + 1)); + } + } + + LinkedHashMap expCols = new LinkedHashMap<>(); + + if (testUuid) { + expCols.put("Id", UUID.class.getName()); + expCols.put("xX", UUID.class.getName()); + } + else { + expCols.put("Id", Integer.class.getName()); + expCols.put("xX", String.class.getName()); + } + + assertEquals(expCols, resCols); + + assertEqualsCollections(testUuid ? Arrays.asList(guid, guid) : Arrays.asList(1, "a"), resData); + + Object key = createKeyForWrapTest(testUuid ? guid : 1, wrapKey); + + Object val = grid(0).cache(QueryUtils.createTableCacheName("PUBLIC", "T")).withKeepBinary().get(key); + + assertNotNull(val); + + assertEquals(createValueForWrapTest(testUuid ? guid : "a", wrapVal), val); + } + finally { + stmt.execute("DROP TABLE IF EXISTS T"); + } + } + + /** + * @param key Key to wrap. + * @param wrap Whether key should be wrapped. + * @return (optionally wrapped) key. + */ + private Object createKeyForWrapTest(Object key, boolean wrap) { + if (!wrap) + return key; + + return grid(0).binary().builder(key instanceof UUID ? "tkey_guid" : "tkey").setField("id", key).build(); + } + + /** + * @param val Value to wrap. + * @param wrap Whether value should be wrapped. + * @return (optionally wrapped) value. + */ + private Object createValueForWrapTest(Object val, boolean wrap) { + if (!wrap) + return val; + + return grid(0).binary().builder(val instanceof UUID ? "tval_guid" : "tval").setField("some", val).build(); + } + /** Some object to store. */ private static class ObjectToStore implements Serializable { /** */ diff --git a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlCreateTable.java b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlCreateTable.java index ee8036f2478e2..cdedf86f7aa4f 100644 --- a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlCreateTable.java +++ b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlCreateTable.java @@ -315,7 +315,7 @@ public Boolean wrapValue() { } /** - * @param wrapVal Forcefully turn single column value into an Object.. + * @param wrapVal Forcefully turn single column value into an Object. */ public void wrapValue(boolean wrapVal) { this.wrapVal = wrapVal; diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicColumnsAbstractTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicColumnsAbstractTest.java index 2507601a85b89..49dbc92808190 100644 --- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicColumnsAbstractTest.java +++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/DynamicColumnsAbstractTest.java @@ -224,7 +224,7 @@ protected List> run(IgniteCache cache, String sql, Object... args) */ protected void assertThrows(final Ignite node, final String sql, String msg) { GridTestUtils.assertThrows(log, new Callable() { - @Override public Object call() throws Exception { + @Override public Object call() { run(node, sql); return null; diff --git a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicTableSelfTest.java b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicTableSelfTest.java index f05807e43ff84..7ff6036033099 100644 --- a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicTableSelfTest.java +++ b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/index/H2DynamicTableSelfTest.java @@ -1747,7 +1747,7 @@ private void assertCreateTableWithParamsThrows(final String params, String expEr */ private void assertDdlCommandThrows(final String cmd, String expErrMsg) { GridTestUtils.assertThrows(null, new Callable() { - @Override public Object call() throws Exception { + @Override public Object call() { execute(cmd); return null; From 2c39fbb8ff6ee8ac0433f03e51a96c274ecb3e45 Mon Sep 17 00:00:00 2001 From: zstan Date: Fri, 17 Apr 2026 08:17:42 +0300 Subject: [PATCH 02/13] minor --- .../processors/query/calcite/exec/ddl/DdlCommandHandler.java | 4 ++-- .../query/calcite/integration/TableDdlIntegrationTest.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java index 2b2bcea6580c5..34e2e4eed1ce8 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java @@ -194,7 +194,7 @@ private void checkKVWrappedParam(CreateTableCommand cmd) { } if (!F.isEmpty(cmd.keyTypeName())) { - throw new IgniteSQLException(WRAP_KEY + " cannot be \"false\" when " + KEY_TYPE + " is defined.", + throw new IgniteSQLException(WRAP_KEY + " parameter cannot be \"false\" when " + KEY_TYPE + " is defined.", IgniteQueryErrorCode.PARSING); } } @@ -208,7 +208,7 @@ private void checkKVWrappedParam(CreateTableCommand cmd) { } if (!F.isEmpty(cmd.valueTypeName())) { - throw new IgniteSQLException(WRAP_VALUE + " cannot be \"false\" when " + VALUE_TYPE + " is defined.", + throw new IgniteSQLException(WRAP_VALUE + " parameter cannot be \"false\" when " + VALUE_TYPE + " is defined.", IgniteQueryErrorCode.PARSING); } } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index 636e580d41bfc..385771cc23629 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -435,14 +435,14 @@ public void testWrappingAlwaysOnWithComplexKV() { assertThrowsSqlException(() -> sql("create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_key=false, key_type=custom\""), - "WRAP_KEY cannot be \"false\" when KEY_TYPE is defined."); + "WRAP_KEY parameter cannot be \"false\" when KEY_TYPE is defined."); assertThrowsSqlException(() -> sql("create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_value=false\""), "WRAP_VALUE parameter cannot be \"false\" with multiple columns."); assertThrowsSqlException(() -> sql("create table a (id int, x varchar, primary key(id)) with \"wrap_value=false, value_type=custom\""), - "WRAP_VALUE cannot be \"false\" when VALUE_TYPE is defined."); + "WRAP_VALUE parameter cannot be \"false\" when VALUE_TYPE is defined."); } /** */ From 9b4188dee20f1485232296f62a07f9b8850f5f16 Mon Sep 17 00:00:00 2001 From: zstan Date: Fri, 17 Apr 2026 10:28:59 +0300 Subject: [PATCH 03/13] support alternate syntax --- modules/calcite/src/main/codegen/config.fmpp | 2 + .../src/main/codegen/includes/parserImpls.ftl | 4 + .../prepare/ddl/DdlSqlToCommandConverter.java | 3 + .../sql/generated/IgniteSqlParserImpl.java | 9142 +++++++++-------- .../IgniteSqlParserImplConstants.java | 190 +- .../IgniteSqlParserImplTokenManager.java | 4959 ++++----- .../calcite/sql/SqlCustomParserTest.java | 12 +- 7 files changed, 7204 insertions(+), 7108 deletions(-) diff --git a/modules/calcite/src/main/codegen/config.fmpp b/modules/calcite/src/main/codegen/config.fmpp index 6672b7678482b..98daca8807f68 100644 --- a/modules/calcite/src/main/codegen/config.fmpp +++ b/modules/calcite/src/main/codegen/config.fmpp @@ -48,6 +48,8 @@ data: { "AFFINITY_KEY" "ATOMICITY" "WRITE_SYNCHRONIZATION_MODE" + "WRAP_KEY" + "WRAP_VALUE" "CACHE_GROUP" "CACHE_NAME" "DATA_REGION" diff --git a/modules/calcite/src/main/codegen/includes/parserImpls.ftl b/modules/calcite/src/main/codegen/includes/parserImpls.ftl index 4aa92e168fed9..286f22f151aec 100644 --- a/modules/calcite/src/main/codegen/includes/parserImpls.ftl +++ b/modules/calcite/src/main/codegen/includes/parserImpls.ftl @@ -78,6 +78,10 @@ SqlLiteral CreateTableOptionKey() : { return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.VALUE_TYPE, getPos()); } | { return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.ENCRYPTED, getPos()); } +| + { return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRAP_KEY, getPos()); } +| + { return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRAP_VALUE, getPos()); } } void CreateTableOption(List list) : diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java index 3f9b7cf162c1c..a84919beb9d73 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java @@ -99,6 +99,9 @@ public class DdlSqlToCommandConverter { private static final BiFunction VALUE_IS_BOOL_IDENTIFIER_VALIDATOR = (opt, ctx) -> { SqlNode val = opt.value(); + if (val instanceof SqlLiteral) + return ((SqlLiteral)val).booleanValue(); + if (!(val instanceof SqlIdentifier) || !((SqlIdentifier)val).isSimple()) throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java index 6929e12448df8..f087485481d53 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java @@ -1223,6 +1223,12 @@ final public SqlLiteral CreateTableOptionKey() throws ParseException { } else if (jj_2_92(2)) { jj_consume_token(ENCRYPTED); {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.ENCRYPTED, getPos());} + } else if (jj_2_93(2)) { + jj_consume_token(WRAP_KEY); + {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRAP_KEY, getPos());} + } else if (jj_2_94(2)) { + jj_consume_token(WRAP_VALUE); + {if (true) return SqlLiteral.createSymbol(IgniteSqlCreateTableOptionEnum.WRAP_VALUE, getPos());} } else { jj_consume_token(-1); throw new ParseException(); @@ -1237,9 +1243,9 @@ final public void CreateTableOption(List list) throws ParseException { key = CreateTableOptionKey(); s = span(); jj_consume_token(EQ); - if (jj_2_93(2)) { + if (jj_2_95(2)) { val = Literal(); - } else if (jj_2_94(2)) { + } else if (jj_2_96(2)) { val = SimpleIdentifier(); } else { jj_consume_token(-1); @@ -1250,9 +1256,9 @@ final public void CreateTableOption(List list) throws ParseException { final public SqlDataTypeSpec DataTypeEx() throws ParseException { final SqlDataTypeSpec dt; - if (jj_2_95(2)) { + if (jj_2_97(2)) { dt = DataType(); - } else if (jj_2_96(2)) { + } else if (jj_2_98(2)) { dt = IntervalType(); } else { jj_consume_token(-1); @@ -1280,11 +1286,11 @@ final public void TableElement(List list) throws ParseException { final ColumnStrategy strategy; final SqlNode dflt; SqlIdentifier id = null; - if (jj_2_100(2)) { + if (jj_2_102(2)) { id = SimpleIdentifier(); type = DataTypeEx(); nullable = NullableOptDefaultTrue(); - if (jj_2_97(2)) { + if (jj_2_99(2)) { jj_consume_token(DEFAULT_); s.add(this); dflt = Literal(); @@ -1294,7 +1300,7 @@ final public void TableElement(List list) throws ParseException { strategy = nullable ? ColumnStrategy.NULLABLE : ColumnStrategy.NOT_NULLABLE; } - if (jj_2_98(2)) { + if (jj_2_100(2)) { jj_consume_token(PRIMARY); s.add(this); jj_consume_token(KEY); @@ -1306,8 +1312,8 @@ final public void TableElement(List list) throws ParseException { list.add( SqlDdlNodes.column(s.add(id).end(this), id, type.withNullable(nullable), dflt, strategy)); - } else if (jj_2_101(2)) { - if (jj_2_99(2)) { + } else if (jj_2_103(2)) { + if (jj_2_101(2)) { jj_consume_token(CONSTRAINT); s.add(this); id = SimpleIdentifier(); @@ -1333,7 +1339,7 @@ final public SqlNodeList TableElementList() throws ParseException { TableElement(list); label_8: while (true) { - if (jj_2_102(2)) { + if (jj_2_104(2)) { ; } else { break label_8; @@ -1357,12 +1363,12 @@ final public SqlCreate SqlCreateTable(Span s, boolean replace) throws ParseExcep jj_consume_token(TABLE); ifNotExists = IfNotExistsOpt(); id = CompoundIdentifier(); - if (jj_2_104(3)) { + if (jj_2_106(3)) { columnList = TableElementList(); optionList = WithCreateTableOptionList(); query = null; - } else if (jj_2_105(2)) { - if (jj_2_103(2)) { + } else if (jj_2_107(2)) { + if (jj_2_105(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -1383,10 +1389,10 @@ final public SqlNode IndexedColumn() throws ParseException { final Span s; SqlNode col; col = SimpleIdentifier(); - if (jj_2_108(2)) { - if (jj_2_106(2)) { + if (jj_2_110(2)) { + if (jj_2_108(2)) { jj_consume_token(ASC); - } else if (jj_2_107(2)) { + } else if (jj_2_109(2)) { jj_consume_token(DESC); col = SqlStdOperatorTable.DESC.createCall(getPos(), col); } else { @@ -1410,7 +1416,7 @@ final public SqlNodeList IndexedColumnList() throws ParseException { list.add(col); label_9: while (true) { - if (jj_2_109(2)) { + if (jj_2_111(2)) { ; } else { break label_9; @@ -1435,7 +1441,7 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep {if (true) throw SqlUtil.newContextException(getPos(), IgniteResource.INSTANCE.unsupportedClause("REPLACE"));} jj_consume_token(INDEX); ifNotExists = IfNotExistsOpt(); - if (jj_2_110(2)) { + if (jj_2_112(2)) { idxId = SimpleIdentifier(); } else { ; @@ -1445,19 +1451,19 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep columnList = IndexedColumnList(); label_10: while (true) { - if (jj_2_111(2)) { + if (jj_2_113(2)) { ; } else { break label_10; } - if (jj_2_112(2)) { + if (jj_2_114(2)) { jj_consume_token(PARALLEL); jj_consume_token(UNSIGNED_INTEGER_LITERAL); if (parallel != null) {if (true) throw SqlUtil.newContextException(getPos(), IgniteResource.INSTANCE.optionAlreadyDefined("PARALLEL"));} parallel = SqlLiteral.createExactNumeric(token.image, getPos()); - } else if (jj_2_113(2)) { + } else if (jj_2_115(2)) { jj_consume_token(INLINE_SIZE); jj_consume_token(UNSIGNED_INTEGER_LITERAL); if (inlineSize != null) @@ -1474,7 +1480,7 @@ final public SqlCreate SqlCreateIndex(Span s, boolean replace) throws ParseExcep } final public boolean IfExistsOpt() throws ParseException { - if (jj_2_114(2)) { + if (jj_2_116(2)) { jj_consume_token(IF); jj_consume_token(EXISTS); {if (true) return true;} @@ -1525,7 +1531,7 @@ final public SqlNodeList ColumnWithTypeList() throws ParseException { list.add(col); label_11: while (true) { - if (jj_2_115(2)) { + if (jj_2_117(2)) { ; } else { break label_11; @@ -1546,7 +1552,7 @@ final public SqlNode ColumnWithType() throws ParseException { final Span s = Span.of(); id = SimpleIdentifier(); type = DataTypeEx(); - if (jj_2_116(2)) { + if (jj_2_118(2)) { jj_consume_token(NOT); jj_consume_token(NULL); nullable = false; @@ -1560,10 +1566,10 @@ final public SqlNode ColumnWithType() throws ParseException { final public SqlNodeList ColumnWithTypeOrList() throws ParseException { SqlNode col; SqlNodeList list; - if (jj_2_117(2)) { + if (jj_2_119(2)) { col = ColumnWithType(); {if (true) return new SqlNodeList(Collections.singletonList(col), col.getParserPosition());} - } else if (jj_2_118(2)) { + } else if (jj_2_120(2)) { list = ColumnWithTypeList(); {if (true) return list;} } else { @@ -1585,15 +1591,15 @@ final public SqlNode SqlAlterTable() throws ParseException { jj_consume_token(TABLE); ifExists = IfExistsOpt(); id = CompoundIdentifier(); - if (jj_2_121(2)) { + if (jj_2_123(2)) { jj_consume_token(LOGGING); {if (true) return new IgniteSqlAlterTable(s.end(this), ifExists, id, true);} - } else if (jj_2_122(2)) { + } else if (jj_2_124(2)) { jj_consume_token(NOLOGGING); {if (true) return new IgniteSqlAlterTable(s.end(this), ifExists, id, false);} - } else if (jj_2_123(2)) { + } else if (jj_2_125(2)) { jj_consume_token(ADD); - if (jj_2_119(2)) { + if (jj_2_121(2)) { jj_consume_token(COLUMN); } else { ; @@ -1601,9 +1607,9 @@ final public SqlNode SqlAlterTable() throws ParseException { colIgnoreErr = IfNotExistsOpt(); cols = ColumnWithTypeOrList(); {if (true) return new IgniteSqlAlterTableAddColumn(s.end(this), ifExists, id, colIgnoreErr, cols);} - } else if (jj_2_124(2)) { + } else if (jj_2_126(2)) { jj_consume_token(DROP); - if (jj_2_120(2)) { + if (jj_2_122(2)) { jj_consume_token(COLUMN); } else { ; @@ -1657,16 +1663,16 @@ final public SqlDrop SqlDropUser(Span s, boolean replace) throws ParseException final public SqlNumericLiteral SignedIntegerLiteral() throws ParseException { final Span s; - if (jj_2_125(2)) { + if (jj_2_127(2)) { jj_consume_token(PLUS); jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_126(2)) { + } else if (jj_2_128(2)) { jj_consume_token(MINUS); s = span(); jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createNegative(SqlLiteral.createExactNumeric(token.image, getPos()), s.end(this));} - } else if (jj_2_127(2)) { + } else if (jj_2_129(2)) { jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} } else { @@ -1770,7 +1776,7 @@ final public SqlNode SqlKillComputeTask() throws ParseException { } final public boolean IsAsyncOpt() throws ParseException { - if (jj_2_128(2)) { + if (jj_2_130(2)) { jj_consume_token(ASYNC); {if (true) return true;} } else { @@ -1801,7 +1807,7 @@ final public SqlNode SqlCommitTransaction() throws ParseException { final Span s; jj_consume_token(COMMIT); s = span(); - if (jj_2_129(2)) { + if (jj_2_131(2)) { jj_consume_token(TRANSACTION); } else { ; @@ -1814,7 +1820,7 @@ final public SqlNode SqlRollbackTransaction() throws ParseException { final Span s; jj_consume_token(ROLLBACK); s = span(); - if (jj_2_130(2)) { + if (jj_2_132(2)) { jj_consume_token(TRANSACTION); } else { ; @@ -1828,7 +1834,7 @@ final public IgniteSqlStatisticsTable StatisticsTable() throws ParseException { final SqlIdentifier id; final SqlNodeList columnList; id = CompoundIdentifier(); - if (jj_2_131(2)) { + if (jj_2_133(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -1845,7 +1851,7 @@ final public SqlNodeList StatisticsTables() throws ParseException { tbls.add(tbl); label_12: while (true) { - if (jj_2_132(2)) { + if (jj_2_134(2)) { ; } else { break label_12; @@ -1861,14 +1867,14 @@ final public SqlNodeList StatisticsTables() throws ParseException { final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException { List list = new ArrayList(); final Span s; - if (jj_2_136(2)) { + if (jj_2_138(2)) { jj_consume_token(WITH); s = span(); - if (jj_2_134(2)) { + if (jj_2_136(2)) { StatisticsAnalyzeOption(list); label_13: while (true) { - if (jj_2_133(2)) { + if (jj_2_135(2)) { ; } else { break label_13; @@ -1878,7 +1884,7 @@ final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException StatisticsAnalyzeOption(list); } {if (true) return new SqlNodeList(list, s.end(this));} - } else if (jj_2_135(2)) { + } else if (jj_2_137(2)) { jj_consume_token(QUOTED_IDENTIFIER); {if (true) return IgniteSqlStatisticsAnalyzeOption.parseOptionList( SqlParserUtil.stripQuotes(token.image, DQ, DQ, DQDQ, quotedCasing), @@ -1896,19 +1902,19 @@ final public SqlNodeList WithStatisticsAnalyzeOptionList() throws ParseException } final public SqlLiteral StatisticsAnalyzeOptionKey() throws ParseException { - if (jj_2_137(2)) { + if (jj_2_139(2)) { jj_consume_token(DISTINCT); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.DISTINCT, getPos());} - } else if (jj_2_138(2)) { + } else if (jj_2_140(2)) { jj_consume_token(TOTAL); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.TOTAL, getPos());} - } else if (jj_2_139(2)) { + } else if (jj_2_141(2)) { jj_consume_token(SIZE); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.SIZE, getPos());} - } else if (jj_2_140(2)) { + } else if (jj_2_142(2)) { jj_consume_token(NULLS); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.NULLS, getPos());} - } else if (jj_2_141(2)) { + } else if (jj_2_143(2)) { jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); {if (true) return SqlLiteral.createSymbol(IgniteSqlStatisticsAnalyzeOptionEnum.MAX_CHANGED_PARTITION_ROWS_PERCENT, getPos());} } else { @@ -1925,9 +1931,9 @@ final public void StatisticsAnalyzeOption(List list) throws ParseExcept key = StatisticsAnalyzeOptionKey(); s = span(); jj_consume_token(EQ); - if (jj_2_142(2)) { + if (jj_2_144(2)) { val = Literal(); - } else if (jj_2_143(2)) { + } else if (jj_2_145(2)) { val = SimpleIdentifier(); } else { jj_consume_token(-1); @@ -1999,7 +2005,7 @@ final public SqlNodeList ParenthesizedKeyValueOptionCommaList() throws ParseExce AddKeyValueOption(list); label_14: while (true) { - if (jj_2_144(2)) { + if (jj_2_146(2)) { ; } else { break label_14; @@ -2019,9 +2025,9 @@ final public SqlNodeList ParenthesizedKeyValueOptionCommaList() throws ParseExce final public void AddKeyValueOption(List list) throws ParseException { final SqlNode key; final SqlNode value; - if (jj_2_145(2)) { + if (jj_2_147(2)) { key = SimpleIdentifier(); - } else if (jj_2_146(2)) { + } else if (jj_2_148(2)) { key = StringLiteral(); } else { jj_consume_token(-1); @@ -2036,10 +2042,10 @@ final public void AddKeyValueOption(List list) throws ParseException { /** Parses an option value (either a string or a numeric) and adds to a list. */ final public void AddOptionValue(List list) throws ParseException { final SqlNode value; - if (jj_2_147(2)) { + if (jj_2_149(2)) { value = NumericLiteral(); list.add(value); - } else if (jj_2_148(2)) { + } else if (jj_2_150(2)) { value = StringLiteral(); list.add(value); } else { @@ -2059,7 +2065,7 @@ final public SqlNodeList ParenthesizedLiteralOptionCommaList() throws ParseExcep AddOptionValue(list); label_15: while (true) { - if (jj_2_149(2)) { + if (jj_2_151(2)) { ; } else { break label_15; @@ -2077,17 +2083,17 @@ final public void AddHint(List hints) throws ParseException { final SqlNodeList hintOptions; final SqlHint.HintOptionFormat optionFormat; hintName = SimpleIdentifier(); - if (jj_2_151(5)) { + if (jj_2_153(5)) { hintOptions = ParenthesizedKeyValueOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.KV_LIST; - } else if (jj_2_152(3)) { + } else if (jj_2_154(3)) { hintOptions = ParenthesizedSimpleIdentifierList(); optionFormat = SqlHint.HintOptionFormat.ID_LIST; - } else if (jj_2_153(3)) { + } else if (jj_2_155(3)) { hintOptions = ParenthesizedLiteralOptionCommaList(); optionFormat = SqlHint.HintOptionFormat.LITERAL_LIST; } else { - if (jj_2_150(2)) { + if (jj_2_152(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); } else { @@ -2109,7 +2115,7 @@ final public SqlNode TableHints(SqlIdentifier tableName) throws ParseException { AddHint(hints); label_16: while (true) { - if (jj_2_154(2)) { + if (jj_2_156(2)) { ; } else { break label_16; @@ -2142,12 +2148,12 @@ final public SqlSelect SqlSelect() throws ParseException { final Span s; jj_consume_token(SELECT); s = span(); - if (jj_2_156(2)) { + if (jj_2_158(2)) { jj_consume_token(HINT_BEG); AddHint(hints); label_17: while (true) { - if (jj_2_155(2)) { + if (jj_2_157(2)) { ; } else { break label_17; @@ -2160,13 +2166,13 @@ final public SqlSelect SqlSelect() throws ParseException { ; } SqlSelectKeywords(keywords); - if (jj_2_157(2)) { + if (jj_2_159(2)) { jj_consume_token(STREAM); keywords.add(SqlSelectKeyword.STREAM.symbol(getPos())); } else { ; } - if (jj_2_158(2)) { + if (jj_2_160(2)) { keyword = AllOrDistinct(); keywords.add(keyword); } else { @@ -2176,7 +2182,7 @@ final public SqlSelect SqlSelect() throws ParseException { AddSelectItem(selectList); label_18: while (true) { - if (jj_2_159(2)) { + if (jj_2_161(2)) { ; } else { break label_18; @@ -2184,30 +2190,30 @@ final public SqlSelect SqlSelect() throws ParseException { jj_consume_token(COMMA); AddSelectItem(selectList); } - if (jj_2_165(2)) { + if (jj_2_167(2)) { jj_consume_token(FROM); fromClause = FromClause(); - if (jj_2_160(2)) { + if (jj_2_162(2)) { where = Where(); } else { where = null; } - if (jj_2_161(2)) { + if (jj_2_163(2)) { groupBy = GroupBy(); } else { groupBy = null; } - if (jj_2_162(2)) { + if (jj_2_164(2)) { having = Having(); } else { having = null; } - if (jj_2_163(2)) { + if (jj_2_165(2)) { windowDecls = Window(); } else { windowDecls = null; } - if (jj_2_164(2)) { + if (jj_2_166(2)) { qualify = Qualify(); } else { qualify = null; @@ -2246,21 +2252,21 @@ final public SqlNode SqlExplain() throws ParseException { final SqlExplainFormat format; jj_consume_token(EXPLAIN); jj_consume_token(PLAN); - if (jj_2_166(2)) { + if (jj_2_168(2)) { detailLevel = ExplainDetailLevel(); } else { ; } depth = ExplainDepth(); - if (jj_2_167(2)) { + if (jj_2_169(2)) { jj_consume_token(AS); jj_consume_token(XML); format = SqlExplainFormat.XML; - } else if (jj_2_168(2)) { + } else if (jj_2_170(2)) { jj_consume_token(AS); jj_consume_token(JSON); format = SqlExplainFormat.JSON; - } else if (jj_2_169(2)) { + } else if (jj_2_171(2)) { jj_consume_token(AS); jj_consume_token(DOT_FORMAT); format = SqlExplainFormat.DOT; @@ -2282,15 +2288,15 @@ final public SqlNode SqlExplain() throws ParseException { * or DML statement (INSERT, UPDATE, DELETE, MERGE). */ final public SqlNode SqlQueryOrDml() throws ParseException { SqlNode stmt; - if (jj_2_170(2)) { + if (jj_2_172(2)) { stmt = OrderedQueryOrExpr(ExprContext.ACCEPT_QUERY); - } else if (jj_2_171(2)) { + } else if (jj_2_173(2)) { stmt = SqlInsert(); - } else if (jj_2_172(2)) { + } else if (jj_2_174(2)) { stmt = SqlDelete(); - } else if (jj_2_173(2)) { + } else if (jj_2_175(2)) { stmt = SqlUpdate(); - } else if (jj_2_174(2)) { + } else if (jj_2_176(2)) { stmt = SqlMerge(); } else { jj_consume_token(-1); @@ -2305,15 +2311,15 @@ final public SqlNode SqlQueryOrDml() throws ParseException { * EXPLAIN PLAN. */ final public SqlExplain.Depth ExplainDepth() throws ParseException { - if (jj_2_175(2)) { + if (jj_2_177(2)) { jj_consume_token(WITH); jj_consume_token(TYPE); {if (true) return SqlExplain.Depth.TYPE;} - } else if (jj_2_176(2)) { + } else if (jj_2_178(2)) { jj_consume_token(WITH); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.PHYSICAL;} - } else if (jj_2_177(2)) { + } else if (jj_2_179(2)) { jj_consume_token(WITHOUT); jj_consume_token(IMPLEMENTATION); {if (true) return SqlExplain.Depth.LOGICAL;} @@ -2328,13 +2334,13 @@ final public SqlExplain.Depth ExplainDepth() throws ParseException { */ final public SqlExplainLevel ExplainDetailLevel() throws ParseException { SqlExplainLevel level = SqlExplainLevel.EXPPLAN_ATTRIBUTES; - if (jj_2_179(2)) { + if (jj_2_181(2)) { jj_consume_token(EXCLUDING); jj_consume_token(ATTRIBUTES); level = SqlExplainLevel.NO_ATTRIBUTES; - } else if (jj_2_180(2)) { + } else if (jj_2_182(2)) { jj_consume_token(INCLUDING); - if (jj_2_178(2)) { + if (jj_2_180(2)) { jj_consume_token(ALL); level = SqlExplainLevel.ALL_ATTRIBUTES; } else { @@ -2361,12 +2367,12 @@ final public SqlNode SqlDescribe() throws ParseException { final SqlNode stmt; jj_consume_token(DESCRIBE); s = span(); - if (jj_2_186(2)) { - if (jj_2_181(2)) { + if (jj_2_188(2)) { + if (jj_2_183(2)) { jj_consume_token(DATABASE); - } else if (jj_2_182(2)) { + } else if (jj_2_184(2)) { jj_consume_token(CATALOG); - } else if (jj_2_183(2)) { + } else if (jj_2_185(2)) { jj_consume_token(SCHEMA); } else { jj_consume_token(-1); @@ -2377,21 +2383,21 @@ final public SqlNode SqlDescribe() throws ParseException { // DESCRIBE SCHEMA but should be different. See // [CALCITE-1221] Implement DESCRIBE DATABASE, CATALOG, STATEMENT {if (true) return new SqlDescribeSchema(s.end(id), id);} - } else if (jj_2_187(2147483647)) { - if (jj_2_184(2)) { + } else if (jj_2_189(2147483647)) { + if (jj_2_186(2)) { jj_consume_token(TABLE); } else { ; } table = CompoundIdentifier(); - if (jj_2_185(2)) { + if (jj_2_187(2)) { column = SimpleIdentifier(); } else { column = null; } {if (true) return new SqlDescribeTable(s.add(table).addIf(column).pos(), table, column);} - } else if (jj_2_188(2)) { + } else if (jj_2_190(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case STATEMENT: jj_consume_token(STATEMENT); @@ -2442,11 +2448,11 @@ final public SqlNode NamedRoutineCall(SqlFunctionCategory routineType, name = CompoundIdentifier(); s = span(); jj_consume_token(LPAREN); - if (jj_2_190(2)) { + if (jj_2_192(2)) { AddArg0(list, exprContext); label_19: while (true) { - if (jj_2_189(2)) { + if (jj_2_191(2)) { ; } else { break label_19; @@ -2475,14 +2481,14 @@ final public SqlNode TableParam() throws ParseException { SqlNode tableRef; s = span(); tableRef = ExplicitTable(getPos()); - if (jj_2_191(2)) { + if (jj_2_193(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_192(2)) { + if (jj_2_194(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2504,14 +2510,14 @@ final public SqlNode PartitionedByAndOrderBy(SqlNode e) throws ParseException { final SqlNodeList partitionList; final SqlNodeList orderList; s = span(); - if (jj_2_193(2)) { + if (jj_2_195(2)) { jj_consume_token(PARTITION); jj_consume_token(BY); partitionList = SimpleIdentifierOrList(); } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_194(2)) { + if (jj_2_196(2)) { orderList = OrderByOfSetSemanticsTable(); } else { orderList = SqlNodeList.EMPTY; @@ -2526,12 +2532,12 @@ final public SqlNodeList OrderByOfSetSemanticsTable() throws ParseException { jj_consume_token(ORDER); s = span(); jj_consume_token(BY); - if (jj_2_196(2)) { + if (jj_2_198(2)) { jj_consume_token(LPAREN); AddOrderItem(list); label_20: while (true) { - if (jj_2_195(2)) { + if (jj_2_197(2)) { ; } else { break label_20; @@ -2541,7 +2547,7 @@ final public SqlNodeList OrderByOfSetSemanticsTable() throws ParseException { } jj_consume_token(RPAREN); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} - } else if (jj_2_197(2)) { + } else if (jj_2_199(2)) { AddOrderItem(list); {if (true) return new SqlNodeList(list, s.addAll(list).pos());} } else { @@ -2576,9 +2582,9 @@ final public SqlNode SqlInsert() throws ParseException { final SqlNodeList columnList; final Span s; final Pair p; - if (jj_2_198(2)) { + if (jj_2_200(2)) { jj_consume_token(INSERT); - } else if (jj_2_199(2)) { + } else if (jj_2_201(2)) { jj_consume_token(UPSERT); keywords.add(SqlInsertKeyword.UPSERT.symbol(getPos())); } else { @@ -2590,17 +2596,17 @@ final public SqlNode SqlInsert() throws ParseException { keywordList = new SqlNodeList(keywords, s.addAll(keywords).pos()); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_200(2)) { + if (jj_2_202(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_201(5)) { + if (jj_2_203(5)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_202(2)) { + if (jj_2_204(2)) { p = ParenthesizedCompoundIdentifierList(); if (!p.right.isEmpty()) { tableRef = extend(tableRef, p.right); @@ -2640,18 +2646,18 @@ final public SqlNode SqlDelete() throws ParseException { s = span(); jj_consume_token(FROM); tableName = CompoundTableIdentifier(); - if (jj_2_203(2)) { + if (jj_2_205(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_204(2)) { + if (jj_2_206(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_206(2)) { - if (jj_2_205(2)) { + if (jj_2_208(2)) { + if (jj_2_207(2)) { jj_consume_token(AS); } else { ; @@ -2660,7 +2666,7 @@ final public SqlNode SqlDelete() throws ParseException { } else { alias = null; } - if (jj_2_207(2)) { + if (jj_2_209(2)) { where = Where(); } else { where = null; @@ -2687,18 +2693,18 @@ final public SqlNode SqlUpdate() throws ParseException { targetColumnList = new SqlNodeList(s.pos()); sourceExpressionList = new SqlNodeList(s.pos()); tableName = CompoundTableIdentifier(); - if (jj_2_208(2)) { + if (jj_2_210(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_209(2)) { + if (jj_2_211(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_211(2)) { - if (jj_2_210(2)) { + if (jj_2_213(2)) { + if (jj_2_212(2)) { jj_consume_token(AS); } else { ; @@ -2714,7 +2720,7 @@ final public SqlNode SqlUpdate() throws ParseException { AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); label_21: while (true) { - if (jj_2_212(2)) { + if (jj_2_214(2)) { ; } else { break label_21; @@ -2725,7 +2731,7 @@ final public SqlNode SqlUpdate() throws ParseException { jj_consume_token(EQ); AddExpression(sourceExpressionList, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_213(2)) { + if (jj_2_215(2)) { where = Where(); } else { where = null; @@ -2753,18 +2759,18 @@ final public SqlNode SqlMerge() throws ParseException { s = span(); jj_consume_token(INTO); tableName = CompoundTableIdentifier(); - if (jj_2_214(2)) { + if (jj_2_216(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_215(2)) { + if (jj_2_217(2)) { tableRef = ExtendTable(tableRef); } else { ; } - if (jj_2_217(2)) { - if (jj_2_216(2)) { + if (jj_2_219(2)) { + if (jj_2_218(2)) { jj_consume_token(AS); } else { ; @@ -2777,14 +2783,14 @@ final public SqlNode SqlMerge() throws ParseException { sourceTableRef = TableRef(); jj_consume_token(ON); condition = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_219(2)) { + if (jj_2_221(2)) { updateCall = WhenMatchedClause(tableRef, alias); - if (jj_2_218(2)) { + if (jj_2_220(2)) { insertCall = WhenNotMatchedClause(tableRef); } else { insertCall = null; } - } else if (jj_2_220(2)) { + } else if (jj_2_222(2)) { updateCall = null; insertCall = WhenNotMatchedClause(tableRef); } else { @@ -2814,7 +2820,7 @@ final public SqlUpdate WhenMatchedClause(SqlNode table, SqlIdentifier alias) thr AddExpression(updateExprList, ExprContext.ACCEPT_SUB_QUERY); label_22: while (true) { - if (jj_2_221(2)) { + if (jj_2_223(2)) { ; } else { break label_22; @@ -2845,18 +2851,18 @@ final public SqlInsert WhenNotMatchedClause(SqlNode table) throws ParseException insertSpan = span(); SqlInsertKeywords(keywords); keywordList = new SqlNodeList(keywords, insertSpan.end(this)); - if (jj_2_222(2)) { + if (jj_2_224(2)) { insertColumnList = ParenthesizedSimpleIdentifierList(); } else { insertColumnList = null; } - if (jj_2_223(2)) { + if (jj_2_225(2)) { jj_consume_token(LPAREN); jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); jj_consume_token(RPAREN); - } else if (jj_2_224(2)) { + } else if (jj_2_226(2)) { jj_consume_token(VALUES); valuesSpan = span(); rowConstructor = RowConstructor(); @@ -2881,10 +2887,10 @@ final public void AddSelectItem(List list) throws ParseException { SqlNode e; final SqlIdentifier id; e = SelectExpression(); - if (jj_2_228(2)) { - if (jj_2_226(2)) { + if (jj_2_230(2)) { + if (jj_2_228(2)) { jj_consume_token(AS); - if (jj_2_225(2)) { + if (jj_2_227(2)) { jj_consume_token(MEASURE); e = SqlInternalOperators.MEASURE.createCall( e.getParserPosition(), e); @@ -2894,7 +2900,7 @@ final public void AddSelectItem(List list) throws ParseException { } else { ; } - if (jj_2_227(2)) { + if (jj_2_229(2)) { id = SimpleIdentifier(); } else { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { @@ -2918,10 +2924,10 @@ final public void AddSelectItem(List list) throws ParseException { */ final public SqlNode SelectExpression() throws ParseException { SqlNode e; - if (jj_2_229(2)) { + if (jj_2_231(2)) { jj_consume_token(STAR); {if (true) return SqlIdentifier.star(getPos());} - } else if (jj_2_230(2)) { + } else if (jj_2_232(2)) { e = Expression(ExprContext.ACCEPT_SUB_QUERY); {if (true) return e;} } else { @@ -2932,7 +2938,7 @@ final public SqlNode SelectExpression() throws ParseException { } final public SqlLiteral Natural() throws ParseException { - if (jj_2_231(2)) { + if (jj_2_233(2)) { jj_consume_token(NATURAL); {if (true) return SqlLiteral.createBoolean(true, getPos());} } else { @@ -2944,23 +2950,23 @@ final public SqlLiteral Natural() throws ParseException { final public SqlLiteral JoinType() throws ParseException { JoinType joinType; boolean asof = false; - if (jj_2_237(2)) { + if (jj_2_239(2)) { jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_238(2)) { + } else if (jj_2_240(2)) { jj_consume_token(INNER); jj_consume_token(JOIN); joinType = JoinType.INNER; - } else if (jj_2_239(2)) { + } else if (jj_2_241(2)) { jj_consume_token(ASOF); jj_consume_token(JOIN); joinType = JoinType.ASOF; - } else if (jj_2_240(2)) { + } else if (jj_2_242(2)) { jj_consume_token(LEFT); - if (jj_2_234(2)) { - if (jj_2_232(2)) { + if (jj_2_236(2)) { + if (jj_2_234(2)) { jj_consume_token(OUTER); - } else if (jj_2_233(2)) { + } else if (jj_2_235(2)) { jj_consume_token(ASOF); asof = true; } else { @@ -2972,25 +2978,25 @@ final public SqlLiteral JoinType() throws ParseException { } jj_consume_token(JOIN); joinType = asof ? JoinType.LEFT_ASOF : JoinType.LEFT; - } else if (jj_2_241(2)) { + } else if (jj_2_243(2)) { jj_consume_token(RIGHT); - if (jj_2_235(2)) { + if (jj_2_237(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.RIGHT; - } else if (jj_2_242(2)) { + } else if (jj_2_244(2)) { jj_consume_token(FULL); - if (jj_2_236(2)) { + if (jj_2_238(2)) { jj_consume_token(OUTER); } else { ; } jj_consume_token(JOIN); joinType = JoinType.FULL; - } else if (jj_2_243(2)) { + } else if (jj_2_245(2)) { jj_consume_token(CROSS); jj_consume_token(JOIN); joinType = JoinType.CROSS; @@ -3041,7 +3047,7 @@ final public SqlNode FromClause() throws ParseException { final public SqlNode JoinOrCommaTable(SqlNode e) throws ParseException { SqlNode e2; SqlLiteral joinType; - if (jj_2_244(2)) { + if (jj_2_246(2)) { jj_consume_token(COMMA); joinType = JoinType.COMMA.symbol(getPos()); e2 = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); @@ -3052,7 +3058,7 @@ final public SqlNode JoinOrCommaTable(SqlNode e) throws ParseException { e2, JoinConditionType.NONE.symbol(SqlParserPos.ZERO), null);} - } else if (jj_2_245(2)) { + } else if (jj_2_247(2)) { e2 = JoinTable(e); {if (true) return e2;} } else { @@ -3067,12 +3073,12 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { SqlNode e2, condition, matchCondition = null; final SqlLiteral natural, joinType, on, using; SqlNodeList list; - if (jj_2_249(4)) { + if (jj_2_251(4)) { natural = Natural(); joinType = JoinType(); e2 = TableRef1(ExprContext.ACCEPT_QUERY_OR_JOIN); - if (jj_2_247(2)) { - if (jj_2_246(2)) { + if (jj_2_249(2)) { + if (jj_2_248(2)) { jj_consume_token(MATCH_CONDITION); matchCondition = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -3106,7 +3112,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, on, condition);} - } else if (jj_2_248(2)) { + } else if (jj_2_250(2)) { jj_consume_token(USING); using = JoinConditionType.USING.symbol(getPos()); list = ParenthesizedSimpleIdentifierList(); @@ -3126,7 +3132,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { JoinConditionType.NONE.symbol(joinType.getParserPosition()), null);} } - } else if (jj_2_250(2)) { + } else if (jj_2_252(2)) { jj_consume_token(CROSS); joinType = JoinType.CROSS.symbol(getPos()); jj_consume_token(APPLY); @@ -3141,7 +3147,7 @@ final public SqlNode JoinTable(SqlNode e) throws ParseException { e2, JoinConditionType.NONE.symbol(SqlParserPos.ZERO), null);} - } else if (jj_2_251(2)) { + } else if (jj_2_253(2)) { jj_consume_token(OUTER); joinType = JoinType.LEFT.symbol(getPos()); jj_consume_token(APPLY); @@ -3199,36 +3205,36 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws SqlNodeList args; final SqlNodeList columnAliasList; SqlUnnestOperator unnestOp = SqlStdOperatorTable.UNNEST; - if (jj_2_262(2)) { + if (jj_2_264(2)) { tableName = CompoundTableIdentifier(); s = span(); - if (jj_2_256(3)) { + if (jj_2_258(3)) { tableRef = ImplicitTableFunctionCallArgs(tableName); } else { - if (jj_2_252(2)) { + if (jj_2_254(2)) { tableRef = TableHints(tableName); } else { tableRef = tableName; } - if (jj_2_253(2)) { + if (jj_2_255(2)) { tableRef = ExtendTable(tableRef); } else { ; } tableRef = Over(tableRef); - if (jj_2_254(2)) { + if (jj_2_256(2)) { tableRef = Snapshot(tableRef); } else { ; } - if (jj_2_255(2)) { + if (jj_2_257(2)) { tableRef = MatchRecognize(tableRef); } else { ; } } - } else if (jj_2_263(2)) { - if (jj_2_257(2)) { + } else if (jj_2_265(2)) { + if (jj_2_259(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3237,13 +3243,13 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws tableRef = ParenthesizedExpression(exprContext); tableRef = Over(tableRef); tableRef = addLateral(tableRef, lateral); - if (jj_2_258(2)) { + if (jj_2_260(2)) { tableRef = MatchRecognize(tableRef); } else { ; } - } else if (jj_2_264(2)) { - if (jj_2_259(2)) { + } else if (jj_2_266(2)) { + if (jj_2_261(2)) { jj_consume_token(LATERAL); } else { ; @@ -3251,7 +3257,7 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws jj_consume_token(UNNEST); s = span(); args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_260(2)) { + if (jj_2_262(2)) { jj_consume_token(WITH); jj_consume_token(ORDINALITY); unnestOp = SqlStdOperatorTable.UNNEST_WITH_ORDINALITY; @@ -3259,8 +3265,8 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws ; } tableRef = unnestOp.createCall(s.end(this), (List) args); - } else if (jj_2_265(2)) { - if (jj_2_261(2)) { + } else if (jj_2_267(2)) { + if (jj_2_263(2)) { jj_consume_token(LATERAL); lateral = true; } else { @@ -3268,30 +3274,30 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } tableRef = TableFunctionCall(); tableRef = addLateral(tableRef, lateral); - } else if (jj_2_266(2)) { + } else if (jj_2_268(2)) { tableRef = ExtendedTableRef(); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_267(2)) { + if (jj_2_269(2)) { tableRef = Pivot(tableRef); } else { ; } - if (jj_2_268(2)) { + if (jj_2_270(2)) { tableRef = Unpivot(tableRef); } else { ; } - if (jj_2_271(2)) { - if (jj_2_269(2)) { + if (jj_2_273(2)) { + if (jj_2_271(2)) { jj_consume_token(AS); } else { ; } alias = SimpleIdentifier(); - if (jj_2_270(2)) { + if (jj_2_272(2)) { columnAliasList = ParenthesizedSimpleIdentifierList(); } else { columnAliasList = null; @@ -3316,7 +3322,7 @@ final public SqlNode TableRef3(ExprContext exprContext, boolean lateral) throws } else { ; } - if (jj_2_272(2)) { + if (jj_2_274(2)) { tableRef = Tablesample(tableRef); } else { ; @@ -3334,7 +3340,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { int repeatableSeed = 0; jj_consume_token(TABLESAMPLE); s = span(); checkNotJoin(tableRef); - if (jj_2_276(2)) { + if (jj_2_278(2)) { jj_consume_token(SUBSTITUTE); jj_consume_token(LPAREN); sample = StringLiteral(); @@ -3346,11 +3352,11 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { SqlLiteral.createSample(sampleSpec, s.end(this)); {if (true) return SqlStdOperatorTable.TABLESAMPLE.createCall( s.add(tableRef).end(this), tableRef, sampleLiteral);} - } else if (jj_2_277(2)) { - if (jj_2_273(2)) { + } else if (jj_2_279(2)) { + if (jj_2_275(2)) { jj_consume_token(BERNOULLI); isBernoulli = true; - } else if (jj_2_274(2)) { + } else if (jj_2_276(2)) { jj_consume_token(SYSTEM); isBernoulli = false; } else { @@ -3360,7 +3366,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { jj_consume_token(LPAREN); samplePercentage = UnsignedNumericLiteral(); jj_consume_token(RPAREN); - if (jj_2_275(2)) { + if (jj_2_277(2)) { jj_consume_token(REPEATABLE); jj_consume_token(LPAREN); repeatableSeed = IntLiteral(); @@ -3391,7 +3397,7 @@ final public SqlNode Tablesample(SqlNode tableRef) throws ParseException { * is present. */ final public SqlNode ExtendTable(SqlNode tableRef) throws ParseException { final SqlNodeList extendList; - if (jj_2_278(2)) { + if (jj_2_280(2)) { jj_consume_token(EXTEND); } else { ; @@ -3409,7 +3415,7 @@ final public SqlNodeList ExtendList() throws ParseException { AddColumnType(list); label_24: while (true) { - if (jj_2_279(2)) { + if (jj_2_281(2)) { ; } else { break label_24; @@ -3441,7 +3447,7 @@ final public void AddCompoundIdentifierType(List list, List ex final SqlDataTypeSpec type; final boolean nullable; name = CompoundIdentifier(); - if (jj_2_280(2)) { + if (jj_2_282(2)) { type = DataType(); nullable = NotNullOpt(); } else { @@ -3464,11 +3470,11 @@ final public SqlNode ImplicitTableFunctionCallArgs(SqlIdentifier name) throws Pa final Span s; s = span(); jj_consume_token(LPAREN); - if (jj_2_282(2)) { + if (jj_2_284(2)) { AddArg0(tableFuncArgs, ExprContext.ACCEPT_CURSOR); label_25: while (true) { - if (jj_2_281(2)) { + if (jj_2_283(2)) { ; } else { break label_25; @@ -3498,7 +3504,7 @@ final public SqlNode TableFunctionCall() throws ParseException { jj_consume_token(TABLE); s = span(); jj_consume_token(LPAREN); - if (jj_2_283(2)) { + if (jj_2_285(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_TABLE_SPECIFIC_FUNCTION; } else { @@ -3544,10 +3550,10 @@ final public SqlNode ExplicitTable(SqlParserPos pos) throws ParseException { final public SqlNode TableConstructor() throws ParseException { final List list = new ArrayList(); final Span s; - if (jj_2_284(2)) { + if (jj_2_286(2)) { jj_consume_token(VALUES); s = span(); - } else if (jj_2_285(2)) { + } else if (jj_2_287(2)) { jj_consume_token(VALUE); s = span(); if (!this.conformance.isValueAllowed()) { @@ -3560,7 +3566,7 @@ final public SqlNode TableConstructor() throws ParseException { AddRowConstructor(list); label_26: while (true) { - if (jj_2_286(2)) { + if (jj_2_288(2)) { ; } else { break label_26; @@ -3586,22 +3592,22 @@ final public SqlNode RowConstructor() throws ParseException { final SqlNodeList valueList; final SqlNode value; final Span s; - if (jj_2_288(3)) { + if (jj_2_290(3)) { jj_consume_token(LPAREN); s = span(); jj_consume_token(ROW); valueList = ParenthesizedQueryOrCommaListWithDefault(ExprContext.ACCEPT_NONCURSOR); jj_consume_token(RPAREN); s.add(this); - } else if (jj_2_289(3)) { - if (jj_2_287(2)) { + } else if (jj_2_291(3)) { + if (jj_2_289(2)) { jj_consume_token(ROW); s = span(); } else { s = Span.of(); } valueList = ParenthesizedQueryOrCommaListWithDefault(ExprContext.ACCEPT_NONCURSOR); - } else if (jj_2_290(2)) { + } else if (jj_2_292(2)) { value = Expression(ExprContext.ACCEPT_NONCURSOR); // NOTE: A bare value here is standard SQL syntax, believe it or // not. Taken together with multi-row table constructors, it leads @@ -3641,10 +3647,10 @@ final public SqlNodeList GroupBy() throws ParseException { jj_consume_token(GROUP); s = span(); jj_consume_token(BY); - if (jj_2_291(2)) { + if (jj_2_293(2)) { jj_consume_token(DISTINCT); distinct = true; - } else if (jj_2_292(2)) { + } else if (jj_2_294(2)) { jj_consume_token(ALL); distinct = false; } else { @@ -3665,7 +3671,7 @@ final public List GroupingElementList() throws ParseException { AddGroupingElement(list); label_27: while (true) { - if (jj_2_293(2)) { + if (jj_2_295(2)) { ; } else { break label_27; @@ -3681,7 +3687,7 @@ final public void AddGroupingElement(List list) throws ParseException { final List subList; final SqlNodeList nodes; final Span s; - if (jj_2_294(2)) { + if (jj_2_296(2)) { jj_consume_token(GROUPING); s = span(); jj_consume_token(SETS); @@ -3690,7 +3696,7 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.GROUPING_SETS.createCall(s.end(this), subList)); - } else if (jj_2_295(2)) { + } else if (jj_2_297(2)) { jj_consume_token(ROLLUP); s = span(); jj_consume_token(LPAREN); @@ -3698,7 +3704,7 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.ROLLUP.createCall(s.end(this), nodes.getList())); - } else if (jj_2_296(2)) { + } else if (jj_2_298(2)) { jj_consume_token(CUBE); s = span(); jj_consume_token(LPAREN); @@ -3706,12 +3712,12 @@ final public void AddGroupingElement(List list) throws ParseException { jj_consume_token(RPAREN); list.add( SqlStdOperatorTable.CUBE.createCall(s.end(this), nodes.getList())); - } else if (jj_2_297(3)) { + } else if (jj_2_299(3)) { jj_consume_token(LPAREN); s = span(); jj_consume_token(RPAREN); list.add(new SqlNodeList(s.end(this))); - } else if (jj_2_298(2)) { + } else if (jj_2_300(2)) { AddExpression(list, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -3738,7 +3744,7 @@ final public void AddExpressions(List list, ExprContext exprContext) th AddExpression(list, exprContext); label_28: while (true) { - if (jj_2_299(2)) { + if (jj_2_301(2)) { ; } else { break label_28; @@ -3766,7 +3772,7 @@ final public SqlNodeList Window() throws ParseException { AddWindowSpec(list); label_29: while (true) { - if (jj_2_300(2)) { + if (jj_2_302(2)) { ; } else { break label_29; @@ -3802,12 +3808,12 @@ final public SqlWindow WindowSpecification() throws ParseException { final SqlLiteral allowPartial; jj_consume_token(LPAREN); s = span(); - if (jj_2_301(2)) { + if (jj_2_303(2)) { id = SimpleIdentifier(); } else { id = null; } - if (jj_2_302(2)) { + if (jj_2_304(2)) { jj_consume_token(PARTITION); s1 = span(); jj_consume_token(BY); @@ -3815,28 +3821,28 @@ final public SqlWindow WindowSpecification() throws ParseException { } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_303(2)) { + if (jj_2_305(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_308(2)) { - if (jj_2_304(2)) { + if (jj_2_310(2)) { + if (jj_2_306(2)) { jj_consume_token(ROWS); isRows = SqlLiteral.createBoolean(true, getPos()); - } else if (jj_2_305(2)) { + } else if (jj_2_307(2)) { jj_consume_token(RANGE); isRows = SqlLiteral.createBoolean(false, getPos()); } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_306(2)) { + if (jj_2_308(2)) { jj_consume_token(BETWEEN); lowerBound = WindowRange(); jj_consume_token(AND); upperBound = WindowRange(); - } else if (jj_2_307(2)) { + } else if (jj_2_309(2)) { lowerBound = WindowRange(); upperBound = null; } else { @@ -3849,12 +3855,12 @@ final public SqlWindow WindowSpecification() throws ParseException { exclude = SqlWindow.createExcludeNoOthers(getPos()); lowerBound = upperBound = null; } - if (jj_2_309(2)) { + if (jj_2_311(2)) { jj_consume_token(ALLOW); s2 = span(); jj_consume_token(PARTIAL); allowPartial = SqlLiteral.createBoolean(true, s2.end(this)); - } else if (jj_2_310(2)) { + } else if (jj_2_312(2)) { jj_consume_token(DISALLOW); s2 = span(); jj_consume_token(PARTIAL); @@ -3871,30 +3877,30 @@ final public SqlWindow WindowSpecification() throws ParseException { final public SqlNode WindowRange() throws ParseException { final SqlNode e; final Span s; - if (jj_2_315(2)) { + if (jj_2_317(2)) { jj_consume_token(CURRENT); s = span(); jj_consume_token(ROW); {if (true) return SqlWindow.createCurrentRow(s.end(this));} - } else if (jj_2_316(2)) { + } else if (jj_2_318(2)) { jj_consume_token(UNBOUNDED); s = span(); - if (jj_2_311(2)) { + if (jj_2_313(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createUnboundedPreceding(s.end(this));} - } else if (jj_2_312(2)) { + } else if (jj_2_314(2)) { jj_consume_token(FOLLOWING); {if (true) return SqlWindow.createUnboundedFollowing(s.end(this));} } else { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_317(2)) { + } else if (jj_2_319(2)) { e = Expression(ExprContext.ACCEPT_NON_QUERY); - if (jj_2_313(2)) { + if (jj_2_315(2)) { jj_consume_token(PRECEDING); {if (true) return SqlWindow.createPreceding(e, getPos());} - } else if (jj_2_314(2)) { + } else if (jj_2_316(2)) { jj_consume_token(FOLLOWING); {if (true) return SqlWindow.createFollowing(e, getPos());} } else { @@ -3910,20 +3916,20 @@ final public SqlNode WindowRange() throws ParseException { /** Parses an exclusion clause for WINDOW FRAME. */ final public SqlLiteral WindowExclusion() throws ParseException { - if (jj_2_322(2)) { + if (jj_2_324(2)) { jj_consume_token(EXCLUDE); - if (jj_2_318(2)) { + if (jj_2_320(2)) { jj_consume_token(CURRENT); jj_consume_token(ROW); {if (true) return SqlWindow.createExcludeCurrentRow(getPos());} - } else if (jj_2_319(2)) { + } else if (jj_2_321(2)) { jj_consume_token(NO); jj_consume_token(OTHERS); {if (true) return SqlWindow.createExcludeNoOthers(getPos());} - } else if (jj_2_320(2)) { + } else if (jj_2_322(2)) { jj_consume_token(GROUP); {if (true) return SqlWindow.createExcludeGroup(getPos());} - } else if (jj_2_321(2)) { + } else if (jj_2_323(2)) { jj_consume_token(TIES); {if (true) return SqlWindow.createExcludeTies(getPos());} } else { @@ -3963,7 +3969,7 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { AddOrderItem(list); label_30: while (true) { - if (jj_2_323(2)) { + if (jj_2_325(2)) { ; } else { break label_30; @@ -3981,10 +3987,10 @@ final public SqlNodeList OrderBy(boolean accept) throws ParseException { final public void AddOrderItem(List list) throws ParseException { SqlNode e; e = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_326(2)) { - if (jj_2_324(2)) { + if (jj_2_328(2)) { + if (jj_2_326(2)) { jj_consume_token(ASC); - } else if (jj_2_325(2)) { + } else if (jj_2_327(2)) { jj_consume_token(DESC); e = SqlStdOperatorTable.DESC.createCall(getPos(), e); } else { @@ -3994,12 +4000,12 @@ final public void AddOrderItem(List list) throws ParseException { } else { ; } - if (jj_2_329(2)) { - if (jj_2_327(2)) { + if (jj_2_331(2)) { + if (jj_2_329(2)) { jj_consume_token(NULLS); jj_consume_token(FIRST); e = SqlStdOperatorTable.NULLS_FIRST.createCall(getPos(), e); - } else if (jj_2_328(2)) { + } else if (jj_2_330(2)) { jj_consume_token(NULLS); jj_consume_token(LAST); e = SqlStdOperatorTable.NULLS_LAST.createCall(getPos(), e); @@ -4073,7 +4079,7 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { AddPivotAgg(aggList); label_31: while (true) { - if (jj_2_330(2)) { + if (jj_2_332(2)) { ; } else { break label_31; @@ -4086,11 +4092,11 @@ final public SqlNode Pivot(SqlNode tableRef) throws ParseException { jj_consume_token(IN); jj_consume_token(LPAREN); s2 = span(); - if (jj_2_332(2)) { + if (jj_2_334(2)) { AddPivotValue(valueList); label_32: while (true) { - if (jj_2_331(2)) { + if (jj_2_333(2)) { ; } else { break label_32; @@ -4115,7 +4121,7 @@ final public void AddPivotAgg(List list) throws ParseException { final SqlIdentifier alias; e = NamedFunctionCall(); if (getToken(1).kind != COMMA && getToken(1).kind != FOR) { - if (jj_2_333(2)) { + if (jj_2_335(2)) { jj_consume_token(AS); } else { ; @@ -4135,8 +4141,8 @@ final public void AddPivotValue(List list) throws ParseException { final SqlIdentifier alias; e = RowConstructor(); tuple = SqlParserUtil.stripRow(e); - if (jj_2_335(2)) { - if (jj_2_334(2)) { + if (jj_2_337(2)) { + if (jj_2_336(2)) { jj_consume_token(AS); } else { ; @@ -4161,11 +4167,11 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { final SqlNodeList inList; jj_consume_token(UNPIVOT); s = span(); checkNotJoin(tableRef); - if (jj_2_336(2)) { + if (jj_2_338(2)) { jj_consume_token(INCLUDE); jj_consume_token(NULLS); includeNulls = true; - } else if (jj_2_337(2)) { + } else if (jj_2_339(2)) { jj_consume_token(EXCLUDE); jj_consume_token(NULLS); includeNulls = false; @@ -4182,7 +4188,7 @@ final public SqlNode Unpivot(SqlNode tableRef) throws ParseException { AddUnpivotValue(values); label_33: while (true) { - if (jj_2_338(2)) { + if (jj_2_340(2)) { ; } else { break label_33; @@ -4202,7 +4208,7 @@ final public void AddUnpivotValue(List list) throws ParseException { final SqlNodeList columnList; final SqlNode values; columnList = SimpleIdentifierOrList(); - if (jj_2_339(2)) { + if (jj_2_341(2)) { jj_consume_token(AS); values = RowConstructor(); final SqlNodeList valueList = SqlParserUtil.stripRow(values); @@ -4234,7 +4240,7 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce jj_consume_token(MATCH_RECOGNIZE); s = span(); checkNotJoin(tableRef); jj_consume_token(LPAREN); - if (jj_2_340(2)) { + if (jj_2_342(2)) { jj_consume_token(PARTITION); s2 = span(); jj_consume_token(BY); @@ -4242,25 +4248,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { partitionList = SqlNodeList.EMPTY; } - if (jj_2_341(2)) { + if (jj_2_343(2)) { orderList = OrderBy(true); } else { orderList = SqlNodeList.EMPTY; } - if (jj_2_342(2)) { + if (jj_2_344(2)) { jj_consume_token(MEASURES); measureList = MeasureColumnCommaList(span()); } else { measureList = SqlNodeList.EMPTY; } - if (jj_2_343(2)) { + if (jj_2_345(2)) { jj_consume_token(ONE); s0 = span(); jj_consume_token(ROW); jj_consume_token(PER); jj_consume_token(MATCH); rowsPerMatch = SqlMatchRecognize.RowsPerMatchOption.ONE_ROW.symbol(s0.end(this)); - } else if (jj_2_344(2)) { + } else if (jj_2_346(2)) { jj_consume_token(ALL); s0 = span(); jj_consume_token(ROWS); @@ -4270,25 +4276,25 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } else { rowsPerMatch = null; } - if (jj_2_350(2)) { + if (jj_2_352(2)) { jj_consume_token(AFTER); s1 = span(); jj_consume_token(MATCH); jj_consume_token(SKIP_); - if (jj_2_348(2)) { + if (jj_2_350(2)) { jj_consume_token(TO); - if (jj_2_346(2)) { + if (jj_2_348(2)) { jj_consume_token(NEXT); jj_consume_token(ROW); after = SqlMatchRecognize.AfterOption.SKIP_TO_NEXT_ROW .symbol(s1.end(this)); - } else if (jj_2_347(2)) { + } else if (jj_2_349(2)) { jj_consume_token(FIRST); var = SimpleIdentifier(); after = SqlMatchRecognize.SKIP_TO_FIRST.createCall( s1.end(var), var); } else if (true) { - if (jj_2_345(2)) { + if (jj_2_347(2)) { jj_consume_token(LAST); } else { ; @@ -4300,7 +4306,7 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_349(2)) { + } else if (jj_2_351(2)) { jj_consume_token(PAST); jj_consume_token(LAST); jj_consume_token(ROW); @@ -4315,27 +4321,27 @@ final public SqlMatchRecognize MatchRecognize(SqlNode tableRef) throws ParseExce } jj_consume_token(PATTERN); jj_consume_token(LPAREN); - if (jj_2_351(2)) { + if (jj_2_353(2)) { jj_consume_token(CARET); isStrictStarts = SqlLiteral.createBoolean(true, getPos()); } else { isStrictStarts = SqlLiteral.createBoolean(false, getPos()); } pattern = PatternExpression(); - if (jj_2_352(2)) { + if (jj_2_354(2)) { jj_consume_token(DOLLAR); isStrictEnds = SqlLiteral.createBoolean(true, getPos()); } else { isStrictEnds = SqlLiteral.createBoolean(false, getPos()); } jj_consume_token(RPAREN); - if (jj_2_353(2)) { + if (jj_2_355(2)) { jj_consume_token(WITHIN); interval = IntervalLiteral(); } else { interval = null; } - if (jj_2_354(2)) { + if (jj_2_356(2)) { jj_consume_token(SUBSET); subsetList = SubsetDefinitionCommaList(span()); } else { @@ -4355,7 +4361,7 @@ final public SqlNodeList MeasureColumnCommaList(Span s) throws ParseException { AddMeasureColumn(list); label_34: while (true) { - if (jj_2_355(2)) { + if (jj_2_357(2)) { ; } else { break label_34; @@ -4382,7 +4388,7 @@ final public SqlNode PatternExpression() throws ParseException { left = PatternTerm(); label_35: while (true) { - if (jj_2_356(2)) { + if (jj_2_358(2)) { ; } else { break label_35; @@ -4402,7 +4408,7 @@ final public SqlNode PatternTerm() throws ParseException { left = PatternFactor(); label_36: while (true) { - if (jj_2_357(2)) { + if (jj_2_359(2)) { ; } else { break label_36; @@ -4427,25 +4433,25 @@ final public SqlNode PatternFactor() throws ParseException { case HOOK: case PLUS: case STAR: - if (jj_2_363(2)) { + if (jj_2_365(2)) { jj_consume_token(STAR); startNum = LITERAL_ZERO; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_364(2)) { + } else if (jj_2_366(2)) { jj_consume_token(PLUS); startNum = LITERAL_ONE; endNum = LITERAL_MINUS_ONE; - } else if (jj_2_365(2)) { + } else if (jj_2_367(2)) { jj_consume_token(HOOK); startNum = LITERAL_ZERO; endNum = LITERAL_ONE; - } else if (jj_2_366(2)) { + } else if (jj_2_368(2)) { jj_consume_token(LBRACE); - if (jj_2_360(2)) { + if (jj_2_362(2)) { startNum = UnsignedNumericLiteral(); - if (jj_2_359(2)) { + if (jj_2_361(2)) { jj_consume_token(COMMA); - if (jj_2_358(2)) { + if (jj_2_360(2)) { endNum = UnsignedNumericLiteral(); } else { endNum = LITERAL_MINUS_ONE; @@ -4454,12 +4460,12 @@ final public SqlNode PatternFactor() throws ParseException { endNum = startNum; } jj_consume_token(RBRACE); - } else if (jj_2_361(2)) { + } else if (jj_2_363(2)) { jj_consume_token(COMMA); endNum = UnsignedNumericLiteral(); jj_consume_token(RBRACE); startNum = LITERAL_MINUS_ONE; - } else if (jj_2_362(2)) { + } else if (jj_2_364(2)) { jj_consume_token(MINUS); extra = PatternExpression(); jj_consume_token(MINUS); @@ -4476,7 +4482,7 @@ final public SqlNode PatternFactor() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_367(2)) { + if (jj_2_369(2)) { jj_consume_token(HOOK); reluctant = SqlLiteral.createBoolean( startNum.intValue(true) != endNum.intValue(true), @@ -4498,15 +4504,15 @@ final public SqlNode PatternPrimary() throws ParseException { final Span s; SqlNode e; final List list; - if (jj_2_369(2)) { + if (jj_2_371(2)) { e = SimpleIdentifier(); {if (true) return e;} - } else if (jj_2_370(2)) { + } else if (jj_2_372(2)) { jj_consume_token(LPAREN); e = PatternExpression(); jj_consume_token(RPAREN); {if (true) return e;} - } else if (jj_2_371(2)) { + } else if (jj_2_373(2)) { jj_consume_token(LBRACE); s = span(); jj_consume_token(MINUS); @@ -4514,7 +4520,7 @@ final public SqlNode PatternPrimary() throws ParseException { jj_consume_token(MINUS); jj_consume_token(RBRACE); {if (true) return SqlStdOperatorTable.PATTERN_EXCLUDE.createCall(s.end(this), e);} - } else if (jj_2_372(2)) { + } else if (jj_2_374(2)) { jj_consume_token(PERMUTE); s = span(); list = new ArrayList(); jj_consume_token(LPAREN); @@ -4522,7 +4528,7 @@ final public SqlNode PatternPrimary() throws ParseException { list.add(e); label_37: while (true) { - if (jj_2_368(2)) { + if (jj_2_370(2)) { ; } else { break label_37; @@ -4546,7 +4552,7 @@ final public SqlNodeList SubsetDefinitionCommaList(Span s) throws ParseException AddSubsetDefinition(list); label_38: while (true) { - if (jj_2_373(2)) { + if (jj_2_375(2)) { ; } else { break label_38; @@ -4578,7 +4584,7 @@ final public SqlNodeList PatternDefinitionCommaList(Span s) throws ParseExceptio eList.add(e); label_39: while (true) { - if (jj_2_374(2)) { + if (jj_2_376(2)) { ; } else { break label_39; @@ -4640,7 +4646,7 @@ final public SqlNode QueryOrExpr(ExprContext exprContext) throws ParseException SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_375(2)) { + if (jj_2_377(2)) { withList = WithList(); } else { ; @@ -4649,7 +4655,7 @@ final public SqlNode QueryOrExpr(ExprContext exprContext) throws ParseException list.add(e); label_40: while (true) { - if (jj_2_376(2)) { + if (jj_2_378(2)) { ; } else { break label_40; @@ -4664,7 +4670,7 @@ final public SqlNode Query(ExprContext exprContext) throws ParseException { SqlNodeList withList = null; final SqlNode e; final List list = new ArrayList(); - if (jj_2_377(2)) { + if (jj_2_379(2)) { withList = WithList(); } else { ; @@ -4673,7 +4679,7 @@ final public SqlNode Query(ExprContext exprContext) throws ParseException { list.add(e); label_41: while (true) { - if (jj_2_378(2)) { + if (jj_2_380(2)) { ; } else { break label_41; @@ -4739,7 +4745,7 @@ final public SqlNodeList WithList() throws ParseException { final List list = new ArrayList(); boolean recursive = false; jj_consume_token(WITH); - if (jj_2_379(2)) { + if (jj_2_381(2)) { jj_consume_token(RECURSIVE); recursive = true; } else { @@ -4749,7 +4755,7 @@ final public SqlNodeList WithList() throws ParseException { AddWithItem(list, SqlLiteral.createBoolean(recursive, getPos())); label_42: while (true) { - if (jj_2_380(2)) { + if (jj_2_382(2)) { ; } else { break label_42; @@ -4766,7 +4772,7 @@ final public void AddWithItem(List list, SqlLiteral recursive) thro final SqlNodeList columnList; final SqlNode definition; id = SimpleIdentifier(); - if (jj_2_381(2)) { + if (jj_2_383(2)) { columnList = ParenthesizedSimpleIdentifierList(); } else { columnList = null; @@ -4782,10 +4788,10 @@ final public void AddWithItem(List list, SqlLiteral recursive) thro */ final public SqlNode LeafQueryOrExpr(ExprContext exprContext) throws ParseException { SqlNode e; - if (jj_2_382(2)) { + if (jj_2_384(2)) { e = LeafQuery(exprContext); {if (true) return e;} - } else if (jj_2_383(2)) { + } else if (jj_2_385(2)) { e = Expression(exprContext); {if (true) return e;} } else { @@ -4838,7 +4844,7 @@ final public void AddExpression2b(List list, ExprContext exprContext) th list.add(e); label_44: while (true) { - if (jj_2_384(2)) { + if (jj_2_386(2)) { ; } else { break label_44; @@ -4877,28 +4883,28 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep SqlIdentifier p; final Span s = span(); AddExpression2b(list, exprContext); - if (jj_2_428(2)) { + if (jj_2_430(2)) { label_45: while (true) { - if (jj_2_420(2)) { + if (jj_2_422(2)) { checkNonQueryExpression(exprContext); - if (jj_2_388(2)) { + if (jj_2_390(2)) { jj_consume_token(NOT); jj_consume_token(IN); op = SqlStdOperatorTable.NOT_IN; - } else if (jj_2_389(2)) { + } else if (jj_2_391(2)) { jj_consume_token(IN); op = SqlStdOperatorTable.IN; - } else if (jj_2_390(2)) { + } else if (jj_2_392(2)) { final SqlKind k; k = comp(); - if (jj_2_385(2)) { + if (jj_2_387(2)) { jj_consume_token(SOME); op = SqlStdOperatorTable.some(k); - } else if (jj_2_386(2)) { + } else if (jj_2_388(2)) { jj_consume_token(ANY); op = SqlStdOperatorTable.some(k); - } else if (jj_2_387(2)) { + } else if (jj_2_389(2)) { jj_consume_token(ALL); op = SqlStdOperatorTable.all(k); } else { @@ -4924,18 +4930,18 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { list.add(nodeList); } - } else if (jj_2_421(2)) { + } else if (jj_2_423(2)) { checkNonQueryExpression(exprContext); - if (jj_2_397(2)) { + if (jj_2_399(2)) { jj_consume_token(NOT); jj_consume_token(BETWEEN); op = SqlStdOperatorTable.NOT_BETWEEN; s.clear().add(this); - if (jj_2_393(2)) { - if (jj_2_391(2)) { + if (jj_2_395(2)) { + if (jj_2_393(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_NOT_BETWEEN; - } else if (jj_2_392(2)) { + } else if (jj_2_394(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -4944,15 +4950,15 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_398(2)) { + } else if (jj_2_400(2)) { jj_consume_token(BETWEEN); op = SqlStdOperatorTable.BETWEEN; s.clear().add(this); - if (jj_2_396(2)) { - if (jj_2_394(2)) { + if (jj_2_398(2)) { + if (jj_2_396(2)) { jj_consume_token(SYMMETRIC); op = SqlStdOperatorTable.SYMMETRIC_BETWEEN; - } else if (jj_2_395(2)) { + } else if (jj_2_397(2)) { jj_consume_token(ASYMMETRIC); } else { jj_consume_token(-1); @@ -4969,22 +4975,22 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep list.add(new SqlParserUtil.ToTreeListItem(op, s.pos())); list.addAll(list3); list3.clear(); - } else if (jj_2_422(2)) { + } else if (jj_2_424(2)) { checkNonQueryExpression(exprContext); s.clear().add(this); - if (jj_2_410(2)) { - if (jj_2_403(2)) { + if (jj_2_412(2)) { + if (jj_2_405(2)) { jj_consume_token(NOT); - if (jj_2_399(2)) { + if (jj_2_401(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.NOT_LIKE; - } else if (jj_2_400(2)) { + } else if (jj_2_402(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.NOT_ILIKE; - } else if (jj_2_401(2)) { + } else if (jj_2_403(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.NOT_RLIKE; - } else if (jj_2_402(2)) { + } else if (jj_2_404(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.NOT_SIMILAR_TO; @@ -4992,16 +4998,16 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_404(2)) { + } else if (jj_2_406(2)) { jj_consume_token(LIKE); op = SqlStdOperatorTable.LIKE; - } else if (jj_2_405(2)) { + } else if (jj_2_407(2)) { jj_consume_token(ILIKE); op = SqlLibraryOperators.ILIKE; - } else if (jj_2_406(2)) { + } else if (jj_2_408(2)) { jj_consume_token(RLIKE); op = SqlLibraryOperators.RLIKE; - } else if (jj_2_407(2)) { + } else if (jj_2_409(2)) { jj_consume_token(SIMILAR); jj_consume_token(TO); op = SqlStdOperatorTable.SIMILAR_TO; @@ -5009,20 +5015,20 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_411(2)) { + } else if (jj_2_413(2)) { jj_consume_token(NEGATE); jj_consume_token(TILDE); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_408(2)) { + if (jj_2_410(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.NEGATED_POSIX_REGEX_CASE_INSENSITIVE; } else { ; } - } else if (jj_2_412(2)) { + } else if (jj_2_414(2)) { jj_consume_token(TILDE); op = SqlStdOperatorTable.POSIX_REGEX_CASE_SENSITIVE; - if (jj_2_409(2)) { + if (jj_2_411(2)) { jj_consume_token(STAR); op = SqlStdOperatorTable.POSIX_REGEX_CASE_INSENSITIVE; } else { @@ -5035,7 +5041,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep list2 = Expression2(ExprContext.ACCEPT_SUB_QUERY); list.add(new SqlParserUtil.ToTreeListItem(op, s.pos())); list.addAll(list2); - if (jj_2_413(2)) { + if (jj_2_415(2)) { jj_consume_token(ESCAPE); e = Expression3(ExprContext.ACCEPT_SUB_QUERY); s.clear().add(this); @@ -5046,40 +5052,40 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep } else { ; } - } else if (jj_2_423(2)) { + } else if (jj_2_425(2)) { InfixCast(list, exprContext, s); - } else if (jj_2_424(3)) { + } else if (jj_2_426(3)) { op = BinaryRowOperator(); checkNonQueryExpression(exprContext); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); AddExpression2b(list, ExprContext.ACCEPT_SUB_QUERY); - } else if (jj_2_425(2)) { + } else if (jj_2_427(2)) { jj_consume_token(LBRACKET); - if (jj_2_414(2)) { + if (jj_2_416(2)) { jj_consume_token(OFFSET); itemOp = SqlLibraryOperators.OFFSET; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_415(2)) { + } else if (jj_2_417(2)) { jj_consume_token(ORDINAL); itemOp = SqlLibraryOperators.ORDINAL; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_416(2)) { + } else if (jj_2_418(2)) { jj_consume_token(SAFE_OFFSET); itemOp = SqlLibraryOperators.SAFE_OFFSET; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_417(2)) { + } else if (jj_2_419(2)) { jj_consume_token(SAFE_ORDINAL); itemOp = SqlLibraryOperators.SAFE_ORDINAL; jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_418(2)) { + } else if (jj_2_420(2)) { itemOp = SqlStdOperatorTable.ITEM; e = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -5093,7 +5099,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep list.add(e); label_46: while (true) { - if (jj_2_419(2)) { + if (jj_2_421(2)) { ; } else { break label_46; @@ -5105,7 +5111,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep SqlStdOperatorTable.DOT, getPos())); list.add(p); } - } else if (jj_2_426(2)) { + } else if (jj_2_428(2)) { checkNonQueryExpression(exprContext); op = PostfixRowOperator(); list.add(new SqlParserUtil.ToTreeListItem(op, getPos())); @@ -5113,7 +5119,7 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep jj_consume_token(-1); throw new ParseException(); } - if (jj_2_427(2)) { + if (jj_2_429(2)) { ; } else { break label_45; @@ -5128,25 +5134,25 @@ final public List Expression2(ExprContext exprContext) throws ParseExcep /** Parses a comparison operator inside a SOME / ALL predicate. */ final public SqlKind comp() throws ParseException { - if (jj_2_429(2)) { + if (jj_2_431(2)) { jj_consume_token(LT); {if (true) return SqlKind.LESS_THAN;} - } else if (jj_2_430(2)) { + } else if (jj_2_432(2)) { jj_consume_token(LE); {if (true) return SqlKind.LESS_THAN_OR_EQUAL;} - } else if (jj_2_431(2)) { + } else if (jj_2_433(2)) { jj_consume_token(GT); {if (true) return SqlKind.GREATER_THAN;} - } else if (jj_2_432(2)) { + } else if (jj_2_434(2)) { jj_consume_token(GE); {if (true) return SqlKind.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_433(2)) { + } else if (jj_2_435(2)) { jj_consume_token(EQ); {if (true) return SqlKind.EQUALS;} - } else if (jj_2_434(2)) { + } else if (jj_2_436(2)) { jj_consume_token(NE); {if (true) return SqlKind.NOT_EQUALS;} - } else if (jj_2_435(2)) { + } else if (jj_2_437(2)) { jj_consume_token(NE2); if (!this.conformance.isBangEqualAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.bangEqualNotAllowed());} @@ -5169,14 +5175,14 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException final SqlNodeList list1; final Span s; final Span rowSpan; - if (jj_2_438(2)) { + if (jj_2_440(2)) { e = AtomicRowExpression(); checkNonQueryExpression(exprContext); {if (true) return e;} - } else if (jj_2_439(2)) { + } else if (jj_2_441(2)) { e = CursorExpression(exprContext); {if (true) return e;} - } else if (jj_2_440(3)) { + } else if (jj_2_442(3)) { jj_consume_token(ROW); s = span(); list = ParenthesizedQueryOrCommaList(exprContext); @@ -5188,8 +5194,8 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException RESOURCE.illegalRowExpression());} } {if (true) return SqlStdOperatorTable.ROW.createCall(list);} - } else if (jj_2_441(2)) { - if (jj_2_436(2)) { + } else if (jj_2_443(2)) { + if (jj_2_438(2)) { jj_consume_token(ROW); rowSpan = span(); } else { @@ -5201,7 +5207,7 @@ final public SqlNode Expression3(ExprContext exprContext) throws ParseException {if (true) return SqlStdOperatorTable.ROW.createCall(rowSpan.end(list1), (List) list1);} } - if (jj_2_437(2)) { + if (jj_2_439(2)) { e = IntervalQualifier(); if ((list1.size() == 1) && list1.get(0) instanceof SqlCall) @@ -5259,11 +5265,11 @@ final public SqlNode LambdaExpression() throws ParseException { */ final public SqlNodeList SimpleIdentifierOrListOrEmpty() throws ParseException { SqlNodeList list; - if (jj_2_442(2)) { + if (jj_2_444(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); {if (true) return SqlNodeList.EMPTY;} - } else if (jj_2_443(2)) { + } else if (jj_2_445(2)) { list = SimpleIdentifierOrList(); {if (true) return list;} } else { @@ -5274,24 +5280,24 @@ final public SqlNodeList SimpleIdentifierOrListOrEmpty() throws ParseException { } final public SqlOperator periodOperator() throws ParseException { - if (jj_2_444(2)) { + if (jj_2_446(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_445(2)) { + } else if (jj_2_447(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_446(2)) { + } else if (jj_2_448(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_447(2)) { + } else if (jj_2_449(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_448(2)) { + } else if (jj_2_450(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_449(2)) { + } else if (jj_2_451(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} } else { @@ -5317,9 +5323,9 @@ final public SqlCollation CollateClause() throws ParseException { */ final public SqlNode UnsignedNumericLiteralOrParam() throws ParseException { final SqlNode e; - if (jj_2_450(2)) { + if (jj_2_452(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_451(2)) { + } else if (jj_2_453(2)) { e = DynamicParam(); } else { jj_consume_token(-1); @@ -5340,20 +5346,20 @@ final public SqlNode RowExpressionExtension() throws ParseException { final List args; final SqlLiteral quantifier; p = SimpleIdentifier(); - if (jj_2_455(2147483647)) { + if (jj_2_457(2147483647)) { s = span(); - if (jj_2_452(2)) { + if (jj_2_454(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); quantifier = null; args = ImmutableList.of(SqlIdentifier.star(getPos())); jj_consume_token(RPAREN); - } else if (jj_2_453(2)) { + } else if (jj_2_455(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); quantifier = null; args = ImmutableList.of(); - } else if (jj_2_454(2)) { + } else if (jj_2_456(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -5380,16 +5386,16 @@ final public SqlCall StringAggFunctionCall() throws ParseException { final SqlNodeList orderBy; final Pair nullTreatment; final SqlNode separator; - if (jj_2_456(2)) { + if (jj_2_458(2)) { jj_consume_token(ARRAY_AGG); s = span(); op = SqlLibraryOperators.ARRAY_AGG; - } else if (jj_2_457(2)) { + } else if (jj_2_459(2)) { jj_consume_token(ARRAY_CONCAT_AGG); s = span(); op = SqlLibraryOperators.ARRAY_CONCAT_AGG; - } else if (jj_2_458(2)) { + } else if (jj_2_460(2)) { jj_consume_token(GROUP_CONCAT); s = span(); op = SqlLibraryOperators.GROUP_CONCAT; - } else if (jj_2_459(2)) { + } else if (jj_2_461(2)) { jj_consume_token(STRING_AGG); s = span(); op = SqlLibraryOperators.STRING_AGG; } else { @@ -5397,7 +5403,7 @@ final public SqlCall StringAggFunctionCall() throws ParseException { throw new ParseException(); } jj_consume_token(LPAREN); - if (jj_2_460(2)) { + if (jj_2_462(2)) { qualifier = AllOrDistinct(); } else { qualifier = null; @@ -5405,7 +5411,7 @@ final public SqlCall StringAggFunctionCall() throws ParseException { AddArg(args, ExprContext.ACCEPT_SUB_QUERY); label_47: while (true) { - if (jj_2_461(2)) { + if (jj_2_463(2)) { ; } else { break label_47; @@ -5416,18 +5422,18 @@ final public SqlCall StringAggFunctionCall() throws ParseException { checkNonQueryExpression(ExprContext.ACCEPT_SUB_QUERY); AddArg(args, ExprContext.ACCEPT_SUB_QUERY); } - if (jj_2_462(2)) { + if (jj_2_464(2)) { nullTreatment = NullTreatment(); } else { nullTreatment = null; } - if (jj_2_463(2)) { + if (jj_2_465(2)) { orderBy = OrderBy(true); args.add(orderBy); } else { ; } - if (jj_2_464(2)) { + if (jj_2_466(2)) { jj_consume_token(SEPARATOR); s2 = span(); separator = StringLiteral(); @@ -5460,10 +5466,10 @@ final public SqlCall PercentileFunctionCall() throws ParseException { final SqlNode e; final List args = new ArrayList(); final Pair nullTreatment; - if (jj_2_465(2)) { + if (jj_2_467(2)) { jj_consume_token(PERCENTILE_CONT); op = SqlStdOperatorTable.PERCENTILE_CONT; - } else if (jj_2_466(2)) { + } else if (jj_2_468(2)) { jj_consume_token(PERCENTILE_DISC); op = SqlStdOperatorTable.PERCENTILE_DISC; } else { @@ -5473,14 +5479,14 @@ final public SqlCall PercentileFunctionCall() throws ParseException { s = span(); jj_consume_token(LPAREN); AddArg(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_468(2)) { + if (jj_2_470(2)) { jj_consume_token(RPAREN); {if (true) return op.createCall(s.end(this), args);} - } else if (jj_2_469(2)) { + } else if (jj_2_471(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); - if (jj_2_467(2)) { + if (jj_2_469(2)) { nullTreatment = NullTreatment(); } else { nullTreatment = null; @@ -5508,33 +5514,33 @@ final public SqlCall PercentileFunctionCall() throws ParseException { */ final public SqlNode AtomicRowExpression() throws ParseException { final SqlNode e; - if (jj_2_470(2)) { + if (jj_2_472(2)) { e = LiteralOrIntervalExpression(); - } else if (jj_2_471(2)) { + } else if (jj_2_473(2)) { e = DynamicParam(); - } else if (jj_2_472(2)) { + } else if (jj_2_474(2)) { e = BuiltinFunctionCall(); - } else if (jj_2_473(2)) { + } else if (jj_2_475(2)) { e = JdbcFunctionCall(); - } else if (jj_2_474(2)) { + } else if (jj_2_476(2)) { e = MultisetConstructor(); - } else if (jj_2_475(2)) { + } else if (jj_2_477(2)) { e = ArrayConstructor(); - } else if (jj_2_476(3)) { + } else if (jj_2_478(3)) { e = MapConstructor(); - } else if (jj_2_477(2)) { + } else if (jj_2_479(2)) { e = PeriodConstructor(); - } else if (jj_2_478(2147483647)) { + } else if (jj_2_480(2147483647)) { e = NamedFunctionCall(); - } else if (jj_2_479(2)) { + } else if (jj_2_481(2)) { e = ContextVariable(); - } else if (jj_2_480(2)) { + } else if (jj_2_482(2)) { e = CompoundIdentifier(); - } else if (jj_2_481(2)) { + } else if (jj_2_483(2)) { e = NewSpecification(); - } else if (jj_2_482(2)) { + } else if (jj_2_484(2)) { e = CaseExpression(); - } else if (jj_2_483(2)) { + } else if (jj_2_485(2)) { e = SequenceExpression(); } else { jj_consume_token(-1); @@ -5555,7 +5561,7 @@ final public SqlNode CaseExpression() throws ParseException { final List thenList = new ArrayList(); jj_consume_token(CASE); s = span(); - if (jj_2_484(2)) { + if (jj_2_486(2)) { caseIdentifier = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { caseIdentifier = null; @@ -5573,13 +5579,13 @@ final public SqlNode CaseExpression() throws ParseException { thenSpan.add(this); e = Expression(ExprContext.ACCEPT_SUB_QUERY); thenList.add(e); - if (jj_2_485(2)) { + if (jj_2_487(2)) { ; } else { break label_48; } } - if (jj_2_486(2)) { + if (jj_2_488(2)) { jj_consume_token(ELSE); elseClause = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { @@ -5597,10 +5603,10 @@ final public SqlCall SequenceExpression() throws ParseException { final Span s; final SqlOperator f; final SqlNode sequenceRef; - if (jj_2_487(2)) { + if (jj_2_489(2)) { jj_consume_token(NEXT); f = SqlStdOperatorTable.NEXT_VALUE; s = span(); - } else if (jj_2_488(3)) { + } else if (jj_2_490(3)) { jj_consume_token(CURRENT); f = SqlStdOperatorTable.CURRENT_VALUE; s = span(); } else { @@ -5621,16 +5627,16 @@ final public SqlCall SequenceExpression() throws ParseException { final public SqlSetOption SqlSetOption(Span s, String scope) throws ParseException { SqlIdentifier name; final SqlNode val; - if (jj_2_494(2)) { + if (jj_2_496(2)) { jj_consume_token(SET); s.add(this); name = CompoundIdentifier(); jj_consume_token(EQ); - if (jj_2_489(2)) { + if (jj_2_491(2)) { val = Literal(); - } else if (jj_2_490(2)) { + } else if (jj_2_492(2)) { val = SimpleIdentifier(); - } else if (jj_2_491(2)) { + } else if (jj_2_493(2)) { jj_consume_token(ON); // OFF is handled by SimpleIdentifier, ON handled here. val = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), @@ -5640,12 +5646,12 @@ final public SqlSetOption SqlSetOption(Span s, String scope) throws ParseExcepti throw new ParseException(); } {if (true) return new SqlSetOption(s.end(val), scope, (SqlNode) name, val);} - } else if (jj_2_495(2)) { + } else if (jj_2_497(2)) { jj_consume_token(RESET); s.add(this); - if (jj_2_492(2)) { + if (jj_2_494(2)) { name = CompoundIdentifier(); - } else if (jj_2_493(2)) { + } else if (jj_2_495(2)) { jj_consume_token(ALL); name = new SqlIdentifier(token.image.toUpperCase(Locale.ROOT), getPos()); @@ -5678,9 +5684,9 @@ final public SqlAlter SqlAlter() throws ParseException { } final public String Scope() throws ParseException { - if (jj_2_496(2)) { + if (jj_2_498(2)) { jj_consume_token(SYSTEM); - } else if (jj_2_497(2)) { + } else if (jj_2_499(2)) { jj_consume_token(SESSION); } else { jj_consume_token(-1); @@ -5699,20 +5705,20 @@ final public SqlCreate SqlCreate() throws ParseException { final SqlCreate create; jj_consume_token(CREATE); s = span(); - if (jj_2_498(2)) { + if (jj_2_500(2)) { jj_consume_token(OR); jj_consume_token(REPLACE); replace = true; } else { ; } - if (jj_2_499(2)) { + if (jj_2_501(2)) { create = SqlCreateTable(s, replace); - } else if (jj_2_500(2)) { + } else if (jj_2_502(2)) { create = SqlCreateIndex(s, replace); - } else if (jj_2_501(2)) { + } else if (jj_2_503(2)) { create = SqlCreateUser(s, replace); - } else if (jj_2_502(2)) { + } else if (jj_2_504(2)) { create = SqlCreateView(s, replace); } else { jj_consume_token(-1); @@ -5731,13 +5737,13 @@ final public SqlDrop SqlDrop() throws ParseException { final SqlDrop drop; jj_consume_token(DROP); s = span(); - if (jj_2_503(2)) { + if (jj_2_505(2)) { drop = SqlDropTable(s, replace); - } else if (jj_2_504(2)) { + } else if (jj_2_506(2)) { drop = SqlDropIndex(s, replace); - } else if (jj_2_505(2)) { + } else if (jj_2_507(2)) { drop = SqlDropUser(s, replace); - } else if (jj_2_506(2)) { + } else if (jj_2_508(2)) { drop = SqlDropView(s, replace); } else { jj_consume_token(-1); @@ -5759,9 +5765,9 @@ final public SqlDrop SqlDrop() throws ParseException { */ final public SqlNode Literal() throws ParseException { SqlNode e; - if (jj_2_507(2)) { + if (jj_2_509(2)) { e = NonIntervalLiteral(); - } else if (jj_2_508(2)) { + } else if (jj_2_510(2)) { e = IntervalLiteral(); } else { jj_consume_token(-1); @@ -5774,13 +5780,13 @@ final public SqlNode Literal() throws ParseException { /** Parses a literal that is not an interval literal. */ final public SqlNode NonIntervalLiteral() throws ParseException { final SqlNode e; - if (jj_2_509(2)) { + if (jj_2_511(2)) { e = NumericLiteral(); - } else if (jj_2_510(2)) { + } else if (jj_2_512(2)) { e = StringLiteral(); - } else if (jj_2_511(2)) { + } else if (jj_2_513(2)) { e = SpecialLiteral(); - } else if (jj_2_512(2)) { + } else if (jj_2_514(2)) { e = DateTimeLiteral(); } else { jj_consume_token(-1); @@ -5798,9 +5804,9 @@ final public SqlNode NonIntervalLiteral() throws ParseException { * LOOKAHEAD. */ final public SqlNode LiteralOrIntervalExpression() throws ParseException { final SqlNode e; - if (jj_2_513(2)) { + if (jj_2_515(2)) { e = IntervalLiteralOrExpression(); - } else if (jj_2_514(2)) { + } else if (jj_2_516(2)) { e = NonIntervalLiteral(); } else { jj_consume_token(-1); @@ -5813,17 +5819,17 @@ final public SqlNode LiteralOrIntervalExpression() throws ParseException { /** Parses a unsigned numeric literal */ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { final String p; - if (jj_2_515(2)) { + if (jj_2_517(2)) { jj_consume_token(UNSIGNED_INTEGER_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_516(2)) { + } else if (jj_2_518(2)) { jj_consume_token(DECIMAL_NUMERIC_LITERAL); {if (true) return SqlLiteral.createExactNumeric(token.image, getPos());} - } else if (jj_2_517(2)) { + } else if (jj_2_519(2)) { jj_consume_token(DECIMAL); p = SimpleStringLiteral(); {if (true) return SqlParserUtil.parseDecimalLiteral(SqlParserUtil.trim(p, " "), getPos());} - } else if (jj_2_518(2)) { + } else if (jj_2_520(2)) { jj_consume_token(APPROX_NUMERIC_LITERAL); {if (true) return SqlLiteral.createApproxNumeric(token.image, getPos());} } else { @@ -5837,16 +5843,16 @@ final public SqlNumericLiteral UnsignedNumericLiteral() throws ParseException { final public SqlLiteral NumericLiteral() throws ParseException { final SqlNumericLiteral num; final Span s; - if (jj_2_519(2)) { + if (jj_2_521(2)) { jj_consume_token(PLUS); num = UnsignedNumericLiteral(); {if (true) return num;} - } else if (jj_2_520(2)) { + } else if (jj_2_522(2)) { jj_consume_token(MINUS); s = span(); num = UnsignedNumericLiteral(); {if (true) return SqlLiteral.createNegative(num, s.end(this));} - } else if (jj_2_521(2)) { + } else if (jj_2_523(2)) { num = UnsignedNumericLiteral(); {if (true) return num;} } else { @@ -5858,16 +5864,16 @@ final public SqlLiteral NumericLiteral() throws ParseException { /** Parse a special literal keyword */ final public SqlLiteral SpecialLiteral() throws ParseException { - if (jj_2_522(2)) { + if (jj_2_524(2)) { jj_consume_token(TRUE); {if (true) return SqlLiteral.createBoolean(true, getPos());} - } else if (jj_2_523(2)) { + } else if (jj_2_525(2)) { jj_consume_token(FALSE); {if (true) return SqlLiteral.createBoolean(false, getPos());} - } else if (jj_2_524(2)) { + } else if (jj_2_526(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlLiteral.createUnknown(getPos());} - } else if (jj_2_525(2)) { + } else if (jj_2_527(2)) { jj_consume_token(NULL); {if (true) return SqlLiteral.createNull(getPos());} } else { @@ -5894,7 +5900,7 @@ final public SqlNode StringLiteral() throws ParseException { char unicodeEscapeChar = 0; String charSet = null; SqlCharStringLiteral literal; - if (jj_2_530(2)) { + if (jj_2_532(2)) { jj_consume_token(BINARY_STRING_LITERAL); frags = new ArrayList(); try { @@ -5930,13 +5936,13 @@ final public SqlNode StringLiteral() throws ParseException { SqlParserPos pos2 = SqlParserPos.sum(frags); {if (true) return SqlStdOperatorTable.LITERAL_CHAIN.createCall(pos2, frags);} } - } else if (jj_2_531(2)) { - if (jj_2_526(2)) { + } else if (jj_2_533(2)) { + if (jj_2_528(2)) { jj_consume_token(PREFIXED_STRING_LITERAL); charSet = SqlParserUtil.getCharacterSet(token.image); - } else if (jj_2_527(2)) { + } else if (jj_2_529(2)) { jj_consume_token(QUOTED_STRING); - } else if (jj_2_528(2)) { + } else if (jj_2_530(2)) { jj_consume_token(UNICODE_STRING_LITERAL); // TODO jvs 2-Feb-2009: support the explicit specification of // a character set for Unicode string literals, per SQL:2003 @@ -5975,7 +5981,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unknownCharacterSet(charSet));} } } - if (jj_2_529(2)) { + if (jj_2_531(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); if (unicodeEscapeChar == 0) { @@ -6001,7 +6007,7 @@ final public SqlNode StringLiteral() throws ParseException { SqlParserPos pos2 = SqlParserPos.sum(rands); {if (true) return SqlStdOperatorTable.LITERAL_CHAIN.createCall(pos2, rands);} } - } else if (jj_2_532(2)) { + } else if (jj_2_534(2)) { jj_consume_token(C_STYLE_ESCAPED_STRING_LITERAL); try { p = SqlParserUtil.parseCString(getToken(0).image); @@ -6010,7 +6016,7 @@ final public SqlNode StringLiteral() throws ParseException { RESOURCE.unicodeEscapeMalformed(e.i));} } {if (true) return SqlLiteral.createCharString(p, "UTF16", getPos());} - } else if (jj_2_533(2)) { + } else if (jj_2_535(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, "\\\"", Casing.UNCHANGED); @@ -6020,7 +6026,7 @@ final public SqlNode StringLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.unknownCharacterSet(charSet));} } - } else if (jj_2_534(2)) { + } else if (jj_2_536(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); p = SqlParserUtil.stripQuotes(getToken(0).image, "'", "'", "\\'", Casing.UNCHANGED); @@ -6042,13 +6048,13 @@ final public SqlNode StringLiteral() throws ParseException { * on BigQuery also matches a double-quoted string, such as "foo". * Returns the value of the string with quotes removed. */ final public String SimpleStringLiteral() throws ParseException { - if (jj_2_535(2)) { + if (jj_2_537(2)) { jj_consume_token(QUOTED_STRING); {if (true) return SqlParserUtil.parseString(token.image);} - } else if (jj_2_536(2)) { + } else if (jj_2_538(2)) { jj_consume_token(BIG_QUERY_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, "'", "'", "\\'", Casing.UNCHANGED);} - } else if (jj_2_537(2)) { + } else if (jj_2_539(2)) { jj_consume_token(BIG_QUERY_DOUBLE_QUOTED_STRING); {if (true) return SqlParserUtil.stripQuotes(token.image, DQ, DQ, "\\\"", Casing.UNCHANGED);} } else { @@ -6065,55 +6071,55 @@ final public SqlLiteral DateTimeLiteral() throws ParseException { final String p; final Span s; boolean local = false; - if (jj_2_540(2)) { + if (jj_2_542(2)) { jj_consume_token(LBRACE_D); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseDateLiteral(p, getPos());} - } else if (jj_2_541(2)) { + } else if (jj_2_543(2)) { jj_consume_token(LBRACE_T); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseTimeLiteral(p, getPos());} - } else if (jj_2_542(2)) { + } else if (jj_2_544(2)) { jj_consume_token(LBRACE_TS); s = span(); jj_consume_token(QUOTED_STRING); p = SqlParserUtil.parseString(token.image); jj_consume_token(RBRACE); {if (true) return SqlParserUtil.parseTimestampLiteral(p, s.end(this));} - } else if (jj_2_543(2)) { + } else if (jj_2_545(2)) { jj_consume_token(DATE); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATE", p, s.end(this));} - } else if (jj_2_544(2)) { + } else if (jj_2_546(2)) { jj_consume_token(DATETIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("DATETIME", p, s.end(this));} - } else if (jj_2_545(2)) { + } else if (jj_2_547(2)) { jj_consume_token(TIME); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIME", p, s.end(this));} - } else if (jj_2_546(2)) { + } else if (jj_2_548(2)) { jj_consume_token(UUID); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("UUID", p, s.end(this));} - } else if (jj_2_547(2)) { + } else if (jj_2_549(2)) { jj_consume_token(TIMESTAMP); s = span(); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIMESTAMP", p, s.end(this));} - } else if (jj_2_548(2)) { + } else if (jj_2_550(2)) { jj_consume_token(TIME); s = span(); jj_consume_token(WITH); - if (jj_2_538(2)) { + if (jj_2_540(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -6123,11 +6129,11 @@ final public SqlLiteral DateTimeLiteral() throws ParseException { jj_consume_token(ZONE); p = SimpleStringLiteral(); {if (true) return SqlLiteral.createUnknown("TIME WITH " + (local ? "LOCAL " : "") + "TIME ZONE", p, s.end(this));} - } else if (jj_2_549(2)) { + } else if (jj_2_551(2)) { jj_consume_token(TIMESTAMP); s = span(); jj_consume_token(WITH); - if (jj_2_539(2)) { + if (jj_2_541(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -6152,13 +6158,13 @@ final public SqlNode DateTimeConstructorCall() throws ParseException { final Span s; final SqlLiteral quantifier; final List args; - if (jj_2_550(2)) { + if (jj_2_552(2)) { jj_consume_token(DATE); - } else if (jj_2_551(2)) { + } else if (jj_2_553(2)) { jj_consume_token(TIME); - } else if (jj_2_552(2)) { + } else if (jj_2_554(2)) { jj_consume_token(DATETIME); - } else if (jj_2_553(2)) { + } else if (jj_2_555(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); @@ -6180,19 +6186,19 @@ final public SqlNode MultisetConstructor() throws ParseException { final Span s; jj_consume_token(MULTISET); s = span(); - if (jj_2_555(2)) { + if (jj_2_557(2)) { jj_consume_token(LPAREN); // by sub query "MULTISET(SELECT * FROM T)" e = LeafQueryOrExpr(ExprContext.ACCEPT_QUERY); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.MULTISET_QUERY.createCall( s.end(this), e);} - } else if (jj_2_556(2)) { + } else if (jj_2_558(2)) { jj_consume_token(LBRACKET); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); label_51: while (true) { - if (jj_2_554(2)) { + if (jj_2_556(2)) { ; } else { break label_51; @@ -6218,12 +6224,12 @@ final public SqlNode ArrayConstructor() throws ParseException { final String p; jj_consume_token(ARRAY); s = span(); - if (jj_2_560(2)) { - if (jj_2_557(2)) { + if (jj_2_562(2)) { + if (jj_2_559(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_558(2)) { + } else if (jj_2_560(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); @@ -6237,9 +6243,9 @@ final public SqlNode ArrayConstructor() throws ParseException { // equivalent to standard 'ARRAY [1, 2]' {if (true) return SqlLibraryOperators.ARRAY.createCall(s.end(this), args.getList());} } - } else if (jj_2_561(2)) { + } else if (jj_2_563(2)) { jj_consume_token(LBRACKET); - if (jj_2_559(2)) { + if (jj_2_561(2)) { args = ExpressionCommaList(s, ExprContext.ACCEPT_SUB_QUERY); } else { args = SqlNodeList.EMPTY; @@ -6260,12 +6266,12 @@ final public SqlCall ArrayLiteral() throws ParseException { final Span s; jj_consume_token(LBRACE); s = span(); - if (jj_2_564(2)) { + if (jj_2_566(2)) { e = Literal(); list = startList(e); label_52: while (true) { - if (jj_2_562(2)) { + if (jj_2_564(2)) { ; } else { break label_52; @@ -6274,12 +6280,12 @@ final public SqlCall ArrayLiteral() throws ParseException { e = Literal(); list.add(e); } - } else if (jj_2_565(2)) { + } else if (jj_2_567(2)) { e = ArrayLiteral(); list = startList(e); label_53: while (true) { - if (jj_2_563(2)) { + if (jj_2_565(2)) { ; } else { break label_53; @@ -6302,12 +6308,12 @@ final public SqlNode MapConstructor() throws ParseException { final Span s; jj_consume_token(MAP); s = span(); - if (jj_2_569(2)) { - if (jj_2_566(2)) { + if (jj_2_571(2)) { + if (jj_2_568(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_567(2)) { + } else if (jj_2_569(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_ALL); } else { jj_consume_token(-1); @@ -6320,9 +6326,9 @@ final public SqlNode MapConstructor() throws ParseException { // MAP function e.g. "MAP(1, 2)" equivalent to standard "MAP[1, 2]" {if (true) return SqlLibraryOperators.MAP.createCall(s.end(this), args.getList());} } - } else if (jj_2_570(2)) { + } else if (jj_2_572(2)) { jj_consume_token(LBRACKET); - if (jj_2_568(2)) { + if (jj_2_570(2)) { args = ExpressionCommaList(s, ExprContext.ACCEPT_NON_QUERY); } else { args = SqlNodeList.EMPTY; @@ -6362,11 +6368,11 @@ final public SqlLiteral IntervalLiteral() throws ParseException { final Span s; jj_consume_token(INTERVAL); s = span(); - if (jj_2_573(2)) { - if (jj_2_571(2)) { + if (jj_2_575(2)) { + if (jj_2_573(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_572(2)) { + } else if (jj_2_574(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6394,11 +6400,11 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { SqlNode e; jj_consume_token(INTERVAL); s = span(); - if (jj_2_576(2)) { - if (jj_2_574(2)) { + if (jj_2_578(2)) { + if (jj_2_576(2)) { jj_consume_token(MINUS); sign = -1; - } else if (jj_2_575(2)) { + } else if (jj_2_577(2)) { jj_consume_token(PLUS); sign = 1; } else { @@ -6408,20 +6414,20 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } else { ; } - if (jj_2_580(2)) { + if (jj_2_582(2)) { // literal (with quoted string) p = SimpleStringLiteral(); intervalQualifier = IntervalQualifier(); {if (true) return SqlParserUtil.parseIntervalLiteral(s.end(intervalQualifier), sign, p, intervalQualifier);} - } else if (jj_2_581(2)) { - if (jj_2_577(2)) { + } else if (jj_2_583(2)) { + if (jj_2_579(2)) { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); - } else if (jj_2_578(2)) { + } else if (jj_2_580(2)) { e = UnsignedNumericLiteral(); - } else if (jj_2_579(2)) { + } else if (jj_2_581(2)) { e = CompoundIdentifier(); } else { jj_consume_token(-1); @@ -6441,10 +6447,10 @@ final public SqlNode IntervalLiteralOrExpression() throws ParseException { } final public TimeUnit Year() throws ParseException { - if (jj_2_582(2)) { + if (jj_2_584(2)) { jj_consume_token(YEAR); {if (true) return TimeUnit.YEAR;} - } else if (jj_2_583(2)) { + } else if (jj_2_585(2)) { jj_consume_token(YEARS); {if (true) return warn(TimeUnit.YEAR);} } else { @@ -6455,10 +6461,10 @@ final public TimeUnit Year() throws ParseException { } final public TimeUnit Quarter() throws ParseException { - if (jj_2_584(2)) { + if (jj_2_586(2)) { jj_consume_token(QUARTER); {if (true) return TimeUnit.QUARTER;} - } else if (jj_2_585(2)) { + } else if (jj_2_587(2)) { jj_consume_token(QUARTERS); {if (true) return warn(TimeUnit.QUARTER);} } else { @@ -6469,10 +6475,10 @@ final public TimeUnit Quarter() throws ParseException { } final public TimeUnit Month() throws ParseException { - if (jj_2_586(2)) { + if (jj_2_588(2)) { jj_consume_token(MONTH); {if (true) return TimeUnit.MONTH;} - } else if (jj_2_587(2)) { + } else if (jj_2_589(2)) { jj_consume_token(MONTHS); {if (true) return warn(TimeUnit.MONTH);} } else { @@ -6483,10 +6489,10 @@ final public TimeUnit Month() throws ParseException { } final public TimeUnit Week() throws ParseException { - if (jj_2_588(2)) { + if (jj_2_590(2)) { jj_consume_token(WEEK); {if (true) return TimeUnit.WEEK;} - } else if (jj_2_589(2)) { + } else if (jj_2_591(2)) { jj_consume_token(WEEKS); {if (true) return warn(TimeUnit.WEEK);} } else { @@ -6497,10 +6503,10 @@ final public TimeUnit Week() throws ParseException { } final public TimeUnit Day() throws ParseException { - if (jj_2_590(2)) { + if (jj_2_592(2)) { jj_consume_token(DAY); {if (true) return TimeUnit.DAY;} - } else if (jj_2_591(2)) { + } else if (jj_2_593(2)) { jj_consume_token(DAYS); {if (true) return warn(TimeUnit.DAY);} } else { @@ -6511,10 +6517,10 @@ final public TimeUnit Day() throws ParseException { } final public TimeUnit Hour() throws ParseException { - if (jj_2_592(2)) { + if (jj_2_594(2)) { jj_consume_token(HOUR); {if (true) return TimeUnit.HOUR;} - } else if (jj_2_593(2)) { + } else if (jj_2_595(2)) { jj_consume_token(HOURS); {if (true) return warn(TimeUnit.HOUR);} } else { @@ -6525,10 +6531,10 @@ final public TimeUnit Hour() throws ParseException { } final public TimeUnit Minute() throws ParseException { - if (jj_2_594(2)) { + if (jj_2_596(2)) { jj_consume_token(MINUTE); {if (true) return TimeUnit.MINUTE;} - } else if (jj_2_595(2)) { + } else if (jj_2_597(2)) { jj_consume_token(MINUTES); {if (true) return warn(TimeUnit.MINUTE);} } else { @@ -6539,10 +6545,10 @@ final public TimeUnit Minute() throws ParseException { } final public TimeUnit Second() throws ParseException { - if (jj_2_596(2)) { + if (jj_2_598(2)) { jj_consume_token(SECOND); {if (true) return TimeUnit.SECOND;} - } else if (jj_2_597(2)) { + } else if (jj_2_599(2)) { jj_consume_token(SECONDS); {if (true) return warn(TimeUnit.SECOND);} } else { @@ -6558,42 +6564,42 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { final TimeUnit end; final int startPrec; int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; - if (jj_2_611(2)) { + if (jj_2_613(2)) { start = Year(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_598(2)) { + if (jj_2_600(2)) { jj_consume_token(TO); end = Month(); } else { end = null; } - } else if (jj_2_612(2)) { + } else if (jj_2_614(2)) { start = Quarter(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_613(2)) { + } else if (jj_2_615(2)) { start = Month(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_614(2)) { + } else if (jj_2_616(2)) { start = Week(); s = span(); startPrec = PrecisionOpt(); end = null; - } else if (jj_2_615(2)) { + } else if (jj_2_617(2)) { start = Day(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_602(2)) { + if (jj_2_604(2)) { jj_consume_token(TO); - if (jj_2_599(2)) { + if (jj_2_601(2)) { end = Hour(); - } else if (jj_2_600(2)) { + } else if (jj_2_602(2)) { end = Minute(); - } else if (jj_2_601(2)) { + } else if (jj_2_603(2)) { end = Second(); secondFracPrec = PrecisionOpt(); } else { @@ -6603,17 +6609,17 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_616(2)) { + } else if (jj_2_618(2)) { start = Hour(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_606(2)) { + if (jj_2_608(2)) { jj_consume_token(TO); - if (jj_2_604(2)) { + if (jj_2_606(2)) { end = Minute(); - } else if (jj_2_605(2)) { + } else if (jj_2_607(2)) { end = Second(); - if (jj_2_603(2)) { + if (jj_2_605(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6627,14 +6633,14 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_617(2)) { + } else if (jj_2_619(2)) { start = Minute(); s = span(); startPrec = PrecisionOpt(); - if (jj_2_608(2)) { + if (jj_2_610(2)) { jj_consume_token(TO); end = Second(); - if (jj_2_607(2)) { + if (jj_2_609(2)) { jj_consume_token(LPAREN); secondFracPrec = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -6644,13 +6650,13 @@ final public SqlIntervalQualifier IntervalQualifier() throws ParseException { } else { end = null; } - } else if (jj_2_618(2)) { + } else if (jj_2_620(2)) { start = Second(); s = span(); - if (jj_2_610(2)) { + if (jj_2_612(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_609(2)) { + if (jj_2_611(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6676,20 +6682,20 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException final TimeUnit start; int startPrec = RelDataType.PRECISION_NOT_SPECIFIED; int secondFracPrec = RelDataType.PRECISION_NOT_SPECIFIED; - if (jj_2_628(2)) { - if (jj_2_619(2)) { + if (jj_2_630(2)) { + if (jj_2_621(2)) { start = Year(); - } else if (jj_2_620(2)) { + } else if (jj_2_622(2)) { start = Quarter(); - } else if (jj_2_621(2)) { + } else if (jj_2_623(2)) { start = Month(); - } else if (jj_2_622(2)) { + } else if (jj_2_624(2)) { start = Week(); - } else if (jj_2_623(2)) { + } else if (jj_2_625(2)) { start = Day(); - } else if (jj_2_624(2)) { + } else if (jj_2_626(2)) { start = Hour(); - } else if (jj_2_625(2)) { + } else if (jj_2_627(2)) { start = Minute(); } else { jj_consume_token(-1); @@ -6697,13 +6703,13 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException } s = span(); startPrec = PrecisionOpt(); - } else if (jj_2_629(2)) { + } else if (jj_2_631(2)) { start = Second(); s = span(); - if (jj_2_627(2)) { + if (jj_2_629(2)) { jj_consume_token(LPAREN); startPrec = UnsignedIntLiteral(); - if (jj_2_626(2)) { + if (jj_2_628(2)) { jj_consume_token(COMMA); secondFracPrec = UnsignedIntLiteral(); } else { @@ -6740,10 +6746,10 @@ final public SqlIntervalQualifier IntervalQualifierStart() throws ParseException final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final SqlIdentifier unitName; final SqlIntervalQualifier intervalQualifier; - if (jj_2_630(2)) { + if (jj_2_632(2)) { intervalQualifier = TimeUnit(); {if (true) return intervalQualifier;} - } else if (jj_2_631(2)) { + } else if (jj_2_633(2)) { unitName = SimpleIdentifier(); {if (true) return new SqlIntervalQualifier(unitName.getSimple(), unitName.getParserPosition());} @@ -6767,49 +6773,49 @@ final public SqlIntervalQualifier TimeUnitOrName() throws ParseException { final public SqlIntervalQualifier TimeUnit() throws ParseException { final Span span; final String w; - if (jj_2_633(2)) { + if (jj_2_635(2)) { jj_consume_token(NANOSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.NANOSECOND, null, getPos());} - } else if (jj_2_634(2)) { + } else if (jj_2_636(2)) { jj_consume_token(MICROSECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MICROSECOND, null, getPos());} - } else if (jj_2_635(2)) { + } else if (jj_2_637(2)) { jj_consume_token(MILLISECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLISECOND, null, getPos());} - } else if (jj_2_636(2)) { + } else if (jj_2_638(2)) { jj_consume_token(SECOND); {if (true) return new SqlIntervalQualifier(TimeUnit.SECOND, null, getPos());} - } else if (jj_2_637(2)) { + } else if (jj_2_639(2)) { jj_consume_token(MINUTE); {if (true) return new SqlIntervalQualifier(TimeUnit.MINUTE, null, getPos());} - } else if (jj_2_638(2)) { + } else if (jj_2_640(2)) { jj_consume_token(HOUR); {if (true) return new SqlIntervalQualifier(TimeUnit.HOUR, null, getPos());} - } else if (jj_2_639(2)) { + } else if (jj_2_641(2)) { jj_consume_token(DAY); {if (true) return new SqlIntervalQualifier(TimeUnit.DAY, null, getPos());} - } else if (jj_2_640(2)) { + } else if (jj_2_642(2)) { jj_consume_token(DAYOFWEEK); {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} - } else if (jj_2_641(2)) { + } else if (jj_2_643(2)) { jj_consume_token(DAYOFYEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} - } else if (jj_2_642(2)) { + } else if (jj_2_644(2)) { jj_consume_token(DOW); {if (true) return new SqlIntervalQualifier(TimeUnit.DOW, null, getPos());} - } else if (jj_2_643(2)) { + } else if (jj_2_645(2)) { jj_consume_token(DOY); {if (true) return new SqlIntervalQualifier(TimeUnit.DOY, null, getPos());} - } else if (jj_2_644(2)) { + } else if (jj_2_646(2)) { jj_consume_token(ISODOW); {if (true) return new SqlIntervalQualifier(TimeUnit.ISODOW, null, getPos());} - } else if (jj_2_645(2)) { + } else if (jj_2_647(2)) { jj_consume_token(ISOYEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.ISOYEAR, null, getPos());} - } else if (jj_2_646(2)) { + } else if (jj_2_648(2)) { jj_consume_token(WEEK); span = span(); - if (jj_2_632(2)) { + if (jj_2_634(2)) { jj_consume_token(LPAREN); w = weekdayName(); jj_consume_token(RPAREN); @@ -6817,25 +6823,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } else { {if (true) return new SqlIntervalQualifier(TimeUnit.WEEK, null, getPos());} } - } else if (jj_2_647(2)) { + } else if (jj_2_649(2)) { jj_consume_token(MONTH); {if (true) return new SqlIntervalQualifier(TimeUnit.MONTH, null, getPos());} - } else if (jj_2_648(2)) { + } else if (jj_2_650(2)) { jj_consume_token(QUARTER); {if (true) return new SqlIntervalQualifier(TimeUnit.QUARTER, null, getPos());} - } else if (jj_2_649(2)) { + } else if (jj_2_651(2)) { jj_consume_token(YEAR); {if (true) return new SqlIntervalQualifier(TimeUnit.YEAR, null, getPos());} - } else if (jj_2_650(2)) { + } else if (jj_2_652(2)) { jj_consume_token(EPOCH); {if (true) return new SqlIntervalQualifier(TimeUnit.EPOCH, null, getPos());} - } else if (jj_2_651(2)) { + } else if (jj_2_653(2)) { jj_consume_token(DECADE); {if (true) return new SqlIntervalQualifier(TimeUnit.DECADE, null, getPos());} - } else if (jj_2_652(2)) { + } else if (jj_2_654(2)) { jj_consume_token(CENTURY); {if (true) return new SqlIntervalQualifier(TimeUnit.CENTURY, null, getPos());} - } else if (jj_2_653(2)) { + } else if (jj_2_655(2)) { jj_consume_token(MILLENNIUM); {if (true) return new SqlIntervalQualifier(TimeUnit.MILLENNIUM, null, getPos());} } else { @@ -6846,25 +6852,25 @@ final public SqlIntervalQualifier TimeUnit() throws ParseException { } final public String weekdayName() throws ParseException { - if (jj_2_654(2)) { + if (jj_2_656(2)) { jj_consume_token(SUNDAY); {if (true) return "WEEK_SUNDAY";} - } else if (jj_2_655(2)) { + } else if (jj_2_657(2)) { jj_consume_token(MONDAY); {if (true) return "WEEK_MONDAY";} - } else if (jj_2_656(2)) { + } else if (jj_2_658(2)) { jj_consume_token(TUESDAY); {if (true) return "WEEK_TUESDAY";} - } else if (jj_2_657(2)) { + } else if (jj_2_659(2)) { jj_consume_token(WEDNESDAY); {if (true) return "WEEK_WEDNESDAY";} - } else if (jj_2_658(2)) { + } else if (jj_2_660(2)) { jj_consume_token(THURSDAY); {if (true) return "WEEK_THURSDAY";} - } else if (jj_2_659(2)) { + } else if (jj_2_661(2)) { jj_consume_token(FRIDAY); {if (true) return "WEEK_FRIDAY";} - } else if (jj_2_660(2)) { + } else if (jj_2_662(2)) { jj_consume_token(SATURDAY); {if (true) return "WEEK_SATURDAY";} } else { @@ -6895,41 +6901,41 @@ final public void AddIdentifierSegment(List names, List po char unicodeEscapeChar = BACKSLASH; final SqlParserPos pos; final Span span; - if (jj_2_662(2)) { + if (jj_2_664(2)) { jj_consume_token(IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_663(2)) { + } else if (jj_2_665(2)) { jj_consume_token(HYPHENATED_IDENTIFIER); id = unquotedIdentifier(); pos = getPos(); - } else if (jj_2_664(2)) { + } else if (jj_2_666(2)) { jj_consume_token(QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, DQ, DQ, DQDQ, quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_665(2)) { + } else if (jj_2_667(2)) { jj_consume_token(BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "``", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_666(2)) { + } else if (jj_2_668(2)) { jj_consume_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "`", "`", "\\`", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_667(2)) { + } else if (jj_2_669(2)) { jj_consume_token(BRACKET_QUOTED_IDENTIFIER); id = SqlParserUtil.stripQuotes(getToken(0).image, "[", "]", "]]", quotedCasing); pos = getPos().withQuoting(true); - } else if (jj_2_668(2)) { + } else if (jj_2_670(2)) { jj_consume_token(UNICODE_QUOTED_IDENTIFIER); span = span(); String image = getToken(0).image; image = image.substring(image.indexOf('"')); image = SqlParserUtil.stripQuotes(image, DQ, DQ, DQDQ, quotedCasing); - if (jj_2_661(2)) { + if (jj_2_663(2)) { jj_consume_token(UESCAPE); jj_consume_token(QUOTED_STRING); String s = SqlParserUtil.parseString(token.image); @@ -6941,7 +6947,7 @@ final public void AddIdentifierSegment(List names, List po SqlLiteral lit = SqlLiteral.createCharString(image, "UTF16", pos); lit = lit.unescapeUnicode(unicodeEscapeChar); id = lit.toValue(); - } else if (jj_2_669(2)) { + } else if (jj_2_671(2)) { id = NonReservedKeyWord(); pos = getPos(); } else { @@ -7026,7 +7032,7 @@ final public void AddSimpleIdentifiers(List list) throws ParseException list.add(id); label_54: while (true) { - if (jj_2_670(2)) { + if (jj_2_672(2)) { ; } else { break label_54; @@ -7062,10 +7068,10 @@ final public SqlNodeList ParenthesizedSimpleIdentifierList() throws ParseExcepti final public SqlNodeList SimpleIdentifierOrList() throws ParseException { SqlIdentifier id; SqlNodeList list; - if (jj_2_671(2)) { + if (jj_2_673(2)) { id = SimpleIdentifier(); {if (true) return new SqlNodeList(Collections.singletonList(id), id.getParserPosition());} - } else if (jj_2_672(2)) { + } else if (jj_2_674(2)) { list = ParenthesizedSimpleIdentifierList(); {if (true) return list;} } else { @@ -7085,7 +7091,7 @@ final public SqlIdentifier CompoundIdentifier() throws ParseException { AddIdentifierSegment(nameList, posList); label_55: while (true) { - if (jj_2_673(2)) { + if (jj_2_675(2)) { ; } else { break label_55; @@ -7093,7 +7099,7 @@ final public SqlIdentifier CompoundIdentifier() throws ParseException { jj_consume_token(DOT); AddIdentifierSegment(nameList, posList); } - if (jj_2_674(2)) { + if (jj_2_676(2)) { jj_consume_token(DOT); jj_consume_token(STAR); star = true; @@ -7119,7 +7125,7 @@ final public SqlIdentifier CompoundTableIdentifier() throws ParseException { AddTableIdentifierSegment(nameList, posList); label_56: while (true) { - if (jj_2_675(2)) { + if (jj_2_677(2)) { ; } else { break label_56; @@ -7139,7 +7145,7 @@ final public void AddCompoundIdentifierTypes(List list, List e AddCompoundIdentifierType(list, extendList); label_57: while (true) { - if (jj_2_676(2)) { + if (jj_2_678(2)) { ; } else { break label_57; @@ -7194,10 +7200,10 @@ final public int UnsignedIntLiteral() throws ParseException { final public int IntLiteral() throws ParseException { Token t; - if (jj_2_679(2)) { - if (jj_2_677(2)) { + if (jj_2_681(2)) { + if (jj_2_679(2)) { t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); - } else if (jj_2_678(2)) { + } else if (jj_2_680(2)) { jj_consume_token(PLUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); } else { @@ -7210,7 +7216,7 @@ final public int IntLiteral() throws ParseException { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.invalidLiteral(t.image, Integer.class.getCanonicalName()));} } - } else if (jj_2_680(2)) { + } else if (jj_2_682(2)) { jj_consume_token(MINUS); t = jj_consume_token(UNSIGNED_INTEGER_LITERAL); try { @@ -7234,7 +7240,7 @@ final public SqlDataTypeSpec DataType() throws ParseException { s = Span.of(typeName.getParserPos()); label_58: while (true) { - if (jj_2_681(2)) { + if (jj_2_683(2)) { ; } else { break label_58; @@ -7251,13 +7257,13 @@ final public SqlTypeNameSpec TypeName() throws ParseException { final SqlTypeNameSpec typeNameSpec; final SqlIdentifier typeName; final Span s = Span.of(); - if (jj_2_682(2)) { + if (jj_2_684(2)) { typeNameSpec = SqlTypeName(s); - } else if (jj_2_683(2)) { + } else if (jj_2_685(2)) { typeNameSpec = RowTypeName(); - } else if (jj_2_684(2)) { + } else if (jj_2_686(2)) { typeNameSpec = MapTypeName(); - } else if (jj_2_685(2)) { + } else if (jj_2_687(2)) { typeName = CompoundIdentifier(); typeNameSpec = new SqlUserDefinedTypeNameSpec(typeName, s.end(this)); } else { @@ -7271,15 +7277,15 @@ final public SqlTypeNameSpec TypeName() throws ParseException { // Types used for JDBC and ODBC scalar conversion function final public SqlTypeNameSpec SqlTypeName(Span s) throws ParseException { final SqlTypeNameSpec sqlTypeNameSpec; - if (jj_2_686(2)) { + if (jj_2_688(2)) { sqlTypeNameSpec = SqlTypeName1(s); - } else if (jj_2_687(2)) { + } else if (jj_2_689(2)) { sqlTypeNameSpec = SqlTypeName2(s); - } else if (jj_2_688(2)) { + } else if (jj_2_690(2)) { sqlTypeNameSpec = SqlTypeName3(s); - } else if (jj_2_689(2)) { + } else if (jj_2_691(2)) { sqlTypeNameSpec = CharacterTypeName(s); - } else if (jj_2_690(2)) { + } else if (jj_2_692(2)) { sqlTypeNameSpec = DateTimeTypeName(); } else { jj_consume_token(-1); @@ -7293,54 +7299,54 @@ final public SqlTypeNameSpec SqlTypeName(Span s) throws ParseException { // For extra specification, we mean precision, scale, charSet, etc. final public SqlTypeNameSpec SqlTypeName1(Span s) throws ParseException { final SqlTypeName sqlTypeName; - if (jj_2_694(2)) { + if (jj_2_696(2)) { jj_consume_token(GEOMETRY); if (!this.conformance.allowGeometry()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.geometryDisabled());} } s.add(this); sqlTypeName = SqlTypeName.GEOMETRY; - } else if (jj_2_695(2)) { + } else if (jj_2_697(2)) { jj_consume_token(BOOLEAN); s.add(this); sqlTypeName = SqlTypeName.BOOLEAN; - } else if (jj_2_696(2)) { - if (jj_2_691(2)) { + } else if (jj_2_698(2)) { + if (jj_2_693(2)) { jj_consume_token(INTEGER); - } else if (jj_2_692(2)) { + } else if (jj_2_694(2)) { jj_consume_token(INT); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); sqlTypeName = SqlTypeName.INTEGER; - } else if (jj_2_697(2)) { + } else if (jj_2_699(2)) { jj_consume_token(TINYINT); s.add(this); sqlTypeName = SqlTypeName.TINYINT; - } else if (jj_2_698(2)) { + } else if (jj_2_700(2)) { jj_consume_token(SMALLINT); s.add(this); sqlTypeName = SqlTypeName.SMALLINT; - } else if (jj_2_699(2)) { + } else if (jj_2_701(2)) { jj_consume_token(BIGINT); s.add(this); sqlTypeName = SqlTypeName.BIGINT; - } else if (jj_2_700(2)) { + } else if (jj_2_702(2)) { jj_consume_token(REAL); s.add(this); sqlTypeName = SqlTypeName.REAL; - } else if (jj_2_701(2)) { + } else if (jj_2_703(2)) { jj_consume_token(DOUBLE); s.add(this); - if (jj_2_693(2)) { + if (jj_2_695(2)) { jj_consume_token(PRECISION); } else { ; } sqlTypeName = SqlTypeName.DOUBLE; - } else if (jj_2_702(2)) { + } else if (jj_2_704(2)) { jj_consume_token(FLOAT); s.add(this); sqlTypeName = SqlTypeName.FLOAT; - } else if (jj_2_703(2)) { + } else if (jj_2_705(2)) { jj_consume_token(VARIANT); s.add(this); sqlTypeName = SqlTypeName.VARIANT; - } else if (jj_2_704(2)) { + } else if (jj_2_706(2)) { jj_consume_token(UUID); s.add(this); sqlTypeName = SqlTypeName.UUID; } else { @@ -7355,16 +7361,16 @@ final public SqlTypeNameSpec SqlTypeName1(Span s) throws ParseException { final public SqlTypeNameSpec SqlTypeName2(Span s) throws ParseException { final SqlTypeName sqlTypeName; int precision = -1; - if (jj_2_706(2)) { + if (jj_2_708(2)) { jj_consume_token(BINARY); s.add(this); - if (jj_2_705(2)) { + if (jj_2_707(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARBINARY; } else { sqlTypeName = SqlTypeName.BINARY; } - } else if (jj_2_707(2)) { + } else if (jj_2_709(2)) { jj_consume_token(VARBINARY); s.add(this); sqlTypeName = SqlTypeName.VARBINARY; } else { @@ -7381,29 +7387,29 @@ final public SqlTypeNameSpec SqlTypeName3(Span s) throws ParseException { final SqlTypeName sqlTypeName; int precision = RelDataType.PRECISION_NOT_SPECIFIED; int scale = RelDataType.SCALE_NOT_SPECIFIED; - if (jj_2_711(2)) { - if (jj_2_708(2)) { + if (jj_2_713(2)) { + if (jj_2_710(2)) { jj_consume_token(DECIMAL); - } else if (jj_2_709(2)) { + } else if (jj_2_711(2)) { jj_consume_token(DEC); - } else if (jj_2_710(2)) { + } else if (jj_2_712(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); sqlTypeName = SqlTypeName.DECIMAL; - } else if (jj_2_712(2)) { + } else if (jj_2_714(2)) { jj_consume_token(ANY); s.add(this); sqlTypeName = SqlTypeName.ANY; } else { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_714(2)) { + if (jj_2_716(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); - if (jj_2_713(2)) { + if (jj_2_715(2)) { jj_consume_token(COMMA); scale = IntLiteral(); } else { @@ -7419,213 +7425,213 @@ final public SqlTypeNameSpec SqlTypeName3(Span s) throws ParseException { // Types used for for JDBC and ODBC scalar conversion function final public SqlJdbcDataTypeName JdbcOdbcDataTypeName() throws ParseException { - if (jj_2_749(2)) { - if (jj_2_715(2)) { + if (jj_2_751(2)) { + if (jj_2_717(2)) { jj_consume_token(SQL_CHAR); - } else if (jj_2_716(2)) { + } else if (jj_2_718(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_CHAR;} - } else if (jj_2_750(2)) { - if (jj_2_717(2)) { + } else if (jj_2_752(2)) { + if (jj_2_719(2)) { jj_consume_token(SQL_VARCHAR); - } else if (jj_2_718(2)) { + } else if (jj_2_720(2)) { jj_consume_token(VARCHAR); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARCHAR;} - } else if (jj_2_751(2)) { - if (jj_2_719(2)) { + } else if (jj_2_753(2)) { + if (jj_2_721(2)) { jj_consume_token(SQL_DATE); - } else if (jj_2_720(2)) { + } else if (jj_2_722(2)) { jj_consume_token(DATE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DATE;} - } else if (jj_2_752(2)) { - if (jj_2_721(2)) { + } else if (jj_2_754(2)) { + if (jj_2_723(2)) { jj_consume_token(SQL_TIME); - } else if (jj_2_722(2)) { + } else if (jj_2_724(2)) { jj_consume_token(TIME); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIME;} - } else if (jj_2_753(2)) { - if (jj_2_723(2)) { + } else if (jj_2_755(2)) { + if (jj_2_725(2)) { jj_consume_token(SQL_TIMESTAMP); - } else if (jj_2_724(2)) { + } else if (jj_2_726(2)) { jj_consume_token(TIMESTAMP); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TIMESTAMP;} - } else if (jj_2_754(2)) { - if (jj_2_725(2)) { + } else if (jj_2_756(2)) { + if (jj_2_727(2)) { jj_consume_token(SQL_DECIMAL); - } else if (jj_2_726(2)) { + } else if (jj_2_728(2)) { jj_consume_token(DECIMAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DECIMAL;} - } else if (jj_2_755(2)) { - if (jj_2_727(2)) { + } else if (jj_2_757(2)) { + if (jj_2_729(2)) { jj_consume_token(SQL_NUMERIC); - } else if (jj_2_728(2)) { + } else if (jj_2_730(2)) { jj_consume_token(NUMERIC); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_NUMERIC;} - } else if (jj_2_756(2)) { - if (jj_2_729(2)) { + } else if (jj_2_758(2)) { + if (jj_2_731(2)) { jj_consume_token(SQL_BOOLEAN); - } else if (jj_2_730(2)) { + } else if (jj_2_732(2)) { jj_consume_token(BOOLEAN); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BOOLEAN;} - } else if (jj_2_757(2)) { - if (jj_2_731(2)) { + } else if (jj_2_759(2)) { + if (jj_2_733(2)) { jj_consume_token(SQL_INTEGER); - } else if (jj_2_732(2)) { + } else if (jj_2_734(2)) { jj_consume_token(INTEGER); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_INTEGER;} - } else if (jj_2_758(2)) { - if (jj_2_733(2)) { + } else if (jj_2_760(2)) { + if (jj_2_735(2)) { jj_consume_token(SQL_BINARY); - } else if (jj_2_734(2)) { + } else if (jj_2_736(2)) { jj_consume_token(BINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BINARY;} - } else if (jj_2_759(2)) { - if (jj_2_735(2)) { + } else if (jj_2_761(2)) { + if (jj_2_737(2)) { jj_consume_token(SQL_VARBINARY); - } else if (jj_2_736(2)) { + } else if (jj_2_738(2)) { jj_consume_token(VARBINARY); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_VARBINARY;} - } else if (jj_2_760(2)) { - if (jj_2_737(2)) { + } else if (jj_2_762(2)) { + if (jj_2_739(2)) { jj_consume_token(SQL_TINYINT); - } else if (jj_2_738(2)) { + } else if (jj_2_740(2)) { jj_consume_token(TINYINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_TINYINT;} - } else if (jj_2_761(2)) { - if (jj_2_739(2)) { + } else if (jj_2_763(2)) { + if (jj_2_741(2)) { jj_consume_token(SQL_SMALLINT); - } else if (jj_2_740(2)) { + } else if (jj_2_742(2)) { jj_consume_token(SMALLINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_SMALLINT;} - } else if (jj_2_762(2)) { - if (jj_2_741(2)) { + } else if (jj_2_764(2)) { + if (jj_2_743(2)) { jj_consume_token(SQL_BIGINT); - } else if (jj_2_742(2)) { + } else if (jj_2_744(2)) { jj_consume_token(BIGINT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_BIGINT;} - } else if (jj_2_763(2)) { - if (jj_2_743(2)) { + } else if (jj_2_765(2)) { + if (jj_2_745(2)) { jj_consume_token(SQL_REAL); - } else if (jj_2_744(2)) { + } else if (jj_2_746(2)) { jj_consume_token(REAL); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_REAL;} - } else if (jj_2_764(2)) { - if (jj_2_745(2)) { + } else if (jj_2_766(2)) { + if (jj_2_747(2)) { jj_consume_token(SQL_DOUBLE); - } else if (jj_2_746(2)) { + } else if (jj_2_748(2)) { jj_consume_token(DOUBLE); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_DOUBLE;} - } else if (jj_2_765(2)) { - if (jj_2_747(2)) { + } else if (jj_2_767(2)) { + if (jj_2_749(2)) { jj_consume_token(SQL_FLOAT); - } else if (jj_2_748(2)) { + } else if (jj_2_750(2)) { jj_consume_token(FLOAT); } else { jj_consume_token(-1); throw new ParseException(); } {if (true) return SqlJdbcDataTypeName.SQL_FLOAT;} - } else if (jj_2_766(2)) { + } else if (jj_2_768(2)) { jj_consume_token(SQL_INTERVAL_YEAR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR;} - } else if (jj_2_767(2)) { + } else if (jj_2_769(2)) { jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_YEAR_TO_MONTH;} - } else if (jj_2_768(2)) { + } else if (jj_2_770(2)) { jj_consume_token(SQL_INTERVAL_MONTH); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MONTH;} - } else if (jj_2_769(2)) { + } else if (jj_2_771(2)) { jj_consume_token(SQL_INTERVAL_DAY); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY;} - } else if (jj_2_770(2)) { + } else if (jj_2_772(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_HOUR;} - } else if (jj_2_771(2)) { + } else if (jj_2_773(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_MINUTE;} - } else if (jj_2_772(2)) { + } else if (jj_2_774(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_DAY_TO_SECOND;} - } else if (jj_2_773(2)) { + } else if (jj_2_775(2)) { jj_consume_token(SQL_INTERVAL_HOUR); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR;} - } else if (jj_2_774(2)) { + } else if (jj_2_776(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_MINUTE;} - } else if (jj_2_775(2)) { + } else if (jj_2_777(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_HOUR_TO_SECOND;} - } else if (jj_2_776(2)) { + } else if (jj_2_778(2)) { jj_consume_token(SQL_INTERVAL_MINUTE); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE;} - } else if (jj_2_777(2)) { + } else if (jj_2_779(2)) { jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_MINUTE_TO_SECOND;} - } else if (jj_2_778(2)) { + } else if (jj_2_780(2)) { jj_consume_token(SQL_INTERVAL_SECOND); {if (true) return SqlJdbcDataTypeName.SQL_INTERVAL_SECOND;} } else { @@ -7648,10 +7654,10 @@ final public SqlLiteral JdbcOdbcDataType() throws ParseException { */ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName) throws ParseException { final SqlTypeName collectionTypeName; - if (jj_2_779(2)) { + if (jj_2_781(2)) { jj_consume_token(MULTISET); collectionTypeName = SqlTypeName.MULTISET; - } else if (jj_2_780(2)) { + } else if (jj_2_782(2)) { jj_consume_token(ARRAY); collectionTypeName = SqlTypeName.ARRAY; } else { @@ -7667,10 +7673,10 @@ final public SqlTypeNameSpec CollectionsTypeName(SqlTypeNameSpec elementTypeName * Parse a nullable option, default is true. */ final public boolean NullableOptDefaultTrue() throws ParseException { - if (jj_2_781(2)) { + if (jj_2_783(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_782(2)) { + } else if (jj_2_784(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7684,10 +7690,10 @@ final public boolean NullableOptDefaultTrue() throws ParseException { * Parse a nullable option, default is false. */ final public boolean NullableOptDefaultFalse() throws ParseException { - if (jj_2_783(2)) { + if (jj_2_785(2)) { jj_consume_token(NULL); {if (true) return true;} - } else if (jj_2_784(2)) { + } else if (jj_2_786(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7699,7 +7705,7 @@ final public boolean NullableOptDefaultFalse() throws ParseException { /** Parses NOT NULL and returns false, or parses nothing and returns true. */ final public boolean NotNullOpt() throws ParseException { - if (jj_2_785(2)) { + if (jj_2_787(2)) { jj_consume_token(NOT); jj_consume_token(NULL); {if (true) return false;} @@ -7718,7 +7724,7 @@ final public void AddFieldNameTypes(List fieldNames, AddFieldNameType(fieldNames, fieldTypes); label_59: while (true) { - if (jj_2_786(2)) { + if (jj_2_788(2)) { ; } else { break label_59; @@ -7776,23 +7782,23 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { int precision = -1; final SqlTypeName sqlTypeName; String charSetName = null; - if (jj_2_790(2)) { - if (jj_2_787(2)) { + if (jj_2_792(2)) { + if (jj_2_789(2)) { jj_consume_token(CHARACTER); - } else if (jj_2_788(2)) { + } else if (jj_2_790(2)) { jj_consume_token(CHAR); } else { jj_consume_token(-1); throw new ParseException(); } s.add(this); - if (jj_2_789(2)) { + if (jj_2_791(2)) { jj_consume_token(VARYING); sqlTypeName = SqlTypeName.VARCHAR; } else { sqlTypeName = SqlTypeName.CHAR; } - } else if (jj_2_791(2)) { + } else if (jj_2_793(2)) { jj_consume_token(VARCHAR); s.add(this); sqlTypeName = SqlTypeName.VARCHAR; } else { @@ -7800,7 +7806,7 @@ final public SqlTypeNameSpec CharacterTypeName(Span s) throws ParseException { throw new ParseException(); } precision = PrecisionOpt(); - if (jj_2_792(2)) { + if (jj_2_794(2)) { jj_consume_token(CHARACTER); jj_consume_token(SET); charSetName = Identifier(); @@ -7818,17 +7824,17 @@ final public SqlTypeNameSpec DateTimeTypeName() throws ParseException { int precision = -1; SqlTypeName typeName; final Span s; - if (jj_2_793(2)) { + if (jj_2_795(2)) { jj_consume_token(DATE); typeName = SqlTypeName.DATE; {if (true) return new SqlBasicTypeNameSpec(typeName, getPos());} - } else if (jj_2_794(2)) { + } else if (jj_2_796(2)) { jj_consume_token(TIME); s = span(); precision = PrecisionOpt(); typeName = TimeZoneOpt(true); {if (true) return new SqlBasicTypeNameSpec(typeName, precision, s.end(this));} - } else if (jj_2_795(2)) { + } else if (jj_2_797(2)) { jj_consume_token(TIMESTAMP); s = span(); precision = PrecisionOpt(); @@ -7844,7 +7850,7 @@ final public SqlTypeNameSpec DateTimeTypeName() throws ParseException { // Parse an optional data type precision, default is -1. final public int PrecisionOpt() throws ParseException { int precision = -1; - if (jj_2_796(2)) { + if (jj_2_798(2)) { jj_consume_token(LPAREN); precision = UnsignedIntLiteral(); jj_consume_token(RPAREN); @@ -7862,14 +7868,14 @@ final public int PrecisionOpt() throws ParseException { */ final public SqlTypeName TimeZoneOpt(boolean timeType) throws ParseException { boolean local = false; - if (jj_2_798(3)) { + if (jj_2_800(3)) { jj_consume_token(WITHOUT); jj_consume_token(TIME); jj_consume_token(ZONE); {if (true) return timeType ? SqlTypeName.TIME : SqlTypeName.TIMESTAMP;} - } else if (jj_2_799(2)) { + } else if (jj_2_801(2)) { jj_consume_token(WITH); - if (jj_2_797(2)) { + if (jj_2_799(2)) { jj_consume_token(LOCAL); local = true; } else { @@ -7919,14 +7925,14 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { final SqlLiteral style; // mssql convert 'style' operand final SqlFunction f; final SqlNode format; - if (jj_2_836(2)) { - if (jj_2_800(2)) { + if (jj_2_838(2)) { + if (jj_2_802(2)) { jj_consume_token(CAST); f = SqlStdOperatorTable.CAST; - } else if (jj_2_801(2)) { + } else if (jj_2_803(2)) { jj_consume_token(SAFE_CAST); f = SqlLibraryOperators.SAFE_CAST; - } else if (jj_2_802(2)) { + } else if (jj_2_804(2)) { jj_consume_token(TRY_CAST); f = SqlLibraryOperators.TRY_CAST; } else { @@ -7937,10 +7943,10 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(AS); - if (jj_2_803(2)) { + if (jj_2_805(2)) { dt = DataType(); args.add(dt); - } else if (jj_2_804(2)) { + } else if (jj_2_806(2)) { jj_consume_token(INTERVAL); e = IntervalQualifier(); args.add(e); @@ -7948,7 +7954,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_805(2)) { + if (jj_2_807(2)) { jj_consume_token(FORMAT); format = StringLiteral(); args.add(format); @@ -7957,7 +7963,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return f.createCall(s.end(this), args);} - } else if (jj_2_837(2)) { + } else if (jj_2_839(2)) { jj_consume_token(EXTRACT); s = span(); jj_consume_token(LPAREN); @@ -7967,7 +7973,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.EXTRACT.createCall(s.end(this), args);} - } else if (jj_2_838(2)) { + } else if (jj_2_840(2)) { jj_consume_token(POSITION); s = span(); jj_consume_token(LPAREN); @@ -7978,7 +7984,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { args.add(e); jj_consume_token(IN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_806(2)) { + if (jj_2_808(2)) { jj_consume_token(FROM); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -7986,30 +7992,30 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.POSITION.createCall(s.end(this), args);} - } else if (jj_2_839(2)) { + } else if (jj_2_841(2)) { jj_consume_token(CONVERT); s = span(); jj_consume_token(LPAREN); - if (jj_2_816(2)) { + if (jj_2_818(2)) { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_809(2)) { + if (jj_2_811(2)) { jj_consume_token(USING); name = SimpleIdentifier(); args.add(name); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.TRANSLATE.createCall(s.end(this), args);} - } else if (jj_2_810(2)) { + } else if (jj_2_812(2)) { jj_consume_token(COMMA); e = SimpleIdentifier(); args.add(e); - if (jj_2_807(2)) { + if (jj_2_809(2)) { jj_consume_token(COMMA); e = SimpleIdentifier(); args.add(e); jj_consume_token(RPAREN); SqlOperator op = SqlStdOperatorTable.getConvertFuncByConformance(this.conformance); {if (true) return op.createCall(s.end(this), args);} - } else if (jj_2_808(2)) { + } else if (jj_2_810(2)) { jj_consume_token(RPAREN); {if (true) return SqlLibraryOperators.CONVERT_ORACLE.createCall(s.end(this), args);} } else { @@ -8020,11 +8026,11 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_817(2)) { - if (jj_2_811(2)) { + } else if (jj_2_819(2)) { + if (jj_2_813(2)) { dt = DataType(); args.add(dt); - } else if (jj_2_812(2)) { + } else if (jj_2_814(2)) { jj_consume_token(INTERVAL); e = IntervalQualifier(); args.add(e); @@ -8034,12 +8040,12 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_815(2)) { + if (jj_2_817(2)) { jj_consume_token(COMMA); - if (jj_2_813(2)) { + if (jj_2_815(2)) { style = UnsignedNumericLiteral(); args.add(style); - } else if (jj_2_814(2)) { + } else if (jj_2_816(2)) { jj_consume_token(NULL); args.add(SqlLiteral.createNull(getPos())); } else { @@ -8055,22 +8061,22 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_840(2)) { + } else if (jj_2_842(2)) { jj_consume_token(TRANSLATE); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_819(2)) { + if (jj_2_821(2)) { jj_consume_token(USING); name = SimpleIdentifier(); args.add(name); jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.TRANSLATE.createCall(s.end(this), args);} - } else if (jj_2_820(2)) { + } else if (jj_2_822(2)) { label_60: while (true) { - if (jj_2_818(2)) { + if (jj_2_820(2)) { ; } else { break label_60; @@ -8085,7 +8091,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_841(2)) { + } else if (jj_2_843(2)) { jj_consume_token(OVERLAY); s = span(); jj_consume_token(LPAREN); @@ -8094,7 +8100,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(FROM); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_821(2)) { + if (jj_2_823(2)) { jj_consume_token(FOR); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { @@ -8102,15 +8108,15 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { } jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.OVERLAY.createCall(s.end(this), args);} - } else if (jj_2_842(2)) { + } else if (jj_2_844(2)) { jj_consume_token(FLOOR); s = span(); e = FloorCeilOptions(s, true); {if (true) return e;} - } else if (jj_2_843(2)) { - if (jj_2_822(2)) { + } else if (jj_2_845(2)) { + if (jj_2_824(2)) { jj_consume_token(CEIL); - } else if (jj_2_823(2)) { + } else if (jj_2_825(2)) { jj_consume_token(CEILING); } else { jj_consume_token(-1); @@ -8119,24 +8125,24 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { s = span(); e = FloorCeilOptions(s, false); {if (true) return e;} - } else if (jj_2_844(2)) { + } else if (jj_2_846(2)) { jj_consume_token(SUBSTRING); s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_824(2)) { + if (jj_2_826(2)) { jj_consume_token(FROM); - } else if (jj_2_825(2)) { + } else if (jj_2_827(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); throw new ParseException(); } AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_828(2)) { - if (jj_2_826(2)) { + if (jj_2_830(2)) { + if (jj_2_828(2)) { jj_consume_token(FOR); - } else if (jj_2_827(2)) { + } else if (jj_2_829(2)) { jj_consume_token(COMMA); } else { jj_consume_token(-1); @@ -8149,23 +8155,23 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(RPAREN); {if (true) return SqlStdOperatorTable.SUBSTRING.createCall( s.end(this), args);} - } else if (jj_2_845(2)) { + } else if (jj_2_847(2)) { jj_consume_token(TRIM); SqlLiteral flag = null; SqlNode trimChars = null; SqlParserPos fromPos = SqlParserPos.ZERO; s = span(); jj_consume_token(LPAREN); - if (jj_2_834(2)) { - if (jj_2_829(2)) { + if (jj_2_836(2)) { + if (jj_2_831(2)) { jj_consume_token(BOTH); s.add(this); flag = SqlTrimFunction.Flag.BOTH.symbol(getPos()); - } else if (jj_2_830(2)) { + } else if (jj_2_832(2)) { jj_consume_token(TRAILING); s.add(this); flag = SqlTrimFunction.Flag.TRAILING.symbol(getPos()); - } else if (jj_2_831(2)) { + } else if (jj_2_833(2)) { jj_consume_token(LEADING); s.add(this); flag = SqlTrimFunction.Flag.LEADING.symbol(getPos()); @@ -8173,7 +8179,7 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_832(2)) { + if (jj_2_834(2)) { trimChars = Expression(ExprContext.ACCEPT_SUB_QUERY); } else { ; @@ -8181,9 +8187,9 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { jj_consume_token(FROM); fromPos = getPos(); e = Expression(ExprContext.ACCEPT_SUB_QUERY); - } else if (jj_2_835(2)) { + } else if (jj_2_837(2)) { e = Expression(ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_833(2)) { + if (jj_2_835(2)) { jj_consume_token(FROM); trimChars = e; fromPos = getPos(); e = Expression(ExprContext.ACCEPT_SUB_QUERY); @@ -8203,67 +8209,67 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { args.add(trimChars); args.add(e); {if (true) return SqlStdOperatorTable.TRIM.createCall(s.end(this), args);} - } else if (jj_2_846(2)) { + } else if (jj_2_848(2)) { node = ContainsSubstrFunctionCall(); {if (true) return node;} - } else if (jj_2_847(2)) { + } else if (jj_2_849(2)) { node = DateTimeConstructorCall(); {if (true) return node;} - } else if (jj_2_848(2)) { + } else if (jj_2_850(2)) { node = DateDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_849(2)) { + } else if (jj_2_851(2)) { node = DateTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_850(2)) { + } else if (jj_2_852(2)) { node = DatetimeTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_851(2)) { + } else if (jj_2_853(2)) { node = TimestampAddFunctionCall(); {if (true) return node;} - } else if (jj_2_852(2)) { + } else if (jj_2_854(2)) { node = DatetimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_853(2)) { + } else if (jj_2_855(2)) { node = TimestampDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_854(2)) { + } else if (jj_2_856(2)) { node = TimestampDiff3FunctionCall(); {if (true) return node;} - } else if (jj_2_855(2)) { + } else if (jj_2_857(2)) { node = TimestampTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_856(2)) { + } else if (jj_2_858(2)) { node = TimeDiffFunctionCall(); {if (true) return node;} - } else if (jj_2_857(2)) { + } else if (jj_2_859(2)) { node = TimeTruncFunctionCall(); {if (true) return node;} - } else if (jj_2_858(2)) { + } else if (jj_2_860(2)) { node = MatchRecognizeFunctionCall(); {if (true) return node;} - } else if (jj_2_859(2)) { + } else if (jj_2_861(2)) { node = JsonExistsFunctionCall(); {if (true) return node;} - } else if (jj_2_860(2)) { + } else if (jj_2_862(2)) { node = JsonValueFunctionCall(); {if (true) return node;} - } else if (jj_2_861(2)) { + } else if (jj_2_863(2)) { node = JsonQueryFunctionCall(); {if (true) return node;} - } else if (jj_2_862(2)) { + } else if (jj_2_864(2)) { node = JsonObjectFunctionCall(); {if (true) return node;} - } else if (jj_2_863(2)) { + } else if (jj_2_865(2)) { node = JsonObjectAggFunctionCall(); {if (true) return node;} - } else if (jj_2_864(2)) { + } else if (jj_2_866(2)) { node = JsonArrayFunctionCall(); {if (true) return node;} - } else if (jj_2_865(2)) { + } else if (jj_2_867(2)) { node = JsonArrayAggFunctionCall(); {if (true) return node;} - } else if (jj_2_866(2)) { + } else if (jj_2_868(2)) { node = GroupByWindowingCall(); {if (true) return node;} } else { @@ -8275,15 +8281,15 @@ final public SqlNode BuiltinFunctionCall() throws ParseException { final public SqlJsonEncoding JsonRepresentation() throws ParseException { jj_consume_token(JSON); - if (jj_2_870(2)) { + if (jj_2_872(2)) { jj_consume_token(ENCODING); - if (jj_2_867(2)) { + if (jj_2_869(2)) { jj_consume_token(UTF8); {if (true) return SqlJsonEncoding.UTF8;} - } else if (jj_2_868(2)) { + } else if (jj_2_870(2)) { jj_consume_token(UTF16); {if (true) return SqlJsonEncoding.UTF16;} - } else if (jj_2_869(2)) { + } else if (jj_2_871(2)) { jj_consume_token(UTF32); {if (true) return SqlJsonEncoding.UTF32;} } else { @@ -8313,7 +8319,7 @@ final public SqlDataTypeSpec JsonReturningClause() throws ParseException { final public SqlDataTypeSpec JsonOutputClause() throws ParseException { SqlDataTypeSpec dataType; dataType = JsonReturningClause(); - if (jj_2_871(2)) { + if (jj_2_873(2)) { jj_consume_token(FORMAT); JsonRepresentation(); } else { @@ -8336,7 +8342,7 @@ final public List JsonApiCommonSyntax() throws ParseException { AddExpression(args, ExprContext.ACCEPT_NON_QUERY); jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_NON_QUERY); - if (jj_2_873(2)) { + if (jj_2_875(2)) { jj_consume_token(PASSING); e = Expression(ExprContext.ACCEPT_NON_QUERY); @@ -8345,7 +8351,7 @@ final public List JsonApiCommonSyntax() throws ParseException { label_61: while (true) { - if (jj_2_872(2)) { + if (jj_2_874(2)) { ; } else { break label_61; @@ -8365,16 +8371,16 @@ final public List JsonApiCommonSyntax() throws ParseException { } final public SqlJsonExistsErrorBehavior JsonExistsErrorBehavior() throws ParseException { - if (jj_2_874(2)) { + if (jj_2_876(2)) { jj_consume_token(TRUE); {if (true) return SqlJsonExistsErrorBehavior.TRUE;} - } else if (jj_2_875(2)) { + } else if (jj_2_877(2)) { jj_consume_token(FALSE); {if (true) return SqlJsonExistsErrorBehavior.FALSE;} - } else if (jj_2_876(2)) { + } else if (jj_2_878(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlJsonExistsErrorBehavior.UNKNOWN;} - } else if (jj_2_877(2)) { + } else if (jj_2_879(2)) { jj_consume_token(ERROR); {if (true) return SqlJsonExistsErrorBehavior.ERROR;} } else { @@ -8394,7 +8400,7 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_878(2)) { + if (jj_2_880(2)) { errorBehavior = JsonExistsErrorBehavior(); args.add(errorBehavior.symbol(getPos())); jj_consume_token(ON); @@ -8409,13 +8415,13 @@ final public SqlCall JsonExistsFunctionCall() throws ParseException { final public List JsonValueEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_879(2)) { + if (jj_2_881(2)) { jj_consume_token(ERROR); list.add(SqlJsonValueEmptyOrErrorBehavior.ERROR.symbol(getPos())); - } else if (jj_2_880(2)) { + } else if (jj_2_882(2)) { jj_consume_token(NULL); list.add(SqlJsonValueEmptyOrErrorBehavior.NULL.symbol(getPos())); - } else if (jj_2_881(2)) { + } else if (jj_2_883(2)) { jj_consume_token(DEFAULT_); list.add(SqlJsonValueEmptyOrErrorBehavior.DEFAULT.symbol(getPos())); AddExpression(list, ExprContext.ACCEPT_NON_QUERY); @@ -8424,10 +8430,10 @@ final public List JsonValueEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_882(2)) { + if (jj_2_884(2)) { jj_consume_token(EMPTY); list.add(SqlJsonEmptyOrError.EMPTY.symbol(getPos())); - } else if (jj_2_883(2)) { + } else if (jj_2_885(2)) { jj_consume_token(ERROR); list.add(SqlJsonEmptyOrError.ERROR.symbol(getPos())); } else { @@ -8449,7 +8455,7 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { jj_consume_token(LPAREN); commonSyntax = JsonApiCommonSyntax(); args.addAll(commonSyntax); - if (jj_2_884(2)) { + if (jj_2_886(2)) { e = JsonReturningClause(); args.add(SqlJsonValueReturning.RETURNING.symbol(getPos())); args.add(e); @@ -8458,7 +8464,7 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { } label_62: while (true) { - if (jj_2_885(2)) { + if (jj_2_887(2)) { ; } else { break label_62; @@ -8473,17 +8479,17 @@ final public SqlCall JsonValueFunctionCall() throws ParseException { final public List JsonQueryEmptyOrErrorBehavior() throws ParseException { final List list = new ArrayList(); - if (jj_2_886(2)) { + if (jj_2_888(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.ERROR, getPos())); - } else if (jj_2_887(2)) { + } else if (jj_2_889(2)) { jj_consume_token(NULL); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.NULL, getPos())); - } else if (jj_2_888(2)) { + } else if (jj_2_890(2)) { jj_consume_token(EMPTY); jj_consume_token(ARRAY); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_ARRAY, getPos())); - } else if (jj_2_889(2)) { + } else if (jj_2_891(2)) { jj_consume_token(EMPTY); jj_consume_token(OBJECT); list.add(SqlLiteral.createSymbol(SqlJsonQueryEmptyOrErrorBehavior.EMPTY_OBJECT, getPos())); @@ -8492,10 +8498,10 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException throw new ParseException(); } jj_consume_token(ON); - if (jj_2_890(2)) { + if (jj_2_892(2)) { jj_consume_token(EMPTY); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.EMPTY, getPos())); - } else if (jj_2_891(2)) { + } else if (jj_2_893(2)) { jj_consume_token(ERROR); list.add(SqlLiteral.createSymbol(SqlJsonEmptyOrError.ERROR, getPos())); } else { @@ -8507,31 +8513,31 @@ final public List JsonQueryEmptyOrErrorBehavior() throws ParseException } final public SqlNode JsonQueryWrapperBehavior() throws ParseException { - if (jj_2_896(2)) { + if (jj_2_898(2)) { jj_consume_token(WITHOUT); - if (jj_2_892(2)) { + if (jj_2_894(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITHOUT_ARRAY, getPos());} - } else if (jj_2_897(2)) { + } else if (jj_2_899(2)) { jj_consume_token(WITH); jj_consume_token(CONDITIONAL); - if (jj_2_893(2)) { + if (jj_2_895(2)) { jj_consume_token(ARRAY); } else { ; } {if (true) return SqlLiteral.createSymbol(SqlJsonQueryWrapperBehavior.WITH_CONDITIONAL_ARRAY, getPos());} - } else if (jj_2_898(2)) { + } else if (jj_2_900(2)) { jj_consume_token(WITH); - if (jj_2_894(2)) { + if (jj_2_896(2)) { jj_consume_token(UNCONDITIONAL); } else { ; } - if (jj_2_895(2)) { + if (jj_2_897(2)) { jj_consume_token(ARRAY); } else { ; @@ -8556,13 +8562,13 @@ final public SqlCall JsonQueryFunctionCall() throws ParseException { commonSyntax = JsonApiCommonSyntax(); args[0] = commonSyntax.get(0); args[1] = commonSyntax.get(1); - if (jj_2_899(2)) { + if (jj_2_901(2)) { e = JsonReturningClause(); args[5] = e; } else { ; } - if (jj_2_900(2)) { + if (jj_2_902(2)) { e = JsonQueryWrapperBehavior(); jj_consume_token(WRAPPER); args[2] = e; @@ -8571,7 +8577,7 @@ final public SqlCall JsonQueryFunctionCall() throws ParseException { } label_63: while (true) { - if (jj_2_901(2)) { + if (jj_2_903(2)) { ; } else { break label_63; @@ -8604,7 +8610,7 @@ final public List JsonNameAndValue() throws ParseException { final List list = new ArrayList(); final SqlNode e; boolean kvMode = false; - if (jj_2_902(2)) { + if (jj_2_904(2)) { jj_consume_token(KEY); kvMode = true; } else { @@ -8612,14 +8618,14 @@ final public List JsonNameAndValue() throws ParseException { } e = JsonName(); list.add(e); - if (jj_2_903(2)) { + if (jj_2_905(2)) { jj_consume_token(VALUE); - } else if (jj_2_904(2)) { + } else if (jj_2_906(2)) { jj_consume_token(COMMA); if (kvMode) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalComma());} } - } else if (jj_2_905(2)) { + } else if (jj_2_907(2)) { jj_consume_token(COLON); if (kvMode) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.illegalColon());} @@ -8634,12 +8640,12 @@ final public List JsonNameAndValue() throws ParseException { } final public SqlNode JsonConstructorNullClause() throws ParseException { - if (jj_2_906(2)) { + if (jj_2_908(2)) { jj_consume_token(NULL); jj_consume_token(ON); jj_consume_token(NULL); {if (true) return SqlLiteral.createSymbol(SqlJsonConstructorNullClause.NULL_ON_NULL, getPos());} - } else if (jj_2_907(2)) { + } else if (jj_2_909(2)) { jj_consume_token(ABSENT); jj_consume_token(ON); jj_consume_token(NULL); @@ -8660,12 +8666,12 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { jj_consume_token(JSON_OBJECT); span = span(); jj_consume_token(LPAREN); - if (jj_2_909(2)) { + if (jj_2_911(2)) { list = JsonNameAndValue(); nvArgs.addAll(list); label_64: while (true) { - if (jj_2_908(2)) { + if (jj_2_910(2)) { ; } else { break label_64; @@ -8677,7 +8683,7 @@ final public SqlCall JsonObjectFunctionCall() throws ParseException { } else { ; } - if (jj_2_910(2)) { + if (jj_2_912(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8704,7 +8710,7 @@ final public SqlCall JsonObjectAggFunctionCall() throws ParseException { list = JsonNameAndValue(); args[0] = list.get(0); args[1] = list.get(1); - if (jj_2_911(2)) { + if (jj_2_913(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8724,11 +8730,11 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { jj_consume_token(JSON_ARRAY); span = span(); jj_consume_token(LPAREN); - if (jj_2_913(2)) { + if (jj_2_915(2)) { AddExpression(elements, ExprContext.ACCEPT_NON_QUERY); label_65: while (true) { - if (jj_2_912(2)) { + if (jj_2_914(2)) { ; } else { break label_65; @@ -8739,7 +8745,7 @@ final public SqlCall JsonArrayFunctionCall() throws ParseException { } else { ; } - if (jj_2_914(2)) { + if (jj_2_916(2)) { e = JsonConstructorNullClause(); otherArgs[0] = e; } else { @@ -8772,12 +8778,12 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { jj_consume_token(LPAREN); e = Expression(ExprContext.ACCEPT_NON_QUERY); valueExpr = e; - if (jj_2_915(2)) { + if (jj_2_917(2)) { orderList = JsonArrayAggOrderByClause(); } else { orderList = null; } - if (jj_2_916(2)) { + if (jj_2_918(2)) { e = JsonConstructorNullClause(); nullClause = (SqlJsonConstructorNullClause) ((SqlLiteral) e).getValue(); } else { @@ -8786,7 +8792,7 @@ final public SqlCall JsonArrayAggFunctionCall() throws ParseException { jj_consume_token(RPAREN); aggCall = SqlStdOperatorTable.JSON_ARRAYAGG.with(nullClause) .createCall(span.end(this), valueExpr, orderList); - if (jj_2_917(2)) { + if (jj_2_919(2)) { e = withinGroup(aggCall); if (orderList != null) { {if (true) throw SqlUtil.newContextException(span.pos().plus(e.getParserPosition()), @@ -8819,9 +8825,9 @@ final public SqlCall ContainsSubstrFunctionCall() throws ParseException { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(COMMA); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_918(2)) { + if (jj_2_920(2)) { jj_consume_token(RPAREN); - } else if (jj_2_919(2)) { + } else if (jj_2_921(2)) { jj_consume_token(COMMA); jj_consume_token(JSON_SCOPE); jj_consume_token(NAMED_ARGUMENT_ASSIGNMENT); @@ -8960,10 +8966,10 @@ final public SqlCall DateTruncFunctionCall() throws ParseException { jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); jj_consume_token(COMMA); - if (jj_2_920(2)) { + if (jj_2_922(2)) { unit = TimeUnit(); args.add(unit); - } else if (jj_2_921(2)) { + } else if (jj_2_923(2)) { AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -9061,13 +9067,13 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final Span s; final List args; final SqlOperator op; - if (jj_2_922(2)) { + if (jj_2_924(2)) { jj_consume_token(TUMBLE); op = SqlStdOperatorTable.TUMBLE_OLD; - } else if (jj_2_923(2)) { + } else if (jj_2_925(2)) { jj_consume_token(HOP); op = SqlStdOperatorTable.HOP_OLD; - } else if (jj_2_924(2)) { + } else if (jj_2_926(2)) { jj_consume_token(SESSION); op = SqlStdOperatorTable.SESSION_OLD; } else { @@ -9083,23 +9089,23 @@ final public SqlCall GroupByWindowingCall() throws ParseException { final public SqlCall MatchRecognizeFunctionCall() throws ParseException { final SqlCall func; final Span s; - if (jj_2_925(2)) { + if (jj_2_927(2)) { jj_consume_token(CLASSIFIER); s = span(); jj_consume_token(LPAREN); jj_consume_token(RPAREN); func = SqlStdOperatorTable.CLASSIFIER.createCall(s.end(this)); - } else if (jj_2_926(2)) { + } else if (jj_2_928(2)) { jj_consume_token(MATCH_NUMBER); s = span(); jj_consume_token(LPAREN); jj_consume_token(RPAREN); func = SqlStdOperatorTable.MATCH_NUMBER.createCall(s.end(this)); - } else if (jj_2_927(3)) { + } else if (jj_2_929(3)) { func = MatchRecognizeNavigationLogical(); - } else if (jj_2_928(2)) { + } else if (jj_2_930(2)) { func = MatchRecognizeNavigationPhysical(); - } else if (jj_2_929(2)) { + } else if (jj_2_931(2)) { func = MatchRecognizeCallWithModifier(); } else { jj_consume_token(-1); @@ -9113,10 +9119,10 @@ final public SqlCall MatchRecognizeCallWithModifier() throws ParseException { final Span s; final SqlOperator runningOp; final SqlNode func; - if (jj_2_930(2)) { + if (jj_2_932(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; - } else if (jj_2_931(2)) { + } else if (jj_2_933(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; } else { @@ -9136,19 +9142,19 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { final SqlOperator runningOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_932(2)) { + if (jj_2_934(2)) { jj_consume_token(RUNNING); runningOp = SqlStdOperatorTable.RUNNING; s.add(this); - } else if (jj_2_933(2)) { + } else if (jj_2_935(2)) { jj_consume_token(FINAL); runningOp = SqlStdOperatorTable.FINAL; s.add(this); } else { runningOp = null; } - if (jj_2_934(2)) { + if (jj_2_936(2)) { jj_consume_token(FIRST); funcOp = SqlStdOperatorTable.FIRST; - } else if (jj_2_935(2)) { + } else if (jj_2_937(2)) { jj_consume_token(LAST); funcOp = SqlStdOperatorTable.LAST; } else { @@ -9158,7 +9164,7 @@ final public SqlCall MatchRecognizeNavigationLogical() throws ParseException { s.add(this); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_936(2)) { + if (jj_2_938(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -9180,10 +9186,10 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { final SqlOperator funcOp; final List args = new ArrayList(); SqlNode e; - if (jj_2_937(2)) { + if (jj_2_939(2)) { jj_consume_token(PREV); funcOp = SqlStdOperatorTable.PREV; - } else if (jj_2_938(2)) { + } else if (jj_2_940(2)) { jj_consume_token(NEXT); funcOp = SqlStdOperatorTable.NEXT; } else { @@ -9193,7 +9199,7 @@ final public SqlCall MatchRecognizeNavigationPhysical() throws ParseException { s = span(); jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_939(2)) { + if (jj_2_941(2)) { jj_consume_token(COMMA); e = NumericLiteral(); args.add(e); @@ -9235,12 +9241,12 @@ final public SqlCall withinGroup(SqlNode arg) throws ParseException { final public Pair NullTreatment() throws ParseException { final Span span; - if (jj_2_940(2)) { + if (jj_2_942(2)) { jj_consume_token(IGNORE); span = span(); jj_consume_token(NULLS); {if (true) return Pair.of(span.end(this), SqlStdOperatorTable.IGNORE_NULLS);} - } else if (jj_2_941(2)) { + } else if (jj_2_943(2)) { jj_consume_token(RESPECT); span = span(); jj_consume_token(NULLS); @@ -9280,7 +9286,7 @@ final public SqlNode NamedFunctionCall() throws ParseException { final SqlNode filter; final Span overSpan; final SqlNode over; - if (jj_2_942(2)) { + if (jj_2_944(2)) { call = StringAggFunctionCall(); } else { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { @@ -9290,7 +9296,7 @@ final public SqlNode NamedFunctionCall() throws ParseException { break; default: jj_la1[7] = jj_gen; - if (jj_2_943(2)) { + if (jj_2_945(2)) { call = NamedCall(); } else { jj_consume_token(-1); @@ -9298,23 +9304,23 @@ final public SqlNode NamedFunctionCall() throws ParseException { } } } - if (jj_2_944(2)) { + if (jj_2_946(2)) { call = nullTreatment(call); } else { ; } - if (jj_2_945(2)) { + if (jj_2_947(2)) { // decide between WITHIN DISTINCT and WITHIN GROUP call = withinDistinct(call); } else { ; } - if (jj_2_946(2)) { + if (jj_2_948(2)) { call = withinGroup(call); } else { ; } - if (jj_2_947(2)) { + if (jj_2_949(2)) { jj_consume_token(FILTER); filterSpan = span(); jj_consume_token(LPAREN); @@ -9326,12 +9332,12 @@ final public SqlNode NamedFunctionCall() throws ParseException { } else { ; } - if (jj_2_950(2)) { + if (jj_2_952(2)) { jj_consume_token(OVER); overSpan = span(); - if (jj_2_948(2)) { + if (jj_2_950(2)) { over = SimpleIdentifier(); - } else if (jj_2_949(2)) { + } else if (jj_2_951(2)) { over = WindowSpecification(); } else { jj_consume_token(-1); @@ -9351,7 +9357,7 @@ final public SqlCall NamedCall() throws ParseException { final Span s; final List args; SqlLiteral quantifier = null; - if (jj_2_951(2)) { + if (jj_2_953(2)) { jj_consume_token(SPECIFIC); funcType = SqlFunctionCategory.USER_DEFINED_SPECIFIC_FUNCTION; } else { @@ -9359,16 +9365,16 @@ final public SqlCall NamedCall() throws ParseException { } qualifiedName = FunctionName(); s = span(); - if (jj_2_952(2)) { + if (jj_2_954(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); args = ImmutableList.of(SqlIdentifier.star(getPos())); jj_consume_token(RPAREN); - } else if (jj_2_953(2)) { + } else if (jj_2_955(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = ImmutableList.of(); - } else if (jj_2_954(2)) { + } else if (jj_2_956(2)) { args = FunctionParameterList(ExprContext.ACCEPT_SUB_QUERY); quantifier = (SqlLiteral) args.get(0); args.remove(0); @@ -9391,7 +9397,7 @@ final public SqlNode StandardFloorCeilOptions(Span s, boolean floorFlag) throws final Span s1; jj_consume_token(LPAREN); AddExpression(args, ExprContext.ACCEPT_SUB_QUERY); - if (jj_2_955(2)) { + if (jj_2_957(2)) { jj_consume_token(TO); unit = TimeUnitOrName(); args.add(unit); @@ -9401,12 +9407,12 @@ final public SqlNode StandardFloorCeilOptions(Span s, boolean floorFlag) throws jj_consume_token(RPAREN); SqlOperator op = SqlStdOperatorTable.floorCeil(floorFlag, this.conformance); function = op.createCall(s.end(this), args); - if (jj_2_958(2)) { + if (jj_2_960(2)) { jj_consume_token(OVER); s1 = span(); - if (jj_2_956(2)) { + if (jj_2_958(2)) { e = SimpleIdentifier(); - } else if (jj_2_957(2)) { + } else if (jj_2_959(2)) { e = WindowSpecification(); } else { jj_consume_token(-1); @@ -9434,9 +9440,9 @@ final public String NonReservedJdbcFunctionName() throws ParseException { */ final public SqlIdentifier FunctionName() throws ParseException { SqlIdentifier qualifiedName; - if (jj_2_959(2)) { + if (jj_2_961(2)) { qualifiedName = CompoundIdentifier(); - } else if (jj_2_960(2)) { + } else if (jj_2_962(2)) { qualifiedName = ReservedFunctionName(); } else { jj_consume_token(-1); @@ -9450,135 +9456,135 @@ final public SqlIdentifier FunctionName() throws ParseException { * Parses a reserved word which is used as the name of a function. */ final public SqlIdentifier ReservedFunctionName() throws ParseException { - if (jj_2_961(2)) { + if (jj_2_963(2)) { jj_consume_token(ABS); - } else if (jj_2_962(2)) { + } else if (jj_2_964(2)) { jj_consume_token(AVG); - } else if (jj_2_963(2)) { + } else if (jj_2_965(2)) { jj_consume_token(CARDINALITY); - } else if (jj_2_964(2)) { + } else if (jj_2_966(2)) { jj_consume_token(CEILING); - } else if (jj_2_965(2)) { + } else if (jj_2_967(2)) { jj_consume_token(CHAR); - } else if (jj_2_966(2)) { + } else if (jj_2_968(2)) { jj_consume_token(CHAR_LENGTH); - } else if (jj_2_967(2)) { + } else if (jj_2_969(2)) { jj_consume_token(CHARACTER_LENGTH); - } else if (jj_2_968(2)) { + } else if (jj_2_970(2)) { jj_consume_token(COALESCE); - } else if (jj_2_969(2)) { + } else if (jj_2_971(2)) { jj_consume_token(COLLECT); - } else if (jj_2_970(2)) { + } else if (jj_2_972(2)) { jj_consume_token(COVAR_POP); - } else if (jj_2_971(2)) { + } else if (jj_2_973(2)) { jj_consume_token(COVAR_SAMP); - } else if (jj_2_972(2)) { + } else if (jj_2_974(2)) { jj_consume_token(CUME_DIST); - } else if (jj_2_973(2)) { + } else if (jj_2_975(2)) { jj_consume_token(COUNT); - } else if (jj_2_974(2)) { + } else if (jj_2_976(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_975(2)) { + } else if (jj_2_977(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_976(2)) { + } else if (jj_2_978(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_977(2)) { + } else if (jj_2_979(2)) { jj_consume_token(DENSE_RANK); - } else if (jj_2_978(2)) { + } else if (jj_2_980(2)) { jj_consume_token(ELEMENT); - } else if (jj_2_979(2)) { + } else if (jj_2_981(2)) { jj_consume_token(EVERY); - } else if (jj_2_980(2)) { + } else if (jj_2_982(2)) { jj_consume_token(EXP); - } else if (jj_2_981(2)) { + } else if (jj_2_983(2)) { jj_consume_token(FIRST_VALUE); - } else if (jj_2_982(2)) { + } else if (jj_2_984(2)) { jj_consume_token(FLOOR); - } else if (jj_2_983(2)) { + } else if (jj_2_985(2)) { jj_consume_token(FUSION); - } else if (jj_2_984(2)) { + } else if (jj_2_986(2)) { jj_consume_token(INTERSECTION); - } else if (jj_2_985(2)) { + } else if (jj_2_987(2)) { jj_consume_token(GROUPING); - } else if (jj_2_986(2)) { + } else if (jj_2_988(2)) { jj_consume_token(HOUR); - } else if (jj_2_987(2)) { + } else if (jj_2_989(2)) { jj_consume_token(LAG); - } else if (jj_2_988(2)) { + } else if (jj_2_990(2)) { jj_consume_token(LEAD); - } else if (jj_2_989(2)) { + } else if (jj_2_991(2)) { jj_consume_token(LEFT); - } else if (jj_2_990(2)) { + } else if (jj_2_992(2)) { jj_consume_token(LAST_VALUE); - } else if (jj_2_991(2)) { + } else if (jj_2_993(2)) { jj_consume_token(LN); - } else if (jj_2_992(2)) { + } else if (jj_2_994(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_993(2)) { + } else if (jj_2_995(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_994(2)) { + } else if (jj_2_996(2)) { jj_consume_token(LOWER); - } else if (jj_2_995(2)) { + } else if (jj_2_997(2)) { jj_consume_token(MAX); - } else if (jj_2_996(2)) { + } else if (jj_2_998(2)) { jj_consume_token(MIN); - } else if (jj_2_997(2)) { + } else if (jj_2_999(2)) { jj_consume_token(MINUTE); - } else if (jj_2_998(2)) { + } else if (jj_2_1000(2)) { jj_consume_token(MOD); - } else if (jj_2_999(2)) { + } else if (jj_2_1001(2)) { jj_consume_token(MONTH); - } else if (jj_2_1000(2)) { + } else if (jj_2_1002(2)) { jj_consume_token(NTH_VALUE); - } else if (jj_2_1001(2)) { + } else if (jj_2_1003(2)) { jj_consume_token(NTILE); - } else if (jj_2_1002(2)) { + } else if (jj_2_1004(2)) { jj_consume_token(NULLIF); - } else if (jj_2_1003(2)) { + } else if (jj_2_1005(2)) { jj_consume_token(OCTET_LENGTH); - } else if (jj_2_1004(2)) { + } else if (jj_2_1006(2)) { jj_consume_token(PERCENTILE_CONT); - } else if (jj_2_1005(2)) { + } else if (jj_2_1007(2)) { jj_consume_token(PERCENTILE_DISC); - } else if (jj_2_1006(2)) { + } else if (jj_2_1008(2)) { jj_consume_token(PERCENT_RANK); - } else if (jj_2_1007(2)) { + } else if (jj_2_1009(2)) { jj_consume_token(POWER); - } else if (jj_2_1008(2)) { + } else if (jj_2_1010(2)) { jj_consume_token(RANK); - } else if (jj_2_1009(2)) { + } else if (jj_2_1011(2)) { jj_consume_token(REGR_COUNT); - } else if (jj_2_1010(2)) { + } else if (jj_2_1012(2)) { jj_consume_token(REGR_SXX); - } else if (jj_2_1011(2)) { + } else if (jj_2_1013(2)) { jj_consume_token(REGR_SYY); - } else if (jj_2_1012(2)) { + } else if (jj_2_1014(2)) { jj_consume_token(RIGHT); - } else if (jj_2_1013(2)) { + } else if (jj_2_1015(2)) { jj_consume_token(ROW_NUMBER); - } else if (jj_2_1014(2)) { + } else if (jj_2_1016(2)) { jj_consume_token(SECOND); - } else if (jj_2_1015(2)) { + } else if (jj_2_1017(2)) { jj_consume_token(SOME); - } else if (jj_2_1016(2)) { + } else if (jj_2_1018(2)) { jj_consume_token(SQRT); - } else if (jj_2_1017(2)) { + } else if (jj_2_1019(2)) { jj_consume_token(STDDEV_POP); - } else if (jj_2_1018(2)) { + } else if (jj_2_1020(2)) { jj_consume_token(STDDEV_SAMP); - } else if (jj_2_1019(2)) { + } else if (jj_2_1021(2)) { jj_consume_token(SUM); - } else if (jj_2_1020(2)) { + } else if (jj_2_1022(2)) { jj_consume_token(UPPER); - } else if (jj_2_1021(2)) { + } else if (jj_2_1023(2)) { jj_consume_token(TRUNCATE); - } else if (jj_2_1022(2)) { + } else if (jj_2_1024(2)) { jj_consume_token(USER); - } else if (jj_2_1023(2)) { + } else if (jj_2_1025(2)) { jj_consume_token(VAR_POP); - } else if (jj_2_1024(2)) { + } else if (jj_2_1026(2)) { jj_consume_token(VAR_SAMP); - } else if (jj_2_1025(2)) { + } else if (jj_2_1027(2)) { jj_consume_token(YEAR); } else { jj_consume_token(-1); @@ -9589,33 +9595,33 @@ final public SqlIdentifier ReservedFunctionName() throws ParseException { } final public SqlIdentifier ContextVariable() throws ParseException { - if (jj_2_1026(2)) { + if (jj_2_1028(2)) { jj_consume_token(CURRENT_CATALOG); - } else if (jj_2_1027(2)) { + } else if (jj_2_1029(2)) { jj_consume_token(CURRENT_DATE); - } else if (jj_2_1028(2)) { + } else if (jj_2_1030(2)) { jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); - } else if (jj_2_1029(2)) { + } else if (jj_2_1031(2)) { jj_consume_token(CURRENT_PATH); - } else if (jj_2_1030(2)) { + } else if (jj_2_1032(2)) { jj_consume_token(CURRENT_ROLE); - } else if (jj_2_1031(2)) { + } else if (jj_2_1033(2)) { jj_consume_token(CURRENT_SCHEMA); - } else if (jj_2_1032(2)) { + } else if (jj_2_1034(2)) { jj_consume_token(CURRENT_TIME); - } else if (jj_2_1033(2)) { + } else if (jj_2_1035(2)) { jj_consume_token(CURRENT_TIMESTAMP); - } else if (jj_2_1034(2)) { + } else if (jj_2_1036(2)) { jj_consume_token(CURRENT_USER); - } else if (jj_2_1035(2)) { + } else if (jj_2_1037(2)) { jj_consume_token(LOCALTIME); - } else if (jj_2_1036(2)) { + } else if (jj_2_1038(2)) { jj_consume_token(LOCALTIMESTAMP); - } else if (jj_2_1037(2)) { + } else if (jj_2_1039(2)) { jj_consume_token(SESSION_USER); - } else if (jj_2_1038(2)) { + } else if (jj_2_1040(2)) { jj_consume_token(SYSTEM_USER); - } else if (jj_2_1039(2)) { + } else if (jj_2_1041(2)) { jj_consume_token(USER); } else { jj_consume_token(-1); @@ -9686,11 +9692,11 @@ final public SqlNode JdbcFunctionCall() throws ParseException { break; default: jj_la1[9] = jj_gen; - if (jj_2_1050(3)) { + if (jj_2_1052(3)) { call = TimestampDiffFunctionCall(); name = call.getOperator().getName(); args = new SqlNodeList(call.getOperandList(), getPos()); - } else if (jj_2_1051(2)) { + } else if (jj_2_1053(2)) { jj_consume_token(CONVERT); name = unquotedIdentifier(); jj_consume_token(LPAREN); @@ -9701,19 +9707,19 @@ final public SqlNode JdbcFunctionCall() throws ParseException { tl = JdbcOdbcDataType(); args.add(tl); jj_consume_token(RPAREN); - } else if (jj_2_1052(2)) { + } else if (jj_2_1054(2)) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case INSERT: case LEFT: case RIGHT: case TRUNCATE: - if (jj_2_1040(2)) { + if (jj_2_1042(2)) { jj_consume_token(INSERT); - } else if (jj_2_1041(2)) { + } else if (jj_2_1043(2)) { jj_consume_token(LEFT); - } else if (jj_2_1042(2)) { + } else if (jj_2_1044(2)) { jj_consume_token(RIGHT); - } else if (jj_2_1043(2)) { + } else if (jj_2_1045(2)) { jj_consume_token(TRUNCATE); } else { jj_consume_token(-1); @@ -9723,32 +9729,32 @@ final public SqlNode JdbcFunctionCall() throws ParseException { break; default: jj_la1[8] = jj_gen; - if (jj_2_1044(2)) { + if (jj_2_1046(2)) { // For cases like {fn power(1,2)} and {fn lower('a')} id = ReservedFunctionName(); name = id.getSimple(); - } else if (jj_2_1045(2)) { + } else if (jj_2_1047(2)) { // For cases like {fn substring('foo', 1,2)} name = NonReservedJdbcFunctionName(); - } else if (jj_2_1046(2)) { + } else if (jj_2_1048(2)) { name = Identifier(); } else { jj_consume_token(-1); throw new ParseException(); } } - if (jj_2_1047(2)) { + if (jj_2_1049(2)) { jj_consume_token(LPAREN); jj_consume_token(STAR); s1 = span(); jj_consume_token(RPAREN); args = new SqlNodeList(s1.pos()); args.add(SqlIdentifier.star(s1.pos())); - } else if (jj_2_1048(2)) { + } else if (jj_2_1050(2)) { jj_consume_token(LPAREN); jj_consume_token(RPAREN); args = SqlNodeList.EMPTY; - } else if (jj_2_1049(2)) { + } else if (jj_2_1051(2)) { args = ParenthesizedQueryOrCommaList(ExprContext.ACCEPT_SUB_QUERY); } else { jj_consume_token(-1); @@ -9769,32 +9775,32 @@ final public SqlNode JdbcFunctionCall() throws ParseException { * Parses a binary query operator like UNION. */ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { - if (jj_2_1061(2)) { + if (jj_2_1063(2)) { jj_consume_token(UNION); - if (jj_2_1053(2)) { + if (jj_2_1055(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.UNION_ALL;} - } else if (jj_2_1054(2)) { + } else if (jj_2_1056(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.UNION;} } else { {if (true) return SqlStdOperatorTable.UNION;} } - } else if (jj_2_1062(2)) { + } else if (jj_2_1064(2)) { jj_consume_token(INTERSECT); - if (jj_2_1055(2)) { + if (jj_2_1057(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.INTERSECT_ALL;} - } else if (jj_2_1056(2)) { + } else if (jj_2_1058(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.INTERSECT;} } else { {if (true) return SqlStdOperatorTable.INTERSECT;} } - } else if (jj_2_1063(2)) { - if (jj_2_1057(2)) { + } else if (jj_2_1065(2)) { + if (jj_2_1059(2)) { jj_consume_token(EXCEPT); - } else if (jj_2_1058(2)) { + } else if (jj_2_1060(2)) { jj_consume_token(SET_MINUS); if (!this.conformance.isMinusAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.minusNotAllowed());} @@ -9803,10 +9809,10 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - if (jj_2_1059(2)) { + if (jj_2_1061(2)) { jj_consume_token(ALL); {if (true) return SqlStdOperatorTable.EXCEPT_ALL;} - } else if (jj_2_1060(2)) { + } else if (jj_2_1062(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.EXCEPT;} } else { @@ -9824,12 +9830,12 @@ final public SqlBinaryOperator BinaryQueryOperator() throws ParseException { */ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { jj_consume_token(MULTISET); - if (jj_2_1073(2)) { + if (jj_2_1075(2)) { jj_consume_token(UNION); - if (jj_2_1066(2)) { - if (jj_2_1064(2)) { + if (jj_2_1068(2)) { + if (jj_2_1066(2)) { jj_consume_token(ALL); - } else if (jj_2_1065(2)) { + } else if (jj_2_1067(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_UNION_DISTINCT;} } else { @@ -9840,12 +9846,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_UNION;} - } else if (jj_2_1074(2)) { + } else if (jj_2_1076(2)) { jj_consume_token(INTERSECT); - if (jj_2_1069(2)) { - if (jj_2_1067(2)) { + if (jj_2_1071(2)) { + if (jj_2_1069(2)) { jj_consume_token(ALL); - } else if (jj_2_1068(2)) { + } else if (jj_2_1070(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT_DISTINCT;} } else { @@ -9856,12 +9862,12 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { ; } {if (true) return SqlStdOperatorTable.MULTISET_INTERSECT;} - } else if (jj_2_1075(2)) { + } else if (jj_2_1077(2)) { jj_consume_token(EXCEPT); - if (jj_2_1072(2)) { - if (jj_2_1070(2)) { + if (jj_2_1074(2)) { + if (jj_2_1072(2)) { jj_consume_token(ALL); - } else if (jj_2_1071(2)) { + } else if (jj_2_1073(2)) { jj_consume_token(DISTINCT); {if (true) return SqlStdOperatorTable.MULTISET_EXCEPT_DISTINCT;} } else { @@ -9884,105 +9890,105 @@ final public SqlBinaryOperator BinaryMultisetOperator() throws ParseException { */ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { SqlBinaryOperator op; - if (jj_2_1076(2)) { + if (jj_2_1078(2)) { jj_consume_token(EQ); {if (true) return SqlStdOperatorTable.EQUALS;} - } else if (jj_2_1077(2)) { + } else if (jj_2_1079(2)) { jj_consume_token(GT); {if (true) return SqlStdOperatorTable.GREATER_THAN;} - } else if (jj_2_1078(2)) { + } else if (jj_2_1080(2)) { jj_consume_token(LT); {if (true) return SqlStdOperatorTable.LESS_THAN;} - } else if (jj_2_1079(2)) { + } else if (jj_2_1081(2)) { jj_consume_token(LE); {if (true) return SqlStdOperatorTable.LESS_THAN_OR_EQUAL;} - } else if (jj_2_1080(2)) { + } else if (jj_2_1082(2)) { jj_consume_token(GE); {if (true) return SqlStdOperatorTable.GREATER_THAN_OR_EQUAL;} - } else if (jj_2_1081(2)) { + } else if (jj_2_1083(2)) { jj_consume_token(NE); {if (true) return SqlStdOperatorTable.NOT_EQUALS;} - } else if (jj_2_1082(2)) { + } else if (jj_2_1084(2)) { jj_consume_token(NE2); if (!this.conformance.isBangEqualAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.bangEqualNotAllowed());} } {if (true) return SqlStdOperatorTable.NOT_EQUALS;} - } else if (jj_2_1083(2)) { + } else if (jj_2_1085(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.PLUS;} - } else if (jj_2_1084(2)) { + } else if (jj_2_1086(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.MINUS;} - } else if (jj_2_1085(2)) { + } else if (jj_2_1087(2)) { jj_consume_token(STAR); {if (true) return SqlStdOperatorTable.MULTIPLY;} - } else if (jj_2_1086(2)) { + } else if (jj_2_1088(2)) { jj_consume_token(SLASH); {if (true) return SqlStdOperatorTable.DIVIDE;} - } else if (jj_2_1087(2)) { + } else if (jj_2_1089(2)) { jj_consume_token(PERCENT_REMAINDER); if (!this.conformance.isPercentRemainderAllowed()) { {if (true) throw SqlUtil.newContextException(getPos(), RESOURCE.percentRemainderNotAllowed());} } {if (true) return SqlStdOperatorTable.PERCENT_REMAINDER;} - } else if (jj_2_1088(2)) { + } else if (jj_2_1090(2)) { jj_consume_token(CONCAT); {if (true) return SqlStdOperatorTable.CONCAT;} - } else if (jj_2_1089(2)) { + } else if (jj_2_1091(2)) { jj_consume_token(AND); {if (true) return SqlStdOperatorTable.AND;} - } else if (jj_2_1090(2)) { + } else if (jj_2_1092(2)) { jj_consume_token(OR); {if (true) return SqlStdOperatorTable.OR;} - } else if (jj_2_1091(2)) { + } else if (jj_2_1093(2)) { jj_consume_token(IS); jj_consume_token(DISTINCT); jj_consume_token(FROM); {if (true) return SqlStdOperatorTable.IS_DISTINCT_FROM;} - } else if (jj_2_1092(2)) { + } else if (jj_2_1094(2)) { jj_consume_token(IS); jj_consume_token(NOT); jj_consume_token(DISTINCT); jj_consume_token(FROM); {if (true) return SqlStdOperatorTable.IS_NOT_DISTINCT_FROM;} - } else if (jj_2_1093(2)) { + } else if (jj_2_1095(2)) { jj_consume_token(MEMBER); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.MEMBER_OF;} - } else if (jj_2_1094(2)) { + } else if (jj_2_1096(2)) { jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.SUBMULTISET_OF;} - } else if (jj_2_1095(2)) { + } else if (jj_2_1097(2)) { jj_consume_token(NOT); jj_consume_token(SUBMULTISET); jj_consume_token(OF); {if (true) return SqlStdOperatorTable.NOT_SUBMULTISET_OF;} - } else if (jj_2_1096(2)) { + } else if (jj_2_1098(2)) { jj_consume_token(CONTAINS); {if (true) return SqlStdOperatorTable.CONTAINS;} - } else if (jj_2_1097(2)) { + } else if (jj_2_1099(2)) { jj_consume_token(OVERLAPS); {if (true) return SqlStdOperatorTable.OVERLAPS;} - } else if (jj_2_1098(2)) { + } else if (jj_2_1100(2)) { jj_consume_token(EQUALS); {if (true) return SqlStdOperatorTable.PERIOD_EQUALS;} - } else if (jj_2_1099(2)) { + } else if (jj_2_1101(2)) { jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.PRECEDES;} - } else if (jj_2_1100(2)) { + } else if (jj_2_1102(2)) { jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.SUCCEEDS;} - } else if (jj_2_1101(2)) { + } else if (jj_2_1103(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(PRECEDES); {if (true) return SqlStdOperatorTable.IMMEDIATELY_PRECEDES;} - } else if (jj_2_1102(2)) { + } else if (jj_2_1104(2)) { jj_consume_token(IMMEDIATELY); jj_consume_token(SUCCEEDS); {if (true) return SqlStdOperatorTable.IMMEDIATELY_SUCCEEDS;} - } else if (jj_2_1103(2)) { + } else if (jj_2_1105(2)) { op = BinaryMultisetOperator(); {if (true) return op;} } else { @@ -9996,19 +10002,19 @@ final public SqlBinaryOperator BinaryRowOperator() throws ParseException { * Parses a prefix row operator like NOT. */ final public SqlPrefixOperator PrefixRowOperator() throws ParseException { - if (jj_2_1104(2)) { + if (jj_2_1106(2)) { jj_consume_token(PLUS); {if (true) return SqlStdOperatorTable.UNARY_PLUS;} - } else if (jj_2_1105(2)) { + } else if (jj_2_1107(2)) { jj_consume_token(MINUS); {if (true) return SqlStdOperatorTable.UNARY_MINUS;} - } else if (jj_2_1106(2)) { + } else if (jj_2_1108(2)) { jj_consume_token(NOT); {if (true) return SqlStdOperatorTable.NOT;} - } else if (jj_2_1107(2)) { + } else if (jj_2_1109(2)) { jj_consume_token(EXISTS); {if (true) return SqlStdOperatorTable.EXISTS;} - } else if (jj_2_1108(2)) { + } else if (jj_2_1110(2)) { jj_consume_token(UNIQUE); {if (true) return SqlStdOperatorTable.UNIQUE;} } else { @@ -10022,89 +10028,89 @@ final public SqlPrefixOperator PrefixRowOperator() throws ParseException { * Parses a postfix row operator like IS NOT NULL. */ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { - if (jj_2_1133(2)) { + if (jj_2_1135(2)) { jj_consume_token(IS); - if (jj_2_1130(2)) { + if (jj_2_1132(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_A_SET;} - } else if (jj_2_1131(2)) { + } else if (jj_2_1133(2)) { jj_consume_token(NOT); - if (jj_2_1109(2)) { + if (jj_2_1111(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NOT_NULL;} - } else if (jj_2_1110(2)) { + } else if (jj_2_1112(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_NOT_TRUE;} - } else if (jj_2_1111(2)) { + } else if (jj_2_1113(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_NOT_FALSE;} - } else if (jj_2_1112(2)) { + } else if (jj_2_1114(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_NOT_UNKNOWN;} - } else if (jj_2_1113(2)) { + } else if (jj_2_1115(2)) { jj_consume_token(A); jj_consume_token(SET); {if (true) return SqlStdOperatorTable.IS_NOT_A_SET;} - } else if (jj_2_1114(2)) { + } else if (jj_2_1116(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_NOT_EMPTY;} - } else if (jj_2_1115(2)) { + } else if (jj_2_1117(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_VALUE;} - } else if (jj_2_1116(2)) { + } else if (jj_2_1118(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_OBJECT;} - } else if (jj_2_1117(2)) { + } else if (jj_2_1119(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_ARRAY;} - } else if (jj_2_1118(2)) { + } else if (jj_2_1120(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_SCALAR;} - } else if (jj_2_1119(2)) { + } else if (jj_2_1121(2)) { jj_consume_token(JSON); {if (true) return SqlStdOperatorTable.IS_NOT_JSON_VALUE;} } else { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_1132(2)) { - if (jj_2_1120(2)) { + } else if (jj_2_1134(2)) { + if (jj_2_1122(2)) { jj_consume_token(NULL); {if (true) return SqlStdOperatorTable.IS_NULL;} - } else if (jj_2_1121(2)) { + } else if (jj_2_1123(2)) { jj_consume_token(TRUE); {if (true) return SqlStdOperatorTable.IS_TRUE;} - } else if (jj_2_1122(2)) { + } else if (jj_2_1124(2)) { jj_consume_token(FALSE); {if (true) return SqlStdOperatorTable.IS_FALSE;} - } else if (jj_2_1123(2)) { + } else if (jj_2_1125(2)) { jj_consume_token(UNKNOWN); {if (true) return SqlStdOperatorTable.IS_UNKNOWN;} - } else if (jj_2_1124(2)) { + } else if (jj_2_1126(2)) { jj_consume_token(EMPTY); {if (true) return SqlStdOperatorTable.IS_EMPTY;} - } else if (jj_2_1125(2)) { + } else if (jj_2_1127(2)) { jj_consume_token(JSON); jj_consume_token(VALUE); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} - } else if (jj_2_1126(2)) { + } else if (jj_2_1128(2)) { jj_consume_token(JSON); jj_consume_token(OBJECT); {if (true) return SqlStdOperatorTable.IS_JSON_OBJECT;} - } else if (jj_2_1127(2)) { + } else if (jj_2_1129(2)) { jj_consume_token(JSON); jj_consume_token(ARRAY); {if (true) return SqlStdOperatorTable.IS_JSON_ARRAY;} - } else if (jj_2_1128(2)) { + } else if (jj_2_1130(2)) { jj_consume_token(JSON); jj_consume_token(SCALAR); {if (true) return SqlStdOperatorTable.IS_JSON_SCALAR;} - } else if (jj_2_1129(2)) { + } else if (jj_2_1131(2)) { jj_consume_token(JSON); {if (true) return SqlStdOperatorTable.IS_JSON_VALUE;} } else { @@ -10115,7 +10121,7 @@ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { jj_consume_token(-1); throw new ParseException(); } - } else if (jj_2_1134(2)) { + } else if (jj_2_1136(2)) { jj_consume_token(FORMAT); JsonRepresentation(); {if (true) return SqlStdOperatorTable.JSON_VALUE_EXPRESSION;} @@ -10141,11 +10147,11 @@ final public SqlPostfixOperator PostfixRowOperator() throws ParseException { * @see Glossary#SQL2003 SQL:2003 Part 2 Section 5.2 */ final public String NonReservedKeyWord() throws ParseException { - if (jj_2_1135(2)) { + if (jj_2_1137(2)) { NonReservedKeyWord0of3(); - } else if (jj_2_1136(2)) { + } else if (jj_2_1138(2)) { NonReservedKeyWord1of3(); - } else if (jj_2_1137(2)) { + } else if (jj_2_1139(2)) { NonReservedKeyWord2of3(); } else { jj_consume_token(-1); @@ -10157,447 +10163,447 @@ final public String NonReservedKeyWord() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord0of3() throws ParseException { - if (jj_2_1138(2)) { + if (jj_2_1140(2)) { jj_consume_token(A); - } else if (jj_2_1139(2)) { + } else if (jj_2_1141(2)) { jj_consume_token(ACTION); - } else if (jj_2_1140(2)) { + } else if (jj_2_1142(2)) { jj_consume_token(ADMIN); - } else if (jj_2_1141(2)) { + } else if (jj_2_1143(2)) { jj_consume_token(APPLY); - } else if (jj_2_1142(2)) { + } else if (jj_2_1144(2)) { jj_consume_token(ASC); - } else if (jj_2_1143(2)) { + } else if (jj_2_1145(2)) { jj_consume_token(ATTRIBUTE); - } else if (jj_2_1144(2)) { + } else if (jj_2_1146(2)) { jj_consume_token(BERNOULLI); - } else if (jj_2_1145(2)) { + } else if (jj_2_1147(2)) { jj_consume_token(CASCADE); - } else if (jj_2_1146(2)) { + } else if (jj_2_1148(2)) { jj_consume_token(CENTURY); - } else if (jj_2_1147(2)) { + } else if (jj_2_1149(2)) { jj_consume_token(CHARACTERS); - } else if (jj_2_1148(2)) { + } else if (jj_2_1150(2)) { jj_consume_token(CHARACTER_SET_SCHEMA); - } else if (jj_2_1149(2)) { + } else if (jj_2_1151(2)) { jj_consume_token(COLLATION); - } else if (jj_2_1150(2)) { + } else if (jj_2_1152(2)) { jj_consume_token(COLLATION_SCHEMA); - } else if (jj_2_1151(2)) { + } else if (jj_2_1153(2)) { jj_consume_token(COMMAND_FUNCTION_CODE); - } else if (jj_2_1152(2)) { + } else if (jj_2_1154(2)) { jj_consume_token(CONDITION_NUMBER); - } else if (jj_2_1153(2)) { + } else if (jj_2_1155(2)) { jj_consume_token(CONSTRAINT_CATALOG); - } else if (jj_2_1154(2)) { + } else if (jj_2_1156(2)) { jj_consume_token(CONSTRAINT_SCHEMA); - } else if (jj_2_1155(2)) { + } else if (jj_2_1157(2)) { jj_consume_token(CONTINUE); - } else if (jj_2_1156(2)) { + } else if (jj_2_1158(2)) { jj_consume_token(DATABASE); - } else if (jj_2_1157(2)) { + } else if (jj_2_1159(2)) { jj_consume_token(DATETIME_DIFF); - } else if (jj_2_1158(2)) { + } else if (jj_2_1160(2)) { jj_consume_token(DATETIME_TRUNC); - } else if (jj_2_1159(2)) { + } else if (jj_2_1161(2)) { jj_consume_token(DAYS); - } else if (jj_2_1160(2)) { + } else if (jj_2_1162(2)) { jj_consume_token(DEFERRABLE); - } else if (jj_2_1161(2)) { + } else if (jj_2_1163(2)) { jj_consume_token(DEFINER); - } else if (jj_2_1162(2)) { + } else if (jj_2_1164(2)) { jj_consume_token(DERIVED); - } else if (jj_2_1163(2)) { + } else if (jj_2_1165(2)) { jj_consume_token(DESCRIPTOR); - } else if (jj_2_1164(2)) { + } else if (jj_2_1166(2)) { jj_consume_token(DOMAIN); - } else if (jj_2_1165(2)) { + } else if (jj_2_1167(2)) { jj_consume_token(DOT_FORMAT); - } else if (jj_2_1166(2)) { + } else if (jj_2_1168(2)) { jj_consume_token(ENCODING); - } else if (jj_2_1167(2)) { + } else if (jj_2_1169(2)) { jj_consume_token(EXCEPTION); - } else if (jj_2_1168(2)) { + } else if (jj_2_1170(2)) { jj_consume_token(FINAL); - } else if (jj_2_1169(2)) { + } else if (jj_2_1171(2)) { jj_consume_token(FORMAT); - } else if (jj_2_1170(2)) { + } else if (jj_2_1172(2)) { jj_consume_token(FRAC_SECOND); - } else if (jj_2_1171(2)) { + } else if (jj_2_1173(2)) { jj_consume_token(GENERATED); - } else if (jj_2_1172(2)) { + } else if (jj_2_1174(2)) { jj_consume_token(GOTO); - } else if (jj_2_1173(2)) { + } else if (jj_2_1175(2)) { jj_consume_token(HIERARCHY); - } else if (jj_2_1174(2)) { + } else if (jj_2_1176(2)) { jj_consume_token(IGNORE); - } else if (jj_2_1175(2)) { + } else if (jj_2_1177(2)) { jj_consume_token(IMMEDIATELY); - } else if (jj_2_1176(2)) { + } else if (jj_2_1178(2)) { jj_consume_token(INCLUDING); - } else if (jj_2_1177(2)) { + } else if (jj_2_1179(2)) { jj_consume_token(INPUT); - } else if (jj_2_1178(2)) { + } else if (jj_2_1180(2)) { jj_consume_token(INVOKER); - } else if (jj_2_1179(2)) { + } else if (jj_2_1181(2)) { jj_consume_token(ISOYEAR); - } else if (jj_2_1180(2)) { + } else if (jj_2_1182(2)) { jj_consume_token(K); - } else if (jj_2_1181(2)) { + } else if (jj_2_1183(2)) { jj_consume_token(KEY_TYPE); - } else if (jj_2_1182(2)) { + } else if (jj_2_1184(2)) { jj_consume_token(LENGTH); - } else if (jj_2_1183(2)) { + } else if (jj_2_1185(2)) { jj_consume_token(LOCATOR); - } else if (jj_2_1184(2)) { + } else if (jj_2_1186(2)) { jj_consume_token(MATCHED); - } else if (jj_2_1185(2)) { + } else if (jj_2_1187(2)) { jj_consume_token(MESSAGE_OCTET_LENGTH); - } else if (jj_2_1186(2)) { + } else if (jj_2_1188(2)) { jj_consume_token(MILLENNIUM); - } else if (jj_2_1187(2)) { + } else if (jj_2_1189(2)) { jj_consume_token(MINVALUE); - } else if (jj_2_1188(2)) { + } else if (jj_2_1190(2)) { jj_consume_token(MUMPS); - } else if (jj_2_1189(2)) { + } else if (jj_2_1191(2)) { jj_consume_token(NANOSECOND); - } else if (jj_2_1190(2)) { + } else if (jj_2_1192(2)) { jj_consume_token(NULLABLE); - } else if (jj_2_1191(2)) { + } else if (jj_2_1193(2)) { jj_consume_token(OBJECT); - } else if (jj_2_1192(2)) { + } else if (jj_2_1194(2)) { jj_consume_token(OPTIONS); - } else if (jj_2_1193(2)) { + } else if (jj_2_1195(2)) { jj_consume_token(OTHERS); - } else if (jj_2_1194(2)) { + } else if (jj_2_1196(2)) { jj_consume_token(PAD); - } else if (jj_2_1195(2)) { + } else if (jj_2_1197(2)) { jj_consume_token(PARAMETER_ORDINAL_POSITION); - } else if (jj_2_1196(2)) { + } else if (jj_2_1198(2)) { jj_consume_token(PARAMETER_SPECIFIC_SCHEMA); - } else if (jj_2_1197(2)) { + } else if (jj_2_1199(2)) { jj_consume_token(PASSING); - } else if (jj_2_1198(2)) { + } else if (jj_2_1200(2)) { jj_consume_token(PATH); - } else if (jj_2_1199(2)) { + } else if (jj_2_1201(2)) { jj_consume_token(PLAN); - } else if (jj_2_1200(2)) { + } else if (jj_2_1202(2)) { jj_consume_token(PRESERVE); - } else if (jj_2_1201(2)) { + } else if (jj_2_1203(2)) { jj_consume_token(PUBLIC); - } else if (jj_2_1202(2)) { + } else if (jj_2_1204(2)) { jj_consume_token(READ); - } else if (jj_2_1203(2)) { + } else if (jj_2_1205(2)) { jj_consume_token(REPLACE); - } else if (jj_2_1204(2)) { + } else if (jj_2_1206(2)) { jj_consume_token(RESTRICT); - } else if (jj_2_1205(2)) { + } else if (jj_2_1207(2)) { jj_consume_token(RETURNED_OCTET_LENGTH); - } else if (jj_2_1206(2)) { + } else if (jj_2_1208(2)) { jj_consume_token(RLIKE); - } else if (jj_2_1207(2)) { + } else if (jj_2_1209(2)) { jj_consume_token(ROUTINE_CATALOG); - } else if (jj_2_1208(2)) { + } else if (jj_2_1210(2)) { jj_consume_token(ROW_COUNT); - } else if (jj_2_1209(2)) { + } else if (jj_2_1211(2)) { jj_consume_token(SCHEMA); - } else if (jj_2_1210(2)) { + } else if (jj_2_1212(2)) { jj_consume_token(SCOPE_NAME); - } else if (jj_2_1211(2)) { + } else if (jj_2_1213(2)) { jj_consume_token(SECTION); - } else if (jj_2_1212(2)) { + } else if (jj_2_1214(2)) { jj_consume_token(SEPARATOR); - } else if (jj_2_1213(2)) { + } else if (jj_2_1215(2)) { jj_consume_token(SERVER); - } else if (jj_2_1214(2)) { + } else if (jj_2_1216(2)) { jj_consume_token(SETS); - } else if (jj_2_1215(2)) { + } else if (jj_2_1217(2)) { jj_consume_token(SOURCE); - } else if (jj_2_1216(2)) { + } else if (jj_2_1218(2)) { jj_consume_token(SQL_BIGINT); - } else if (jj_2_1217(2)) { + } else if (jj_2_1219(2)) { jj_consume_token(SQL_BLOB); - } else if (jj_2_1218(2)) { + } else if (jj_2_1220(2)) { jj_consume_token(SQL_CLOB); - } else if (jj_2_1219(2)) { + } else if (jj_2_1221(2)) { jj_consume_token(SQL_DOUBLE); - } else if (jj_2_1220(2)) { + } else if (jj_2_1222(2)) { jj_consume_token(SQL_INTERVAL_DAY); - } else if (jj_2_1221(2)) { + } else if (jj_2_1223(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_SECOND); - } else if (jj_2_1222(2)) { + } else if (jj_2_1224(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_SECOND); - } else if (jj_2_1223(2)) { + } else if (jj_2_1225(2)) { jj_consume_token(SQL_INTERVAL_MONTH); - } else if (jj_2_1224(2)) { + } else if (jj_2_1226(2)) { jj_consume_token(SQL_INTERVAL_YEAR_TO_MONTH); - } else if (jj_2_1225(2)) { + } else if (jj_2_1227(2)) { jj_consume_token(SQL_LONGVARNCHAR); - } else if (jj_2_1226(2)) { + } else if (jj_2_1228(2)) { jj_consume_token(SQL_NUMERIC); - } else if (jj_2_1227(2)) { + } else if (jj_2_1229(2)) { jj_consume_token(SQL_SMALLINT); - } else if (jj_2_1228(2)) { + } else if (jj_2_1230(2)) { jj_consume_token(SQL_TINYINT); - } else if (jj_2_1229(2)) { + } else if (jj_2_1231(2)) { jj_consume_token(SQL_TSI_HOUR); - } else if (jj_2_1230(2)) { + } else if (jj_2_1232(2)) { jj_consume_token(SQL_TSI_MONTH); - } else if (jj_2_1231(2)) { + } else if (jj_2_1233(2)) { jj_consume_token(SQL_TSI_WEEK); - } else if (jj_2_1232(2)) { + } else if (jj_2_1234(2)) { jj_consume_token(SQL_VARCHAR); - } else if (jj_2_1233(2)) { + } else if (jj_2_1235(2)) { jj_consume_token(STRING_AGG); - } else if (jj_2_1234(2)) { + } else if (jj_2_1236(2)) { jj_consume_token(SUBCLASS_ORIGIN); - } else if (jj_2_1235(2)) { + } else if (jj_2_1237(2)) { jj_consume_token(TEMPORARY); - } else if (jj_2_1236(2)) { + } else if (jj_2_1238(2)) { jj_consume_token(TIME_TRUNC); - } else if (jj_2_1237(2)) { + } else if (jj_2_1239(2)) { jj_consume_token(TIMESTAMP_DIFF); - } else if (jj_2_1238(2)) { + } else if (jj_2_1240(2)) { jj_consume_token(TRANSACTION); - } else if (jj_2_1239(2)) { + } else if (jj_2_1241(2)) { jj_consume_token(TRANSACTIONS_ROLLED_BACK); - } else if (jj_2_1240(2)) { + } else if (jj_2_1242(2)) { jj_consume_token(TRIGGER_CATALOG); - } else if (jj_2_1241(2)) { + } else if (jj_2_1243(2)) { jj_consume_token(TUMBLE); - } else if (jj_2_1242(2)) { + } else if (jj_2_1244(2)) { jj_consume_token(UNCOMMITTED); - } else if (jj_2_1243(2)) { + } else if (jj_2_1245(2)) { jj_consume_token(UNPIVOT); - } else if (jj_2_1244(2)) { + } else if (jj_2_1246(2)) { jj_consume_token(USER_DEFINED_TYPE_CATALOG); - } else if (jj_2_1245(2)) { + } else if (jj_2_1247(2)) { jj_consume_token(USER_DEFINED_TYPE_SCHEMA); - } else if (jj_2_1246(2)) { + } else if (jj_2_1248(2)) { jj_consume_token(UTF8); - } else if (jj_2_1247(2)) { + } else if (jj_2_1249(2)) { jj_consume_token(WEEK); - } else if (jj_2_1248(2)) { + } else if (jj_2_1250(2)) { jj_consume_token(WRAPPER); - } else if (jj_2_1249(2)) { + } else if (jj_2_1251(2)) { jj_consume_token(YEARS); - } else if (jj_2_1250(2)) { + } else if (jj_2_1252(2)) { jj_consume_token(BACKUPS); - } else if (jj_2_1251(2)) { + } else if (jj_2_1253(2)) { jj_consume_token(WRITE_SYNCHRONIZATION_MODE); - } else if (jj_2_1252(2)) { + } else if (jj_2_1254(2)) { jj_consume_token(DATA_REGION); - } else if (jj_2_1253(2)) { + } else if (jj_2_1255(2)) { jj_consume_token(PARALLEL); - } else if (jj_2_1254(2)) { + } else if (jj_2_1256(2)) { jj_consume_token(NOLOGGING); - } else if (jj_2_1255(2)) { + } else if (jj_2_1257(2)) { jj_consume_token(SCAN); - } else if (jj_2_1256(2)) { + } else if (jj_2_1258(2)) { jj_consume_token(COMPUTE); - } else if (jj_2_1257(2)) { + } else if (jj_2_1259(2)) { jj_consume_token(STATISTICS); - } else if (jj_2_1258(2)) { + } else if (jj_2_1260(2)) { jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); - } else if (jj_2_1259(2)) { + } else if (jj_2_1261(2)) { jj_consume_token(ALLOCATE); - } else if (jj_2_1260(2)) { + } else if (jj_2_1262(2)) { jj_consume_token(ARRAY_MAX_CARDINALITY); - } else if (jj_2_1261(2)) { + } else if (jj_2_1263(2)) { jj_consume_token(AT); - } else if (jj_2_1262(2)) { + } else if (jj_2_1264(2)) { jj_consume_token(AVG); - } else if (jj_2_1263(2)) { + } else if (jj_2_1265(2)) { jj_consume_token(BEGIN_PARTITION); - } else if (jj_2_1264(2)) { + } else if (jj_2_1266(2)) { jj_consume_token(BIT); - } else if (jj_2_1265(2)) { + } else if (jj_2_1267(2)) { jj_consume_token(CALL); - } else if (jj_2_1266(2)) { + } else if (jj_2_1268(2)) { jj_consume_token(CASCADED); - } else if (jj_2_1267(2)) { + } else if (jj_2_1269(2)) { jj_consume_token(CHAR); - } else if (jj_2_1268(2)) { + } else if (jj_2_1270(2)) { jj_consume_token(CHAR_LENGTH); - } else if (jj_2_1269(2)) { + } else if (jj_2_1271(2)) { jj_consume_token(CLOB); - } else if (jj_2_1270(2)) { + } else if (jj_2_1272(2)) { jj_consume_token(COLLATE); - } else if (jj_2_1271(2)) { + } else if (jj_2_1273(2)) { jj_consume_token(CONDITION); - } else if (jj_2_1272(2)) { + } else if (jj_2_1274(2)) { jj_consume_token(CONVERT); - } else if (jj_2_1273(2)) { + } else if (jj_2_1275(2)) { jj_consume_token(COUNT); - } else if (jj_2_1274(2)) { + } else if (jj_2_1276(2)) { jj_consume_token(CUBE); - } else if (jj_2_1275(2)) { + } else if (jj_2_1277(2)) { jj_consume_token(CURRENT_CATALOG); - } else if (jj_2_1276(2)) { + } else if (jj_2_1278(2)) { jj_consume_token(CURRENT_ROLE); - } else if (jj_2_1277(2)) { + } else if (jj_2_1279(2)) { jj_consume_token(CURSOR); - } else if (jj_2_1278(2)) { + } else if (jj_2_1280(2)) { jj_consume_token(DATETIME); - } else if (jj_2_1279(2)) { + } else if (jj_2_1281(2)) { jj_consume_token(DEC); - } else if (jj_2_1280(2)) { + } else if (jj_2_1282(2)) { jj_consume_token(DEFINE); - } else if (jj_2_1281(2)) { + } else if (jj_2_1283(2)) { jj_consume_token(DESCRIBE); - } else if (jj_2_1282(2)) { + } else if (jj_2_1284(2)) { jj_consume_token(DISCONNECT); - } else if (jj_2_1283(2)) { + } else if (jj_2_1285(2)) { jj_consume_token(EACH); - } else if (jj_2_1284(2)) { + } else if (jj_2_1286(2)) { jj_consume_token(END); - } else if (jj_2_1285(2)) { + } else if (jj_2_1287(2)) { jj_consume_token(END_PARTITION); - } else if (jj_2_1286(2)) { + } else if (jj_2_1288(2)) { jj_consume_token(EVERY); - } else if (jj_2_1287(2)) { + } else if (jj_2_1289(2)) { jj_consume_token(EXP); - } else if (jj_2_1288(2)) { + } else if (jj_2_1290(2)) { jj_consume_token(EXTRACT); - } else if (jj_2_1289(2)) { + } else if (jj_2_1291(2)) { jj_consume_token(FLOAT); - } else if (jj_2_1290(2)) { + } else if (jj_2_1292(2)) { jj_consume_token(FRAME_ROW); - } else if (jj_2_1291(2)) { + } else if (jj_2_1293(2)) { jj_consume_token(FUSION); - } else if (jj_2_1292(2)) { + } else if (jj_2_1294(2)) { jj_consume_token(GRANT); - } else if (jj_2_1293(2)) { + } else if (jj_2_1295(2)) { jj_consume_token(HOLD); - } else if (jj_2_1294(2)) { + } else if (jj_2_1296(2)) { jj_consume_token(IMPORT); - } else if (jj_2_1295(2)) { + } else if (jj_2_1297(2)) { jj_consume_token(INOUT); - } else if (jj_2_1296(2)) { + } else if (jj_2_1298(2)) { jj_consume_token(INTEGER); - } else if (jj_2_1297(2)) { + } else if (jj_2_1299(2)) { jj_consume_token(JSON_ARRAYAGG); - } else if (jj_2_1298(2)) { + } else if (jj_2_1300(2)) { jj_consume_token(JSON_OBJECTAGG); - } else if (jj_2_1299(2)) { + } else if (jj_2_1301(2)) { jj_consume_token(JSON_VALUE); - } else if (jj_2_1300(2)) { + } else if (jj_2_1302(2)) { jj_consume_token(LARGE); - } else if (jj_2_1301(2)) { + } else if (jj_2_1303(2)) { jj_consume_token(LEAD); - } else if (jj_2_1302(2)) { + } else if (jj_2_1304(2)) { jj_consume_token(LOCAL); - } else if (jj_2_1303(2)) { + } else if (jj_2_1305(2)) { jj_consume_token(MATCHES); - } else if (jj_2_1304(2)) { + } else if (jj_2_1306(2)) { jj_consume_token(MATCH_RECOGNIZE); - } else if (jj_2_1305(2)) { + } else if (jj_2_1307(2)) { jj_consume_token(MEASURES); - } else if (jj_2_1306(2)) { + } else if (jj_2_1308(2)) { jj_consume_token(MIN); - } else if (jj_2_1307(2)) { + } else if (jj_2_1309(2)) { jj_consume_token(MODIFIES); - } else if (jj_2_1308(2)) { + } else if (jj_2_1310(2)) { jj_consume_token(MULTISET); - } else if (jj_2_1309(2)) { + } else if (jj_2_1311(2)) { jj_consume_token(NCLOB); - } else if (jj_2_1310(2)) { + } else if (jj_2_1312(2)) { jj_consume_token(NO); - } else if (jj_2_1311(2)) { + } else if (jj_2_1313(2)) { jj_consume_token(NTH_VALUE); - } else if (jj_2_1312(2)) { + } else if (jj_2_1314(2)) { jj_consume_token(NUMERIC); - } else if (jj_2_1313(2)) { + } else if (jj_2_1315(2)) { jj_consume_token(OF); - } else if (jj_2_1314(2)) { + } else if (jj_2_1316(2)) { jj_consume_token(ONE); - } else if (jj_2_1315(2)) { + } else if (jj_2_1317(2)) { jj_consume_token(ORDINAL); - } else if (jj_2_1316(2)) { + } else if (jj_2_1318(2)) { jj_consume_token(OVERLAPS); - } else if (jj_2_1317(2)) { + } else if (jj_2_1319(2)) { jj_consume_token(PATTERN); - } else if (jj_2_1318(2)) { + } else if (jj_2_1320(2)) { jj_consume_token(PERCENTILE_CONT); - } else if (jj_2_1319(2)) { + } else if (jj_2_1321(2)) { jj_consume_token(PERIOD); - } else if (jj_2_1320(2)) { + } else if (jj_2_1322(2)) { jj_consume_token(POSITION); - } else if (jj_2_1321(2)) { + } else if (jj_2_1323(2)) { jj_consume_token(PRECEDES); - } else if (jj_2_1322(2)) { + } else if (jj_2_1324(2)) { jj_consume_token(PREV); - } else if (jj_2_1323(2)) { + } else if (jj_2_1325(2)) { jj_consume_token(RANGE); - } else if (jj_2_1324(2)) { + } else if (jj_2_1326(2)) { jj_consume_token(REAL); - } else if (jj_2_1325(2)) { + } else if (jj_2_1327(2)) { jj_consume_token(REFERENCES); - } else if (jj_2_1326(2)) { + } else if (jj_2_1328(2)) { jj_consume_token(REGR_AVGY); - } else if (jj_2_1327(2)) { + } else if (jj_2_1329(2)) { jj_consume_token(REGR_R2); - } else if (jj_2_1328(2)) { + } else if (jj_2_1330(2)) { jj_consume_token(REGR_SXY); - } else if (jj_2_1329(2)) { + } else if (jj_2_1331(2)) { jj_consume_token(RESET); - } else if (jj_2_1330(2)) { + } else if (jj_2_1332(2)) { jj_consume_token(RETURNS); - } else if (jj_2_1331(2)) { + } else if (jj_2_1333(2)) { jj_consume_token(ROLLUP); - } else if (jj_2_1332(2)) { + } else if (jj_2_1334(2)) { jj_consume_token(RUNNING); - } else if (jj_2_1333(2)) { + } else if (jj_2_1335(2)) { jj_consume_token(SAFE_ORDINAL); - } else if (jj_2_1334(2)) { + } else if (jj_2_1336(2)) { jj_consume_token(SCROLL); - } else if (jj_2_1335(2)) { + } else if (jj_2_1337(2)) { jj_consume_token(SEEK); - } else if (jj_2_1336(2)) { + } else if (jj_2_1338(2)) { jj_consume_token(SHOW); - } else if (jj_2_1337(2)) { + } else if (jj_2_1339(2)) { jj_consume_token(SMALLINT); - } else if (jj_2_1338(2)) { + } else if (jj_2_1340(2)) { jj_consume_token(SQL); - } else if (jj_2_1339(2)) { + } else if (jj_2_1341(2)) { jj_consume_token(SQLWARNING); - } else if (jj_2_1340(2)) { + } else if (jj_2_1342(2)) { jj_consume_token(STATIC); - } else if (jj_2_1341(2)) { + } else if (jj_2_1343(2)) { jj_consume_token(STREAM); - } else if (jj_2_1342(2)) { + } else if (jj_2_1344(2)) { jj_consume_token(SUBSTRING); - } else if (jj_2_1343(2)) { + } else if (jj_2_1345(2)) { jj_consume_token(SUM); - } else if (jj_2_1344(2)) { + } else if (jj_2_1346(2)) { jj_consume_token(SYSTEM_USER); - } else if (jj_2_1345(2)) { + } else if (jj_2_1347(2)) { jj_consume_token(TIMESTAMP); - } else if (jj_2_1346(2)) { + } else if (jj_2_1348(2)) { jj_consume_token(TINYINT); - } else if (jj_2_1347(2)) { + } else if (jj_2_1349(2)) { jj_consume_token(TRANSLATION); - } else if (jj_2_1348(2)) { + } else if (jj_2_1350(2)) { jj_consume_token(TRIM); - } else if (jj_2_1349(2)) { + } else if (jj_2_1351(2)) { jj_consume_token(TRY_CAST); - } else if (jj_2_1350(2)) { + } else if (jj_2_1352(2)) { jj_consume_token(UNKNOWN); - } else if (jj_2_1351(2)) { + } else if (jj_2_1353(2)) { jj_consume_token(UUID); - } else if (jj_2_1352(2)) { + } else if (jj_2_1354(2)) { jj_consume_token(VARBINARY); - } else if (jj_2_1353(2)) { + } else if (jj_2_1355(2)) { jj_consume_token(VARYING); - } else if (jj_2_1354(2)) { + } else if (jj_2_1356(2)) { jj_consume_token(VERSIONING); - } else if (jj_2_1355(2)) { + } else if (jj_2_1357(2)) { jj_consume_token(WINDOW); - } else if (jj_2_1356(2)) { + } else if (jj_2_1358(2)) { jj_consume_token(YEAR); - } else if (jj_2_1357(2)) { + } else if (jj_2_1359(2)) { jj_consume_token(WEDNESDAY); - } else if (jj_2_1358(2)) { + } else if (jj_2_1360(2)) { jj_consume_token(SATURDAY); } else { jj_consume_token(-1); @@ -10607,447 +10613,447 @@ final public void NonReservedKeyWord0of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord1of3() throws ParseException { - if (jj_2_1359(2)) { + if (jj_2_1361(2)) { jj_consume_token(ABSENT); - } else if (jj_2_1360(2)) { + } else if (jj_2_1362(2)) { jj_consume_token(ADA); - } else if (jj_2_1361(2)) { + } else if (jj_2_1363(2)) { jj_consume_token(AFTER); - } else if (jj_2_1362(2)) { + } else if (jj_2_1364(2)) { jj_consume_token(ARRAY_AGG); - } else if (jj_2_1363(2)) { + } else if (jj_2_1365(2)) { jj_consume_token(ASSERTION); - } else if (jj_2_1364(2)) { + } else if (jj_2_1366(2)) { jj_consume_token(ATTRIBUTES); - } else if (jj_2_1365(2)) { + } else if (jj_2_1367(2)) { jj_consume_token(BREADTH); - } else if (jj_2_1366(2)) { + } else if (jj_2_1368(2)) { jj_consume_token(CATALOG); - } else if (jj_2_1367(2)) { + } else if (jj_2_1369(2)) { jj_consume_token(CHAIN); - } else if (jj_2_1368(2)) { + } else if (jj_2_1370(2)) { jj_consume_token(CHARACTER_SET_CATALOG); - } else if (jj_2_1369(2)) { + } else if (jj_2_1371(2)) { jj_consume_token(CLASS_ORIGIN); - } else if (jj_2_1370(2)) { + } else if (jj_2_1372(2)) { jj_consume_token(COLLATION_CATALOG); - } else if (jj_2_1371(2)) { + } else if (jj_2_1373(2)) { jj_consume_token(COLUMN_NAME); - } else if (jj_2_1372(2)) { + } else if (jj_2_1374(2)) { jj_consume_token(COMMITTED); - } else if (jj_2_1373(2)) { + } else if (jj_2_1375(2)) { jj_consume_token(CONNECTION); - } else if (jj_2_1374(2)) { + } else if (jj_2_1376(2)) { jj_consume_token(CONSTRAINT_NAME); - } else if (jj_2_1375(2)) { + } else if (jj_2_1377(2)) { jj_consume_token(CONSTRUCTOR); - } else if (jj_2_1376(2)) { + } else if (jj_2_1378(2)) { jj_consume_token(CURSOR_NAME); - } else if (jj_2_1377(2)) { + } else if (jj_2_1379(2)) { jj_consume_token(DATE_DIFF); - } else if (jj_2_1378(2)) { + } else if (jj_2_1380(2)) { jj_consume_token(DATETIME_INTERVAL_CODE); - } else if (jj_2_1379(2)) { + } else if (jj_2_1381(2)) { jj_consume_token(DAYOFWEEK); - } else if (jj_2_1380(2)) { + } else if (jj_2_1382(2)) { jj_consume_token(DECADE); - } else if (jj_2_1381(2)) { + } else if (jj_2_1383(2)) { jj_consume_token(DEFERRED); - } else if (jj_2_1382(2)) { + } else if (jj_2_1384(2)) { jj_consume_token(DEGREE); - } else if (jj_2_1383(2)) { + } else if (jj_2_1385(2)) { jj_consume_token(DESC); - } else if (jj_2_1384(2)) { + } else if (jj_2_1386(2)) { jj_consume_token(DIAGNOSTICS); - } else if (jj_2_1385(2)) { + } else if (jj_2_1387(2)) { jj_consume_token(DOW); - } else if (jj_2_1386(2)) { + } else if (jj_2_1388(2)) { jj_consume_token(DYNAMIC_FUNCTION); - } else if (jj_2_1387(2)) { + } else if (jj_2_1389(2)) { jj_consume_token(EPOCH); - } else if (jj_2_1388(2)) { + } else if (jj_2_1390(2)) { jj_consume_token(EXCLUDE); - } else if (jj_2_1389(2)) { + } else if (jj_2_1391(2)) { jj_consume_token(FIRST); - } else if (jj_2_1390(2)) { + } else if (jj_2_1392(2)) { jj_consume_token(FORTRAN); - } else if (jj_2_1391(2)) { + } else if (jj_2_1393(2)) { jj_consume_token(G); - } else if (jj_2_1392(2)) { + } else if (jj_2_1394(2)) { jj_consume_token(GEOMETRY); - } else if (jj_2_1393(2)) { + } else if (jj_2_1395(2)) { jj_consume_token(GRANTED); - } else if (jj_2_1394(2)) { + } else if (jj_2_1396(2)) { jj_consume_token(HOP); - } else if (jj_2_1395(2)) { + } else if (jj_2_1397(2)) { jj_consume_token(ILIKE); - } else if (jj_2_1396(2)) { + } else if (jj_2_1398(2)) { jj_consume_token(IMPLEMENTATION); - } else if (jj_2_1397(2)) { + } else if (jj_2_1399(2)) { jj_consume_token(INCREMENT); - } else if (jj_2_1398(2)) { + } else if (jj_2_1400(2)) { jj_consume_token(INSTANCE); - } else if (jj_2_1399(2)) { + } else if (jj_2_1401(2)) { jj_consume_token(ISODOW); - } else if (jj_2_1400(2)) { + } else if (jj_2_1402(2)) { jj_consume_token(JAVA); - } else if (jj_2_1401(2)) { + } else if (jj_2_1403(2)) { jj_consume_token(KEY); - } else if (jj_2_1402(2)) { + } else if (jj_2_1404(2)) { jj_consume_token(LABEL); - } else if (jj_2_1403(2)) { + } else if (jj_2_1405(2)) { jj_consume_token(LEVEL); - } else if (jj_2_1404(2)) { + } else if (jj_2_1406(2)) { jj_consume_token(M); - } else if (jj_2_1405(2)) { + } else if (jj_2_1407(2)) { jj_consume_token(MAXVALUE); - } else if (jj_2_1406(2)) { + } else if (jj_2_1408(2)) { jj_consume_token(MESSAGE_TEXT); - } else if (jj_2_1407(2)) { + } else if (jj_2_1409(2)) { jj_consume_token(MILLISECOND); - } else if (jj_2_1408(2)) { + } else if (jj_2_1410(2)) { jj_consume_token(MONTHS); - } else if (jj_2_1409(2)) { + } else if (jj_2_1411(2)) { jj_consume_token(NAME); - } else if (jj_2_1410(2)) { + } else if (jj_2_1412(2)) { jj_consume_token(NESTING); - } else if (jj_2_1411(2)) { + } else if (jj_2_1413(2)) { jj_consume_token(NULLS); - } else if (jj_2_1412(2)) { + } else if (jj_2_1414(2)) { jj_consume_token(OCTETS); - } else if (jj_2_1413(2)) { + } else if (jj_2_1415(2)) { jj_consume_token(ORDERING); - } else if (jj_2_1414(2)) { + } else if (jj_2_1416(2)) { jj_consume_token(OUTPUT); - } else if (jj_2_1415(2)) { + } else if (jj_2_1417(2)) { jj_consume_token(PARAMETER_MODE); - } else if (jj_2_1416(2)) { + } else if (jj_2_1418(2)) { jj_consume_token(PARAMETER_SPECIFIC_CATALOG); - } else if (jj_2_1417(2)) { + } else if (jj_2_1419(2)) { jj_consume_token(PARTIAL); - } else if (jj_2_1418(2)) { + } else if (jj_2_1420(2)) { jj_consume_token(PASSTHROUGH); - } else if (jj_2_1419(2)) { + } else if (jj_2_1421(2)) { jj_consume_token(PIVOT); - } else if (jj_2_1420(2)) { + } else if (jj_2_1422(2)) { jj_consume_token(PLI); - } else if (jj_2_1421(2)) { + } else if (jj_2_1423(2)) { jj_consume_token(PRIOR); - } else if (jj_2_1422(2)) { + } else if (jj_2_1424(2)) { jj_consume_token(QUARTER); - } else if (jj_2_1423(2)) { + } else if (jj_2_1425(2)) { jj_consume_token(RELATIVE); - } else if (jj_2_1424(2)) { + } else if (jj_2_1426(2)) { jj_consume_token(RESPECT); - } else if (jj_2_1425(2)) { + } else if (jj_2_1427(2)) { jj_consume_token(RETURNED_CARDINALITY); - } else if (jj_2_1426(2)) { + } else if (jj_2_1428(2)) { jj_consume_token(RETURNED_SQLSTATE); - } else if (jj_2_1427(2)) { + } else if (jj_2_1429(2)) { jj_consume_token(ROLE); - } else if (jj_2_1428(2)) { + } else if (jj_2_1430(2)) { jj_consume_token(ROUTINE_NAME); - } else if (jj_2_1429(2)) { + } else if (jj_2_1431(2)) { jj_consume_token(SCALAR); - } else if (jj_2_1430(2)) { + } else if (jj_2_1432(2)) { jj_consume_token(SCHEMA_NAME); - } else if (jj_2_1431(2)) { + } else if (jj_2_1433(2)) { jj_consume_token(SCOPE_SCHEMA); - } else if (jj_2_1432(2)) { + } else if (jj_2_1434(2)) { jj_consume_token(SECURITY); - } else if (jj_2_1433(2)) { + } else if (jj_2_1435(2)) { jj_consume_token(SEQUENCE); - } else if (jj_2_1434(2)) { + } else if (jj_2_1436(2)) { jj_consume_token(SERVER_NAME); - } else if (jj_2_1435(2)) { + } else if (jj_2_1437(2)) { jj_consume_token(SIMPLE); - } else if (jj_2_1436(2)) { + } else if (jj_2_1438(2)) { jj_consume_token(SPACE); - } else if (jj_2_1437(2)) { + } else if (jj_2_1439(2)) { jj_consume_token(SQL_BINARY); - } else if (jj_2_1438(2)) { + } else if (jj_2_1440(2)) { jj_consume_token(SQL_BOOLEAN); - } else if (jj_2_1439(2)) { + } else if (jj_2_1441(2)) { jj_consume_token(SQL_DATE); - } else if (jj_2_1440(2)) { + } else if (jj_2_1442(2)) { jj_consume_token(SQL_FLOAT); - } else if (jj_2_1441(2)) { + } else if (jj_2_1443(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); - } else if (jj_2_1442(2)) { + } else if (jj_2_1444(2)) { jj_consume_token(SQL_INTERVAL_HOUR); - } else if (jj_2_1443(2)) { + } else if (jj_2_1445(2)) { jj_consume_token(SQL_INTERVAL_MINUTE); - } else if (jj_2_1444(2)) { + } else if (jj_2_1446(2)) { jj_consume_token(SQL_INTERVAL_SECOND); - } else if (jj_2_1445(2)) { + } else if (jj_2_1447(2)) { jj_consume_token(SQL_LONGVARBINARY); - } else if (jj_2_1446(2)) { + } else if (jj_2_1448(2)) { jj_consume_token(SQL_NCHAR); - } else if (jj_2_1447(2)) { + } else if (jj_2_1449(2)) { jj_consume_token(SQL_NVARCHAR); - } else if (jj_2_1448(2)) { + } else if (jj_2_1450(2)) { jj_consume_token(SQL_TIME); - } else if (jj_2_1449(2)) { + } else if (jj_2_1451(2)) { jj_consume_token(SQL_TSI_DAY); - } else if (jj_2_1450(2)) { + } else if (jj_2_1452(2)) { jj_consume_token(SQL_TSI_MICROSECOND); - } else if (jj_2_1451(2)) { + } else if (jj_2_1453(2)) { jj_consume_token(SQL_TSI_QUARTER); - } else if (jj_2_1452(2)) { + } else if (jj_2_1454(2)) { jj_consume_token(SQL_TSI_YEAR); - } else if (jj_2_1453(2)) { + } else if (jj_2_1455(2)) { jj_consume_token(STATE); - } else if (jj_2_1454(2)) { + } else if (jj_2_1456(2)) { jj_consume_token(STRUCTURE); - } else if (jj_2_1455(2)) { + } else if (jj_2_1457(2)) { jj_consume_token(SUBSTITUTE); - } else if (jj_2_1456(2)) { + } else if (jj_2_1458(2)) { jj_consume_token(TIES); - } else if (jj_2_1457(2)) { + } else if (jj_2_1459(2)) { jj_consume_token(TIMESTAMPADD); - } else if (jj_2_1458(2)) { + } else if (jj_2_1460(2)) { jj_consume_token(TIMESTAMP_TRUNC); - } else if (jj_2_1459(2)) { + } else if (jj_2_1461(2)) { jj_consume_token(TRANSACTIONS_ACTIVE); - } else if (jj_2_1460(2)) { + } else if (jj_2_1462(2)) { jj_consume_token(TRANSFORM); - } else if (jj_2_1461(2)) { + } else if (jj_2_1463(2)) { jj_consume_token(TRIGGER_NAME); - } else if (jj_2_1462(2)) { + } else if (jj_2_1464(2)) { jj_consume_token(TYPE); - } else if (jj_2_1463(2)) { + } else if (jj_2_1465(2)) { jj_consume_token(UNCONDITIONAL); - } else if (jj_2_1464(2)) { + } else if (jj_2_1466(2)) { jj_consume_token(UNNAMED); - } else if (jj_2_1465(2)) { + } else if (jj_2_1467(2)) { jj_consume_token(USER_DEFINED_TYPE_CODE); - } else if (jj_2_1466(2)) { + } else if (jj_2_1468(2)) { jj_consume_token(UTF16); - } else if (jj_2_1467(2)) { + } else if (jj_2_1469(2)) { jj_consume_token(VERSION); - } else if (jj_2_1468(2)) { + } else if (jj_2_1470(2)) { jj_consume_token(WEEKS); - } else if (jj_2_1469(2)) { + } else if (jj_2_1471(2)) { jj_consume_token(WRITE); - } else if (jj_2_1470(2)) { + } else if (jj_2_1472(2)) { jj_consume_token(ZONE); - } else if (jj_2_1471(2)) { + } else if (jj_2_1473(2)) { jj_consume_token(AFFINITY_KEY); - } else if (jj_2_1472(2)) { + } else if (jj_2_1474(2)) { jj_consume_token(CACHE_GROUP); - } else if (jj_2_1473(2)) { + } else if (jj_2_1475(2)) { jj_consume_token(VALUE_TYPE); - } else if (jj_2_1474(2)) { + } else if (jj_2_1476(2)) { jj_consume_token(INLINE_SIZE); - } else if (jj_2_1475(2)) { + } else if (jj_2_1477(2)) { jj_consume_token(PASSWORD); - } else if (jj_2_1476(2)) { + } else if (jj_2_1478(2)) { jj_consume_token(CONTINUOUS); - } else if (jj_2_1477(2)) { + } else if (jj_2_1479(2)) { jj_consume_token(ASYNC); - } else if (jj_2_1478(2)) { + } else if (jj_2_1480(2)) { jj_consume_token(REFRESH); - } else if (jj_2_1479(2)) { + } else if (jj_2_1481(2)) { jj_consume_token(TOTAL); - } else if (jj_2_1480(2)) { + } else if (jj_2_1482(2)) { jj_consume_token(ALLOW); - } else if (jj_2_1481(2)) { + } else if (jj_2_1483(2)) { jj_consume_token(ASENSITIVE); - } else if (jj_2_1482(2)) { + } else if (jj_2_1484(2)) { jj_consume_token(ATOMIC); - } else if (jj_2_1483(2)) { + } else if (jj_2_1485(2)) { jj_consume_token(BEGIN); - } else if (jj_2_1484(2)) { + } else if (jj_2_1486(2)) { jj_consume_token(BIGINT); - } else if (jj_2_1485(2)) { + } else if (jj_2_1487(2)) { jj_consume_token(BLOB); - } else if (jj_2_1486(2)) { + } else if (jj_2_1488(2)) { jj_consume_token(CALLED); - } else if (jj_2_1487(2)) { + } else if (jj_2_1489(2)) { jj_consume_token(CEIL); - } else if (jj_2_1488(2)) { + } else if (jj_2_1490(2)) { jj_consume_token(CHARACTER); - } else if (jj_2_1489(2)) { + } else if (jj_2_1491(2)) { jj_consume_token(CHECK); - } else if (jj_2_1490(2)) { + } else if (jj_2_1492(2)) { jj_consume_token(CLOSE); - } else if (jj_2_1491(2)) { + } else if (jj_2_1493(2)) { jj_consume_token(COLLECT); - } else if (jj_2_1492(2)) { + } else if (jj_2_1494(2)) { jj_consume_token(CONNECT); - } else if (jj_2_1493(2)) { + } else if (jj_2_1495(2)) { jj_consume_token(CORR); - } else if (jj_2_1494(2)) { + } else if (jj_2_1496(2)) { jj_consume_token(COVAR_POP); - } else if (jj_2_1495(2)) { + } else if (jj_2_1497(2)) { jj_consume_token(CUME_DIST); - } else if (jj_2_1496(2)) { + } else if (jj_2_1498(2)) { jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); - } else if (jj_2_1497(2)) { + } else if (jj_2_1499(2)) { jj_consume_token(CURRENT_ROW); - } else if (jj_2_1498(2)) { + } else if (jj_2_1500(2)) { jj_consume_token(CYCLE); - } else if (jj_2_1499(2)) { + } else if (jj_2_1501(2)) { jj_consume_token(DAY); - } else if (jj_2_1500(2)) { + } else if (jj_2_1502(2)) { jj_consume_token(DECIMAL); - } else if (jj_2_1501(2)) { + } else if (jj_2_1503(2)) { jj_consume_token(DENSE_RANK); - } else if (jj_2_1502(2)) { + } else if (jj_2_1504(2)) { jj_consume_token(DETERMINISTIC); - } else if (jj_2_1503(2)) { + } else if (jj_2_1505(2)) { jj_consume_token(DOUBLE); - } else if (jj_2_1504(2)) { + } else if (jj_2_1506(2)) { jj_consume_token(ELEMENT); - } else if (jj_2_1505(2)) { + } else if (jj_2_1507(2)) { jj_consume_token(END_EXEC); - } else if (jj_2_1506(2)) { + } else if (jj_2_1508(2)) { jj_consume_token(EQUALS); - } else if (jj_2_1507(2)) { + } else if (jj_2_1509(2)) { jj_consume_token(EXEC); - } else if (jj_2_1508(2)) { + } else if (jj_2_1510(2)) { jj_consume_token(EXTEND); - } else if (jj_2_1509(2)) { + } else if (jj_2_1511(2)) { jj_consume_token(FILTER); - } else if (jj_2_1510(2)) { + } else if (jj_2_1512(2)) { jj_consume_token(FLOOR); - } else if (jj_2_1511(2)) { + } else if (jj_2_1513(2)) { jj_consume_token(FREE); - } else if (jj_2_1512(2)) { + } else if (jj_2_1514(2)) { jj_consume_token(GET); - } else if (jj_2_1513(2)) { + } else if (jj_2_1515(2)) { jj_consume_token(GROUPING); - } else if (jj_2_1514(2)) { + } else if (jj_2_1516(2)) { jj_consume_token(HOUR); - } else if (jj_2_1515(2)) { + } else if (jj_2_1517(2)) { jj_consume_token(INDICATOR); - } else if (jj_2_1516(2)) { + } else if (jj_2_1518(2)) { jj_consume_token(INSENSITIVE); - } else if (jj_2_1517(2)) { + } else if (jj_2_1519(2)) { jj_consume_token(INTERSECTION); - } else if (jj_2_1518(2)) { + } else if (jj_2_1520(2)) { jj_consume_token(JSON_EXISTS); - } else if (jj_2_1519(2)) { + } else if (jj_2_1521(2)) { jj_consume_token(JSON_QUERY); - } else if (jj_2_1520(2)) { + } else if (jj_2_1522(2)) { jj_consume_token(LAG); - } else if (jj_2_1521(2)) { + } else if (jj_2_1523(2)) { jj_consume_token(LAST_VALUE); - } else if (jj_2_1522(2)) { + } else if (jj_2_1524(2)) { jj_consume_token(LIKE_REGEX); - } else if (jj_2_1523(2)) { + } else if (jj_2_1525(2)) { jj_consume_token(LOWER); - } else if (jj_2_1524(2)) { + } else if (jj_2_1526(2)) { jj_consume_token(MATCH_CONDITION); - } else if (jj_2_1525(2)) { + } else if (jj_2_1527(2)) { jj_consume_token(MAX); - } else if (jj_2_1526(2)) { + } else if (jj_2_1528(2)) { jj_consume_token(MEMBER); - } else if (jj_2_1527(2)) { + } else if (jj_2_1529(2)) { jj_consume_token(MINUTE); - } else if (jj_2_1528(2)) { + } else if (jj_2_1530(2)) { jj_consume_token(MODULE); - } else if (jj_2_1529(2)) { + } else if (jj_2_1531(2)) { jj_consume_token(NATIONAL); - } else if (jj_2_1530(2)) { + } else if (jj_2_1532(2)) { jj_consume_token(NEW); - } else if (jj_2_1531(2)) { + } else if (jj_2_1533(2)) { jj_consume_token(NONE); - } else if (jj_2_1532(2)) { + } else if (jj_2_1534(2)) { jj_consume_token(NTILE); - } else if (jj_2_1533(2)) { + } else if (jj_2_1535(2)) { jj_consume_token(OCCURRENCES_REGEX); - } else if (jj_2_1534(2)) { + } else if (jj_2_1536(2)) { jj_consume_token(OLD); - } else if (jj_2_1535(2)) { + } else if (jj_2_1537(2)) { jj_consume_token(ONLY); - } else if (jj_2_1536(2)) { + } else if (jj_2_1538(2)) { jj_consume_token(OUT); - } else if (jj_2_1537(2)) { + } else if (jj_2_1539(2)) { jj_consume_token(OVERLAY); - } else if (jj_2_1538(2)) { + } else if (jj_2_1540(2)) { jj_consume_token(PER); - } else if (jj_2_1539(2)) { + } else if (jj_2_1541(2)) { jj_consume_token(PERCENTILE_DISC); - } else if (jj_2_1540(2)) { + } else if (jj_2_1542(2)) { jj_consume_token(PERMUTE); - } else if (jj_2_1541(2)) { + } else if (jj_2_1543(2)) { jj_consume_token(POSITION_REGEX); - } else if (jj_2_1542(2)) { + } else if (jj_2_1544(2)) { jj_consume_token(PRECISION); - } else if (jj_2_1543(2)) { + } else if (jj_2_1545(2)) { jj_consume_token(PROCEDURE); - } else if (jj_2_1544(2)) { + } else if (jj_2_1546(2)) { jj_consume_token(RANK); - } else if (jj_2_1545(2)) { + } else if (jj_2_1547(2)) { jj_consume_token(RECURSIVE); - } else if (jj_2_1546(2)) { + } else if (jj_2_1548(2)) { jj_consume_token(REFERENCING); - } else if (jj_2_1547(2)) { + } else if (jj_2_1549(2)) { jj_consume_token(REGR_COUNT); - } else if (jj_2_1548(2)) { + } else if (jj_2_1550(2)) { jj_consume_token(REGR_SLOPE); - } else if (jj_2_1549(2)) { + } else if (jj_2_1551(2)) { jj_consume_token(REGR_SYY); - } else if (jj_2_1550(2)) { + } else if (jj_2_1552(2)) { jj_consume_token(RESULT); - } else if (jj_2_1551(2)) { + } else if (jj_2_1553(2)) { jj_consume_token(REVOKE); - } else if (jj_2_1552(2)) { + } else if (jj_2_1554(2)) { jj_consume_token(ROWS); - } else if (jj_2_1553(2)) { + } else if (jj_2_1555(2)) { jj_consume_token(SAFE_CAST); - } else if (jj_2_1554(2)) { + } else if (jj_2_1556(2)) { jj_consume_token(SAVEPOINT); - } else if (jj_2_1555(2)) { + } else if (jj_2_1557(2)) { jj_consume_token(SEARCH); - } else if (jj_2_1556(2)) { + } else if (jj_2_1558(2)) { jj_consume_token(SENSITIVE); - } else if (jj_2_1557(2)) { + } else if (jj_2_1559(2)) { jj_consume_token(SIMILAR); - } else if (jj_2_1558(2)) { + } else if (jj_2_1560(2)) { jj_consume_token(SPECIFIC); - } else if (jj_2_1559(2)) { + } else if (jj_2_1561(2)) { jj_consume_token(SQLEXCEPTION); - } else if (jj_2_1560(2)) { + } else if (jj_2_1562(2)) { jj_consume_token(SQRT); - } else if (jj_2_1561(2)) { + } else if (jj_2_1563(2)) { jj_consume_token(STDDEV_POP); - } else if (jj_2_1562(2)) { + } else if (jj_2_1564(2)) { jj_consume_token(SUBMULTISET); - } else if (jj_2_1563(2)) { + } else if (jj_2_1565(2)) { jj_consume_token(SUBSTRING_REGEX); - } else if (jj_2_1564(2)) { + } else if (jj_2_1566(2)) { jj_consume_token(SYSTEM); - } else if (jj_2_1565(2)) { + } else if (jj_2_1567(2)) { jj_consume_token(TABLESAMPLE); - } else if (jj_2_1566(2)) { + } else if (jj_2_1568(2)) { jj_consume_token(TIMEZONE_HOUR); - } else if (jj_2_1567(2)) { + } else if (jj_2_1569(2)) { jj_consume_token(TRANSLATE); - } else if (jj_2_1568(2)) { + } else if (jj_2_1570(2)) { jj_consume_token(TREAT); - } else if (jj_2_1569(2)) { + } else if (jj_2_1571(2)) { jj_consume_token(TRIM_ARRAY); - } else if (jj_2_1570(2)) { + } else if (jj_2_1572(2)) { jj_consume_token(UESCAPE); - } else if (jj_2_1571(2)) { + } else if (jj_2_1573(2)) { jj_consume_token(UPPER); - } else if (jj_2_1572(2)) { + } else if (jj_2_1574(2)) { jj_consume_token(VALUE); - } else if (jj_2_1573(2)) { + } else if (jj_2_1575(2)) { jj_consume_token(VARIANT); - } else if (jj_2_1574(2)) { + } else if (jj_2_1576(2)) { jj_consume_token(VAR_POP); - } else if (jj_2_1575(2)) { + } else if (jj_2_1577(2)) { jj_consume_token(WHENEVER); - } else if (jj_2_1576(2)) { + } else if (jj_2_1578(2)) { jj_consume_token(WITHIN); - } else if (jj_2_1577(2)) { + } else if (jj_2_1579(2)) { jj_consume_token(MONDAY); - } else if (jj_2_1578(2)) { + } else if (jj_2_1580(2)) { jj_consume_token(THURSDAY); - } else if (jj_2_1579(2)) { + } else if (jj_2_1581(2)) { jj_consume_token(SUNDAY); } else { jj_consume_token(-1); @@ -11057,445 +11063,445 @@ final public void NonReservedKeyWord1of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord2of3() throws ParseException { - if (jj_2_1580(2)) { + if (jj_2_1582(2)) { jj_consume_token(ABSOLUTE); - } else if (jj_2_1581(2)) { + } else if (jj_2_1583(2)) { jj_consume_token(ADD); - } else if (jj_2_1582(2)) { + } else if (jj_2_1584(2)) { jj_consume_token(ALWAYS); - } else if (jj_2_1583(2)) { + } else if (jj_2_1585(2)) { jj_consume_token(ARRAY_CONCAT_AGG); - } else if (jj_2_1584(2)) { + } else if (jj_2_1586(2)) { jj_consume_token(ASSIGNMENT); - } else if (jj_2_1585(2)) { + } else if (jj_2_1587(2)) { jj_consume_token(BEFORE); - } else if (jj_2_1586(2)) { + } else if (jj_2_1588(2)) { jj_consume_token(C); - } else if (jj_2_1587(2)) { + } else if (jj_2_1589(2)) { jj_consume_token(CATALOG_NAME); - } else if (jj_2_1588(2)) { + } else if (jj_2_1590(2)) { jj_consume_token(CHARACTERISTICS); - } else if (jj_2_1589(2)) { + } else if (jj_2_1591(2)) { jj_consume_token(CHARACTER_SET_NAME); - } else if (jj_2_1590(2)) { + } else if (jj_2_1592(2)) { jj_consume_token(COBOL); - } else if (jj_2_1591(2)) { + } else if (jj_2_1593(2)) { jj_consume_token(COLLATION_NAME); - } else if (jj_2_1592(2)) { + } else if (jj_2_1594(2)) { jj_consume_token(COMMAND_FUNCTION); - } else if (jj_2_1593(2)) { + } else if (jj_2_1595(2)) { jj_consume_token(CONDITIONAL); - } else if (jj_2_1594(2)) { + } else if (jj_2_1596(2)) { jj_consume_token(CONNECTION_NAME); - } else if (jj_2_1595(2)) { + } else if (jj_2_1597(2)) { jj_consume_token(CONSTRAINTS); - } else if (jj_2_1596(2)) { + } else if (jj_2_1598(2)) { jj_consume_token(CONTAINS_SUBSTR); - } else if (jj_2_1597(2)) { + } else if (jj_2_1599(2)) { jj_consume_token(DATA); - } else if (jj_2_1598(2)) { + } else if (jj_2_1600(2)) { jj_consume_token(DATE_TRUNC); - } else if (jj_2_1599(2)) { + } else if (jj_2_1601(2)) { jj_consume_token(DATETIME_INTERVAL_PRECISION); - } else if (jj_2_1600(2)) { + } else if (jj_2_1602(2)) { jj_consume_token(DAYOFYEAR); - } else if (jj_2_1601(2)) { + } else if (jj_2_1603(2)) { jj_consume_token(DEFAULTS); - } else if (jj_2_1602(2)) { + } else if (jj_2_1604(2)) { jj_consume_token(DEFINED); - } else if (jj_2_1603(2)) { + } else if (jj_2_1605(2)) { jj_consume_token(DEPTH); - } else if (jj_2_1604(2)) { + } else if (jj_2_1606(2)) { jj_consume_token(DESCRIPTION); - } else if (jj_2_1605(2)) { + } else if (jj_2_1607(2)) { jj_consume_token(DISPATCH); - } else if (jj_2_1606(2)) { + } else if (jj_2_1608(2)) { jj_consume_token(DOY); - } else if (jj_2_1607(2)) { + } else if (jj_2_1609(2)) { jj_consume_token(DYNAMIC_FUNCTION_CODE); - } else if (jj_2_1608(2)) { + } else if (jj_2_1610(2)) { jj_consume_token(ERROR); - } else if (jj_2_1609(2)) { + } else if (jj_2_1611(2)) { jj_consume_token(EXCLUDING); - } else if (jj_2_1610(2)) { + } else if (jj_2_1612(2)) { jj_consume_token(FOLLOWING); - } else if (jj_2_1611(2)) { + } else if (jj_2_1613(2)) { jj_consume_token(FOUND); - } else if (jj_2_1612(2)) { + } else if (jj_2_1614(2)) { jj_consume_token(GENERAL); - } else if (jj_2_1613(2)) { + } else if (jj_2_1615(2)) { jj_consume_token(GO); - } else if (jj_2_1614(2)) { + } else if (jj_2_1616(2)) { jj_consume_token(GROUP_CONCAT); - } else if (jj_2_1615(2)) { + } else if (jj_2_1617(2)) { jj_consume_token(HOURS); - } else if (jj_2_1616(2)) { + } else if (jj_2_1618(2)) { jj_consume_token(IMMEDIATE); - } else if (jj_2_1617(2)) { + } else if (jj_2_1619(2)) { jj_consume_token(INCLUDE); - } else if (jj_2_1618(2)) { + } else if (jj_2_1620(2)) { jj_consume_token(INITIALLY); - } else if (jj_2_1619(2)) { + } else if (jj_2_1621(2)) { jj_consume_token(INSTANTIABLE); - } else if (jj_2_1620(2)) { + } else if (jj_2_1622(2)) { jj_consume_token(ISOLATION); - } else if (jj_2_1621(2)) { + } else if (jj_2_1623(2)) { jj_consume_token(JSON); - } else if (jj_2_1622(2)) { + } else if (jj_2_1624(2)) { jj_consume_token(KEY_MEMBER); - } else if (jj_2_1623(2)) { + } else if (jj_2_1625(2)) { jj_consume_token(LAST); - } else if (jj_2_1624(2)) { + } else if (jj_2_1626(2)) { jj_consume_token(LIBRARY); - } else if (jj_2_1625(2)) { + } else if (jj_2_1627(2)) { jj_consume_token(MAP); - } else if (jj_2_1626(2)) { + } else if (jj_2_1628(2)) { jj_consume_token(MESSAGE_LENGTH); - } else if (jj_2_1627(2)) { + } else if (jj_2_1629(2)) { jj_consume_token(MICROSECOND); - } else if (jj_2_1628(2)) { + } else if (jj_2_1630(2)) { jj_consume_token(MINUTES); - } else if (jj_2_1629(2)) { + } else if (jj_2_1631(2)) { jj_consume_token(MORE_); - } else if (jj_2_1630(2)) { + } else if (jj_2_1632(2)) { jj_consume_token(NAMES); - } else if (jj_2_1631(2)) { + } else if (jj_2_1633(2)) { jj_consume_token(NORMALIZED); - } else if (jj_2_1632(2)) { + } else if (jj_2_1634(2)) { jj_consume_token(NUMBER); - } else if (jj_2_1633(2)) { + } else if (jj_2_1635(2)) { jj_consume_token(OPTION); - } else if (jj_2_1634(2)) { + } else if (jj_2_1636(2)) { jj_consume_token(ORDINALITY); - } else if (jj_2_1635(2)) { + } else if (jj_2_1637(2)) { jj_consume_token(OVERRIDING); - } else if (jj_2_1636(2)) { + } else if (jj_2_1638(2)) { jj_consume_token(PARAMETER_NAME); - } else if (jj_2_1637(2)) { + } else if (jj_2_1639(2)) { jj_consume_token(PARAMETER_SPECIFIC_NAME); - } else if (jj_2_1638(2)) { + } else if (jj_2_1640(2)) { jj_consume_token(PASCAL); - } else if (jj_2_1639(2)) { + } else if (jj_2_1641(2)) { jj_consume_token(PAST); - } else if (jj_2_1640(2)) { + } else if (jj_2_1642(2)) { jj_consume_token(PLACING); - } else if (jj_2_1641(2)) { + } else if (jj_2_1643(2)) { jj_consume_token(PRECEDING); - } else if (jj_2_1642(2)) { + } else if (jj_2_1644(2)) { jj_consume_token(PRIVILEGES); - } else if (jj_2_1643(2)) { + } else if (jj_2_1645(2)) { jj_consume_token(QUARTERS); - } else if (jj_2_1644(2)) { + } else if (jj_2_1646(2)) { jj_consume_token(REPEATABLE); - } else if (jj_2_1645(2)) { + } else if (jj_2_1647(2)) { jj_consume_token(RESTART); - } else if (jj_2_1646(2)) { + } else if (jj_2_1648(2)) { jj_consume_token(RETURNED_LENGTH); - } else if (jj_2_1647(2)) { + } else if (jj_2_1649(2)) { jj_consume_token(RETURNING); - } else if (jj_2_1648(2)) { + } else if (jj_2_1650(2)) { jj_consume_token(ROUTINE); - } else if (jj_2_1649(2)) { + } else if (jj_2_1651(2)) { jj_consume_token(ROUTINE_SCHEMA); - } else if (jj_2_1650(2)) { + } else if (jj_2_1652(2)) { jj_consume_token(SCALE); - } else if (jj_2_1651(2)) { + } else if (jj_2_1653(2)) { jj_consume_token(SCOPE_CATALOGS); - } else if (jj_2_1652(2)) { + } else if (jj_2_1654(2)) { jj_consume_token(SECONDS); - } else if (jj_2_1653(2)) { + } else if (jj_2_1655(2)) { jj_consume_token(SELF); - } else if (jj_2_1654(2)) { + } else if (jj_2_1656(2)) { jj_consume_token(SERIALIZABLE); - } else if (jj_2_1655(2)) { + } else if (jj_2_1657(2)) { jj_consume_token(SESSION); - } else if (jj_2_1656(2)) { + } else if (jj_2_1658(2)) { jj_consume_token(SIZE); - } else if (jj_2_1657(2)) { + } else if (jj_2_1659(2)) { jj_consume_token(SPECIFIC_NAME); - } else if (jj_2_1658(2)) { + } else if (jj_2_1660(2)) { jj_consume_token(SQL_BIT); - } else if (jj_2_1659(2)) { + } else if (jj_2_1661(2)) { jj_consume_token(SQL_CHAR); - } else if (jj_2_1660(2)) { + } else if (jj_2_1662(2)) { jj_consume_token(SQL_DECIMAL); - } else if (jj_2_1661(2)) { + } else if (jj_2_1663(2)) { jj_consume_token(SQL_INTEGER); - } else if (jj_2_1662(2)) { + } else if (jj_2_1664(2)) { jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); - } else if (jj_2_1663(2)) { + } else if (jj_2_1665(2)) { jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); - } else if (jj_2_1664(2)) { + } else if (jj_2_1666(2)) { jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); - } else if (jj_2_1665(2)) { + } else if (jj_2_1667(2)) { jj_consume_token(SQL_INTERVAL_YEAR); - } else if (jj_2_1666(2)) { + } else if (jj_2_1668(2)) { jj_consume_token(SQL_LONGVARCHAR); - } else if (jj_2_1667(2)) { + } else if (jj_2_1669(2)) { jj_consume_token(SQL_NCLOB); - } else if (jj_2_1668(2)) { + } else if (jj_2_1670(2)) { jj_consume_token(SQL_REAL); - } else if (jj_2_1669(2)) { + } else if (jj_2_1671(2)) { jj_consume_token(SQL_TIMESTAMP); - } else if (jj_2_1670(2)) { + } else if (jj_2_1672(2)) { jj_consume_token(SQL_TSI_FRAC_SECOND); - } else if (jj_2_1671(2)) { + } else if (jj_2_1673(2)) { jj_consume_token(SQL_TSI_MINUTE); - } else if (jj_2_1672(2)) { + } else if (jj_2_1674(2)) { jj_consume_token(SQL_TSI_SECOND); - } else if (jj_2_1673(2)) { + } else if (jj_2_1675(2)) { jj_consume_token(SQL_VARBINARY); - } else if (jj_2_1674(2)) { + } else if (jj_2_1676(2)) { jj_consume_token(STATEMENT); - } else if (jj_2_1675(2)) { + } else if (jj_2_1677(2)) { jj_consume_token(STYLE); - } else if (jj_2_1676(2)) { + } else if (jj_2_1678(2)) { jj_consume_token(TABLE_NAME); - } else if (jj_2_1677(2)) { + } else if (jj_2_1679(2)) { jj_consume_token(TIME_DIFF); - } else if (jj_2_1678(2)) { + } else if (jj_2_1680(2)) { jj_consume_token(TIMESTAMPDIFF); - } else if (jj_2_1679(2)) { + } else if (jj_2_1681(2)) { jj_consume_token(TOP_LEVEL_COUNT); - } else if (jj_2_1680(2)) { + } else if (jj_2_1682(2)) { jj_consume_token(TRANSACTIONS_COMMITTED); - } else if (jj_2_1681(2)) { + } else if (jj_2_1683(2)) { jj_consume_token(TRANSFORMS); - } else if (jj_2_1682(2)) { + } else if (jj_2_1684(2)) { jj_consume_token(TRIGGER_SCHEMA); - } else if (jj_2_1683(2)) { + } else if (jj_2_1685(2)) { jj_consume_token(UNBOUNDED); - } else if (jj_2_1684(2)) { + } else if (jj_2_1686(2)) { jj_consume_token(UNDER); - } else if (jj_2_1685(2)) { + } else if (jj_2_1687(2)) { jj_consume_token(USAGE); - } else if (jj_2_1686(2)) { + } else if (jj_2_1688(2)) { jj_consume_token(USER_DEFINED_TYPE_NAME); - } else if (jj_2_1687(2)) { + } else if (jj_2_1689(2)) { jj_consume_token(UTF32); - } else if (jj_2_1688(2)) { + } else if (jj_2_1690(2)) { jj_consume_token(VIEW); - } else if (jj_2_1689(2)) { + } else if (jj_2_1691(2)) { jj_consume_token(WORK); - } else if (jj_2_1690(2)) { + } else if (jj_2_1692(2)) { jj_consume_token(XML); - } else if (jj_2_1691(2)) { + } else if (jj_2_1693(2)) { jj_consume_token(TEMPLATE); - } else if (jj_2_1692(2)) { + } else if (jj_2_1694(2)) { jj_consume_token(ATOMICITY); - } else if (jj_2_1693(2)) { + } else if (jj_2_1695(2)) { jj_consume_token(CACHE_NAME); - } else if (jj_2_1694(2)) { + } else if (jj_2_1696(2)) { jj_consume_token(ENCRYPTED); - } else if (jj_2_1695(2)) { + } else if (jj_2_1697(2)) { jj_consume_token(LOGGING); - } else if (jj_2_1696(2)) { + } else if (jj_2_1698(2)) { jj_consume_token(KILL); - } else if (jj_2_1697(2)) { + } else if (jj_2_1699(2)) { jj_consume_token(SERVICE); - } else if (jj_2_1698(2)) { + } else if (jj_2_1700(2)) { jj_consume_token(QUERY); - } else if (jj_2_1699(2)) { + } else if (jj_2_1701(2)) { jj_consume_token(ANALYZE); - } else if (jj_2_1700(2)) { + } else if (jj_2_1702(2)) { jj_consume_token(ABS); - } else if (jj_2_1701(2)) { + } else if (jj_2_1703(2)) { jj_consume_token(ARE); - } else if (jj_2_1702(2)) { + } else if (jj_2_1704(2)) { jj_consume_token(ASOF); - } else if (jj_2_1703(2)) { + } else if (jj_2_1705(2)) { jj_consume_token(AUTHORIZATION); - } else if (jj_2_1704(2)) { + } else if (jj_2_1706(2)) { jj_consume_token(BEGIN_FRAME); - } else if (jj_2_1705(2)) { + } else if (jj_2_1707(2)) { jj_consume_token(BINARY); - } else if (jj_2_1706(2)) { + } else if (jj_2_1708(2)) { jj_consume_token(BOOLEAN); - } else if (jj_2_1707(2)) { + } else if (jj_2_1709(2)) { jj_consume_token(CARDINALITY); - } else if (jj_2_1708(2)) { + } else if (jj_2_1710(2)) { jj_consume_token(CEILING); - } else if (jj_2_1709(2)) { + } else if (jj_2_1711(2)) { jj_consume_token(CHARACTER_LENGTH); - } else if (jj_2_1710(2)) { + } else if (jj_2_1712(2)) { jj_consume_token(CLASSIFIER); - } else if (jj_2_1711(2)) { + } else if (jj_2_1713(2)) { jj_consume_token(COALESCE); - } else if (jj_2_1712(2)) { + } else if (jj_2_1714(2)) { jj_consume_token(COMMIT); - } else if (jj_2_1713(2)) { + } else if (jj_2_1715(2)) { jj_consume_token(CONTAINS); - } else if (jj_2_1714(2)) { + } else if (jj_2_1716(2)) { jj_consume_token(CORRESPONDING); - } else if (jj_2_1715(2)) { + } else if (jj_2_1717(2)) { jj_consume_token(COVAR_SAMP); - } else if (jj_2_1716(2)) { + } else if (jj_2_1718(2)) { jj_consume_token(CURRENT); - } else if (jj_2_1717(2)) { + } else if (jj_2_1719(2)) { jj_consume_token(CURRENT_PATH); - } else if (jj_2_1718(2)) { + } else if (jj_2_1720(2)) { jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); - } else if (jj_2_1719(2)) { + } else if (jj_2_1721(2)) { jj_consume_token(DATE); - } else if (jj_2_1720(2)) { + } else if (jj_2_1722(2)) { jj_consume_token(DEALLOCATE); - } else if (jj_2_1721(2)) { + } else if (jj_2_1723(2)) { jj_consume_token(DECLARE); - } else if (jj_2_1722(2)) { + } else if (jj_2_1724(2)) { jj_consume_token(DEREF); - } else if (jj_2_1723(2)) { + } else if (jj_2_1725(2)) { jj_consume_token(DISALLOW); - } else if (jj_2_1724(2)) { + } else if (jj_2_1726(2)) { jj_consume_token(DYNAMIC); - } else if (jj_2_1725(2)) { + } else if (jj_2_1727(2)) { jj_consume_token(EMPTY); - } else if (jj_2_1726(2)) { + } else if (jj_2_1728(2)) { jj_consume_token(END_FRAME); - } else if (jj_2_1727(2)) { + } else if (jj_2_1729(2)) { jj_consume_token(ESCAPE); - } else if (jj_2_1728(2)) { + } else if (jj_2_1730(2)) { jj_consume_token(EXECUTE); - } else if (jj_2_1729(2)) { + } else if (jj_2_1731(2)) { jj_consume_token(EXTERNAL); - } else if (jj_2_1730(2)) { + } else if (jj_2_1732(2)) { jj_consume_token(FIRST_VALUE); - } else if (jj_2_1731(2)) { + } else if (jj_2_1733(2)) { jj_consume_token(FOREIGN); - } else if (jj_2_1732(2)) { + } else if (jj_2_1734(2)) { jj_consume_token(FUNCTION); - } else if (jj_2_1733(2)) { + } else if (jj_2_1735(2)) { jj_consume_token(GLOBAL); - } else if (jj_2_1734(2)) { + } else if (jj_2_1736(2)) { jj_consume_token(GROUPS); - } else if (jj_2_1735(2)) { + } else if (jj_2_1737(2)) { jj_consume_token(IDENTITY); - } else if (jj_2_1736(2)) { + } else if (jj_2_1738(2)) { jj_consume_token(INITIAL); - } else if (jj_2_1737(2)) { + } else if (jj_2_1739(2)) { jj_consume_token(INT); - } else if (jj_2_1738(2)) { + } else if (jj_2_1740(2)) { jj_consume_token(JSON_ARRAY); - } else if (jj_2_1739(2)) { + } else if (jj_2_1741(2)) { jj_consume_token(JSON_OBJECT); - } else if (jj_2_1740(2)) { + } else if (jj_2_1742(2)) { jj_consume_token(JSON_SCOPE); - } else if (jj_2_1741(2)) { + } else if (jj_2_1743(2)) { jj_consume_token(LANGUAGE); - } else if (jj_2_1742(2)) { + } else if (jj_2_1744(2)) { jj_consume_token(LATERAL); - } else if (jj_2_1743(2)) { + } else if (jj_2_1745(2)) { jj_consume_token(LN); - } else if (jj_2_1744(2)) { + } else if (jj_2_1746(2)) { jj_consume_token(MATCH); - } else if (jj_2_1745(2)) { + } else if (jj_2_1747(2)) { jj_consume_token(MATCH_NUMBER); - } else if (jj_2_1746(2)) { + } else if (jj_2_1748(2)) { jj_consume_token(MEASURE); - } else if (jj_2_1747(2)) { + } else if (jj_2_1749(2)) { jj_consume_token(METHOD); - } else if (jj_2_1748(2)) { + } else if (jj_2_1750(2)) { jj_consume_token(MOD); - } else if (jj_2_1749(2)) { + } else if (jj_2_1751(2)) { jj_consume_token(MONTH); - } else if (jj_2_1750(2)) { + } else if (jj_2_1752(2)) { jj_consume_token(NCHAR); - } else if (jj_2_1751(2)) { + } else if (jj_2_1753(2)) { jj_consume_token(NEXT); - } else if (jj_2_1752(2)) { + } else if (jj_2_1754(2)) { jj_consume_token(NORMALIZE); - } else if (jj_2_1753(2)) { + } else if (jj_2_1755(2)) { jj_consume_token(NULLIF); - } else if (jj_2_1754(2)) { + } else if (jj_2_1756(2)) { jj_consume_token(OCTET_LENGTH); - } else if (jj_2_1755(2)) { + } else if (jj_2_1757(2)) { jj_consume_token(OMIT); - } else if (jj_2_1756(2)) { + } else if (jj_2_1758(2)) { jj_consume_token(OPEN); - } else if (jj_2_1757(2)) { + } else if (jj_2_1759(2)) { jj_consume_token(OVER); - } else if (jj_2_1758(2)) { + } else if (jj_2_1760(2)) { jj_consume_token(PARAMETER); - } else if (jj_2_1759(2)) { + } else if (jj_2_1761(2)) { jj_consume_token(PERCENT); - } else if (jj_2_1760(2)) { + } else if (jj_2_1762(2)) { jj_consume_token(PERCENT_RANK); - } else if (jj_2_1761(2)) { + } else if (jj_2_1763(2)) { jj_consume_token(PORTION); - } else if (jj_2_1762(2)) { + } else if (jj_2_1764(2)) { jj_consume_token(POWER); - } else if (jj_2_1763(2)) { + } else if (jj_2_1765(2)) { jj_consume_token(PREPARE); - } else if (jj_2_1764(2)) { + } else if (jj_2_1766(2)) { jj_consume_token(QUALIFY); - } else if (jj_2_1765(2)) { + } else if (jj_2_1767(2)) { jj_consume_token(READS); - } else if (jj_2_1766(2)) { + } else if (jj_2_1768(2)) { jj_consume_token(REF); - } else if (jj_2_1767(2)) { + } else if (jj_2_1769(2)) { jj_consume_token(REGR_AVGX); - } else if (jj_2_1768(2)) { + } else if (jj_2_1770(2)) { jj_consume_token(REGR_INTERCEPT); - } else if (jj_2_1769(2)) { + } else if (jj_2_1771(2)) { jj_consume_token(REGR_SXX); - } else if (jj_2_1770(2)) { + } else if (jj_2_1772(2)) { jj_consume_token(RELEASE); - } else if (jj_2_1771(2)) { + } else if (jj_2_1773(2)) { jj_consume_token(RETURN); - } else if (jj_2_1772(2)) { + } else if (jj_2_1774(2)) { jj_consume_token(ROLLBACK); - } else if (jj_2_1773(2)) { + } else if (jj_2_1775(2)) { jj_consume_token(ROW_NUMBER); - } else if (jj_2_1774(2)) { + } else if (jj_2_1776(2)) { jj_consume_token(SAFE_OFFSET); - } else if (jj_2_1775(2)) { + } else if (jj_2_1777(2)) { jj_consume_token(SCOPE); - } else if (jj_2_1776(2)) { + } else if (jj_2_1778(2)) { jj_consume_token(SECOND); - } else if (jj_2_1777(2)) { + } else if (jj_2_1779(2)) { jj_consume_token(SESSION_USER); - } else if (jj_2_1778(2)) { + } else if (jj_2_1780(2)) { jj_consume_token(SKIP_); - } else if (jj_2_1779(2)) { + } else if (jj_2_1781(2)) { jj_consume_token(SPECIFICTYPE); - } else if (jj_2_1780(2)) { + } else if (jj_2_1782(2)) { jj_consume_token(SQLSTATE); - } else if (jj_2_1781(2)) { + } else if (jj_2_1783(2)) { jj_consume_token(START); - } else if (jj_2_1782(2)) { + } else if (jj_2_1784(2)) { jj_consume_token(STDDEV_SAMP); - } else if (jj_2_1783(2)) { + } else if (jj_2_1785(2)) { jj_consume_token(SUBSET); - } else if (jj_2_1784(2)) { + } else if (jj_2_1786(2)) { jj_consume_token(SUCCEEDS); - } else if (jj_2_1785(2)) { + } else if (jj_2_1787(2)) { jj_consume_token(SYSTEM_TIME); - } else if (jj_2_1786(2)) { + } else if (jj_2_1788(2)) { jj_consume_token(TIME); - } else if (jj_2_1787(2)) { + } else if (jj_2_1789(2)) { jj_consume_token(TIMEZONE_MINUTE); - } else if (jj_2_1788(2)) { + } else if (jj_2_1790(2)) { jj_consume_token(TRANSLATE_REGEX); - } else if (jj_2_1789(2)) { + } else if (jj_2_1791(2)) { jj_consume_token(TRIGGER); - } else if (jj_2_1790(2)) { + } else if (jj_2_1792(2)) { jj_consume_token(TRUNCATE); - } else if (jj_2_1791(2)) { + } else if (jj_2_1793(2)) { jj_consume_token(UNIQUE); - } else if (jj_2_1792(2)) { + } else if (jj_2_1794(2)) { jj_consume_token(UPSERT); - } else if (jj_2_1793(2)) { + } else if (jj_2_1795(2)) { jj_consume_token(VALUE_OF); - } else if (jj_2_1794(2)) { + } else if (jj_2_1796(2)) { jj_consume_token(VARCHAR); - } else if (jj_2_1795(2)) { + } else if (jj_2_1797(2)) { jj_consume_token(VAR_SAMP); - } else if (jj_2_1796(2)) { + } else if (jj_2_1798(2)) { jj_consume_token(WIDTH_BUCKET); - } else if (jj_2_1797(2)) { + } else if (jj_2_1799(2)) { jj_consume_token(WITHOUT); - } else if (jj_2_1798(2)) { + } else if (jj_2_1800(2)) { jj_consume_token(TUESDAY); - } else if (jj_2_1799(2)) { + } else if (jj_2_1801(2)) { jj_consume_token(FRIDAY); } else { jj_consume_token(-1); @@ -24113,31 +24119,45 @@ final private boolean jj_2_1799(int xla) { finally { jj_save(1798, xla); } } + final private boolean jj_2_1800(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1800(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1799, xla); } + } + + final private boolean jj_2_1801(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1801(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1800, xla); } + } + final private boolean jj_3R_176() { return false; } - final private boolean jj_3_653() { + final private boolean jj_3_655() { if (jj_scan_token(MILLENNIUM)) return true; return false; } - final private boolean jj_3_270() { + final private boolean jj_3_272() { if (jj_3R_122()) return true; return false; } - final private boolean jj_3_652() { + final private boolean jj_3_654() { if (jj_scan_token(CENTURY)) return true; return false; } - final private boolean jj_3_651() { + final private boolean jj_3_653() { if (jj_scan_token(DECADE)) return true; return false; } - final private boolean jj_3_650() { + final private boolean jj_3_652() { if (jj_scan_token(EPOCH)) return true; return false; } @@ -24146,33 +24166,33 @@ final private boolean jj_3R_270() { return false; } - final private boolean jj_3_649() { + final private boolean jj_3_651() { if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_269() { + final private boolean jj_3_271() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_648() { + final private boolean jj_3_650() { if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_647() { + final private boolean jj_3_649() { if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_271() { + final private boolean jj_3_273() { Token xsp; xsp = jj_scanpos; - if (jj_3_269()) jj_scanpos = xsp; + if (jj_3_271()) jj_scanpos = xsp; if (jj_3R_84()) return true; xsp = jj_scanpos; - if (jj_3_270()) { + if (jj_3_272()) { jj_scanpos = xsp; if (jj_3R_176()) return true; } @@ -24183,113 +24203,113 @@ final private boolean jj_3R_370() { return false; } - final private boolean jj_3_632() { + final private boolean jj_3_634() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_269()) return true; return false; } - final private boolean jj_3_268() { + final private boolean jj_3_270() { if (jj_3R_175()) return true; return false; } - final private boolean jj_3_267() { + final private boolean jj_3_269() { if (jj_3R_174()) return true; return false; } - final private boolean jj_3_646() { + final private boolean jj_3_648() { if (jj_scan_token(WEEK)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_632()) { + if (jj_3_634()) { jj_scanpos = xsp; if (jj_3R_270()) return true; } return false; } - final private boolean jj_3_266() { + final private boolean jj_3_268() { if (jj_3R_173()) return true; return false; } - final private boolean jj_3_645() { + final private boolean jj_3_647() { if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_644() { + final private boolean jj_3_646() { if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3_261() { + final private boolean jj_3_263() { if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_643() { + final private boolean jj_3_645() { if (jj_scan_token(DOY)) return true; return false; } - final private boolean jj_3_642() { + final private boolean jj_3_644() { if (jj_scan_token(DOW)) return true; return false; } - final private boolean jj_3_265() { + final private boolean jj_3_267() { Token xsp; xsp = jj_scanpos; - if (jj_3_261()) jj_scanpos = xsp; + if (jj_3_263()) jj_scanpos = xsp; if (jj_3R_172()) return true; return false; } - final private boolean jj_3_641() { + final private boolean jj_3_643() { if (jj_scan_token(DAYOFYEAR)) return true; return false; } - final private boolean jj_3_640() { + final private boolean jj_3_642() { if (jj_scan_token(DAYOFWEEK)) return true; return false; } - final private boolean jj_3_639() { + final private boolean jj_3_641() { if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3_638() { + final private boolean jj_3_640() { if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_260() { + final private boolean jj_3_262() { if (jj_scan_token(WITH)) return true; if (jj_scan_token(ORDINALITY)) return true; return false; } - final private boolean jj_3_637() { + final private boolean jj_3_639() { if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3_636() { + final private boolean jj_3_638() { if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_635() { + final private boolean jj_3_637() { if (jj_scan_token(MILLISECOND)) return true; return false; } - final private boolean jj_3_634() { + final private boolean jj_3_636() { if (jj_scan_token(MICROSECOND)) return true; return false; } @@ -24297,10 +24317,6 @@ final private boolean jj_3_634() { final private boolean jj_3R_268() { Token xsp; xsp = jj_scanpos; - if (jj_3_633()) { - jj_scanpos = xsp; - if (jj_3_634()) { - jj_scanpos = xsp; if (jj_3_635()) { jj_scanpos = xsp; if (jj_3_636()) { @@ -24337,7 +24353,11 @@ final private boolean jj_3R_268() { jj_scanpos = xsp; if (jj_3_652()) { jj_scanpos = xsp; - if (jj_3_653()) return true; + if (jj_3_653()) { + jj_scanpos = xsp; + if (jj_3_654()) { + jj_scanpos = xsp; + if (jj_3_655()) return true; } } } @@ -24361,59 +24381,59 @@ final private boolean jj_3R_268() { return false; } - final private boolean jj_3_633() { + final private boolean jj_3_635() { if (jj_scan_token(NANOSECOND)) return true; return false; } - final private boolean jj_3_259() { + final private boolean jj_3_261() { if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_258() { + final private boolean jj_3_260() { if (jj_3R_166()) return true; return false; } - final private boolean jj_3_264() { + final private boolean jj_3_266() { Token xsp; xsp = jj_scanpos; - if (jj_3_259()) jj_scanpos = xsp; + if (jj_3_261()) jj_scanpos = xsp; if (jj_scan_token(UNNEST)) return true; if (jj_3R_171()) return true; return false; } - final private boolean jj_3_255() { + final private boolean jj_3_257() { if (jj_3R_166()) return true; return false; } - final private boolean jj_3_257() { + final private boolean jj_3_259() { if (jj_scan_token(LATERAL)) return true; return false; } - final private boolean jj_3_254() { + final private boolean jj_3_256() { if (jj_3R_165()) return true; return false; } - final private boolean jj_3_253() { + final private boolean jj_3_255() { if (jj_3R_156()) return true; return false; } - final private boolean jj_3_263() { + final private boolean jj_3_265() { Token xsp; xsp = jj_scanpos; - if (jj_3_257()) jj_scanpos = xsp; + if (jj_3_259()) jj_scanpos = xsp; if (jj_3R_170()) return true; return false; } - final private boolean jj_3_252() { + final private boolean jj_3_254() { if (jj_3R_155()) return true; return false; } @@ -24421,26 +24441,26 @@ final private boolean jj_3_252() { final private boolean jj_3R_169() { Token xsp; xsp = jj_scanpos; - if (jj_3_252()) { + if (jj_3_254()) { jj_scanpos = xsp; if (jj_3R_370()) return true; } xsp = jj_scanpos; - if (jj_3_253()) jj_scanpos = xsp; + if (jj_3_255()) jj_scanpos = xsp; if (jj_3R_371()) return true; xsp = jj_scanpos; - if (jj_3_254()) jj_scanpos = xsp; + if (jj_3_256()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_255()) jj_scanpos = xsp; + if (jj_3_257()) jj_scanpos = xsp; return false; } - final private boolean jj_3_256() { + final private boolean jj_3_258() { if (jj_3R_167()) return true; return false; } - final private boolean jj_3_631() { + final private boolean jj_3_633() { if (jj_3R_84()) return true; return false; } @@ -24448,23 +24468,23 @@ final private boolean jj_3_631() { final private boolean jj_3R_330() { Token xsp; xsp = jj_scanpos; - if (jj_3_630()) { + if (jj_3_632()) { jj_scanpos = xsp; - if (jj_3_631()) return true; + if (jj_3_633()) return true; } return false; } - final private boolean jj_3_630() { + final private boolean jj_3_632() { if (jj_3R_268()) return true; return false; } - final private boolean jj_3_262() { + final private boolean jj_3_264() { if (jj_3R_168()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_256()) { + if (jj_3_258()) { jj_scanpos = xsp; if (jj_3R_169()) return true; } @@ -24474,37 +24494,37 @@ final private boolean jj_3_262() { final private boolean jj_3R_343() { Token xsp; xsp = jj_scanpos; - if (jj_3_262()) { - jj_scanpos = xsp; - if (jj_3_263()) { - jj_scanpos = xsp; if (jj_3_264()) { jj_scanpos = xsp; if (jj_3_265()) { jj_scanpos = xsp; - if (jj_3_266()) return true; + if (jj_3_266()) { + jj_scanpos = xsp; + if (jj_3_267()) { + jj_scanpos = xsp; + if (jj_3_268()) return true; } } } } xsp = jj_scanpos; - if (jj_3_267()) jj_scanpos = xsp; + if (jj_3_269()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_268()) jj_scanpos = xsp; + if (jj_3_270()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_271()) jj_scanpos = xsp; + if (jj_3_273()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_272()) jj_scanpos = xsp; + if (jj_3_274()) jj_scanpos = xsp; return false; } - final private boolean jj_3_626() { + final private boolean jj_3_628() { if (jj_scan_token(COMMA)) return true; if (jj_3R_258()) return true; return false; } - final private boolean jj_3_627() { + final private boolean jj_3_629() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_258()) return true; return false; @@ -24515,56 +24535,52 @@ final private boolean jj_3R_69() { return false; } - final private boolean jj_3_629() { + final private boolean jj_3_631() { if (jj_3R_256()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_627()) jj_scanpos = xsp; + if (jj_3_629()) jj_scanpos = xsp; return false; } - final private boolean jj_3_625() { + final private boolean jj_3_627() { if (jj_3R_255()) return true; return false; } - final private boolean jj_3_624() { + final private boolean jj_3_626() { if (jj_3R_254()) return true; return false; } - final private boolean jj_3_623() { + final private boolean jj_3_625() { if (jj_3R_263()) return true; return false; } - final private boolean jj_3_622() { + final private boolean jj_3_624() { if (jj_3R_262()) return true; return false; } - final private boolean jj_3_621() { + final private boolean jj_3_623() { if (jj_3R_253()) return true; return false; } - final private boolean jj_3_620() { + final private boolean jj_3_622() { if (jj_3R_261()) return true; return false; } - final private boolean jj_3_619() { + final private boolean jj_3_621() { if (jj_3R_259()) return true; return false; } - final private boolean jj_3_628() { + final private boolean jj_3_630() { Token xsp; xsp = jj_scanpos; - if (jj_3_619()) { - jj_scanpos = xsp; - if (jj_3_620()) { - jj_scanpos = xsp; if (jj_3_621()) { jj_scanpos = xsp; if (jj_3_622()) { @@ -24573,7 +24589,11 @@ final private boolean jj_3_628() { jj_scanpos = xsp; if (jj_3_624()) { jj_scanpos = xsp; - if (jj_3_625()) return true; + if (jj_3_625()) { + jj_scanpos = xsp; + if (jj_3_626()) { + jj_scanpos = xsp; + if (jj_3_627()) return true; } } } @@ -24587,9 +24607,9 @@ final private boolean jj_3_628() { final private boolean jj_3R_252() { Token xsp; xsp = jj_scanpos; - if (jj_3_628()) { + if (jj_3_630()) { jj_scanpos = xsp; - if (jj_3_629()) return true; + if (jj_3_631()) return true; } return false; } @@ -24598,25 +24618,25 @@ final private boolean jj_3R_267() { return false; } - final private boolean jj_3_609() { + final private boolean jj_3_611() { if (jj_scan_token(COMMA)) return true; if (jj_3R_258()) return true; return false; } - final private boolean jj_3_251() { + final private boolean jj_3_253() { if (jj_scan_token(OUTER)) return true; if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3_610() { + final private boolean jj_3_612() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_258()) return true; return false; } - final private boolean jj_3_607() { + final private boolean jj_3_609() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_258()) return true; return false; @@ -24626,34 +24646,34 @@ final private boolean jj_3R_266() { return false; } - final private boolean jj_3_618() { + final private boolean jj_3_620() { if (jj_3R_256()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_610()) { + if (jj_3_612()) { jj_scanpos = xsp; if (jj_3R_267()) return true; } return false; } - final private boolean jj_3_608() { + final private boolean jj_3_610() { if (jj_scan_token(TO)) return true; if (jj_3R_256()) return true; return false; } - final private boolean jj_3_603() { + final private boolean jj_3_605() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_258()) return true; return false; } - final private boolean jj_3_605() { + final private boolean jj_3_607() { if (jj_3R_256()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_603()) jj_scanpos = xsp; + if (jj_3_605()) jj_scanpos = xsp; return false; } @@ -24661,23 +24681,23 @@ final private boolean jj_3R_265() { return false; } - final private boolean jj_3_250() { + final private boolean jj_3_252() { if (jj_scan_token(CROSS)) return true; if (jj_scan_token(APPLY)) return true; return false; } - final private boolean jj_3_604() { + final private boolean jj_3_606() { if (jj_3R_255()) return true; return false; } - final private boolean jj_3_617() { + final private boolean jj_3_619() { if (jj_3R_255()) return true; if (jj_3R_257()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_608()) { + if (jj_3_610()) { jj_scanpos = xsp; if (jj_3R_266()) return true; } @@ -24688,18 +24708,18 @@ final private boolean jj_3R_164() { return false; } - final private boolean jj_3_606() { + final private boolean jj_3_608() { if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_604()) { + if (jj_3_606()) { jj_scanpos = xsp; - if (jj_3_605()) return true; + if (jj_3_607()) return true; } return false; } - final private boolean jj_3_601() { + final private boolean jj_3_603() { if (jj_3R_256()) return true; if (jj_3R_257()) return true; return false; @@ -24709,67 +24729,67 @@ final private boolean jj_3R_264() { return false; } - final private boolean jj_3_600() { + final private boolean jj_3_602() { if (jj_3R_255()) return true; return false; } - final private boolean jj_3_616() { + final private boolean jj_3_618() { if (jj_3R_254()) return true; if (jj_3R_257()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_606()) { + if (jj_3_608()) { jj_scanpos = xsp; if (jj_3R_265()) return true; } return false; } - final private boolean jj_3_599() { + final private boolean jj_3_601() { if (jj_3R_254()) return true; return false; } - final private boolean jj_3_248() { + final private boolean jj_3_250() { if (jj_scan_token(USING)) return true; if (jj_3R_122()) return true; return false; } - final private boolean jj_3_602() { + final private boolean jj_3_604() { if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_599()) { + if (jj_3_601()) { jj_scanpos = xsp; - if (jj_3_600()) { + if (jj_3_602()) { jj_scanpos = xsp; - if (jj_3_601()) return true; + if (jj_3_603()) return true; } } return false; } - final private boolean jj_3_615() { + final private boolean jj_3_617() { if (jj_3R_263()) return true; if (jj_3R_257()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_602()) { + if (jj_3_604()) { jj_scanpos = xsp; if (jj_3R_264()) return true; } return false; } - final private boolean jj_3_614() { + final private boolean jj_3_616() { if (jj_3R_262()) return true; if (jj_3R_257()) return true; return false; } - final private boolean jj_3_613() { + final private boolean jj_3_615() { if (jj_3R_253()) return true; if (jj_3R_257()) return true; return false; @@ -24779,24 +24799,24 @@ final private boolean jj_3R_260() { return false; } - final private boolean jj_3_598() { + final private boolean jj_3_600() { if (jj_scan_token(TO)) return true; if (jj_3R_253()) return true; return false; } - final private boolean jj_3_612() { + final private boolean jj_3_614() { if (jj_3R_261()) return true; if (jj_3R_257()) return true; return false; } - final private boolean jj_3_611() { + final private boolean jj_3_613() { if (jj_3R_259()) return true; if (jj_3R_257()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_598()) { + if (jj_3_600()) { jj_scanpos = xsp; if (jj_3R_260()) return true; } @@ -24806,10 +24826,6 @@ final private boolean jj_3_611() { final private boolean jj_3R_213() { Token xsp; xsp = jj_scanpos; - if (jj_3_611()) { - jj_scanpos = xsp; - if (jj_3_612()) { - jj_scanpos = xsp; if (jj_3_613()) { jj_scanpos = xsp; if (jj_3_614()) { @@ -24820,7 +24836,11 @@ final private boolean jj_3R_213() { jj_scanpos = xsp; if (jj_3_617()) { jj_scanpos = xsp; - if (jj_3_618()) return true; + if (jj_3_618()) { + jj_scanpos = xsp; + if (jj_3_619()) { + jj_scanpos = xsp; + if (jj_3_620()) return true; } } } @@ -24831,16 +24851,16 @@ final private boolean jj_3R_213() { return false; } - final private boolean jj_3_246() { + final private boolean jj_3_248() { if (jj_scan_token(MATCH_CONDITION)) return true; if (jj_3R_81()) return true; return false; } - final private boolean jj_3_247() { + final private boolean jj_3_249() { Token xsp; xsp = jj_scanpos; - if (jj_3_246()) jj_scanpos = xsp; + if (jj_3_248()) jj_scanpos = xsp; if (jj_scan_token(ON)) return true; if (jj_3R_81()) return true; return false; @@ -24849,25 +24869,25 @@ final private boolean jj_3_247() { final private boolean jj_3R_66() { Token xsp; xsp = jj_scanpos; - if (jj_3_249()) { + if (jj_3_251()) { jj_scanpos = xsp; - if (jj_3_250()) { + if (jj_3_252()) { jj_scanpos = xsp; - if (jj_3_251()) return true; + if (jj_3_253()) return true; } } return false; } - final private boolean jj_3_249() { + final private boolean jj_3_251() { if (jj_3R_162()) return true; if (jj_3R_163()) return true; if (jj_3R_69()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_247()) { + if (jj_3_249()) { jj_scanpos = xsp; - if (jj_3_248()) { + if (jj_3_250()) { jj_scanpos = xsp; if (jj_3R_164()) return true; } @@ -24875,7 +24895,7 @@ final private boolean jj_3_249() { return false; } - final private boolean jj_3_597() { + final private boolean jj_3_599() { if (jj_scan_token(SECONDS)) return true; return false; } @@ -24883,19 +24903,19 @@ final private boolean jj_3_597() { final private boolean jj_3R_256() { Token xsp; xsp = jj_scanpos; - if (jj_3_596()) { + if (jj_3_598()) { jj_scanpos = xsp; - if (jj_3_597()) return true; + if (jj_3_599()) return true; } return false; } - final private boolean jj_3_596() { + final private boolean jj_3_598() { if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_595() { + final private boolean jj_3_597() { if (jj_scan_token(MINUTES)) return true; return false; } @@ -24903,19 +24923,19 @@ final private boolean jj_3_595() { final private boolean jj_3R_255() { Token xsp; xsp = jj_scanpos; - if (jj_3_594()) { + if (jj_3_596()) { jj_scanpos = xsp; - if (jj_3_595()) return true; + if (jj_3_597()) return true; } return false; } - final private boolean jj_3_594() { + final private boolean jj_3_596() { if (jj_scan_token(MINUTE)) return true; return false; } - final private boolean jj_3_593() { + final private boolean jj_3_595() { if (jj_scan_token(HOURS)) return true; return false; } @@ -24923,24 +24943,24 @@ final private boolean jj_3_593() { final private boolean jj_3R_254() { Token xsp; xsp = jj_scanpos; - if (jj_3_592()) { + if (jj_3_594()) { jj_scanpos = xsp; - if (jj_3_593()) return true; + if (jj_3_595()) return true; } return false; } - final private boolean jj_3_592() { + final private boolean jj_3_594() { if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_245() { + final private boolean jj_3_247() { if (jj_3R_66()) return true; return false; } - final private boolean jj_3_591() { + final private boolean jj_3_593() { if (jj_scan_token(DAYS)) return true; return false; } @@ -24948,25 +24968,25 @@ final private boolean jj_3_591() { final private boolean jj_3R_263() { Token xsp; xsp = jj_scanpos; - if (jj_3_590()) { + if (jj_3_592()) { jj_scanpos = xsp; - if (jj_3_591()) return true; + if (jj_3_593()) return true; } return false; } - final private boolean jj_3_590() { + final private boolean jj_3_592() { if (jj_scan_token(DAY)) return true; return false; } - final private boolean jj_3_244() { + final private boolean jj_3_246() { if (jj_scan_token(COMMA)) return true; if (jj_3R_69()) return true; return false; } - final private boolean jj_3_589() { + final private boolean jj_3_591() { if (jj_scan_token(WEEKS)) return true; return false; } @@ -24974,19 +24994,19 @@ final private boolean jj_3_589() { final private boolean jj_3R_262() { Token xsp; xsp = jj_scanpos; - if (jj_3_588()) { + if (jj_3_590()) { jj_scanpos = xsp; - if (jj_3_589()) return true; + if (jj_3_591()) return true; } return false; } - final private boolean jj_3_588() { + final private boolean jj_3_590() { if (jj_scan_token(WEEK)) return true; return false; } - final private boolean jj_3_587() { + final private boolean jj_3_589() { if (jj_scan_token(MONTHS)) return true; return false; } @@ -24994,14 +25014,14 @@ final private boolean jj_3_587() { final private boolean jj_3R_253() { Token xsp; xsp = jj_scanpos; - if (jj_3_586()) { + if (jj_3_588()) { jj_scanpos = xsp; - if (jj_3_587()) return true; + if (jj_3_589()) return true; } return false; } - final private boolean jj_3_586() { + final private boolean jj_3_588() { if (jj_scan_token(MONTH)) return true; return false; } @@ -25011,7 +25031,7 @@ final private boolean jj_3R_148() { return false; } - final private boolean jj_3_585() { + final private boolean jj_3_587() { if (jj_scan_token(QUARTERS)) return true; return false; } @@ -25019,34 +25039,34 @@ final private boolean jj_3_585() { final private boolean jj_3R_261() { Token xsp; xsp = jj_scanpos; - if (jj_3_584()) { + if (jj_3_586()) { jj_scanpos = xsp; - if (jj_3_585()) return true; + if (jj_3_587()) return true; } return false; } - final private boolean jj_3_584() { + final private boolean jj_3_586() { if (jj_scan_token(QUARTER)) return true; return false; } - final private boolean jj_3_233() { + final private boolean jj_3_235() { if (jj_scan_token(ASOF)) return true; return false; } - final private boolean jj_3_236() { + final private boolean jj_3_238() { if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3_583() { + final private boolean jj_3_585() { if (jj_scan_token(YEARS)) return true; return false; } - final private boolean jj_3_235() { + final private boolean jj_3_237() { if (jj_scan_token(OUTER)) return true; return false; } @@ -25054,107 +25074,107 @@ final private boolean jj_3_235() { final private boolean jj_3R_259() { Token xsp; xsp = jj_scanpos; - if (jj_3_582()) { + if (jj_3_584()) { jj_scanpos = xsp; - if (jj_3_583()) return true; + if (jj_3_585()) return true; } return false; } - final private boolean jj_3_582() { + final private boolean jj_3_584() { if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_232() { + final private boolean jj_3_234() { if (jj_scan_token(OUTER)) return true; return false; } - final private boolean jj_3_234() { + final private boolean jj_3_236() { Token xsp; xsp = jj_scanpos; - if (jj_3_232()) { + if (jj_3_234()) { jj_scanpos = xsp; - if (jj_3_233()) return true; + if (jj_3_235()) return true; } return false; } - final private boolean jj_3_243() { + final private boolean jj_3_245() { if (jj_scan_token(CROSS)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_242() { + final private boolean jj_3_244() { if (jj_scan_token(FULL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_236()) jj_scanpos = xsp; + if (jj_3_238()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_579() { + final private boolean jj_3_581() { if (jj_3R_150()) return true; return false; } - final private boolean jj_3_241() { + final private boolean jj_3_243() { if (jj_scan_token(RIGHT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_235()) jj_scanpos = xsp; + if (jj_3_237()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_578() { + final private boolean jj_3_580() { if (jj_3R_196()) return true; return false; } - final private boolean jj_3_240() { + final private boolean jj_3_242() { if (jj_scan_token(LEFT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_234()) jj_scanpos = xsp; + if (jj_3_236()) jj_scanpos = xsp; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_239() { + final private boolean jj_3_241() { if (jj_scan_token(ASOF)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_577() { + final private boolean jj_3_579() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_81()) return true; return false; } - final private boolean jj_3_238() { + final private boolean jj_3_240() { if (jj_scan_token(INNER)) return true; if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_237() { + final private boolean jj_3_239() { if (jj_scan_token(JOIN)) return true; return false; } - final private boolean jj_3_581() { + final private boolean jj_3_583() { Token xsp; xsp = jj_scanpos; - if (jj_3_577()) { + if (jj_3_579()) { jj_scanpos = xsp; - if (jj_3_578()) { + if (jj_3_580()) { jj_scanpos = xsp; - if (jj_3_579()) return true; + if (jj_3_581()) return true; } } if (jj_3R_252()) return true; @@ -25164,10 +25184,6 @@ final private boolean jj_3_581() { final private boolean jj_3R_163() { Token xsp; xsp = jj_scanpos; - if (jj_3_237()) { - jj_scanpos = xsp; - if (jj_3_238()) { - jj_scanpos = xsp; if (jj_3_239()) { jj_scanpos = xsp; if (jj_3_240()) { @@ -25176,7 +25192,11 @@ final private boolean jj_3R_163() { jj_scanpos = xsp; if (jj_3_242()) { jj_scanpos = xsp; - if (jj_3_243()) return true; + if (jj_3_243()) { + jj_scanpos = xsp; + if (jj_3_244()) { + jj_scanpos = xsp; + if (jj_3_245()) return true; } } } @@ -25186,7 +25206,7 @@ final private boolean jj_3R_163() { return false; } - final private boolean jj_3_580() { + final private boolean jj_3_582() { if (jj_3R_245()) return true; if (jj_3R_213()) return true; return false; @@ -25196,7 +25216,7 @@ final private boolean jj_3R_369() { return false; } - final private boolean jj_3_575() { + final private boolean jj_3_577() { if (jj_scan_token(PLUS)) return true; return false; } @@ -25204,29 +25224,29 @@ final private boolean jj_3_575() { final private boolean jj_3R_162() { Token xsp; xsp = jj_scanpos; - if (jj_3_231()) { + if (jj_3_233()) { jj_scanpos = xsp; if (jj_3R_369()) return true; } return false; } - final private boolean jj_3_231() { + final private boolean jj_3_233() { if (jj_scan_token(NATURAL)) return true; return false; } - final private boolean jj_3_574() { + final private boolean jj_3_576() { if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_576() { + final private boolean jj_3_578() { Token xsp; xsp = jj_scanpos; - if (jj_3_574()) { + if (jj_3_576()) { jj_scanpos = xsp; - if (jj_3_575()) return true; + if (jj_3_577()) return true; } return false; } @@ -25235,16 +25255,16 @@ final private boolean jj_3R_244() { if (jj_scan_token(INTERVAL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_576()) jj_scanpos = xsp; + if (jj_3_578()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_580()) { + if (jj_3_582()) { jj_scanpos = xsp; - if (jj_3_581()) return true; + if (jj_3_583()) return true; } return false; } - final private boolean jj_3_230() { + final private boolean jj_3_232() { if (jj_3R_81()) return true; return false; } @@ -25252,14 +25272,14 @@ final private boolean jj_3_230() { final private boolean jj_3R_363() { Token xsp; xsp = jj_scanpos; - if (jj_3_229()) { + if (jj_3_231()) { jj_scanpos = xsp; - if (jj_3_230()) return true; + if (jj_3_232()) return true; } return false; } - final private boolean jj_3_229() { + final private boolean jj_3_231() { if (jj_scan_token(STAR)) return true; return false; } @@ -25269,32 +25289,32 @@ final private boolean jj_3R_161() { return false; } - final private boolean jj_3_572() { + final private boolean jj_3_574() { if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3_227() { + final private boolean jj_3_229() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_573() { + final private boolean jj_3_575() { Token xsp; xsp = jj_scanpos; - if (jj_3_571()) { + if (jj_3_573()) { jj_scanpos = xsp; - if (jj_3_572()) return true; + if (jj_3_574()) return true; } return false; } - final private boolean jj_3_571() { + final private boolean jj_3_573() { if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_225() { + final private boolean jj_3_227() { if (jj_scan_token(MEASURE)) return true; return false; } @@ -25303,25 +25323,25 @@ final private boolean jj_3R_191() { if (jj_scan_token(INTERVAL)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_573()) jj_scanpos = xsp; + if (jj_3_575()) jj_scanpos = xsp; if (jj_3R_245()) return true; return false; } - final private boolean jj_3_226() { + final private boolean jj_3_228() { if (jj_scan_token(AS)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_225()) jj_scanpos = xsp; + if (jj_3_227()) jj_scanpos = xsp; return false; } - final private boolean jj_3_228() { + final private boolean jj_3_230() { Token xsp; xsp = jj_scanpos; - if (jj_3_226()) jj_scanpos = xsp; + if (jj_3_228()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_227()) { + if (jj_3_229()) { jj_scanpos = xsp; if (jj_3R_161()) return true; } @@ -25343,40 +25363,40 @@ final private boolean jj_3R_251() { return false; } - final private boolean jj_3_224() { + final private boolean jj_3_226() { if (jj_scan_token(VALUES)) return true; if (jj_3R_160()) return true; return false; } - final private boolean jj_3_568() { + final private boolean jj_3_570() { if (jj_3R_232()) return true; return false; } - final private boolean jj_3_223() { + final private boolean jj_3_225() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(VALUES)) return true; return false; } - final private boolean jj_3_570() { + final private boolean jj_3_572() { if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_568()) { + if (jj_3_570()) { jj_scanpos = xsp; if (jj_3R_251()) return true; } return false; } - final private boolean jj_3_222() { + final private boolean jj_3_224() { if (jj_3R_122()) return true; return false; } - final private boolean jj_3_567() { + final private boolean jj_3_569() { if (jj_3R_171()) return true; return false; } @@ -25387,18 +25407,18 @@ final private boolean jj_3R_158() { return false; } - final private boolean jj_3_566() { + final private boolean jj_3_568() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_569() { + final private boolean jj_3_571() { Token xsp; xsp = jj_scanpos; - if (jj_3_566()) { + if (jj_3_568()) { jj_scanpos = xsp; - if (jj_3_567()) return true; + if (jj_3_569()) return true; } return false; } @@ -25407,14 +25427,14 @@ final private boolean jj_3R_225() { if (jj_scan_token(MAP)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_569()) { + if (jj_3_571()) { jj_scanpos = xsp; - if (jj_3_570()) return true; + if (jj_3_572()) return true; } return false; } - final private boolean jj_3_221() { + final private boolean jj_3_223() { if (jj_scan_token(COMMA)) return true; if (jj_3R_150()) return true; return false; @@ -25424,18 +25444,18 @@ final private boolean jj_3R_395() { return false; } - final private boolean jj_3_563() { + final private boolean jj_3_565() { if (jj_scan_token(COMMA)) return true; if (jj_3R_250()) return true; return false; } - final private boolean jj_3_565() { + final private boolean jj_3_567() { if (jj_3R_250()) return true; return false; } - final private boolean jj_3_562() { + final private boolean jj_3_564() { if (jj_scan_token(COMMA)) return true; if (jj_3R_117()) return true; return false; @@ -25447,12 +25467,12 @@ final private boolean jj_3R_159() { return false; } - final private boolean jj_3_564() { + final private boolean jj_3_566() { if (jj_3R_117()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_562()) { jj_scanpos = xsp; break; } + if (jj_3_564()) { jj_scanpos = xsp; break; } } return false; } @@ -25461,9 +25481,9 @@ final private boolean jj_3R_250() { if (jj_scan_token(LBRACE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_564()) { + if (jj_3_566()) { jj_scanpos = xsp; - if (jj_3_565()) { + if (jj_3_567()) { jj_scanpos = xsp; if (jj_3R_395()) return true; } @@ -25471,12 +25491,12 @@ final private boolean jj_3R_250() { return false; } - final private boolean jj_3_218() { + final private boolean jj_3_220() { if (jj_3R_158()) return true; return false; } - final private boolean jj_3_220() { + final private boolean jj_3_222() { if (jj_3R_158()) return true; return false; } @@ -25485,46 +25505,46 @@ final private boolean jj_3R_249() { return false; } - final private boolean jj_3_559() { + final private boolean jj_3_561() { if (jj_3R_232()) return true; return false; } - final private boolean jj_3_219() { + final private boolean jj_3_221() { if (jj_3R_159()) return true; return false; } - final private boolean jj_3_216() { + final private boolean jj_3_218() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_561() { + final private boolean jj_3_563() { if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_559()) { + if (jj_3_561()) { jj_scanpos = xsp; if (jj_3R_249()) return true; } return false; } - final private boolean jj_3_217() { + final private boolean jj_3_219() { Token xsp; xsp = jj_scanpos; - if (jj_3_216()) jj_scanpos = xsp; + if (jj_3_218()) jj_scanpos = xsp; if (jj_3R_84()) return true; return false; } - final private boolean jj_3_215() { + final private boolean jj_3_217() { if (jj_3R_156()) return true; return false; } - final private boolean jj_3_214() { + final private boolean jj_3_216() { if (jj_3R_155()) return true; return false; } @@ -25535,23 +25555,23 @@ final private boolean jj_3R_114() { return false; } - final private boolean jj_3_558() { + final private boolean jj_3_560() { if (jj_3R_171()) return true; return false; } - final private boolean jj_3_557() { + final private boolean jj_3_559() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_560() { + final private boolean jj_3_562() { Token xsp; xsp = jj_scanpos; - if (jj_3_557()) { + if (jj_3_559()) { jj_scanpos = xsp; - if (jj_3_558()) return true; + if (jj_3_560()) return true; } return false; } @@ -25560,60 +25580,60 @@ final private boolean jj_3R_224() { if (jj_scan_token(ARRAY)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_560()) { + if (jj_3_562()) { jj_scanpos = xsp; - if (jj_3_561()) return true; + if (jj_3_563()) return true; } return false; } - final private boolean jj_3_213() { + final private boolean jj_3_215() { if (jj_3R_143()) return true; return false; } - final private boolean jj_3_212() { + final private boolean jj_3_214() { if (jj_scan_token(COMMA)) return true; if (jj_3R_150()) return true; return false; } - final private boolean jj_3_210() { + final private boolean jj_3_212() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_554() { + final private boolean jj_3_556() { if (jj_scan_token(COMMA)) return true; if (jj_3R_78()) return true; return false; } - final private boolean jj_3_211() { + final private boolean jj_3_213() { Token xsp; xsp = jj_scanpos; - if (jj_3_210()) jj_scanpos = xsp; + if (jj_3_212()) jj_scanpos = xsp; if (jj_3R_84()) return true; return false; } - final private boolean jj_3_209() { + final private boolean jj_3_211() { if (jj_3R_156()) return true; return false; } - final private boolean jj_3_208() { + final private boolean jj_3_210() { if (jj_3R_155()) return true; return false; } - final private boolean jj_3_556() { + final private boolean jj_3_558() { if (jj_scan_token(LBRACKET)) return true; if (jj_3R_78()) return true; return false; } - final private boolean jj_3_553() { + final private boolean jj_3_555() { if (jj_scan_token(TIMESTAMP)) return true; return false; } @@ -25624,29 +25644,29 @@ final private boolean jj_3R_113() { return false; } - final private boolean jj_3_555() { + final private boolean jj_3_557() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_248()) return true; return false; } - final private boolean jj_3_1129() { + final private boolean jj_3_1131() { if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_539() { + final private boolean jj_3_541() { if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_1128() { + final private boolean jj_3_1130() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_1127() { + final private boolean jj_3_1129() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(ARRAY)) return true; return false; @@ -25656,94 +25676,90 @@ final private boolean jj_3R_223() { if (jj_scan_token(MULTISET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_555()) { + if (jj_3_557()) { jj_scanpos = xsp; - if (jj_3_556()) return true; + if (jj_3_558()) return true; } return false; } - final private boolean jj_3_552() { + final private boolean jj_3_554() { if (jj_scan_token(DATETIME)) return true; return false; } - final private boolean jj_3_1126() { + final private boolean jj_3_1128() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_1125() { + final private boolean jj_3_1127() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_1134() { + final private boolean jj_3_1136() { if (jj_scan_token(FORMAT)) return true; if (jj_3R_311()) return true; return false; } - final private boolean jj_3_1124() { + final private boolean jj_3_1126() { if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_1123() { + final private boolean jj_3_1125() { if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_1122() { + final private boolean jj_3_1124() { if (jj_scan_token(FALSE)) return true; return false; } - final private boolean jj_3_1121() { + final private boolean jj_3_1123() { if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_1120() { + final private boolean jj_3_1122() { if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_538() { + final private boolean jj_3_540() { if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_551() { + final private boolean jj_3_553() { if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_1119() { + final private boolean jj_3_1121() { if (jj_scan_token(JSON)) return true; return false; } - final private boolean jj_3_205() { + final private boolean jj_3_207() { if (jj_scan_token(AS)) return true; return false; } - final private boolean jj_3_1118() { + final private boolean jj_3_1120() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_1132() { + final private boolean jj_3_1134() { Token xsp; xsp = jj_scanpos; - if (jj_3_1120()) { - jj_scanpos = xsp; - if (jj_3_1121()) { - jj_scanpos = xsp; if (jj_3_1122()) { jj_scanpos = xsp; if (jj_3_1123()) { @@ -25758,7 +25774,11 @@ final private boolean jj_3_1132() { jj_scanpos = xsp; if (jj_3_1128()) { jj_scanpos = xsp; - if (jj_3_1129()) return true; + if (jj_3_1129()) { + jj_scanpos = xsp; + if (jj_3_1130()) { + jj_scanpos = xsp; + if (jj_3_1131()) return true; } } } @@ -25771,69 +25791,69 @@ final private boolean jj_3_1132() { return false; } - final private boolean jj_3_207() { + final private boolean jj_3_209() { if (jj_3R_143()) return true; return false; } - final private boolean jj_3_1117() { + final private boolean jj_3_1119() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_206() { + final private boolean jj_3_208() { Token xsp; xsp = jj_scanpos; - if (jj_3_205()) jj_scanpos = xsp; + if (jj_3_207()) jj_scanpos = xsp; if (jj_3R_84()) return true; return false; } - final private boolean jj_3_1116() { + final private boolean jj_3_1118() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_204() { + final private boolean jj_3_206() { if (jj_3R_156()) return true; return false; } - final private boolean jj_3_1115() { + final private boolean jj_3_1117() { if (jj_scan_token(JSON)) return true; if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_203() { + final private boolean jj_3_205() { if (jj_3R_155()) return true; return false; } - final private boolean jj_3_1114() { + final private boolean jj_3_1116() { if (jj_scan_token(EMPTY)) return true; return false; } - final private boolean jj_3_1113() { + final private boolean jj_3_1115() { if (jj_scan_token(A)) return true; if (jj_scan_token(SET)) return true; return false; } - final private boolean jj_3_1112() { + final private boolean jj_3_1114() { if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_550() { + final private boolean jj_3_552() { if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_1111() { + final private boolean jj_3_1113() { if (jj_scan_token(FALSE)) return true; return false; } @@ -25841,13 +25861,13 @@ final private boolean jj_3_1111() { final private boolean jj_3R_291() { Token xsp; xsp = jj_scanpos; - if (jj_3_550()) { + if (jj_3_552()) { jj_scanpos = xsp; - if (jj_3_551()) { + if (jj_3_553()) { jj_scanpos = xsp; - if (jj_3_552()) { + if (jj_3_554()) { jj_scanpos = xsp; - if (jj_3_553()) return true; + if (jj_3_555()) return true; } } } @@ -25855,12 +25875,12 @@ final private boolean jj_3R_291() { return false; } - final private boolean jj_3_1110() { + final private boolean jj_3_1112() { if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_1109() { + final private boolean jj_3_1111() { if (jj_scan_token(NULL)) return true; return false; } @@ -25871,14 +25891,10 @@ final private boolean jj_3R_112() { return false; } - final private boolean jj_3_1131() { + final private boolean jj_3_1133() { if (jj_scan_token(NOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1109()) { - jj_scanpos = xsp; - if (jj_3_1110()) { - jj_scanpos = xsp; if (jj_3_1111()) { jj_scanpos = xsp; if (jj_3_1112()) { @@ -25895,7 +25911,11 @@ final private boolean jj_3_1131() { jj_scanpos = xsp; if (jj_3_1118()) { jj_scanpos = xsp; - if (jj_3_1119()) return true; + if (jj_3_1119()) { + jj_scanpos = xsp; + if (jj_3_1120()) { + jj_scanpos = xsp; + if (jj_3_1121()) return true; } } } @@ -25909,7 +25929,7 @@ final private boolean jj_3_1131() { return false; } - final private boolean jj_3_1130() { + final private boolean jj_3_1132() { if (jj_scan_token(A)) return true; if (jj_scan_token(SET)) return true; return false; @@ -25918,61 +25938,61 @@ final private boolean jj_3_1130() { final private boolean jj_3R_212() { Token xsp; xsp = jj_scanpos; - if (jj_3_1133()) { + if (jj_3_1135()) { jj_scanpos = xsp; - if (jj_3_1134()) return true; + if (jj_3_1136()) return true; } return false; } - final private boolean jj_3_1133() { + final private boolean jj_3_1135() { if (jj_scan_token(IS)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1130()) { + if (jj_3_1132()) { jj_scanpos = xsp; - if (jj_3_1131()) { + if (jj_3_1133()) { jj_scanpos = xsp; - if (jj_3_1132()) return true; + if (jj_3_1134()) return true; } } return false; } - final private boolean jj_3_549() { + final private boolean jj_3_551() { if (jj_scan_token(TIMESTAMP)) return true; if (jj_scan_token(WITH)) return true; return false; } - final private boolean jj_3_548() { + final private boolean jj_3_550() { if (jj_scan_token(TIME)) return true; if (jj_scan_token(WITH)) return true; return false; } - final private boolean jj_3_1108() { + final private boolean jj_3_1110() { if (jj_scan_token(UNIQUE)) return true; return false; } - final private boolean jj_3_1107() { + final private boolean jj_3_1109() { if (jj_scan_token(EXISTS)) return true; return false; } - final private boolean jj_3_1106() { + final private boolean jj_3_1108() { if (jj_scan_token(NOT)) return true; return false; } - final private boolean jj_3_547() { + final private boolean jj_3_549() { if (jj_scan_token(TIMESTAMP)) return true; if (jj_3R_245()) return true; return false; } - final private boolean jj_3_1105() { + final private boolean jj_3_1107() { if (jj_scan_token(MINUS)) return true; return false; } @@ -25980,15 +26000,15 @@ final private boolean jj_3_1105() { final private boolean jj_3R_412() { Token xsp; xsp = jj_scanpos; - if (jj_3_1104()) { - jj_scanpos = xsp; - if (jj_3_1105()) { - jj_scanpos = xsp; if (jj_3_1106()) { jj_scanpos = xsp; if (jj_3_1107()) { jj_scanpos = xsp; - if (jj_3_1108()) return true; + if (jj_3_1108()) { + jj_scanpos = xsp; + if (jj_3_1109()) { + jj_scanpos = xsp; + if (jj_3_1110()) return true; } } } @@ -25996,152 +26016,152 @@ final private boolean jj_3R_412() { return false; } - final private boolean jj_3_1104() { + final private boolean jj_3_1106() { if (jj_scan_token(PLUS)) return true; return false; } - final private boolean jj_3_546() { + final private boolean jj_3_548() { if (jj_scan_token(UUID)) return true; if (jj_3R_245()) return true; return false; } - final private boolean jj_3_202() { + final private boolean jj_3_204() { if (jj_3R_157()) return true; return false; } - final private boolean jj_3_545() { + final private boolean jj_3_547() { if (jj_scan_token(TIME)) return true; if (jj_3R_245()) return true; return false; } - final private boolean jj_3_1103() { + final private boolean jj_3_1105() { if (jj_3R_338()) return true; return false; } - final private boolean jj_3_1102() { + final private boolean jj_3_1104() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_1101() { + final private boolean jj_3_1103() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_1100() { + final private boolean jj_3_1102() { if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_201() { + final private boolean jj_3_203() { if (jj_3R_156()) return true; return false; } - final private boolean jj_3_544() { + final private boolean jj_3_546() { if (jj_scan_token(DATETIME)) return true; if (jj_3R_245()) return true; return false; } - final private boolean jj_3_1099() { + final private boolean jj_3_1101() { if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_200() { + final private boolean jj_3_202() { if (jj_3R_155()) return true; return false; } - final private boolean jj_3_1098() { + final private boolean jj_3_1100() { if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_1097() { + final private boolean jj_3_1099() { if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3_1096() { + final private boolean jj_3_1098() { if (jj_scan_token(CONTAINS)) return true; return false; } - final private boolean jj_3_543() { + final private boolean jj_3_545() { if (jj_scan_token(DATE)) return true; if (jj_3R_245()) return true; return false; } - final private boolean jj_3_1095() { + final private boolean jj_3_1097() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(SUBMULTISET)) return true; if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_1094() { + final private boolean jj_3_1096() { if (jj_scan_token(SUBMULTISET)) return true; if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_199() { + final private boolean jj_3_201() { if (jj_scan_token(UPSERT)) return true; return false; } - final private boolean jj_3_1093() { + final private boolean jj_3_1095() { if (jj_scan_token(MEMBER)) return true; if (jj_scan_token(OF)) return true; return false; } - final private boolean jj_3_1092() { + final private boolean jj_3_1094() { if (jj_scan_token(IS)) return true; if (jj_scan_token(NOT)) return true; if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_198() { + final private boolean jj_3_200() { if (jj_scan_token(INSERT)) return true; return false; } - final private boolean jj_3_1091() { + final private boolean jj_3_1093() { if (jj_scan_token(IS)) return true; if (jj_scan_token(DISTINCT)) return true; if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3_1090() { + final private boolean jj_3_1092() { if (jj_scan_token(OR)) return true; return false; } - final private boolean jj_3_1089() { + final private boolean jj_3_1091() { if (jj_scan_token(AND)) return true; return false; } - final private boolean jj_3_542() { + final private boolean jj_3_544() { if (jj_scan_token(LBRACE_TS)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1088() { + final private boolean jj_3_1090() { if (jj_scan_token(CONCAT)) return true; return false; } @@ -26149,41 +26169,41 @@ final private boolean jj_3_1088() { final private boolean jj_3R_111() { Token xsp; xsp = jj_scanpos; - if (jj_3_198()) { + if (jj_3_200()) { jj_scanpos = xsp; - if (jj_3_199()) return true; + if (jj_3_201()) return true; } if (jj_3R_355()) return true; return false; } - final private boolean jj_3_1087() { + final private boolean jj_3_1089() { if (jj_scan_token(PERCENT_REMAINDER)) return true; return false; } - final private boolean jj_3_541() { + final private boolean jj_3_543() { if (jj_scan_token(LBRACE_T)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1086() { + final private boolean jj_3_1088() { if (jj_scan_token(SLASH)) return true; return false; } - final private boolean jj_3_1085() { + final private boolean jj_3_1087() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_1084() { + final private boolean jj_3_1086() { if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_1083() { + final private boolean jj_3_1085() { if (jj_scan_token(PLUS)) return true; return false; } @@ -26191,10 +26211,6 @@ final private boolean jj_3_1083() { final private boolean jj_3R_243() { Token xsp; xsp = jj_scanpos; - if (jj_3_540()) { - jj_scanpos = xsp; - if (jj_3_541()) { - jj_scanpos = xsp; if (jj_3_542()) { jj_scanpos = xsp; if (jj_3_543()) { @@ -26209,7 +26225,11 @@ final private boolean jj_3R_243() { jj_scanpos = xsp; if (jj_3_548()) { jj_scanpos = xsp; - if (jj_3_549()) return true; + if (jj_3_549()) { + jj_scanpos = xsp; + if (jj_3_550()) { + jj_scanpos = xsp; + if (jj_3_551()) return true; } } } @@ -26222,38 +26242,38 @@ final private boolean jj_3R_243() { return false; } - final private boolean jj_3_540() { + final private boolean jj_3_542() { if (jj_scan_token(LBRACE_D)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1082() { + final private boolean jj_3_1084() { if (jj_scan_token(NE2)) return true; return false; } - final private boolean jj_3_1081() { + final private boolean jj_3_1083() { if (jj_scan_token(NE)) return true; return false; } - final private boolean jj_3_1080() { + final private boolean jj_3_1082() { if (jj_scan_token(GE)) return true; return false; } - final private boolean jj_3_1079() { + final private boolean jj_3_1081() { if (jj_scan_token(LE)) return true; return false; } - final private boolean jj_3_1078() { + final private boolean jj_3_1080() { if (jj_scan_token(LT)) return true; return false; } - final private boolean jj_3_1077() { + final private boolean jj_3_1079() { if (jj_scan_token(GT)) return true; return false; } @@ -26261,10 +26281,6 @@ final private boolean jj_3_1077() { final private boolean jj_3R_211() { Token xsp; xsp = jj_scanpos; - if (jj_3_1076()) { - jj_scanpos = xsp; - if (jj_3_1077()) { - jj_scanpos = xsp; if (jj_3_1078()) { jj_scanpos = xsp; if (jj_3_1079()) { @@ -26315,7 +26331,11 @@ final private boolean jj_3R_211() { jj_scanpos = xsp; if (jj_3_1102()) { jj_scanpos = xsp; - if (jj_3_1103()) return true; + if (jj_3_1103()) { + jj_scanpos = xsp; + if (jj_3_1104()) { + jj_scanpos = xsp; + if (jj_3_1105()) return true; } } } @@ -26346,135 +26366,135 @@ final private boolean jj_3R_211() { return false; } - final private boolean jj_3_1076() { + final private boolean jj_3_1078() { if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_537() { + final private boolean jj_3_539() { if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1071() { + final private boolean jj_3_1073() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1070() { + final private boolean jj_3_1072() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1072() { + final private boolean jj_3_1074() { Token xsp; xsp = jj_scanpos; - if (jj_3_1070()) { + if (jj_3_1072()) { jj_scanpos = xsp; - if (jj_3_1071()) return true; + if (jj_3_1073()) return true; } return false; } - final private boolean jj_3_536() { + final private boolean jj_3_538() { if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1068() { + final private boolean jj_3_1070() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1075() { + final private boolean jj_3_1077() { if (jj_scan_token(EXCEPT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1072()) jj_scanpos = xsp; + if (jj_3_1074()) jj_scanpos = xsp; return false; } final private boolean jj_3R_245() { Token xsp; xsp = jj_scanpos; - if (jj_3_535()) { + if (jj_3_537()) { jj_scanpos = xsp; - if (jj_3_536()) { + if (jj_3_538()) { jj_scanpos = xsp; - if (jj_3_537()) return true; + if (jj_3_539()) return true; } } return false; } - final private boolean jj_3_535() { + final private boolean jj_3_537() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1067() { + final private boolean jj_3_1069() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1069() { + final private boolean jj_3_1071() { Token xsp; xsp = jj_scanpos; - if (jj_3_1067()) { + if (jj_3_1069()) { jj_scanpos = xsp; - if (jj_3_1068()) return true; + if (jj_3_1070()) return true; } return false; } - final private boolean jj_3_197() { + final private boolean jj_3_199() { if (jj_3R_154()) return true; return false; } - final private boolean jj_3_1065() { + final private boolean jj_3_1067() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1074() { + final private boolean jj_3_1076() { if (jj_scan_token(INTERSECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1069()) jj_scanpos = xsp; + if (jj_3_1071()) jj_scanpos = xsp; return false; } - final private boolean jj_3_1064() { + final private boolean jj_3_1066() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1066() { + final private boolean jj_3_1068() { Token xsp; xsp = jj_scanpos; - if (jj_3_1064()) { + if (jj_3_1066()) { jj_scanpos = xsp; - if (jj_3_1065()) return true; + if (jj_3_1067()) return true; } return false; } - final private boolean jj_3_195() { + final private boolean jj_3_197() { if (jj_scan_token(COMMA)) return true; if (jj_3R_154()) return true; return false; } - final private boolean jj_3_1073() { + final private boolean jj_3_1075() { if (jj_scan_token(UNION)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1066()) jj_scanpos = xsp; + if (jj_3_1068()) jj_scanpos = xsp; return false; } - final private boolean jj_3_196() { + final private boolean jj_3_198() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_154()) return true; return false; @@ -26484,17 +26504,17 @@ final private boolean jj_3R_338() { if (jj_scan_token(MULTISET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1073()) { + if (jj_3_1075()) { jj_scanpos = xsp; - if (jj_3_1074()) { + if (jj_3_1076()) { jj_scanpos = xsp; - if (jj_3_1075()) return true; + if (jj_3_1077()) return true; } } return false; } - final private boolean jj_3_534() { + final private boolean jj_3_536() { if (jj_scan_token(BIG_QUERY_QUOTED_STRING)) return true; return false; } @@ -26509,12 +26529,12 @@ final private boolean jj_3R_153() { return false; } - final private boolean jj_3_1060() { + final private boolean jj_3_1062() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1059() { + final private boolean jj_3_1061() { if (jj_scan_token(ALL)) return true; return false; } @@ -26523,7 +26543,7 @@ final private boolean jj_3R_408() { return false; } - final private boolean jj_3_194() { + final private boolean jj_3_196() { if (jj_3R_153()) return true; return false; } @@ -26532,23 +26552,23 @@ final private boolean jj_3R_407() { return false; } - final private boolean jj_3_533() { + final private boolean jj_3_535() { if (jj_scan_token(BIG_QUERY_DOUBLE_QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1058() { + final private boolean jj_3_1060() { if (jj_scan_token(SET_MINUS)) return true; return false; } - final private boolean jj_3_193() { + final private boolean jj_3_195() { if (jj_scan_token(PARTITION)) return true; if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_1057() { + final private boolean jj_3_1059() { if (jj_scan_token(EXCEPT)) return true; return false; } @@ -26557,22 +26577,22 @@ final private boolean jj_3R_336() { return false; } - final private boolean jj_3_1056() { + final private boolean jj_3_1058() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1063() { + final private boolean jj_3_1065() { Token xsp; xsp = jj_scanpos; - if (jj_3_1057()) { + if (jj_3_1059()) { jj_scanpos = xsp; - if (jj_3_1058()) return true; + if (jj_3_1060()) return true; } xsp = jj_scanpos; - if (jj_3_1059()) { + if (jj_3_1061()) { jj_scanpos = xsp; - if (jj_3_1060()) { + if (jj_3_1062()) { jj_scanpos = xsp; if (jj_3R_337()) return true; } @@ -26583,24 +26603,24 @@ final private boolean jj_3_1063() { final private boolean jj_3R_351() { Token xsp; xsp = jj_scanpos; - if (jj_3_193()) { + if (jj_3_195()) { jj_scanpos = xsp; if (jj_3R_407()) return true; } xsp = jj_scanpos; - if (jj_3_194()) { + if (jj_3_196()) { jj_scanpos = xsp; if (jj_3R_408()) return true; } return false; } - final private boolean jj_3_1055() { + final private boolean jj_3_1057() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_532() { + final private boolean jj_3_534() { if (jj_scan_token(C_STYLE_ESCAPED_STRING_LITERAL)) return true; return false; } @@ -26609,18 +26629,18 @@ final private boolean jj_3R_335() { return false; } - final private boolean jj_3_1054() { + final private boolean jj_3_1056() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_1062() { + final private boolean jj_3_1064() { if (jj_scan_token(INTERSECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1055()) { + if (jj_3_1057()) { jj_scanpos = xsp; - if (jj_3_1056()) { + if (jj_3_1058()) { jj_scanpos = xsp; if (jj_3R_336()) return true; } @@ -26628,7 +26648,7 @@ final private boolean jj_3_1062() { return false; } - final private boolean jj_3_1053() { + final private boolean jj_3_1055() { if (jj_scan_token(ALL)) return true; return false; } @@ -26639,13 +26659,13 @@ final private boolean jj_3R_88() { return false; } - final private boolean jj_3_1061() { + final private boolean jj_3_1063() { if (jj_scan_token(UNION)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_1053()) { + if (jj_3_1055()) { jj_scanpos = xsp; - if (jj_3_1054()) { + if (jj_3_1056()) { jj_scanpos = xsp; if (jj_3R_335()) return true; } @@ -26653,7 +26673,7 @@ final private boolean jj_3_1061() { return false; } - final private boolean jj_3_1043() { + final private boolean jj_3_1045() { if (jj_scan_token(TRUNCATE)) return true; return false; } @@ -26661,11 +26681,11 @@ final private boolean jj_3_1043() { final private boolean jj_3R_342() { Token xsp; xsp = jj_scanpos; - if (jj_3_1061()) { + if (jj_3_1063()) { jj_scanpos = xsp; - if (jj_3_1062()) { + if (jj_3_1064()) { jj_scanpos = xsp; - if (jj_3_1063()) return true; + if (jj_3_1065()) return true; } } return false; @@ -26675,7 +26695,7 @@ final private boolean jj_3R_350() { return false; } - final private boolean jj_3_192() { + final private boolean jj_3_194() { if (jj_3R_153()) return true; return false; } @@ -26684,29 +26704,29 @@ final private boolean jj_3R_349() { return false; } - final private boolean jj_3_1042() { + final private boolean jj_3_1044() { if (jj_scan_token(RIGHT)) return true; return false; } - final private boolean jj_3_191() { + final private boolean jj_3_193() { if (jj_scan_token(PARTITION)) return true; if (jj_scan_token(BY)) return true; return false; } - final private boolean jj_3_529() { + final private boolean jj_3_531() { if (jj_scan_token(UESCAPE)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_1049() { + final private boolean jj_3_1051() { if (jj_3R_171()) return true; return false; } - final private boolean jj_3_1048() { + final private boolean jj_3_1050() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; @@ -26716,30 +26736,30 @@ final private boolean jj_3R_87() { if (jj_3R_77()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_191()) { + if (jj_3_193()) { jj_scanpos = xsp; if (jj_3R_349()) return true; } xsp = jj_scanpos; - if (jj_3_192()) { + if (jj_3_194()) { jj_scanpos = xsp; if (jj_3R_350()) return true; } return false; } - final private boolean jj_3_1041() { + final private boolean jj_3_1043() { if (jj_scan_token(LEFT)) return true; return false; } - final private boolean jj_3_1047() { + final private boolean jj_3_1049() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_1046() { + final private boolean jj_3_1048() { if (jj_3R_333()) return true; return false; } @@ -26749,17 +26769,17 @@ final private boolean jj_3R_247() { return false; } - final private boolean jj_3_1045() { + final private boolean jj_3_1047() { if (jj_3R_332()) return true; return false; } - final private boolean jj_3_1044() { + final private boolean jj_3_1046() { if (jj_3R_331()) return true; return false; } - final private boolean jj_3_1040() { + final private boolean jj_3_1042() { if (jj_scan_token(INSERT)) return true; return false; } @@ -26767,55 +26787,55 @@ final private boolean jj_3_1040() { final private boolean jj_3R_334() { Token xsp; xsp = jj_scanpos; - if (jj_3_1040()) { + if (jj_3_1042()) { jj_scanpos = xsp; - if (jj_3_1041()) { + if (jj_3_1043()) { jj_scanpos = xsp; - if (jj_3_1042()) { + if (jj_3_1044()) { jj_scanpos = xsp; - if (jj_3_1043()) return true; + if (jj_3_1045()) return true; } } } return false; } - final private boolean jj_3_189() { + final private boolean jj_3_191() { if (jj_scan_token(COMMA)) return true; if (jj_3R_83()) return true; return false; } - final private boolean jj_3_1052() { + final private boolean jj_3_1054() { Token xsp; xsp = jj_scanpos; if (jj_3R_334()) { jj_scanpos = xsp; - if (jj_3_1044()) { + if (jj_3_1046()) { jj_scanpos = xsp; - if (jj_3_1045()) { + if (jj_3_1047()) { jj_scanpos = xsp; - if (jj_3_1046()) return true; + if (jj_3_1048()) return true; } } } xsp = jj_scanpos; - if (jj_3_1047()) { + if (jj_3_1049()) { jj_scanpos = xsp; - if (jj_3_1048()) { + if (jj_3_1050()) { jj_scanpos = xsp; - if (jj_3_1049()) return true; + if (jj_3_1051()) return true; } } return false; } - final private boolean jj_3_190() { + final private boolean jj_3_192() { if (jj_3R_152()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_189()) { jj_scanpos = xsp; break; } + if (jj_3_191()) { jj_scanpos = xsp; break; } } return false; } @@ -26825,40 +26845,40 @@ final private boolean jj_3R_356() { return false; } - final private boolean jj_3_528() { + final private boolean jj_3_530() { if (jj_scan_token(UNICODE_STRING_LITERAL)) return true; return false; } - final private boolean jj_3_1051() { + final private boolean jj_3_1053() { if (jj_scan_token(CONVERT)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_527() { + final private boolean jj_3_529() { if (jj_scan_token(QUOTED_STRING)) return true; return false; } - final private boolean jj_3_526() { + final private boolean jj_3_528() { if (jj_scan_token(PREFIXED_STRING_LITERAL)) return true; return false; } - final private boolean jj_3_1050() { + final private boolean jj_3_1052() { if (jj_3R_297()) return true; return false; } - final private boolean jj_3_531() { + final private boolean jj_3_533() { Token xsp; xsp = jj_scanpos; - if (jj_3_526()) { + if (jj_3_528()) { jj_scanpos = xsp; - if (jj_3_527()) { + if (jj_3_529()) { jj_scanpos = xsp; - if (jj_3_528()) return true; + if (jj_3_530()) return true; } } while (true) { @@ -26866,7 +26886,7 @@ final private boolean jj_3_531() { if (jj_3R_247()) { jj_scanpos = xsp; break; } } xsp = jj_scanpos; - if (jj_3_529()) jj_scanpos = xsp; + if (jj_3_531()) jj_scanpos = xsp; return false; } @@ -26896,7 +26916,7 @@ final private boolean jj_3R_246() { return false; } - final private boolean jj_3_183() { + final private boolean jj_3_185() { if (jj_scan_token(SCHEMA)) return true; return false; } @@ -26911,7 +26931,7 @@ final private boolean jj_3R_388() { return false; } - final private boolean jj_3_182() { + final private boolean jj_3_184() { if (jj_scan_token(CATALOG)) return true; return false; } @@ -26921,7 +26941,7 @@ final private boolean jj_3R_387() { return false; } - final private boolean jj_3_188() { + final private boolean jj_3_190() { Token xsp; xsp = jj_scanpos; if (jj_scan_token(601)) jj_scanpos = xsp; @@ -26932,15 +26952,15 @@ final private boolean jj_3_188() { final private boolean jj_3R_136() { Token xsp; xsp = jj_scanpos; - if (jj_3_530()) { - jj_scanpos = xsp; - if (jj_3_531()) { - jj_scanpos = xsp; if (jj_3_532()) { jj_scanpos = xsp; if (jj_3_533()) { jj_scanpos = xsp; - if (jj_3_534()) return true; + if (jj_3_534()) { + jj_scanpos = xsp; + if (jj_3_535()) { + jj_scanpos = xsp; + if (jj_3_536()) return true; } } } @@ -26948,27 +26968,27 @@ final private boolean jj_3R_136() { return false; } - final private boolean jj_3_185() { + final private boolean jj_3_187() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_187() { + final private boolean jj_3_189() { Token xsp; xsp = jj_scanpos; if (jj_scan_token(622)) { jj_scanpos = xsp; - if (jj_scan_token(819)) { + if (jj_scan_token(821)) { jj_scanpos = xsp; - if (jj_scan_token(818)) { + if (jj_scan_token(820)) { jj_scanpos = xsp; - if (jj_scan_token(815)) { + if (jj_scan_token(817)) { jj_scanpos = xsp; - if (jj_scan_token(816)) { + if (jj_scan_token(818)) { jj_scanpos = xsp; - if (jj_scan_token(817)) { + if (jj_scan_token(819)) { jj_scanpos = xsp; - if (jj_scan_token(814)) return true; + if (jj_scan_token(816)) return true; } } } @@ -26978,7 +26998,7 @@ final private boolean jj_3_187() { return false; } - final private boolean jj_3_530() { + final private boolean jj_3_532() { if (jj_scan_token(BINARY_STRING_LITERAL)) return true; Token xsp; while (true) { @@ -26993,7 +27013,7 @@ final private boolean jj_3R_386() { return false; } - final private boolean jj_3_184() { + final private boolean jj_3_186() { if (jj_scan_token(TABLE)) return true; return false; } @@ -27003,7 +27023,7 @@ final private boolean jj_3R_385() { return false; } - final private boolean jj_3_181() { + final private boolean jj_3_183() { if (jj_scan_token(DATABASE)) return true; return false; } @@ -27011,7 +27031,7 @@ final private boolean jj_3_181() { final private boolean jj_3R_354() { Token xsp; xsp = jj_scanpos; - if (jj_3_184()) jj_scanpos = xsp; + if (jj_3_186()) jj_scanpos = xsp; if (jj_3R_150()) return true; return false; } @@ -27043,11 +27063,11 @@ final private boolean jj_3R_222() { jj_scanpos = xsp; if (jj_3R_392()) { jj_scanpos = xsp; - if (jj_3_1050()) { + if (jj_3_1052()) { jj_scanpos = xsp; - if (jj_3_1051()) { + if (jj_3_1053()) { jj_scanpos = xsp; - if (jj_3_1052()) return true; + if (jj_3_1054()) return true; } } } @@ -27062,14 +27082,14 @@ final private boolean jj_3R_222() { return false; } - final private boolean jj_3_186() { + final private boolean jj_3_188() { Token xsp; xsp = jj_scanpos; - if (jj_3_181()) { + if (jj_3_183()) { jj_scanpos = xsp; - if (jj_3_182()) { + if (jj_3_184()) { jj_scanpos = xsp; - if (jj_3_183()) return true; + if (jj_3_185()) return true; } } if (jj_3R_150()) return true; @@ -27080,27 +27100,27 @@ final private boolean jj_3R_110() { if (jj_scan_token(DESCRIBE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_186()) { + if (jj_3_188()) { jj_scanpos = xsp; if (jj_3R_354()) { jj_scanpos = xsp; - if (jj_3_188()) return true; + if (jj_3_190()) return true; } } return false; } - final private boolean jj_3_525() { + final private boolean jj_3_527() { if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_524() { + final private boolean jj_3_526() { if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_523() { + final private boolean jj_3_525() { if (jj_scan_token(FALSE)) return true; return false; } @@ -27108,121 +27128,121 @@ final private boolean jj_3_523() { final private boolean jj_3R_242() { Token xsp; xsp = jj_scanpos; - if (jj_3_522()) { + if (jj_3_524()) { jj_scanpos = xsp; - if (jj_3_523()) { + if (jj_3_525()) { jj_scanpos = xsp; - if (jj_3_524()) { + if (jj_3_526()) { jj_scanpos = xsp; - if (jj_3_525()) return true; + if (jj_3_527()) return true; } } } return false; } - final private boolean jj_3_522() { + final private boolean jj_3_524() { if (jj_scan_token(TRUE)) return true; return false; } - final private boolean jj_3_1039() { + final private boolean jj_3_1041() { if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_1038() { + final private boolean jj_3_1040() { if (jj_scan_token(SYSTEM_USER)) return true; return false; } - final private boolean jj_3_1037() { + final private boolean jj_3_1039() { if (jj_scan_token(SESSION_USER)) return true; return false; } - final private boolean jj_3_1036() { + final private boolean jj_3_1038() { if (jj_scan_token(LOCALTIMESTAMP)) return true; return false; } - final private boolean jj_3_1035() { + final private boolean jj_3_1037() { if (jj_scan_token(LOCALTIME)) return true; return false; } - final private boolean jj_3_178() { + final private boolean jj_3_180() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_1034() { + final private boolean jj_3_1036() { if (jj_scan_token(CURRENT_USER)) return true; return false; } - final private boolean jj_3_1033() { + final private boolean jj_3_1035() { if (jj_scan_token(CURRENT_TIMESTAMP)) return true; return false; } - final private boolean jj_3_521() { + final private boolean jj_3_523() { if (jj_3R_196()) return true; return false; } - final private boolean jj_3_1032() { + final private boolean jj_3_1034() { if (jj_scan_token(CURRENT_TIME)) return true; return false; } - final private boolean jj_3_180() { + final private boolean jj_3_182() { if (jj_scan_token(INCLUDING)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_178()) jj_scanpos = xsp; + if (jj_3_180()) jj_scanpos = xsp; if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_1031() { + final private boolean jj_3_1033() { if (jj_scan_token(CURRENT_SCHEMA)) return true; return false; } - final private boolean jj_3_1030() { + final private boolean jj_3_1032() { if (jj_scan_token(CURRENT_ROLE)) return true; return false; } - final private boolean jj_3_1029() { + final private boolean jj_3_1031() { if (jj_scan_token(CURRENT_PATH)) return true; return false; } - final private boolean jj_3_520() { + final private boolean jj_3_522() { if (jj_scan_token(MINUS)) return true; if (jj_3R_196()) return true; return false; } - final private boolean jj_3_1028() { + final private boolean jj_3_1030() { if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; return false; } - final private boolean jj_3_1027() { + final private boolean jj_3_1029() { if (jj_scan_token(CURRENT_DATE)) return true; return false; } - final private boolean jj_3_179() { + final private boolean jj_3_181() { if (jj_scan_token(EXCLUDING)) return true; if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_1026() { + final private boolean jj_3_1028() { if (jj_scan_token(CURRENT_CATALOG)) return true; return false; } @@ -27230,17 +27250,17 @@ final private boolean jj_3_1026() { final private boolean jj_3R_137() { Token xsp; xsp = jj_scanpos; - if (jj_3_519()) { + if (jj_3_521()) { jj_scanpos = xsp; - if (jj_3_520()) { + if (jj_3_522()) { jj_scanpos = xsp; - if (jj_3_521()) return true; + if (jj_3_523()) return true; } } return false; } - final private boolean jj_3_519() { + final private boolean jj_3_521() { if (jj_scan_token(PLUS)) return true; if (jj_3R_196()) return true; return false; @@ -27249,10 +27269,6 @@ final private boolean jj_3_519() { final private boolean jj_3R_228() { Token xsp; xsp = jj_scanpos; - if (jj_3_1026()) { - jj_scanpos = xsp; - if (jj_3_1027()) { - jj_scanpos = xsp; if (jj_3_1028()) { jj_scanpos = xsp; if (jj_3_1029()) { @@ -27275,7 +27291,11 @@ final private boolean jj_3R_228() { jj_scanpos = xsp; if (jj_3_1038()) { jj_scanpos = xsp; - if (jj_3_1039()) return true; + if (jj_3_1039()) { + jj_scanpos = xsp; + if (jj_3_1040()) { + jj_scanpos = xsp; + if (jj_3_1041()) return true; } } } @@ -27295,112 +27315,112 @@ final private boolean jj_3R_228() { final private boolean jj_3R_149() { Token xsp; xsp = jj_scanpos; - if (jj_3_179()) { + if (jj_3_181()) { jj_scanpos = xsp; - if (jj_3_180()) return true; + if (jj_3_182()) return true; } return false; } - final private boolean jj_3_1025() { + final private boolean jj_3_1027() { if (jj_scan_token(YEAR)) return true; return false; } - final private boolean jj_3_1024() { + final private boolean jj_3_1026() { if (jj_scan_token(VAR_SAMP)) return true; return false; } - final private boolean jj_3_518() { + final private boolean jj_3_520() { if (jj_scan_token(APPROX_NUMERIC_LITERAL)) return true; return false; } - final private boolean jj_3_1023() { + final private boolean jj_3_1025() { if (jj_scan_token(VAR_POP)) return true; return false; } - final private boolean jj_3_1022() { + final private boolean jj_3_1024() { if (jj_scan_token(USER)) return true; return false; } - final private boolean jj_3_1021() { + final private boolean jj_3_1023() { if (jj_scan_token(TRUNCATE)) return true; return false; } - final private boolean jj_3_1020() { + final private boolean jj_3_1022() { if (jj_scan_token(UPPER)) return true; return false; } - final private boolean jj_3_1019() { + final private boolean jj_3_1021() { if (jj_scan_token(SUM)) return true; return false; } - final private boolean jj_3_517() { + final private boolean jj_3_519() { if (jj_scan_token(DECIMAL)) return true; if (jj_3R_245()) return true; return false; } - final private boolean jj_3_1018() { + final private boolean jj_3_1020() { if (jj_scan_token(STDDEV_SAMP)) return true; return false; } - final private boolean jj_3_1017() { + final private boolean jj_3_1019() { if (jj_scan_token(STDDEV_POP)) return true; return false; } - final private boolean jj_3_177() { + final private boolean jj_3_179() { if (jj_scan_token(WITHOUT)) return true; if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_1016() { + final private boolean jj_3_1018() { if (jj_scan_token(SQRT)) return true; return false; } - final private boolean jj_3_1015() { + final private boolean jj_3_1017() { if (jj_scan_token(SOME)) return true; return false; } - final private boolean jj_3_516() { + final private boolean jj_3_518() { if (jj_scan_token(DECIMAL_NUMERIC_LITERAL)) return true; return false; } - final private boolean jj_3_1014() { + final private boolean jj_3_1016() { if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_1013() { + final private boolean jj_3_1015() { if (jj_scan_token(ROW_NUMBER)) return true; return false; } - final private boolean jj_3_1012() { + final private boolean jj_3_1014() { if (jj_scan_token(RIGHT)) return true; return false; } - final private boolean jj_3_176() { + final private boolean jj_3_178() { if (jj_scan_token(WITH)) return true; if (jj_scan_token(IMPLEMENTATION)) return true; return false; } - final private boolean jj_3_1011() { + final private boolean jj_3_1013() { if (jj_scan_token(REGR_SYY)) return true; return false; } @@ -27408,106 +27428,106 @@ final private boolean jj_3_1011() { final private boolean jj_3R_196() { Token xsp; xsp = jj_scanpos; - if (jj_3_515()) { + if (jj_3_517()) { jj_scanpos = xsp; - if (jj_3_516()) { + if (jj_3_518()) { jj_scanpos = xsp; - if (jj_3_517()) { + if (jj_3_519()) { jj_scanpos = xsp; - if (jj_3_518()) return true; + if (jj_3_520()) return true; } } } return false; } - final private boolean jj_3_515() { + final private boolean jj_3_517() { if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_1010() { + final private boolean jj_3_1012() { if (jj_scan_token(REGR_SXX)) return true; return false; } - final private boolean jj_3_1009() { + final private boolean jj_3_1011() { if (jj_scan_token(REGR_COUNT)) return true; return false; } - final private boolean jj_3_1008() { + final private boolean jj_3_1010() { if (jj_scan_token(RANK)) return true; return false; } - final private boolean jj_3_1007() { + final private boolean jj_3_1009() { if (jj_scan_token(POWER)) return true; return false; } - final private boolean jj_3_1006() { + final private boolean jj_3_1008() { if (jj_scan_token(PERCENT_RANK)) return true; return false; } - final private boolean jj_3_175() { + final private boolean jj_3_177() { if (jj_scan_token(WITH)) return true; if (jj_scan_token(TYPE)) return true; return false; } - final private boolean jj_3_1005() { + final private boolean jj_3_1007() { if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_1004() { + final private boolean jj_3_1006() { if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_514() { + final private boolean jj_3_516() { if (jj_3R_241()) return true; return false; } - final private boolean jj_3_1003() { + final private boolean jj_3_1005() { if (jj_scan_token(OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_1002() { + final private boolean jj_3_1004() { if (jj_scan_token(NULLIF)) return true; return false; } - final private boolean jj_3_513() { + final private boolean jj_3_515() { if (jj_3R_244()) return true; return false; } - final private boolean jj_3_1001() { + final private boolean jj_3_1003() { if (jj_scan_token(NTILE)) return true; return false; } - final private boolean jj_3_1000() { + final private boolean jj_3_1002() { if (jj_scan_token(NTH_VALUE)) return true; return false; } - final private boolean jj_3_999() { + final private boolean jj_3_1001() { if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_998() { + final private boolean jj_3_1000() { if (jj_scan_token(MOD)) return true; return false; } - final private boolean jj_3_997() { + final private boolean jj_3_999() { if (jj_scan_token(MINUTE)) return true; return false; } @@ -27515,129 +27535,129 @@ final private boolean jj_3_997() { final private boolean jj_3R_220() { Token xsp; xsp = jj_scanpos; - if (jj_3_513()) { + if (jj_3_515()) { jj_scanpos = xsp; - if (jj_3_514()) return true; + if (jj_3_516()) return true; } return false; } - final private boolean jj_3_996() { + final private boolean jj_3_998() { if (jj_scan_token(MIN)) return true; return false; } - final private boolean jj_3_995() { + final private boolean jj_3_997() { if (jj_scan_token(MAX)) return true; return false; } - final private boolean jj_3_994() { + final private boolean jj_3_996() { if (jj_scan_token(LOWER)) return true; return false; } - final private boolean jj_3_993() { + final private boolean jj_3_995() { if (jj_scan_token(LOCALTIMESTAMP)) return true; return false; } - final private boolean jj_3_174() { + final private boolean jj_3_176() { if (jj_3R_114()) return true; return false; } - final private boolean jj_3_992() { + final private boolean jj_3_994() { if (jj_scan_token(LOCALTIME)) return true; return false; } - final private boolean jj_3_991() { + final private boolean jj_3_993() { if (jj_scan_token(LN)) return true; return false; } - final private boolean jj_3_173() { + final private boolean jj_3_175() { if (jj_3R_113()) return true; return false; } - final private boolean jj_3_990() { + final private boolean jj_3_992() { if (jj_scan_token(LAST_VALUE)) return true; return false; } - final private boolean jj_3_989() { + final private boolean jj_3_991() { if (jj_scan_token(LEFT)) return true; return false; } - final private boolean jj_3_172() { + final private boolean jj_3_174() { if (jj_3R_112()) return true; return false; } - final private boolean jj_3_988() { + final private boolean jj_3_990() { if (jj_scan_token(LEAD)) return true; return false; } - final private boolean jj_3_987() { + final private boolean jj_3_989() { if (jj_scan_token(LAG)) return true; return false; } - final private boolean jj_3_171() { + final private boolean jj_3_173() { if (jj_3R_111()) return true; return false; } - final private boolean jj_3_986() { + final private boolean jj_3_988() { if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_985() { + final private boolean jj_3_987() { if (jj_scan_token(GROUPING)) return true; return false; } - final private boolean jj_3_170() { + final private boolean jj_3_172() { if (jj_3R_79()) return true; return false; } - final private boolean jj_3_984() { + final private boolean jj_3_986() { if (jj_scan_token(INTERSECTION)) return true; return false; } - final private boolean jj_3_983() { + final private boolean jj_3_985() { if (jj_scan_token(FUSION)) return true; return false; } - final private boolean jj_3_512() { + final private boolean jj_3_514() { if (jj_3R_243()) return true; return false; } - final private boolean jj_3_982() { + final private boolean jj_3_984() { if (jj_scan_token(FLOOR)) return true; return false; } - final private boolean jj_3_981() { + final private boolean jj_3_983() { if (jj_scan_token(FIRST_VALUE)) return true; return false; } - final private boolean jj_3_511() { + final private boolean jj_3_513() { if (jj_3R_242()) return true; return false; } - final private boolean jj_3_980() { + final private boolean jj_3_982() { if (jj_scan_token(EXP)) return true; return false; } @@ -27645,15 +27665,15 @@ final private boolean jj_3_980() { final private boolean jj_3R_151() { Token xsp; xsp = jj_scanpos; - if (jj_3_170()) { - jj_scanpos = xsp; - if (jj_3_171()) { - jj_scanpos = xsp; if (jj_3_172()) { jj_scanpos = xsp; if (jj_3_173()) { jj_scanpos = xsp; - if (jj_3_174()) return true; + if (jj_3_174()) { + jj_scanpos = xsp; + if (jj_3_175()) { + jj_scanpos = xsp; + if (jj_3_176()) return true; } } } @@ -27661,52 +27681,52 @@ final private boolean jj_3R_151() { return false; } - final private boolean jj_3_979() { + final private boolean jj_3_981() { if (jj_scan_token(EVERY)) return true; return false; } - final private boolean jj_3_510() { + final private boolean jj_3_512() { if (jj_3R_136()) return true; return false; } - final private boolean jj_3_978() { + final private boolean jj_3_980() { if (jj_scan_token(ELEMENT)) return true; return false; } - final private boolean jj_3_977() { + final private boolean jj_3_979() { if (jj_scan_token(DENSE_RANK)) return true; return false; } - final private boolean jj_3_509() { + final private boolean jj_3_511() { if (jj_3R_137()) return true; return false; } - final private boolean jj_3_976() { + final private boolean jj_3_978() { if (jj_scan_token(CURRENT_TIMESTAMP)) return true; return false; } - final private boolean jj_3_975() { + final private boolean jj_3_977() { if (jj_scan_token(CURRENT_TIME)) return true; return false; } - final private boolean jj_3_974() { + final private boolean jj_3_976() { if (jj_scan_token(CURRENT_DATE)) return true; return false; } - final private boolean jj_3_973() { + final private boolean jj_3_975() { if (jj_scan_token(COUNT)) return true; return false; } - final private boolean jj_3_972() { + final private boolean jj_3_974() { if (jj_scan_token(CUME_DIST)) return true; return false; } @@ -27714,91 +27734,91 @@ final private boolean jj_3_972() { final private boolean jj_3R_241() { Token xsp; xsp = jj_scanpos; - if (jj_3_509()) { + if (jj_3_511()) { jj_scanpos = xsp; - if (jj_3_510()) { + if (jj_3_512()) { jj_scanpos = xsp; - if (jj_3_511()) { + if (jj_3_513()) { jj_scanpos = xsp; - if (jj_3_512()) return true; + if (jj_3_514()) return true; } } } return false; } - final private boolean jj_3_971() { + final private boolean jj_3_973() { if (jj_scan_token(COVAR_SAMP)) return true; return false; } - final private boolean jj_3_970() { + final private boolean jj_3_972() { if (jj_scan_token(COVAR_POP)) return true; return false; } - final private boolean jj_3_969() { + final private boolean jj_3_971() { if (jj_scan_token(COLLECT)) return true; return false; } - final private boolean jj_3_968() { + final private boolean jj_3_970() { if (jj_scan_token(COALESCE)) return true; return false; } - final private boolean jj_3_967() { + final private boolean jj_3_969() { if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } - final private boolean jj_3_966() { + final private boolean jj_3_968() { if (jj_scan_token(CHAR_LENGTH)) return true; return false; } - final private boolean jj_3_965() { + final private boolean jj_3_967() { if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_508() { + final private boolean jj_3_510() { if (jj_3R_191()) return true; return false; } - final private boolean jj_3_964() { + final private boolean jj_3_966() { if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_963() { + final private boolean jj_3_965() { if (jj_scan_token(CARDINALITY)) return true; return false; } - final private boolean jj_3_169() { + final private boolean jj_3_171() { if (jj_scan_token(AS)) return true; if (jj_scan_token(DOT_FORMAT)) return true; return false; } - final private boolean jj_3_507() { + final private boolean jj_3_509() { if (jj_3R_241()) return true; return false; } - final private boolean jj_3_962() { + final private boolean jj_3_964() { if (jj_scan_token(AVG)) return true; return false; } - final private boolean jj_3_961() { + final private boolean jj_3_963() { if (jj_scan_token(ABS)) return true; return false; } - final private boolean jj_3_168() { + final private boolean jj_3_170() { if (jj_scan_token(AS)) return true; if (jj_scan_token(JSON)) return true; return false; @@ -27807,9 +27827,9 @@ final private boolean jj_3_168() { final private boolean jj_3R_117() { Token xsp; xsp = jj_scanpos; - if (jj_3_507()) { + if (jj_3_509()) { jj_scanpos = xsp; - if (jj_3_508()) return true; + if (jj_3_510()) return true; } return false; } @@ -27817,10 +27837,6 @@ final private boolean jj_3R_117() { final private boolean jj_3R_331() { Token xsp; xsp = jj_scanpos; - if (jj_3_961()) { - jj_scanpos = xsp; - if (jj_3_962()) { - jj_scanpos = xsp; if (jj_3_963()) { jj_scanpos = xsp; if (jj_3_964()) { @@ -27945,7 +27961,11 @@ final private boolean jj_3R_331() { jj_scanpos = xsp; if (jj_3_1024()) { jj_scanpos = xsp; - if (jj_3_1025()) return true; + if (jj_3_1025()) { + jj_scanpos = xsp; + if (jj_3_1026()) { + jj_scanpos = xsp; + if (jj_3_1027()) return true; } } } @@ -28013,13 +28033,13 @@ final private boolean jj_3R_331() { return false; } - final private boolean jj_3_167() { + final private boolean jj_3_169() { if (jj_scan_token(AS)) return true; if (jj_scan_token(XML)) return true; return false; } - final private boolean jj_3_166() { + final private boolean jj_3_168() { if (jj_3R_149()) return true; return false; } @@ -28030,12 +28050,12 @@ final private boolean jj_3R_109() { return false; } - final private boolean jj_3_960() { + final private boolean jj_3_962() { if (jj_3R_331()) return true; return false; } - final private boolean jj_3_959() { + final private boolean jj_3_961() { if (jj_3R_150()) return true; return false; } @@ -28043,29 +28063,29 @@ final private boolean jj_3_959() { final private boolean jj_3R_227() { Token xsp; xsp = jj_scanpos; - if (jj_3_959()) { + if (jj_3_961()) { jj_scanpos = xsp; - if (jj_3_960()) return true; + if (jj_3_962()) return true; } return false; } - final private boolean jj_3_506() { + final private boolean jj_3_508() { if (jj_3R_240()) return true; return false; } - final private boolean jj_3_505() { + final private boolean jj_3_507() { if (jj_3R_239()) return true; return false; } - final private boolean jj_3_504() { + final private boolean jj_3_506() { if (jj_3R_238()) return true; return false; } - final private boolean jj_3_503() { + final private boolean jj_3_505() { if (jj_3R_237()) return true; return false; } @@ -28074,13 +28094,13 @@ final private boolean jj_3R_108() { if (jj_scan_token(DROP)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_503()) { + if (jj_3_505()) { jj_scanpos = xsp; - if (jj_3_504()) { + if (jj_3_506()) { jj_scanpos = xsp; - if (jj_3_505()) { + if (jj_3_507()) { jj_scanpos = xsp; - if (jj_3_506()) return true; + if (jj_3_508()) return true; } } } @@ -28092,107 +28112,107 @@ final private boolean jj_3R_332() { return false; } - final private boolean jj_3_155() { + final private boolean jj_3_157() { if (jj_scan_token(COMMA)) return true; if (jj_3R_141()) return true; return false; } - final private boolean jj_3_164() { + final private boolean jj_3_166() { if (jj_3R_147()) return true; return false; } - final private boolean jj_3_163() { + final private boolean jj_3_165() { if (jj_3R_146()) return true; return false; } - final private boolean jj_3_162() { + final private boolean jj_3_164() { if (jj_3R_145()) return true; return false; } - final private boolean jj_3_161() { + final private boolean jj_3_163() { if (jj_3R_144()) return true; return false; } - final private boolean jj_3_957() { + final private boolean jj_3_959() { if (jj_3R_329()) return true; return false; } - final private boolean jj_3_160() { + final private boolean jj_3_162() { if (jj_3R_143()) return true; return false; } - final private boolean jj_3_502() { + final private boolean jj_3_504() { if (jj_3R_236()) return true; return false; } - final private boolean jj_3_956() { + final private boolean jj_3_958() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_501() { + final private boolean jj_3_503() { if (jj_3R_235()) return true; return false; } - final private boolean jj_3_165() { + final private boolean jj_3_167() { if (jj_scan_token(FROM)) return true; if (jj_3R_148()) return true; return false; } - final private boolean jj_3_500() { + final private boolean jj_3_502() { if (jj_3R_234()) return true; return false; } - final private boolean jj_3_159() { + final private boolean jj_3_161() { if (jj_scan_token(COMMA)) return true; if (jj_3R_142()) return true; return false; } - final private boolean jj_3_499() { + final private boolean jj_3_501() { if (jj_3R_233()) return true; return false; } - final private boolean jj_3_958() { + final private boolean jj_3_960() { if (jj_scan_token(OVER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_956()) { + if (jj_3_958()) { jj_scanpos = xsp; - if (jj_3_957()) return true; + if (jj_3_959()) return true; } return false; } - final private boolean jj_3_158() { + final private boolean jj_3_160() { if (jj_3R_82()) return true; return false; } - final private boolean jj_3_498() { + final private boolean jj_3_500() { if (jj_scan_token(OR)) return true; if (jj_scan_token(REPLACE)) return true; return false; } - final private boolean jj_3_157() { + final private boolean jj_3_159() { if (jj_scan_token(STREAM)) return true; return false; } - final private boolean jj_3_955() { + final private boolean jj_3_957() { if (jj_scan_token(TO)) return true; if (jj_3R_330()) return true; return false; @@ -28202,27 +28222,27 @@ final private boolean jj_3R_107() { if (jj_scan_token(CREATE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_498()) jj_scanpos = xsp; + if (jj_3_500()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_499()) { + if (jj_3_501()) { jj_scanpos = xsp; - if (jj_3_500()) { + if (jj_3_502()) { jj_scanpos = xsp; - if (jj_3_501()) { + if (jj_3_503()) { jj_scanpos = xsp; - if (jj_3_502()) return true; + if (jj_3_504()) return true; } } } return false; } - final private boolean jj_3_497() { + final private boolean jj_3_499() { if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_156() { + final private boolean jj_3_158() { if (jj_scan_token(HINT_BEG)) return true; if (jj_3R_141()) return true; return false; @@ -28233,7 +28253,7 @@ final private boolean jj_3R_398() { return false; } - final private boolean jj_3_154() { + final private boolean jj_3_156() { if (jj_scan_token(COMMA)) return true; if (jj_3R_141()) return true; return false; @@ -28243,12 +28263,12 @@ final private boolean jj_3R_75() { if (jj_scan_token(SELECT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_156()) jj_scanpos = xsp; + if (jj_3_158()) jj_scanpos = xsp; if (jj_3R_344()) return true; return false; } - final private boolean jj_3_496() { + final private boolean jj_3_498() { if (jj_scan_token(SYSTEM)) return true; return false; } @@ -28256,19 +28276,19 @@ final private boolean jj_3_496() { final private boolean jj_3R_353() { Token xsp; xsp = jj_scanpos; - if (jj_3_496()) { + if (jj_3_498()) { jj_scanpos = xsp; - if (jj_3_497()) return true; + if (jj_3_499()) return true; } return false; } - final private boolean jj_3_954() { + final private boolean jj_3_956() { if (jj_3R_218()) return true; return false; } - final private boolean jj_3_953() { + final private boolean jj_3_955() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; @@ -28280,7 +28300,7 @@ final private boolean jj_3R_106() { return false; } - final private boolean jj_3_952() { + final private boolean jj_3_954() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(STAR)) return true; return false; @@ -28296,17 +28316,17 @@ final private boolean jj_3R_402() { return false; } - final private boolean jj_3_493() { + final private boolean jj_3_495() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_951() { + final private boolean jj_3_953() { if (jj_scan_token(SPECIFIC)) return true; return false; } - final private boolean jj_3_492() { + final private boolean jj_3_494() { if (jj_3R_150()) return true; return false; } @@ -28314,7 +28334,7 @@ final private boolean jj_3_492() { final private boolean jj_3R_326() { Token xsp; xsp = jj_scanpos; - if (jj_3_951()) { + if (jj_3_953()) { jj_scanpos = xsp; if (jj_3R_402()) return true; } @@ -28322,76 +28342,76 @@ final private boolean jj_3R_326() { return false; } - final private boolean jj_3_150() { + final private boolean jj_3_152() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_495() { + final private boolean jj_3_497() { if (jj_scan_token(RESET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_492()) { + if (jj_3_494()) { jj_scanpos = xsp; - if (jj_3_493()) return true; + if (jj_3_495()) return true; } return false; } - final private boolean jj_3_153() { + final private boolean jj_3_155() { if (jj_3R_140()) return true; return false; } - final private boolean jj_3_491() { + final private boolean jj_3_493() { if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_949() { + final private boolean jj_3_951() { if (jj_3R_329()) return true; return false; } - final private boolean jj_3_152() { + final private boolean jj_3_154() { if (jj_3R_122()) return true; return false; } - final private boolean jj_3_490() { + final private boolean jj_3_492() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_149() { + final private boolean jj_3_151() { if (jj_scan_token(COMMA)) return true; if (jj_3R_138()) return true; return false; } - final private boolean jj_3_948() { + final private boolean jj_3_950() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_489() { + final private boolean jj_3_491() { if (jj_3R_117()) return true; return false; } - final private boolean jj_3_151() { + final private boolean jj_3_153() { if (jj_3R_139()) return true; return false; } - final private boolean jj_3_950() { + final private boolean jj_3_952() { if (jj_scan_token(OVER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_948()) { + if (jj_3_950()) { jj_scanpos = xsp; - if (jj_3_949()) return true; + if (jj_3_951()) return true; } return false; } @@ -28401,7 +28421,7 @@ final private boolean jj_3R_141() { return false; } - final private boolean jj_3_494() { + final private boolean jj_3_496() { if (jj_scan_token(SET)) return true; if (jj_3R_150()) return true; return false; @@ -28410,25 +28430,25 @@ final private boolean jj_3_494() { final private boolean jj_3R_105() { Token xsp; xsp = jj_scanpos; - if (jj_3_494()) { + if (jj_3_496()) { jj_scanpos = xsp; - if (jj_3_495()) return true; + if (jj_3_497()) return true; } return false; } - final private boolean jj_3_947() { + final private boolean jj_3_949() { if (jj_scan_token(FILTER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_946() { + final private boolean jj_3_948() { if (jj_3R_321()) return true; return false; } - final private boolean jj_3_945() { + final private boolean jj_3_947() { if (jj_3R_328()) return true; return false; } @@ -28439,23 +28459,23 @@ final private boolean jj_3R_140() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_149()) { jj_scanpos = xsp; break; } + if (jj_3_151()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_944() { + final private boolean jj_3_946() { if (jj_3R_327()) return true; return false; } - final private boolean jj_3_943() { + final private boolean jj_3_945() { if (jj_3R_326()) return true; return false; } - final private boolean jj_3_488() { + final private boolean jj_3_490() { if (jj_scan_token(CURRENT)) return true; return false; } @@ -28465,22 +28485,22 @@ final private boolean jj_3R_411() { return false; } - final private boolean jj_3_487() { + final private boolean jj_3_489() { if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_148() { + final private boolean jj_3_150() { if (jj_3R_136()) return true; return false; } - final private boolean jj_3_942() { + final private boolean jj_3_944() { if (jj_3R_325()) return true; return false; } - final private boolean jj_3_147() { + final private boolean jj_3_149() { if (jj_3R_137()) return true; return false; } @@ -28488,9 +28508,9 @@ final private boolean jj_3_147() { final private boolean jj_3R_231() { Token xsp; xsp = jj_scanpos; - if (jj_3_487()) { + if (jj_3_489()) { jj_scanpos = xsp; - if (jj_3_488()) return true; + if (jj_3_490()) return true; } if (jj_scan_token(VALUE)) return true; return false; @@ -28499,11 +28519,11 @@ final private boolean jj_3R_231() { final private boolean jj_3R_376() { Token xsp; xsp = jj_scanpos; - if (jj_3_942()) { + if (jj_3_944()) { jj_scanpos = xsp; if (jj_3R_411()) { jj_scanpos = xsp; - if (jj_3_943()) return true; + if (jj_3_945()) return true; } } return false; @@ -28512,25 +28532,25 @@ final private boolean jj_3R_376() { final private boolean jj_3R_138() { Token xsp; xsp = jj_scanpos; - if (jj_3_147()) { + if (jj_3_149()) { jj_scanpos = xsp; - if (jj_3_148()) return true; + if (jj_3_150()) return true; } return false; } - final private boolean jj_3_486() { + final private boolean jj_3_488() { if (jj_scan_token(ELSE)) return true; if (jj_3R_81()) return true; return false; } - final private boolean jj_3_146() { + final private boolean jj_3_148() { if (jj_3R_136()) return true; return false; } - final private boolean jj_3_145() { + final private boolean jj_3_147() { if (jj_3R_84()) return true; return false; } @@ -28538,16 +28558,16 @@ final private boolean jj_3_145() { final private boolean jj_3R_135() { Token xsp; xsp = jj_scanpos; - if (jj_3_145()) { + if (jj_3_147()) { jj_scanpos = xsp; - if (jj_3_146()) return true; + if (jj_3_148()) return true; } if (jj_scan_token(EQ)) return true; if (jj_3R_136()) return true; return false; } - final private boolean jj_3_485() { + final private boolean jj_3_487() { if (jj_scan_token(WHEN)) return true; if (jj_3R_232()) return true; return false; @@ -28562,12 +28582,12 @@ final private boolean jj_3R_327() { return false; } - final private boolean jj_3_484() { + final private boolean jj_3_486() { if (jj_3R_81()) return true; return false; } - final private boolean jj_3_144() { + final private boolean jj_3_146() { if (jj_scan_token(COMMA)) return true; if (jj_3R_135()) return true; return false; @@ -28577,14 +28597,14 @@ final private boolean jj_3R_230() { if (jj_scan_token(CASE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_484()) { + if (jj_3_486()) { jj_scanpos = xsp; if (jj_3R_393()) return true; } return false; } - final private boolean jj_3_941() { + final private boolean jj_3_943() { if (jj_scan_token(RESPECT)) return true; if (jj_scan_token(NULLS)) return true; return false; @@ -28593,9 +28613,9 @@ final private boolean jj_3_941() { final private boolean jj_3R_219() { Token xsp; xsp = jj_scanpos; - if (jj_3_940()) { + if (jj_3_942()) { jj_scanpos = xsp; - if (jj_3_941()) return true; + if (jj_3_943()) return true; } return false; } @@ -28606,24 +28626,24 @@ final private boolean jj_3R_139() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_144()) { jj_scanpos = xsp; break; } + if (jj_3_146()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_940() { + final private boolean jj_3_942() { if (jj_scan_token(IGNORE)) return true; if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_483() { + final private boolean jj_3_485() { if (jj_3R_231()) return true; return false; } - final private boolean jj_3_478() { + final private boolean jj_3_480() { Token xsp; xsp = jj_scanpos; if (jj_scan_token(542)) jj_scanpos = xsp; @@ -28632,12 +28652,12 @@ final private boolean jj_3_478() { return false; } - final private boolean jj_3_482() { + final private boolean jj_3_484() { if (jj_3R_230()) return true; return false; } - final private boolean jj_3_481() { + final private boolean jj_3_483() { if (jj_3R_229()) return true; return false; } @@ -28649,12 +28669,12 @@ final private boolean jj_3R_240() { return false; } - final private boolean jj_3_480() { + final private boolean jj_3_482() { if (jj_3R_150()) return true; return false; } - final private boolean jj_3_479() { + final private boolean jj_3_481() { if (jj_3R_228()) return true; return false; } @@ -28670,7 +28690,7 @@ final private boolean jj_3R_382() { return false; } - final private boolean jj_3_477() { + final private boolean jj_3_479() { if (jj_3R_226()) return true; return false; } @@ -28681,17 +28701,17 @@ final private boolean jj_3R_236() { return false; } - final private boolean jj_3_476() { + final private boolean jj_3_478() { if (jj_3R_225()) return true; return false; } - final private boolean jj_3_475() { + final private boolean jj_3_477() { if (jj_3R_224()) return true; return false; } - final private boolean jj_3_474() { + final private boolean jj_3_476() { if (jj_3R_223()) return true; return false; } @@ -28702,17 +28722,17 @@ final private boolean jj_3R_328() { return false; } - final private boolean jj_3_473() { + final private boolean jj_3_475() { if (jj_3R_222()) return true; return false; } - final private boolean jj_3_472() { + final private boolean jj_3_474() { if (jj_3R_221()) return true; return false; } - final private boolean jj_3_471() { + final private boolean jj_3_473() { if (jj_3R_217()) return true; return false; } @@ -28723,12 +28743,12 @@ final private boolean jj_3R_102() { return false; } - final private boolean jj_3_470() { + final private boolean jj_3_472() { if (jj_3R_220()) return true; return false; } - final private boolean jj_3_939() { + final private boolean jj_3_941() { if (jj_scan_token(COMMA)) return true; if (jj_3R_137()) return true; return false; @@ -28737,10 +28757,6 @@ final private boolean jj_3_939() { final private boolean jj_3R_214() { Token xsp; xsp = jj_scanpos; - if (jj_3_470()) { - jj_scanpos = xsp; - if (jj_3_471()) { - jj_scanpos = xsp; if (jj_3_472()) { jj_scanpos = xsp; if (jj_3_473()) { @@ -28753,17 +28769,21 @@ final private boolean jj_3R_214() { jj_scanpos = xsp; if (jj_3_477()) { jj_scanpos = xsp; - if (jj_3R_382()) { + if (jj_3_478()) { jj_scanpos = xsp; if (jj_3_479()) { jj_scanpos = xsp; - if (jj_3_480()) { + if (jj_3R_382()) { jj_scanpos = xsp; if (jj_3_481()) { jj_scanpos = xsp; if (jj_3_482()) { jj_scanpos = xsp; - if (jj_3_483()) return true; + if (jj_3_483()) { + jj_scanpos = xsp; + if (jj_3_484()) { + jj_scanpos = xsp; + if (jj_3_485()) return true; } } } @@ -28780,12 +28800,12 @@ final private boolean jj_3R_214() { return false; } - final private boolean jj_3_938() { + final private boolean jj_3_940() { if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_937() { + final private boolean jj_3_939() { if (jj_scan_token(PREV)) return true; return false; } @@ -28799,9 +28819,9 @@ final private boolean jj_3R_103() { final private boolean jj_3R_323() { Token xsp; xsp = jj_scanpos; - if (jj_3_937()) { + if (jj_3_939()) { jj_scanpos = xsp; - if (jj_3_938()) return true; + if (jj_3_940()) return true; } if (jj_scan_token(LPAREN)) return true; return false; @@ -28813,39 +28833,39 @@ final private boolean jj_3R_104() { return false; } - final private boolean jj_3_467() { + final private boolean jj_3_469() { if (jj_3R_219()) return true; return false; } - final private boolean jj_3_143() { + final private boolean jj_3_145() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_469() { + final private boolean jj_3_471() { if (jj_scan_token(COMMA)) return true; if (jj_3R_137()) return true; return false; } - final private boolean jj_3_936() { + final private boolean jj_3_938() { if (jj_scan_token(COMMA)) return true; if (jj_3R_137()) return true; return false; } - final private boolean jj_3_142() { + final private boolean jj_3_144() { if (jj_3R_117()) return true; return false; } - final private boolean jj_3_468() { + final private boolean jj_3_470() { if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_935() { + final private boolean jj_3_937() { if (jj_scan_token(LAST)) return true; return false; } @@ -28856,17 +28876,17 @@ final private boolean jj_3R_134() { return false; } - final private boolean jj_3_934() { + final private boolean jj_3_936() { if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_466() { + final private boolean jj_3_468() { if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_465() { + final private boolean jj_3_467() { if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } @@ -28875,12 +28895,12 @@ final private boolean jj_3R_401() { return false; } - final private boolean jj_3_933() { + final private boolean jj_3_935() { if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_932() { + final private boolean jj_3_934() { if (jj_scan_token(RUNNING)) return true; return false; } @@ -28888,15 +28908,15 @@ final private boolean jj_3_932() { final private boolean jj_3R_414() { Token xsp; xsp = jj_scanpos; - if (jj_3_465()) { + if (jj_3_467()) { jj_scanpos = xsp; - if (jj_3_466()) return true; + if (jj_3_468()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_141() { + final private boolean jj_3_143() { if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } @@ -28904,33 +28924,33 @@ final private boolean jj_3_141() { final private boolean jj_3R_322() { Token xsp; xsp = jj_scanpos; - if (jj_3_932()) { + if (jj_3_934()) { jj_scanpos = xsp; - if (jj_3_933()) { + if (jj_3_935()) { jj_scanpos = xsp; if (jj_3R_401()) return true; } } xsp = jj_scanpos; - if (jj_3_934()) { + if (jj_3_936()) { jj_scanpos = xsp; - if (jj_3_935()) return true; + if (jj_3_937()) return true; } if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_140() { + final private boolean jj_3_142() { if (jj_scan_token(NULLS)) return true; return false; } - final private boolean jj_3_139() { + final private boolean jj_3_141() { if (jj_scan_token(SIZE)) return true; return false; } - final private boolean jj_3_138() { + final private boolean jj_3_140() { if (jj_scan_token(TOTAL)) return true; return false; } @@ -28938,15 +28958,15 @@ final private boolean jj_3_138() { final private boolean jj_3R_362() { Token xsp; xsp = jj_scanpos; - if (jj_3_137()) { - jj_scanpos = xsp; - if (jj_3_138()) { - jj_scanpos = xsp; if (jj_3_139()) { jj_scanpos = xsp; if (jj_3_140()) { jj_scanpos = xsp; - if (jj_3_141()) return true; + if (jj_3_141()) { + jj_scanpos = xsp; + if (jj_3_142()) { + jj_scanpos = xsp; + if (jj_3_143()) return true; } } } @@ -28954,27 +28974,27 @@ final private boolean jj_3R_362() { return false; } - final private boolean jj_3_137() { + final private boolean jj_3_139() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_931() { + final private boolean jj_3_933() { if (jj_scan_token(FINAL)) return true; return false; } - final private boolean jj_3_135() { + final private boolean jj_3_137() { if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_930() { + final private boolean jj_3_932() { if (jj_scan_token(RUNNING)) return true; return false; } - final private boolean jj_3_133() { + final private boolean jj_3_135() { if (jj_scan_token(COMMA)) return true; if (jj_3R_134()) return true; return false; @@ -28983,86 +29003,86 @@ final private boolean jj_3_133() { final private boolean jj_3R_324() { Token xsp; xsp = jj_scanpos; - if (jj_3_930()) { + if (jj_3_932()) { jj_scanpos = xsp; - if (jj_3_931()) return true; + if (jj_3_933()) return true; } if (jj_3R_376()) return true; return false; } - final private boolean jj_3_134() { + final private boolean jj_3_136() { if (jj_3R_134()) return true; return false; } - final private boolean jj_3_464() { + final private boolean jj_3_466() { if (jj_scan_token(SEPARATOR)) return true; if (jj_3R_136()) return true; return false; } - final private boolean jj_3_136() { + final private boolean jj_3_138() { if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_134()) { + if (jj_3_136()) { jj_scanpos = xsp; - if (jj_3_135()) return true; + if (jj_3_137()) return true; } return false; } - final private boolean jj_3_463() { + final private boolean jj_3_465() { if (jj_3R_70()) return true; return false; } - final private boolean jj_3_929() { + final private boolean jj_3_931() { if (jj_3R_324()) return true; return false; } - final private boolean jj_3_928() { + final private boolean jj_3_930() { if (jj_3R_323()) return true; return false; } - final private boolean jj_3_462() { + final private boolean jj_3_464() { if (jj_3R_219()) return true; return false; } - final private boolean jj_3_927() { + final private boolean jj_3_929() { if (jj_3R_322()) return true; return false; } - final private boolean jj_3_926() { + final private boolean jj_3_928() { if (jj_scan_token(MATCH_NUMBER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_461() { + final private boolean jj_3_463() { if (jj_scan_token(COMMA)) return true; if (jj_3R_83()) return true; return false; } - final private boolean jj_3_132() { + final private boolean jj_3_134() { if (jj_scan_token(COMMA)) return true; if (jj_3R_133()) return true; return false; } - final private boolean jj_3_925() { + final private boolean jj_3_927() { if (jj_scan_token(CLASSIFIER)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_460() { + final private boolean jj_3_462() { if (jj_3R_82()) return true; return false; } @@ -29070,15 +29090,15 @@ final private boolean jj_3_460() { final private boolean jj_3R_302() { Token xsp; xsp = jj_scanpos; - if (jj_3_925()) { - jj_scanpos = xsp; - if (jj_3_926()) { - jj_scanpos = xsp; if (jj_3_927()) { jj_scanpos = xsp; if (jj_3_928()) { jj_scanpos = xsp; - if (jj_3_929()) return true; + if (jj_3_929()) { + jj_scanpos = xsp; + if (jj_3_930()) { + jj_scanpos = xsp; + if (jj_3_931()) return true; } } } @@ -29091,27 +29111,27 @@ final private boolean jj_3R_352() { return false; } - final private boolean jj_3_459() { + final private boolean jj_3_461() { if (jj_scan_token(STRING_AGG)) return true; return false; } - final private boolean jj_3_130() { + final private boolean jj_3_132() { if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_458() { + final private boolean jj_3_460() { if (jj_scan_token(GROUP_CONCAT)) return true; return false; } - final private boolean jj_3_457() { + final private boolean jj_3_459() { if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } - final private boolean jj_3_456() { + final private boolean jj_3_458() { if (jj_scan_token(ARRAY_AGG)) return true; return false; } @@ -29119,13 +29139,13 @@ final private boolean jj_3_456() { final private boolean jj_3R_325() { Token xsp; xsp = jj_scanpos; - if (jj_3_456()) { + if (jj_3_458()) { jj_scanpos = xsp; - if (jj_3_457()) { + if (jj_3_459()) { jj_scanpos = xsp; - if (jj_3_458()) { + if (jj_3_460()) { jj_scanpos = xsp; - if (jj_3_459()) return true; + if (jj_3_461()) return true; } } } @@ -29133,27 +29153,27 @@ final private boolean jj_3R_325() { return false; } - final private boolean jj_3_924() { + final private boolean jj_3_926() { if (jj_scan_token(SESSION)) return true; return false; } - final private boolean jj_3_923() { + final private boolean jj_3_925() { if (jj_scan_token(HOP)) return true; return false; } - final private boolean jj_3_131() { + final private boolean jj_3_133() { if (jj_3R_122()) return true; return false; } - final private boolean jj_3_922() { + final private boolean jj_3_924() { if (jj_scan_token(TUMBLE)) return true; return false; } - final private boolean jj_3_129() { + final private boolean jj_3_131() { if (jj_scan_token(TRANSACTION)) return true; return false; } @@ -29161,11 +29181,11 @@ final private boolean jj_3_129() { final private boolean jj_3R_310() { Token xsp; xsp = jj_scanpos; - if (jj_3_922()) { + if (jj_3_924()) { jj_scanpos = xsp; - if (jj_3_923()) { + if (jj_3_925()) { jj_scanpos = xsp; - if (jj_3_924()) return true; + if (jj_3_926()) return true; } } if (jj_3R_399()) return true; @@ -29177,7 +29197,7 @@ final private boolean jj_3R_133() { return false; } - final private boolean jj_3_454() { + final private boolean jj_3_456() { if (jj_3R_218()) return true; return false; } @@ -29186,22 +29206,22 @@ final private boolean jj_3R_101() { if (jj_scan_token(ROLLBACK)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_130()) jj_scanpos = xsp; + if (jj_3_132()) jj_scanpos = xsp; return false; } - final private boolean jj_3_453() { + final private boolean jj_3_455() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_455() { + final private boolean jj_3_457() { if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_452() { + final private boolean jj_3_454() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(STAR)) return true; return false; @@ -29217,7 +29237,7 @@ final private boolean jj_3R_100() { if (jj_scan_token(COMMIT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_129()) jj_scanpos = xsp; + if (jj_3_131()) jj_scanpos = xsp; return false; } @@ -29238,17 +29258,17 @@ final private boolean jj_3R_294() { return false; } - final private boolean jj_3_451() { + final private boolean jj_3_453() { if (jj_3R_217()) return true; return false; } - final private boolean jj_3_450() { + final private boolean jj_3_452() { if (jj_3R_196()) return true; return false; } - final private boolean jj_3_128() { + final private boolean jj_3_130() { if (jj_scan_token(ASYNC)) return true; return false; } @@ -29256,9 +29276,9 @@ final private boolean jj_3_128() { final private boolean jj_3R_74() { Token xsp; xsp = jj_scanpos; - if (jj_3_450()) { + if (jj_3_452()) { jj_scanpos = xsp; - if (jj_3_451()) return true; + if (jj_3_453()) return true; } return false; } @@ -29281,23 +29301,23 @@ final private boolean jj_3R_96() { return false; } - final private boolean jj_3_449() { + final private boolean jj_3_451() { if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_448() { + final private boolean jj_3_450() { if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_447() { + final private boolean jj_3_449() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_446() { + final private boolean jj_3_448() { if (jj_scan_token(PRECEDES)) return true; return false; } @@ -29314,18 +29334,18 @@ final private boolean jj_3R_97() { return false; } - final private boolean jj_3_445() { + final private boolean jj_3_447() { if (jj_scan_token(IMMEDIATELY)) return true; if (jj_scan_token(PRECEDES)) return true; return false; } - final private boolean jj_3_444() { + final private boolean jj_3_446() { if (jj_scan_token(OVERLAPS)) return true; return false; } - final private boolean jj_3_443() { + final private boolean jj_3_445() { if (jj_3R_132()) return true; return false; } @@ -29336,7 +29356,7 @@ final private boolean jj_3R_95() { return false; } - final private boolean jj_3_921() { + final private boolean jj_3_923() { if (jj_3R_78()) return true; return false; } @@ -29344,20 +29364,20 @@ final private boolean jj_3_921() { final private boolean jj_3R_413() { Token xsp; xsp = jj_scanpos; - if (jj_3_442()) { + if (jj_3_444()) { jj_scanpos = xsp; - if (jj_3_443()) return true; + if (jj_3_445()) return true; } return false; } - final private boolean jj_3_442() { + final private boolean jj_3_444() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_920() { + final private boolean jj_3_922() { if (jj_3R_268()) return true; return false; } @@ -29392,24 +29412,24 @@ final private boolean jj_3R_298() { return false; } - final private boolean jj_3_127() { + final private boolean jj_3_129() { if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_126() { + final private boolean jj_3_128() { if (jj_scan_token(MINUS)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_125() { + final private boolean jj_3_127() { if (jj_scan_token(PLUS)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_437() { + final private boolean jj_3_439() { if (jj_3R_213()) return true; return false; } @@ -29431,15 +29451,15 @@ final private boolean jj_3R_216() { return false; } - final private boolean jj_3_436() { + final private boolean jj_3_438() { if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_441() { + final private boolean jj_3_443() { Token xsp; xsp = jj_scanpos; - if (jj_3_436()) { + if (jj_3_438()) { jj_scanpos = xsp; if (jj_3R_216()) return true; } @@ -29459,13 +29479,13 @@ final private boolean jj_3R_295() { return false; } - final private boolean jj_3_440() { + final private boolean jj_3_442() { if (jj_scan_token(ROW)) return true; if (jj_3R_171()) return true; return false; } - final private boolean jj_3_439() { + final private boolean jj_3_441() { if (jj_3R_215()) return true; return false; } @@ -29476,7 +29496,7 @@ final private boolean jj_3R_235() { return false; } - final private boolean jj_3_120() { + final private boolean jj_3_122() { if (jj_scan_token(COLUMN)) return true; return false; } @@ -29484,44 +29504,44 @@ final private boolean jj_3_120() { final private boolean jj_3R_207() { Token xsp; xsp = jj_scanpos; - if (jj_3_438()) { + if (jj_3_440()) { jj_scanpos = xsp; - if (jj_3_439()) { + if (jj_3_441()) { jj_scanpos = xsp; - if (jj_3_440()) { + if (jj_3_442()) { jj_scanpos = xsp; - if (jj_3_441()) return true; + if (jj_3_443()) return true; } } } return false; } - final private boolean jj_3_438() { + final private boolean jj_3_440() { if (jj_3R_214()) return true; return false; } - final private boolean jj_3_119() { + final private boolean jj_3_121() { if (jj_scan_token(COLUMN)) return true; return false; } - final private boolean jj_3_124() { + final private boolean jj_3_126() { if (jj_scan_token(DROP)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_120()) jj_scanpos = xsp; + if (jj_3_122()) jj_scanpos = xsp; if (jj_3R_131()) return true; if (jj_3R_132()) return true; return false; } - final private boolean jj_3_123() { + final private boolean jj_3_125() { if (jj_scan_token(ADD)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_119()) jj_scanpos = xsp; + if (jj_3_121()) jj_scanpos = xsp; if (jj_3R_129()) return true; if (jj_3R_130()) return true; return false; @@ -29533,12 +29553,12 @@ final private boolean jj_3R_292() { return false; } - final private boolean jj_3_122() { + final private boolean jj_3_124() { if (jj_scan_token(NOLOGGING)) return true; return false; } - final private boolean jj_3_121() { + final private boolean jj_3_123() { if (jj_scan_token(LOGGING)) return true; return false; } @@ -29549,43 +29569,43 @@ final private boolean jj_3R_92() { return false; } - final private boolean jj_3_435() { + final private boolean jj_3_437() { if (jj_scan_token(NE2)) return true; return false; } - final private boolean jj_3_434() { + final private boolean jj_3_436() { if (jj_scan_token(NE)) return true; return false; } - final private boolean jj_3_919() { + final private boolean jj_3_921() { if (jj_scan_token(COMMA)) return true; if (jj_scan_token(JSON_SCOPE)) return true; return false; } - final private boolean jj_3_433() { + final private boolean jj_3_435() { if (jj_scan_token(EQ)) return true; return false; } - final private boolean jj_3_918() { + final private boolean jj_3_920() { if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_432() { + final private boolean jj_3_434() { if (jj_scan_token(GE)) return true; return false; } - final private boolean jj_3_431() { + final private boolean jj_3_433() { if (jj_scan_token(GT)) return true; return false; } - final private boolean jj_3_430() { + final private boolean jj_3_432() { if (jj_scan_token(LE)) return true; return false; } @@ -29593,10 +29613,6 @@ final private boolean jj_3_430() { final private boolean jj_3R_206() { Token xsp; xsp = jj_scanpos; - if (jj_3_429()) { - jj_scanpos = xsp; - if (jj_3_430()) { - jj_scanpos = xsp; if (jj_3_431()) { jj_scanpos = xsp; if (jj_3_432()) { @@ -29605,7 +29621,11 @@ final private boolean jj_3R_206() { jj_scanpos = xsp; if (jj_3_434()) { jj_scanpos = xsp; - if (jj_3_435()) return true; + if (jj_3_435()) { + jj_scanpos = xsp; + if (jj_3_436()) { + jj_scanpos = xsp; + if (jj_3_437()) return true; } } } @@ -29615,12 +29635,12 @@ final private boolean jj_3R_206() { return false; } - final private boolean jj_3_118() { + final private boolean jj_3_120() { if (jj_3R_128()) return true; return false; } - final private boolean jj_3_429() { + final private boolean jj_3_431() { if (jj_scan_token(LT)) return true; return false; } @@ -29634,14 +29654,14 @@ final private boolean jj_3R_290() { final private boolean jj_3R_130() { Token xsp; xsp = jj_scanpos; - if (jj_3_117()) { + if (jj_3_119()) { jj_scanpos = xsp; - if (jj_3_118()) return true; + if (jj_3_120()) return true; } return false; } - final private boolean jj_3_117() { + final private boolean jj_3_119() { if (jj_3R_127()) return true; return false; } @@ -29650,18 +29670,18 @@ final private boolean jj_3R_405() { return false; } - final private boolean jj_3_426() { + final private boolean jj_3_428() { if (jj_3R_212()) return true; return false; } - final private boolean jj_3_116() { + final private boolean jj_3_118() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(NULL)) return true; return false; } - final private boolean jj_3_419() { + final private boolean jj_3_421() { if (jj_scan_token(DOT)) return true; if (jj_3R_84()) return true; return false; @@ -29673,59 +29693,59 @@ final private boolean jj_3R_127() { return false; } - final private boolean jj_3_418() { + final private boolean jj_3_420() { if (jj_3R_81()) return true; return false; } - final private boolean jj_3_917() { + final private boolean jj_3_919() { if (jj_3R_321()) return true; return false; } - final private boolean jj_3_417() { + final private boolean jj_3_419() { if (jj_scan_token(SAFE_ORDINAL)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_416() { + final private boolean jj_3_418() { if (jj_scan_token(SAFE_OFFSET)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_415() { + final private boolean jj_3_417() { if (jj_scan_token(ORDINAL)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_115() { + final private boolean jj_3_117() { if (jj_scan_token(COMMA)) return true; if (jj_3R_127()) return true; return false; } - final private boolean jj_3_414() { + final private boolean jj_3_416() { if (jj_scan_token(OFFSET)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_425() { + final private boolean jj_3_427() { if (jj_scan_token(LBRACKET)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_414()) { - jj_scanpos = xsp; - if (jj_3_415()) { - jj_scanpos = xsp; if (jj_3_416()) { jj_scanpos = xsp; if (jj_3_417()) { jj_scanpos = xsp; - if (jj_3_418()) return true; + if (jj_3_418()) { + jj_scanpos = xsp; + if (jj_3_419()) { + jj_scanpos = xsp; + if (jj_3_420()) return true; } } } @@ -29739,23 +29759,23 @@ final private boolean jj_3R_128() { return false; } - final private boolean jj_3_916() { + final private boolean jj_3_918() { if (jj_3R_319()) return true; return false; } - final private boolean jj_3_424() { + final private boolean jj_3_426() { if (jj_3R_211()) return true; if (jj_3R_208()) return true; return false; } - final private boolean jj_3_423() { + final private boolean jj_3_425() { if (jj_3R_210()) return true; return false; } - final private boolean jj_3_915() { + final private boolean jj_3_917() { if (jj_3R_320()) return true; return false; } @@ -29766,13 +29786,13 @@ final private boolean jj_3R_309() { return false; } - final private boolean jj_3_413() { + final private boolean jj_3_415() { if (jj_scan_token(ESCAPE)) return true; if (jj_3R_207()) return true; return false; } - final private boolean jj_3_409() { + final private boolean jj_3_411() { if (jj_scan_token(STAR)) return true; return false; } @@ -29783,32 +29803,32 @@ final private boolean jj_3R_210() { return false; } - final private boolean jj_3_412() { + final private boolean jj_3_414() { if (jj_scan_token(TILDE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_409()) jj_scanpos = xsp; + if (jj_3_411()) jj_scanpos = xsp; return false; } - final private boolean jj_3_408() { + final private boolean jj_3_410() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_407() { + final private boolean jj_3_409() { if (jj_scan_token(SIMILAR)) return true; if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_411() { + final private boolean jj_3_413() { if (jj_scan_token(NEGATE)) return true; if (jj_scan_token(TILDE)) return true; return false; } - final private boolean jj_3_406() { + final private boolean jj_3_408() { if (jj_scan_token(RLIKE)) return true; return false; } @@ -29818,23 +29838,23 @@ final private boolean jj_3R_320() { return false; } - final private boolean jj_3_405() { + final private boolean jj_3_407() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_402() { + final private boolean jj_3_404() { if (jj_scan_token(SIMILAR)) return true; if (jj_scan_token(TO)) return true; return false; } - final private boolean jj_3_404() { + final private boolean jj_3_406() { if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3_401() { + final private boolean jj_3_403() { if (jj_scan_token(RLIKE)) return true; return false; } @@ -29846,39 +29866,39 @@ final private boolean jj_3R_238() { return false; } - final private boolean jj_3_400() { + final private boolean jj_3_402() { if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_399() { + final private boolean jj_3_401() { if (jj_scan_token(LIKE)) return true; return false; } - final private boolean jj_3_403() { + final private boolean jj_3_405() { if (jj_scan_token(NOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_399()) { + if (jj_3_401()) { jj_scanpos = xsp; - if (jj_3_400()) { + if (jj_3_402()) { jj_scanpos = xsp; - if (jj_3_401()) { + if (jj_3_403()) { jj_scanpos = xsp; - if (jj_3_402()) return true; + if (jj_3_404()) return true; } } } return false; } - final private boolean jj_3_914() { + final private boolean jj_3_916() { if (jj_3R_319()) return true; return false; } - final private boolean jj_3_912() { + final private boolean jj_3_914() { if (jj_scan_token(COMMA)) return true; if (jj_3R_78()) return true; return false; @@ -29891,18 +29911,18 @@ final private boolean jj_3R_237() { return false; } - final private boolean jj_3_410() { + final private boolean jj_3_412() { Token xsp; xsp = jj_scanpos; - if (jj_3_403()) { - jj_scanpos = xsp; - if (jj_3_404()) { - jj_scanpos = xsp; if (jj_3_405()) { jj_scanpos = xsp; if (jj_3_406()) { jj_scanpos = xsp; - if (jj_3_407()) return true; + if (jj_3_407()) { + jj_scanpos = xsp; + if (jj_3_408()) { + jj_scanpos = xsp; + if (jj_3_409()) return true; } } } @@ -29910,12 +29930,12 @@ final private boolean jj_3_410() { return false; } - final private boolean jj_3_913() { + final private boolean jj_3_915() { if (jj_3R_78()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_912()) { jj_scanpos = xsp; break; } + if (jj_3_914()) { jj_scanpos = xsp; break; } } return false; } @@ -29933,104 +29953,104 @@ final private boolean jj_3R_308() { final private boolean jj_3R_131() { Token xsp; xsp = jj_scanpos; - if (jj_3_114()) { + if (jj_3_116()) { jj_scanpos = xsp; if (jj_3R_361()) return true; } return false; } - final private boolean jj_3_114() { + final private boolean jj_3_116() { if (jj_scan_token(IF)) return true; if (jj_scan_token(EXISTS)) return true; return false; } - final private boolean jj_3_422() { + final private boolean jj_3_424() { Token xsp; xsp = jj_scanpos; - if (jj_3_410()) { + if (jj_3_412()) { jj_scanpos = xsp; - if (jj_3_411()) { + if (jj_3_413()) { jj_scanpos = xsp; - if (jj_3_412()) return true; + if (jj_3_414()) return true; } } if (jj_3R_209()) return true; return false; } - final private boolean jj_3_395() { + final private boolean jj_3_397() { if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_396() { + final private boolean jj_3_398() { Token xsp; xsp = jj_scanpos; - if (jj_3_394()) { + if (jj_3_396()) { jj_scanpos = xsp; - if (jj_3_395()) return true; + if (jj_3_397()) return true; } return false; } - final private boolean jj_3_394() { + final private boolean jj_3_396() { if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3_113() { + final private boolean jj_3_115() { if (jj_scan_token(INLINE_SIZE)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_911() { + final private boolean jj_3_913() { if (jj_3R_319()) return true; return false; } - final private boolean jj_3_392() { + final private boolean jj_3_394() { if (jj_scan_token(ASYMMETRIC)) return true; return false; } - final private boolean jj_3_398() { + final private boolean jj_3_400() { if (jj_scan_token(BETWEEN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_396()) jj_scanpos = xsp; + if (jj_3_398()) jj_scanpos = xsp; return false; } - final private boolean jj_3_393() { + final private boolean jj_3_395() { Token xsp; xsp = jj_scanpos; - if (jj_3_391()) { + if (jj_3_393()) { jj_scanpos = xsp; - if (jj_3_392()) return true; + if (jj_3_394()) return true; } return false; } - final private boolean jj_3_391() { + final private boolean jj_3_393() { if (jj_scan_token(SYMMETRIC)) return true; return false; } - final private boolean jj_3_112() { + final private boolean jj_3_114() { if (jj_scan_token(PARALLEL)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } - final private boolean jj_3_111() { + final private boolean jj_3_113() { Token xsp; xsp = jj_scanpos; - if (jj_3_112()) { + if (jj_3_114()) { jj_scanpos = xsp; - if (jj_3_113()) return true; + if (jj_3_115()) return true; } return false; } @@ -30041,23 +30061,23 @@ final private boolean jj_3R_307() { return false; } - final private boolean jj_3_397() { + final private boolean jj_3_399() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(BETWEEN)) return true; return false; } - final private boolean jj_3_110() { + final private boolean jj_3_112() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_421() { + final private boolean jj_3_423() { Token xsp; xsp = jj_scanpos; - if (jj_3_397()) { + if (jj_3_399()) { jj_scanpos = xsp; - if (jj_3_398()) return true; + if (jj_3_400()) return true; } if (jj_3R_208()) return true; return false; @@ -30068,57 +30088,57 @@ final private boolean jj_3R_234() { if (jj_3R_129()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_110()) jj_scanpos = xsp; + if (jj_3_112()) jj_scanpos = xsp; if (jj_scan_token(ON)) return true; return false; } - final private boolean jj_3_910() { + final private boolean jj_3_912() { if (jj_3R_319()) return true; return false; } - final private boolean jj_3_908() { + final private boolean jj_3_910() { if (jj_scan_token(COMMA)) return true; if (jj_3R_318()) return true; return false; } - final private boolean jj_3_387() { + final private boolean jj_3_389() { if (jj_scan_token(ALL)) return true; return false; } - final private boolean jj_3_386() { + final private boolean jj_3_388() { if (jj_scan_token(ANY)) return true; return false; } - final private boolean jj_3_109() { + final private boolean jj_3_111() { if (jj_scan_token(COMMA)) return true; if (jj_3R_126()) return true; return false; } - final private boolean jj_3_385() { + final private boolean jj_3_387() { if (jj_scan_token(SOME)) return true; return false; } - final private boolean jj_3_909() { + final private boolean jj_3_911() { if (jj_3R_318()) return true; return false; } - final private boolean jj_3_390() { + final private boolean jj_3_392() { if (jj_3R_206()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_385()) { + if (jj_3_387()) { jj_scanpos = xsp; - if (jj_3_386()) { + if (jj_3_388()) { jj_scanpos = xsp; - if (jj_3_387()) return true; + if (jj_3_389()) return true; } } return false; @@ -30130,52 +30150,52 @@ final private boolean jj_3R_306() { return false; } - final private boolean jj_3_389() { + final private boolean jj_3_391() { if (jj_scan_token(IN)) return true; return false; } - final private boolean jj_3_388() { + final private boolean jj_3_390() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(IN)) return true; return false; } - final private boolean jj_3_107() { + final private boolean jj_3_109() { if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_108() { + final private boolean jj_3_110() { Token xsp; xsp = jj_scanpos; - if (jj_3_106()) { + if (jj_3_108()) { jj_scanpos = xsp; - if (jj_3_107()) return true; + if (jj_3_109()) return true; } return false; } - final private boolean jj_3_106() { + final private boolean jj_3_108() { if (jj_scan_token(ASC)) return true; return false; } - final private boolean jj_3_420() { + final private boolean jj_3_422() { Token xsp; xsp = jj_scanpos; - if (jj_3_388()) { + if (jj_3_390()) { jj_scanpos = xsp; - if (jj_3_389()) { + if (jj_3_391()) { jj_scanpos = xsp; - if (jj_3_390()) return true; + if (jj_3_392()) return true; } } if (jj_3R_171()) return true; return false; } - final private boolean jj_3_907() { + final private boolean jj_3_909() { if (jj_scan_token(ABSENT)) return true; if (jj_scan_token(ON)) return true; return false; @@ -30189,20 +30209,16 @@ final private boolean jj_3R_126() { final private boolean jj_3R_319() { Token xsp; xsp = jj_scanpos; - if (jj_3_906()) { + if (jj_3_908()) { jj_scanpos = xsp; - if (jj_3_907()) return true; + if (jj_3_909()) return true; } return false; } - final private boolean jj_3_427() { + final private boolean jj_3_429() { Token xsp; xsp = jj_scanpos; - if (jj_3_420()) { - jj_scanpos = xsp; - if (jj_3_421()) { - jj_scanpos = xsp; if (jj_3_422()) { jj_scanpos = xsp; if (jj_3_423()) { @@ -30211,7 +30227,11 @@ final private boolean jj_3_427() { jj_scanpos = xsp; if (jj_3_425()) { jj_scanpos = xsp; - if (jj_3_426()) return true; + if (jj_3_426()) { + jj_scanpos = xsp; + if (jj_3_427()) { + jj_scanpos = xsp; + if (jj_3_428()) return true; } } } @@ -30221,7 +30241,7 @@ final private boolean jj_3_427() { return false; } - final private boolean jj_3_906() { + final private boolean jj_3_908() { if (jj_scan_token(NULL)) return true; if (jj_scan_token(ON)) return true; return false; @@ -30231,17 +30251,17 @@ final private boolean jj_3R_124() { return false; } - final private boolean jj_3_428() { + final private boolean jj_3_430() { Token xsp; - if (jj_3_427()) return true; + if (jj_3_429()) return true; while (true) { xsp = jj_scanpos; - if (jj_3_427()) { jj_scanpos = xsp; break; } + if (jj_3_429()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_103() { + final private boolean jj_3_105() { if (jj_3R_122()) return true; return false; } @@ -30250,22 +30270,22 @@ final private boolean jj_3R_209() { if (jj_3R_208()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_428()) { + if (jj_3_430()) { jj_scanpos = xsp; if (jj_3R_405()) return true; } return false; } - final private boolean jj_3_905() { + final private boolean jj_3_907() { if (jj_scan_token(COLON)) return true; return false; } - final private boolean jj_3_105() { + final private boolean jj_3_107() { Token xsp; xsp = jj_scanpos; - if (jj_3_103()) { + if (jj_3_105()) { jj_scanpos = xsp; if (jj_3R_124()) return true; } @@ -30275,23 +30295,23 @@ final private boolean jj_3_105() { return false; } - final private boolean jj_3_902() { + final private boolean jj_3_904() { if (jj_scan_token(KEY)) return true; if (jj_3R_317()) return true; return false; } - final private boolean jj_3_104() { + final private boolean jj_3_106() { if (jj_3R_123()) return true; return false; } - final private boolean jj_3_904() { + final private boolean jj_3_906() { if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_903() { + final private boolean jj_3_905() { if (jj_scan_token(VALUE)) return true; return false; } @@ -30314,11 +30334,11 @@ final private boolean jj_3R_318() { if (jj_3R_400()) jj_scanpos = xsp; if (jj_3R_317()) return true; xsp = jj_scanpos; - if (jj_3_903()) { + if (jj_3_905()) { jj_scanpos = xsp; - if (jj_3_904()) { + if (jj_3_906()) { jj_scanpos = xsp; - if (jj_3_905()) return true; + if (jj_3_907()) return true; } } return false; @@ -30333,24 +30353,18 @@ final private boolean jj_3R_317() { return false; } - final private boolean jj_3_102() { + final private boolean jj_3_104() { if (jj_scan_token(COMMA)) return true; if (jj_3R_121()) return true; return false; } - final private boolean jj_3_384() { + final private boolean jj_3_386() { if (jj_scan_token(DOT)) return true; if (jj_3R_205()) return true; return false; } - final private boolean jj_3R_123() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_121()) return true; - return false; - } - final private boolean jj_3R_373() { Token xsp; xsp = jj_scanpos; @@ -30362,6 +30376,12 @@ final private boolean jj_3R_373() { return false; } + final private boolean jj_3R_123() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_121()) return true; + return false; + } + final private boolean jj_3R_381() { if (jj_3R_412()) return true; return false; @@ -30376,32 +30396,32 @@ final private boolean jj_3R_208() { if (jj_3R_207()) return true; while (true) { xsp = jj_scanpos; - if (jj_3_384()) { jj_scanpos = xsp; break; } + if (jj_3_386()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_99() { + final private boolean jj_3_101() { if (jj_scan_token(CONSTRAINT)) return true; if (jj_3R_84()) return true; return false; } - final private boolean jj_3_101() { + final private boolean jj_3_103() { Token xsp; xsp = jj_scanpos; - if (jj_3_99()) jj_scanpos = xsp; + if (jj_3_101()) jj_scanpos = xsp; if (jj_scan_token(PRIMARY)) return true; if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_901() { + final private boolean jj_3_903() { if (jj_3R_316()) return true; return false; } - final private boolean jj_3_900() { + final private boolean jj_3_902() { if (jj_3R_315()) return true; if (jj_scan_token(WRAPPER)) return true; return false; @@ -30412,23 +30432,23 @@ final private boolean jj_3R_81() { return false; } - final private boolean jj_3_98() { + final private boolean jj_3_100() { if (jj_scan_token(PRIMARY)) return true; if (jj_scan_token(KEY)) return true; return false; } - final private boolean jj_3_895() { + final private boolean jj_3_897() { if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_899() { + final private boolean jj_3_901() { if (jj_3R_313()) return true; return false; } - final private boolean jj_3_893() { + final private boolean jj_3_895() { if (jj_scan_token(ARRAY)) return true; return false; } @@ -30438,7 +30458,7 @@ final private boolean jj_3R_78() { return false; } - final private boolean jj_3_97() { + final private boolean jj_3_99() { if (jj_scan_token(DEFAULT_)) return true; if (jj_3R_117()) return true; return false; @@ -30453,25 +30473,25 @@ final private boolean jj_3R_305() { final private boolean jj_3R_121() { Token xsp; xsp = jj_scanpos; - if (jj_3_100()) { + if (jj_3_102()) { jj_scanpos = xsp; - if (jj_3_101()) return true; + if (jj_3_103()) return true; } return false; } - final private boolean jj_3_100() { + final private boolean jj_3_102() { if (jj_3R_84()) return true; if (jj_3R_120()) return true; return false; } - final private boolean jj_3_894() { + final private boolean jj_3_896() { if (jj_scan_token(UNCONDITIONAL)) return true; return false; } - final private boolean jj_3_383() { + final private boolean jj_3_385() { if (jj_3R_81()) return true; return false; } @@ -30479,34 +30499,34 @@ final private boolean jj_3_383() { final private boolean jj_3R_248() { Token xsp; xsp = jj_scanpos; - if (jj_3_382()) { + if (jj_3_384()) { jj_scanpos = xsp; - if (jj_3_383()) return true; + if (jj_3_385()) return true; } return false; } - final private boolean jj_3_382() { + final private boolean jj_3_384() { if (jj_3R_204()) return true; return false; } - final private boolean jj_3_892() { + final private boolean jj_3_894() { if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_898() { + final private boolean jj_3_900() { if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_894()) jj_scanpos = xsp; + if (jj_3_896()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_895()) jj_scanpos = xsp; + if (jj_3_897()) jj_scanpos = xsp; return false; } - final private boolean jj_3_897() { + final private boolean jj_3_899() { if (jj_scan_token(WITH)) return true; if (jj_scan_token(CONDITIONAL)) return true; return false; @@ -30518,7 +30538,7 @@ final private boolean jj_3R_119() { return false; } - final private boolean jj_3_381() { + final private boolean jj_3_383() { if (jj_3R_122()) return true; return false; } @@ -30526,21 +30546,21 @@ final private boolean jj_3_381() { final private boolean jj_3R_315() { Token xsp; xsp = jj_scanpos; - if (jj_3_896()) { + if (jj_3_898()) { jj_scanpos = xsp; - if (jj_3_897()) { + if (jj_3_899()) { jj_scanpos = xsp; - if (jj_3_898()) return true; + if (jj_3_900()) return true; } } return false; } - final private boolean jj_3_896() { + final private boolean jj_3_898() { if (jj_scan_token(WITHOUT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_892()) jj_scanpos = xsp; + if (jj_3_894()) jj_scanpos = xsp; return false; } @@ -30549,33 +30569,33 @@ final private boolean jj_3R_203() { return false; } - final private boolean jj_3_96() { + final private boolean jj_3_98() { if (jj_3R_119()) return true; return false; } - final private boolean jj_3_379() { + final private boolean jj_3_381() { if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3_891() { + final private boolean jj_3_893() { if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_95() { + final private boolean jj_3_97() { if (jj_3R_118()) return true; return false; } - final private boolean jj_3_380() { + final private boolean jj_3_382() { if (jj_scan_token(COMMA)) return true; if (jj_3R_203()) return true; return false; } - final private boolean jj_3_890() { + final private boolean jj_3_892() { if (jj_scan_token(EMPTY)) return true; return false; } @@ -30583,9 +30603,9 @@ final private boolean jj_3_890() { final private boolean jj_3R_120() { Token xsp; xsp = jj_scanpos; - if (jj_3_95()) { + if (jj_3_97()) { jj_scanpos = xsp; - if (jj_3_96()) return true; + if (jj_3_98()) return true; } return false; } @@ -30594,34 +30614,34 @@ final private boolean jj_3R_202() { if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_379()) jj_scanpos = xsp; + if (jj_3_381()) jj_scanpos = xsp; if (jj_3R_203()) return true; return false; } - final private boolean jj_3_889() { + final private boolean jj_3_891() { if (jj_scan_token(EMPTY)) return true; if (jj_scan_token(OBJECT)) return true; return false; } - final private boolean jj_3_94() { + final private boolean jj_3_96() { if (jj_3R_84()) return true; return false; } - final private boolean jj_3_93() { + final private boolean jj_3_95() { if (jj_3R_117()) return true; return false; } - final private boolean jj_3_888() { + final private boolean jj_3_890() { if (jj_scan_token(EMPTY)) return true; if (jj_scan_token(ARRAY)) return true; return false; } - final private boolean jj_3_887() { + final private boolean jj_3_889() { if (jj_scan_token(NULL)) return true; return false; } @@ -30632,7 +30652,7 @@ final private boolean jj_3R_116() { return false; } - final private boolean jj_3_886() { + final private boolean jj_3_888() { if (jj_scan_token(ERROR)) return true; return false; } @@ -30640,13 +30660,13 @@ final private boolean jj_3_886() { final private boolean jj_3R_316() { Token xsp; xsp = jj_scanpos; - if (jj_3_886()) { + if (jj_3_888()) { jj_scanpos = xsp; - if (jj_3_887()) { + if (jj_3_889()) { jj_scanpos = xsp; - if (jj_3_888()) { + if (jj_3_890()) { jj_scanpos = xsp; - if (jj_3_889()) return true; + if (jj_3_891()) return true; } } } @@ -30654,8 +30674,8 @@ final private boolean jj_3R_316() { return false; } - final private boolean jj_3_92() { - if (jj_scan_token(ENCRYPTED)) return true; + final private boolean jj_3_94() { + if (jj_scan_token(WRAP_VALUE)) return true; return false; } @@ -30664,11 +30684,26 @@ final private boolean jj_3R_67() { return false; } + final private boolean jj_3_93() { + if (jj_scan_token(WRAP_KEY)) return true; + return false; + } + + final private boolean jj_3_92() { + if (jj_scan_token(ENCRYPTED)) return true; + return false; + } + final private boolean jj_3_91() { if (jj_scan_token(VALUE_TYPE)) return true; return false; } + final private boolean jj_3_887() { + if (jj_3R_314()) return true; + return false; + } + final private boolean jj_3_90() { if (jj_scan_token(KEY_TYPE)) return true; return false; @@ -30679,13 +30714,13 @@ final private boolean jj_3_89() { return false; } - final private boolean jj_3_885() { - if (jj_3R_314()) return true; + final private boolean jj_3_88() { + if (jj_scan_token(CACHE_NAME)) return true; return false; } - final private boolean jj_3_88() { - if (jj_scan_token(CACHE_NAME)) return true; + final private boolean jj_3_886() { + if (jj_3R_313()) return true; return false; } @@ -30699,11 +30734,6 @@ final private boolean jj_3_86() { return false; } - final private boolean jj_3_884() { - if (jj_3R_313()) return true; - return false; - } - final private boolean jj_3_85() { if (jj_scan_token(ATOMICITY)) return true; return false; @@ -30714,6 +30744,12 @@ final private boolean jj_3_84() { return false; } + final private boolean jj_3R_304() { + if (jj_scan_token(JSON_VALUE)) return true; + if (jj_scan_token(LPAREN)) return true; + return false; + } + final private boolean jj_3_83() { if (jj_scan_token(BACKUPS)) return true; return false; @@ -30742,7 +30778,13 @@ final private boolean jj_3R_357() { jj_scanpos = xsp; if (jj_3_91()) { jj_scanpos = xsp; - if (jj_3_92()) return true; + if (jj_3_92()) { + jj_scanpos = xsp; + if (jj_3_93()) { + jj_scanpos = xsp; + if (jj_3_94()) return true; + } + } } } } @@ -30761,12 +30803,6 @@ final private boolean jj_3_82() { return false; } - final private boolean jj_3R_304() { - if (jj_scan_token(JSON_VALUE)) return true; - if (jj_scan_token(LPAREN)) return true; - return false; - } - final private boolean jj_3_78() { if (jj_scan_token(COMMA)) return true; if (jj_3R_116()) return true; @@ -30778,18 +30814,24 @@ final private boolean jj_3_80() { return false; } - final private boolean jj_3_883() { + final private boolean jj_3_885() { if (jj_scan_token(ERROR)) return true; return false; } + final private boolean jj_3_884() { + if (jj_scan_token(EMPTY)) return true; + return false; + } + final private boolean jj_3_79() { if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_882() { - if (jj_scan_token(EMPTY)) return true; + final private boolean jj_3_883() { + if (jj_scan_token(DEFAULT_)) return true; + if (jj_3R_78()) return true; return false; } @@ -30804,9 +30846,13 @@ final private boolean jj_3_81() { return false; } - final private boolean jj_3_881() { - if (jj_scan_token(DEFAULT_)) return true; - if (jj_3R_78()) return true; + final private boolean jj_3_882() { + if (jj_scan_token(NULL)) return true; + return false; + } + + final private boolean jj_3_380() { + if (jj_3R_67()) return true; return false; } @@ -30817,22 +30863,12 @@ final private boolean jj_3R_125() { return false; } - final private boolean jj_3_880() { - if (jj_scan_token(NULL)) return true; - return false; - } - - final private boolean jj_3_378() { - if (jj_3R_67()) return true; - return false; - } - - final private boolean jj_3_377() { + final private boolean jj_3_379() { if (jj_3R_202()) return true; return false; } - final private boolean jj_3_879() { + final private boolean jj_3_881() { if (jj_scan_token(ERROR)) return true; return false; } @@ -30840,29 +30876,29 @@ final private boolean jj_3_879() { final private boolean jj_3R_68() { Token xsp; xsp = jj_scanpos; - if (jj_3_377()) jj_scanpos = xsp; + if (jj_3_379()) jj_scanpos = xsp; if (jj_3R_204()) return true; return false; } - final private boolean jj_3R_360() { - return false; - } - final private boolean jj_3R_314() { Token xsp; xsp = jj_scanpos; - if (jj_3_879()) { + if (jj_3_881()) { jj_scanpos = xsp; - if (jj_3_880()) { + if (jj_3_882()) { jj_scanpos = xsp; - if (jj_3_881()) return true; + if (jj_3_883()) return true; } } if (jj_scan_token(ON)) return true; return false; } + final private boolean jj_3R_360() { + return false; + } + final private boolean jj_3R_129() { Token xsp; xsp = jj_scanpos; @@ -30879,12 +30915,12 @@ final private boolean jj_3_77() { return false; } - final private boolean jj_3_376() { + final private boolean jj_3_378() { if (jj_3R_67()) return true; return false; } - final private boolean jj_3_375() { + final private boolean jj_3_377() { if (jj_3R_202()) return true; return false; } @@ -30892,16 +30928,16 @@ final private boolean jj_3_375() { final private boolean jj_3R_345() { Token xsp; xsp = jj_scanpos; - if (jj_3_375()) jj_scanpos = xsp; + if (jj_3_377()) jj_scanpos = xsp; if (jj_3R_248()) return true; while (true) { xsp = jj_scanpos; - if (jj_3_376()) { jj_scanpos = xsp; break; } + if (jj_3_378()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_878() { + final private boolean jj_3_880() { if (jj_3R_312()) return true; if (jj_scan_token(ON)) return true; return false; @@ -30923,37 +30959,27 @@ final private boolean jj_3_75() { return false; } - final private boolean jj_3_74() { - if (jj_3R_113()) return true; - return false; - } - - final private boolean jj_3_73() { - if (jj_3R_112()) return true; - return false; - } - - final private boolean jj_3_877() { + final private boolean jj_3_879() { if (jj_scan_token(ERROR)) return true; return false; } - final private boolean jj_3_72() { - if (jj_3R_111()) return true; + final private boolean jj_3_74() { + if (jj_3R_113()) return true; return false; } - final private boolean jj_3_876() { + final private boolean jj_3_878() { if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_71() { - if (jj_3R_110()) return true; + final private boolean jj_3_73() { + if (jj_3R_112()) return true; return false; } - final private boolean jj_3_875() { + final private boolean jj_3_877() { if (jj_scan_token(FALSE)) return true; return false; } @@ -30961,29 +30987,39 @@ final private boolean jj_3_875() { final private boolean jj_3R_312() { Token xsp; xsp = jj_scanpos; - if (jj_3_874()) { + if (jj_3_876()) { jj_scanpos = xsp; - if (jj_3_875()) { + if (jj_3_877()) { jj_scanpos = xsp; - if (jj_3_876()) { + if (jj_3_878()) { jj_scanpos = xsp; - if (jj_3_877()) return true; + if (jj_3_879()) return true; } } } return false; } - final private boolean jj_3_70() { - if (jj_3R_109()) return true; + final private boolean jj_3_72() { + if (jj_3R_111()) return true; return false; } - final private boolean jj_3_874() { + final private boolean jj_3_876() { if (jj_scan_token(TRUE)) return true; return false; } + final private boolean jj_3_71() { + if (jj_3R_110()) return true; + return false; + } + + final private boolean jj_3_70() { + if (jj_3R_109()) return true; + return false; + } + final private boolean jj_3_69() { if (jj_3R_79()) return true; return false; @@ -30999,6 +31035,12 @@ final private boolean jj_3_67() { return false; } + final private boolean jj_3_874() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_81()) return true; + return false; + } + final private boolean jj_3_66() { if (jj_3R_106()) return true; return false; @@ -31009,12 +31051,6 @@ final private boolean jj_3_65() { return false; } - final private boolean jj_3_872() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_81()) return true; - return false; - } - final private boolean jj_3_64() { if (jj_3R_104()) return true; return false; @@ -31035,19 +31071,24 @@ final private boolean jj_3_61() { return false; } + final private boolean jj_3_875() { + if (jj_scan_token(PASSING)) return true; + if (jj_3R_81()) return true; + return false; + } + final private boolean jj_3_60() { if (jj_3R_100()) return true; return false; } - final private boolean jj_3_59() { - if (jj_3R_99()) return true; + final private boolean jj_3R_201() { + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_873() { - if (jj_scan_token(PASSING)) return true; - if (jj_3R_81()) return true; + final private boolean jj_3_59() { + if (jj_3R_99()) return true; return false; } @@ -31056,11 +31097,6 @@ final private boolean jj_3_58() { return false; } - final private boolean jj_3R_201() { - if (jj_3R_84()) return true; - return false; - } - final private boolean jj_3_57() { if (jj_3R_97()) return true; return false; @@ -31086,14 +31122,14 @@ final private boolean jj_3_53() { return false; } - final private boolean jj_3_52() { - if (jj_3R_92()) return true; + final private boolean jj_3_376() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_201()) return true; return false; } - final private boolean jj_3_374() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_201()) return true; + final private boolean jj_3_52() { + if (jj_3R_92()) return true; return false; } @@ -31176,14 +31212,14 @@ final private boolean jj_3R_91() { return false; } - final private boolean jj_3_50() { - if (jj_3R_91()) return true; + final private boolean jj_3_873() { + if (jj_scan_token(FORMAT)) return true; + if (jj_3R_311()) return true; return false; } - final private boolean jj_3_871() { - if (jj_scan_token(FORMAT)) return true; - if (jj_3R_311()) return true; + final private boolean jj_3_50() { + if (jj_3R_91()) return true; return false; } @@ -31200,6 +31236,12 @@ final private boolean jj_3R_200() { return false; } + final private boolean jj_3R_313() { + if (jj_scan_token(RETURNING)) return true; + if (jj_3R_118()) return true; + return false; + } + final private boolean jj_3_51() { if (jj_3R_91()) return true; Token xsp; @@ -31210,13 +31252,7 @@ final private boolean jj_3_51() { return false; } - final private boolean jj_3R_313() { - if (jj_scan_token(RETURNING)) return true; - if (jj_3R_118()) return true; - return false; - } - - final private boolean jj_3_373() { + final private boolean jj_3_375() { if (jj_scan_token(COMMA)) return true; if (jj_3R_200()) return true; return false; @@ -31227,48 +31263,48 @@ final private boolean jj_3R_192() { return false; } - final private boolean jj_3R_90() { - if (jj_scan_token(LPAREN)) return true; - if (jj_scan_token(RPAREN)) return true; + final private boolean jj_3_871() { + if (jj_scan_token(UTF32)) return true; return false; } - final private boolean jj_3_869() { - if (jj_scan_token(UTF32)) return true; + final private boolean jj_3R_90() { + if (jj_scan_token(LPAREN)) return true; + if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_868() { + final private boolean jj_3_870() { if (jj_scan_token(UTF16)) return true; return false; } - final private boolean jj_3_867() { + final private boolean jj_3_869() { if (jj_scan_token(UTF8)) return true; return false; } - final private boolean jj_3_368() { + final private boolean jj_3_370() { if (jj_scan_token(COMMA)) return true; if (jj_3R_199()) return true; return false; } - final private boolean jj_3_870() { + final private boolean jj_3_872() { if (jj_scan_token(ENCODING)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_867()) { + if (jj_3_869()) { jj_scanpos = xsp; - if (jj_3_868()) { + if (jj_3_870()) { jj_scanpos = xsp; - if (jj_3_869()) return true; + if (jj_3_871()) return true; } } return false; } - final private boolean jj_3_372() { + final private boolean jj_3_374() { if (jj_scan_token(PERMUTE)) return true; if (jj_scan_token(LPAREN)) return true; return false; @@ -31279,29 +31315,24 @@ final private boolean jj_3R_311() { return false; } - final private boolean jj_3_371() { + final private boolean jj_3_373() { if (jj_scan_token(LBRACE)) return true; if (jj_scan_token(MINUS)) return true; return false; } - final private boolean jj_3_866() { + final private boolean jj_3_868() { if (jj_3R_310()) return true; return false; } - final private boolean jj_3R_80() { - if (jj_scan_token(DEFAULT_)) return true; - return false; - } - - final private boolean jj_3_370() { + final private boolean jj_3_372() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_199()) return true; return false; } - final private boolean jj_3_865() { + final private boolean jj_3_867() { if (jj_3R_309()) return true; return false; } @@ -31309,31 +31340,46 @@ final private boolean jj_3_865() { final private boolean jj_3R_378() { Token xsp; xsp = jj_scanpos; - if (jj_3_369()) { + if (jj_3_371()) { jj_scanpos = xsp; - if (jj_3_370()) { + if (jj_3_372()) { jj_scanpos = xsp; - if (jj_3_371()) { + if (jj_3_373()) { jj_scanpos = xsp; - if (jj_3_372()) return true; + if (jj_3_374()) return true; } } } return false; } - final private boolean jj_3R_89() { - if (jj_3R_132()) return true; + final private boolean jj_3_371() { + if (jj_3R_84()) return true; return false; } - final private boolean jj_3_369() { - if (jj_3R_84()) return true; + final private boolean jj_3_866() { + if (jj_3R_308()) return true; + return false; + } + + final private boolean jj_3R_80() { + if (jj_scan_token(DEFAULT_)) return true; + return false; + } + + final private boolean jj_3_865() { + if (jj_3R_307()) return true; + return false; + } + + final private boolean jj_3R_89() { + if (jj_3R_132()) return true; return false; } final private boolean jj_3_864() { - if (jj_3R_308()) return true; + if (jj_3R_306()) return true; return false; } @@ -31349,7 +31395,7 @@ final private boolean jj_3_46() { } final private boolean jj_3_863() { - if (jj_3R_307()) return true; + if (jj_3R_305()) return true; return false; } @@ -31360,7 +31406,7 @@ final private boolean jj_3R_86() { } final private boolean jj_3_862() { - if (jj_3R_306()) return true; + if (jj_3R_304()) return true; return false; } @@ -31370,7 +31416,11 @@ final private boolean jj_3_48() { } final private boolean jj_3_861() { - if (jj_3R_305()) return true; + if (jj_3R_303()) return true; + return false; + } + + final private boolean jj_3R_380() { return false; } @@ -31380,26 +31430,27 @@ final private boolean jj_3_47() { } final private boolean jj_3_860() { - if (jj_3R_304()) return true; + if (jj_3R_302()) return true; return false; } final private boolean jj_3_859() { - if (jj_3R_303()) return true; + if (jj_3R_301()) return true; return false; } - final private boolean jj_3R_380() { + final private boolean jj_3R_348() { + if (jj_3R_406()) return true; return false; } - final private boolean jj_3R_348() { - if (jj_3R_406()) return true; + final private boolean jj_3_369() { + if (jj_scan_token(HOOK)) return true; return false; } final private boolean jj_3_858() { - if (jj_3R_302()) return true; + if (jj_3R_300()) return true; return false; } @@ -31409,7 +31460,7 @@ final private boolean jj_3_45() { } final private boolean jj_3_857() { - if (jj_3R_301()) return true; + if (jj_3R_299()) return true; return false; } @@ -31417,13 +31468,8 @@ final private boolean jj_3R_347() { return false; } - final private boolean jj_3_367() { - if (jj_scan_token(HOOK)) return true; - return false; - } - final private boolean jj_3_856() { - if (jj_3R_300()) return true; + if (jj_3R_298()) return true; return false; } @@ -31433,19 +31479,27 @@ final private boolean jj_3_44() { return false; } + final private boolean jj_3_364() { + if (jj_scan_token(MINUS)) return true; + if (jj_3R_199()) return true; + return false; + } + final private boolean jj_3_855() { - if (jj_3R_299()) return true; + if (jj_3R_297()) return true; return false; } final private boolean jj_3_854() { - if (jj_3R_298()) return true; + if (jj_3R_296()) return true; return false; } - final private boolean jj_3_362() { - if (jj_scan_token(MINUS)) return true; - if (jj_3R_199()) return true; + final private boolean jj_3R_198() { + return false; + } + + final private boolean jj_3R_197() { return false; } @@ -31470,42 +31524,45 @@ final private boolean jj_3R_83() { return false; } - final private boolean jj_3_853() { - if (jj_3R_297()) return true; - return false; - } - - final private boolean jj_3_852() { - if (jj_3R_296()) return true; + final private boolean jj_3_363() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_196()) return true; return false; } - final private boolean jj_3R_198() { + final private boolean jj_3_853() { + if (jj_3R_295()) return true; return false; } - final private boolean jj_3R_197() { + final private boolean jj_3_360() { + if (jj_3R_196()) return true; return false; } - final private boolean jj_3_361() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_196()) return true; + final private boolean jj_3_852() { + if (jj_3R_294()) return true; return false; } final private boolean jj_3_851() { - if (jj_3R_295()) return true; + if (jj_3R_293()) return true; return false; } - final private boolean jj_3_358() { - if (jj_3R_196()) return true; + final private boolean jj_3_850() { + if (jj_3R_292()) return true; return false; } - final private boolean jj_3_850() { - if (jj_3R_294()) return true; + final private boolean jj_3_361() { + if (jj_scan_token(COMMA)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_360()) { + jj_scanpos = xsp; + if (jj_3R_197()) return true; + } return false; } @@ -31515,7 +31572,7 @@ final private boolean jj_3R_85() { } final private boolean jj_3_849() { - if (jj_3R_293()) return true; + if (jj_3R_291()) return true; return false; } @@ -31531,23 +31588,7 @@ final private boolean jj_3_41() { } final private boolean jj_3_848() { - if (jj_3R_292()) return true; - return false; - } - - final private boolean jj_3_359() { - if (jj_scan_token(COMMA)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_358()) { - jj_scanpos = xsp; - if (jj_3R_197()) return true; - } - return false; - } - - final private boolean jj_3_847() { - if (jj_3R_291()) return true; + if (jj_3R_290()) return true; return false; } @@ -31556,21 +31597,11 @@ final private boolean jj_3_43() { return false; } - final private boolean jj_3_846() { - if (jj_3R_290()) return true; - return false; - } - - final private boolean jj_3_42() { - if (jj_3R_87()) return true; - return false; - } - - final private boolean jj_3_360() { + final private boolean jj_3_362() { if (jj_3R_196()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_359()) { + if (jj_3_361()) { jj_scanpos = xsp; if (jj_3R_198()) return true; } @@ -31578,61 +31609,76 @@ final private boolean jj_3_360() { return false; } - final private boolean jj_3_833() { + final private boolean jj_3_835() { if (jj_scan_token(FROM)) return true; if (jj_3R_81()) return true; return false; } - final private boolean jj_3R_365() { - if (jj_3R_406()) return true; + final private boolean jj_3_42() { + if (jj_3R_87()) return true; return false; } - final private boolean jj_3_40() { - if (jj_3R_80()) return true; + final private boolean jj_3R_365() { + if (jj_3R_406()) return true; return false; } - final private boolean jj_3_366() { + final private boolean jj_3_368() { if (jj_scan_token(LBRACE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_360()) { + if (jj_3_362()) { jj_scanpos = xsp; - if (jj_3_361()) { + if (jj_3_363()) { jj_scanpos = xsp; - if (jj_3_362()) return true; + if (jj_3_364()) return true; } } return false; } - final private boolean jj_3R_364() { + final private boolean jj_3_40() { + if (jj_3R_80()) return true; return false; } - final private boolean jj_3_39() { - if (jj_3R_84()) return true; - if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; + final private boolean jj_3R_364() { return false; } - final private boolean jj_3_365() { + final private boolean jj_3_367() { if (jj_scan_token(HOOK)) return true; return false; } - final private boolean jj_3_832() { + final private boolean jj_3_834() { if (jj_3R_81()) return true; return false; } - final private boolean jj_3_835() { + final private boolean jj_3_39() { + if (jj_3R_84()) return true; + if (jj_scan_token(NAMED_ARGUMENT_ASSIGNMENT)) return true; + return false; + } + + final private boolean jj_3_837() { if (jj_3R_81()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_833()) jj_scanpos = xsp; + if (jj_3_835()) jj_scanpos = xsp; + return false; + } + + final private boolean jj_3_833() { + if (jj_scan_token(LEADING)) return true; + return false; + } + + final private boolean jj_3_366() { + if (jj_scan_token(PLUS)) return true; return false; } @@ -31657,27 +31703,17 @@ final private boolean jj_3R_152() { return false; } - final private boolean jj_3_831() { - if (jj_scan_token(LEADING)) return true; - return false; - } - - final private boolean jj_3_364() { - if (jj_scan_token(PLUS)) return true; - return false; - } - - final private boolean jj_3_830() { + final private boolean jj_3_832() { if (jj_scan_token(TRAILING)) return true; return false; } - final private boolean jj_3_363() { + final private boolean jj_3_365() { if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_829() { + final private boolean jj_3_831() { if (jj_scan_token(BOTH)) return true; return false; } @@ -31685,13 +31721,13 @@ final private boolean jj_3_829() { final private boolean jj_3R_379() { Token xsp; xsp = jj_scanpos; - if (jj_3_363()) { + if (jj_3_365()) { jj_scanpos = xsp; - if (jj_3_364()) { + if (jj_3_366()) { jj_scanpos = xsp; - if (jj_3_365()) { + if (jj_3_367()) { jj_scanpos = xsp; - if (jj_3_366()) return true; + if (jj_3_368()) return true; } } } @@ -31709,22 +31745,27 @@ final private boolean jj_3R_195() { return false; } - final private boolean jj_3_834() { + final private boolean jj_3_836() { Token xsp; xsp = jj_scanpos; - if (jj_3_829()) { + if (jj_3_831()) { jj_scanpos = xsp; - if (jj_3_830()) { + if (jj_3_832()) { jj_scanpos = xsp; - if (jj_3_831()) return true; + if (jj_3_833()) return true; } } xsp = jj_scanpos; - if (jj_3_832()) jj_scanpos = xsp; + if (jj_3_834()) jj_scanpos = xsp; if (jj_scan_token(FROM)) return true; return false; } + final private boolean jj_3_829() { + if (jj_scan_token(COMMA)) return true; + return false; + } + final private boolean jj_3_38() { if (jj_scan_token(ALL)) return true; return false; @@ -31740,91 +31781,90 @@ final private boolean jj_3R_82() { return false; } + final private boolean jj_3_1801() { + if (jj_scan_token(FRIDAY)) return true; + return false; + } + final private boolean jj_3_37() { if (jj_scan_token(DISTINCT)) return true; return false; } - final private boolean jj_3_827() { - if (jj_scan_token(COMMA)) return true; + final private boolean jj_3_1800() { + if (jj_scan_token(TUESDAY)) return true; return false; } final private boolean jj_3_1799() { - if (jj_scan_token(FRIDAY)) return true; + if (jj_scan_token(WITHOUT)) return true; return false; } - final private boolean jj_3_825() { + final private boolean jj_3_827() { if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_845() { + final private boolean jj_3_847() { if (jj_scan_token(TRIM)) return true; if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1798() { - if (jj_scan_token(TUESDAY)) return true; + if (jj_scan_token(WIDTH_BUCKET)) return true; return false; } final private boolean jj_3_1797() { - if (jj_scan_token(WITHOUT)) return true; + if (jj_scan_token(VAR_SAMP)) return true; return false; } - final private boolean jj_3_357() { + final private boolean jj_3_359() { if (jj_3R_195()) return true; return false; } final private boolean jj_3_1796() { - if (jj_scan_token(WIDTH_BUCKET)) return true; + if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_826() { + final private boolean jj_3_828() { if (jj_scan_token(FOR)) return true; return false; } final private boolean jj_3_1795() { - if (jj_scan_token(VAR_SAMP)) return true; + if (jj_scan_token(VALUE_OF)) return true; return false; } - final private boolean jj_3_828() { + final private boolean jj_3_830() { Token xsp; xsp = jj_scanpos; - if (jj_3_826()) { + if (jj_3_828()) { jj_scanpos = xsp; - if (jj_3_827()) return true; + if (jj_3_829()) return true; } if (jj_3R_78()) return true; return false; } final private boolean jj_3_1794() { - if (jj_scan_token(VARCHAR)) return true; + if (jj_scan_token(UPSERT)) return true; return false; } final private boolean jj_3_1793() { - if (jj_scan_token(VALUE_OF)) return true; - return false; - } - - final private boolean jj_3_36() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_83()) return true; + if (jj_scan_token(UNIQUE)) return true; return false; } final private boolean jj_3_1792() { - if (jj_scan_token(UPSERT)) return true; + if (jj_scan_token(TRUNCATE)) return true; return false; } @@ -31834,161 +31874,167 @@ final private boolean jj_3R_194() { } final private boolean jj_3_1791() { - if (jj_scan_token(UNIQUE)) return true; + if (jj_scan_token(TRIGGER)) return true; return false; } - final private boolean jj_3_823() { + final private boolean jj_3_825() { if (jj_scan_token(CEILING)) return true; return false; } final private boolean jj_3_1790() { - if (jj_scan_token(TRUNCATE)) return true; + if (jj_scan_token(TRANSLATE_REGEX)) return true; return false; } - final private boolean jj_3_824() { + final private boolean jj_3_826() { if (jj_scan_token(FROM)) return true; return false; } - final private boolean jj_3R_383() { + final private boolean jj_3_1789() { + if (jj_scan_token(TIMEZONE_MINUTE)) return true; return false; } - final private boolean jj_3_1789() { - if (jj_scan_token(TRIGGER)) return true; + final private boolean jj_3_36() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_83()) return true; return false; } final private boolean jj_3_1788() { - if (jj_scan_token(TRANSLATE_REGEX)) return true; + if (jj_scan_token(TIME)) return true; return false; } final private boolean jj_3_1787() { - if (jj_scan_token(TIMEZONE_MINUTE)) return true; + if (jj_scan_token(SYSTEM_TIME)) return true; return false; } - final private boolean jj_3_35() { - if (jj_3R_82()) return true; + final private boolean jj_3_1786() { + if (jj_scan_token(SUCCEEDS)) return true; return false; } - final private boolean jj_3_1786() { - if (jj_scan_token(TIME)) return true; + final private boolean jj_3R_383() { return false; } final private boolean jj_3_1785() { - if (jj_scan_token(SYSTEM_TIME)) return true; + if (jj_scan_token(SUBSET)) return true; return false; } - final private boolean jj_3_844() { + final private boolean jj_3_846() { if (jj_scan_token(SUBSTRING)) return true; if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1784() { - if (jj_scan_token(SUCCEEDS)) return true; + if (jj_scan_token(STDDEV_SAMP)) return true; return false; } final private boolean jj_3_1783() { - if (jj_scan_token(SUBSET)) return true; + if (jj_scan_token(START)) return true; return false; } - final private boolean jj_3_1782() { - if (jj_scan_token(STDDEV_SAMP)) return true; + final private boolean jj_3_35() { + if (jj_3R_82()) return true; return false; } - final private boolean jj_3_822() { - if (jj_scan_token(CEIL)) return true; + final private boolean jj_3_1782() { + if (jj_scan_token(SQLSTATE)) return true; return false; } - final private boolean jj_3R_218() { - if (jj_scan_token(LPAREN)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_35()) { - jj_scanpos = xsp; - if (jj_3R_383()) return true; - } + final private boolean jj_3_824() { + if (jj_scan_token(CEIL)) return true; return false; } final private boolean jj_3_1781() { - if (jj_scan_token(START)) return true; + if (jj_scan_token(SPECIFICTYPE)) return true; return false; } final private boolean jj_3_1780() { - if (jj_scan_token(SQLSTATE)) return true; + if (jj_scan_token(SKIP_)) return true; return false; } - final private boolean jj_3_843() { + final private boolean jj_3_845() { Token xsp; xsp = jj_scanpos; - if (jj_3_822()) { + if (jj_3_824()) { jj_scanpos = xsp; - if (jj_3_823()) return true; + if (jj_3_825()) return true; } if (jj_3R_289()) return true; return false; } final private boolean jj_3_1779() { - if (jj_scan_token(SPECIFICTYPE)) return true; + if (jj_scan_token(SESSION_USER)) return true; return false; } final private boolean jj_3_1778() { - if (jj_scan_token(SKIP_)) return true; + if (jj_scan_token(SECOND)) return true; return false; } - final private boolean jj_3_356() { + final private boolean jj_3_358() { if (jj_scan_token(VERTICAL_BAR)) return true; if (jj_3R_194()) return true; return false; } + final private boolean jj_3R_218() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_35()) { + jj_scanpos = xsp; + if (jj_3R_383()) return true; + } + return false; + } + final private boolean jj_3_1777() { - if (jj_scan_token(SESSION_USER)) return true; + if (jj_scan_token(SCOPE)) return true; return false; } final private boolean jj_3_1776() { - if (jj_scan_token(SECOND)) return true; + if (jj_scan_token(SAFE_OFFSET)) return true; return false; } final private boolean jj_3_1775() { - if (jj_scan_token(SCOPE)) return true; + if (jj_scan_token(ROW_NUMBER)) return true; return false; } - final private boolean jj_3_842() { + final private boolean jj_3_844() { if (jj_scan_token(FLOOR)) return true; if (jj_3R_289()) return true; return false; } final private boolean jj_3_1774() { - if (jj_scan_token(SAFE_OFFSET)) return true; + if (jj_scan_token(ROLLBACK)) return true; return false; } final private boolean jj_3_1773() { - if (jj_scan_token(ROW_NUMBER)) return true; + if (jj_scan_token(RETURN)) return true; return false; } @@ -31998,100 +32044,100 @@ final private boolean jj_3R_199() { } final private boolean jj_3_1772() { - if (jj_scan_token(ROLLBACK)) return true; + if (jj_scan_token(RELEASE)) return true; return false; } - final private boolean jj_3_821() { + final private boolean jj_3_823() { if (jj_scan_token(FOR)) return true; if (jj_3R_78()) return true; return false; } final private boolean jj_3_1771() { - if (jj_scan_token(RETURN)) return true; + if (jj_scan_token(REGR_SXX)) return true; return false; } final private boolean jj_3_1770() { - if (jj_scan_token(RELEASE)) return true; + if (jj_scan_token(REGR_INTERCEPT)) return true; return false; } final private boolean jj_3_1769() { - if (jj_scan_token(REGR_SXX)) return true; + if (jj_scan_token(REGR_AVGX)) return true; return false; } final private boolean jj_3_1768() { - if (jj_scan_token(REGR_INTERCEPT)) return true; + if (jj_scan_token(REF)) return true; return false; } final private boolean jj_3_1767() { - if (jj_scan_token(REGR_AVGX)) return true; + if (jj_scan_token(READS)) return true; return false; } final private boolean jj_3_1766() { - if (jj_scan_token(REF)) return true; + if (jj_scan_token(QUALIFY)) return true; return false; } - final private boolean jj_3_841() { + final private boolean jj_3_843() { if (jj_scan_token(OVERLAY)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3R_399() { - if (jj_3R_218()) return true; - return false; - } - final private boolean jj_3_1765() { - if (jj_scan_token(READS)) return true; + if (jj_scan_token(PREPARE)) return true; return false; } - final private boolean jj_3_818() { + final private boolean jj_3_820() { if (jj_scan_token(COMMA)) return true; if (jj_3R_78()) return true; return false; } final private boolean jj_3_1764() { - if (jj_scan_token(QUALIFY)) return true; + if (jj_scan_token(POWER)) return true; return false; } final private boolean jj_3_1763() { - if (jj_scan_token(PREPARE)) return true; + if (jj_scan_token(PORTION)) return true; return false; } - final private boolean jj_3_820() { + final private boolean jj_3_822() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_818()) { jj_scanpos = xsp; break; } + if (jj_3_820()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } final private boolean jj_3_1762() { - if (jj_scan_token(POWER)) return true; + if (jj_scan_token(PERCENT_RANK)) return true; + return false; + } + + final private boolean jj_3R_399() { + if (jj_3R_218()) return true; return false; } final private boolean jj_3_1761() { - if (jj_scan_token(PORTION)) return true; + if (jj_scan_token(PERCENT)) return true; return false; } final private boolean jj_3_1760() { - if (jj_scan_token(PERCENT_RANK)) return true; + if (jj_scan_token(PARAMETER)) return true; return false; } @@ -32101,93 +32147,93 @@ final private boolean jj_3R_193() { } final private boolean jj_3_1759() { - if (jj_scan_token(PERCENT)) return true; + if (jj_scan_token(OVER)) return true; return false; } final private boolean jj_3_1758() { - if (jj_scan_token(PARAMETER)) return true; + if (jj_scan_token(OPEN)) return true; return false; } final private boolean jj_3_1757() { - if (jj_scan_token(OVER)) return true; + if (jj_scan_token(OMIT)) return true; return false; } - final private boolean jj_3_819() { + final private boolean jj_3_821() { if (jj_scan_token(USING)) return true; if (jj_3R_84()) return true; return false; } final private boolean jj_3_1756() { - if (jj_scan_token(OPEN)) return true; + if (jj_scan_token(OCTET_LENGTH)) return true; return false; } final private boolean jj_3_1755() { - if (jj_scan_token(OMIT)) return true; - return false; - } - - final private boolean jj_3_34() { - if (jj_3R_80()) return true; + if (jj_scan_token(NULLIF)) return true; return false; } final private boolean jj_3_1754() { - if (jj_scan_token(OCTET_LENGTH)) return true; + if (jj_scan_token(NORMALIZE)) return true; return false; } final private boolean jj_3_1753() { - if (jj_scan_token(NULLIF)) return true; - return false; - } - - final private boolean jj_3_33() { - if (jj_3R_81()) return true; + if (jj_scan_token(NEXT)) return true; return false; } - final private boolean jj_3_814() { + final private boolean jj_3_816() { if (jj_scan_token(NULL)) return true; return false; } final private boolean jj_3_1752() { - if (jj_scan_token(NORMALIZE)) return true; + if (jj_scan_token(NCHAR)) return true; return false; } final private boolean jj_3_1751() { - if (jj_scan_token(NEXT)) return true; + if (jj_scan_token(MONTH)) return true; return false; } - final private boolean jj_3_355() { + final private boolean jj_3_34() { + if (jj_3R_80()) return true; + return false; + } + + final private boolean jj_3_357() { if (jj_scan_token(COMMA)) return true; if (jj_3R_193()) return true; return false; } - final private boolean jj_3_813() { + final private boolean jj_3_815() { if (jj_3R_196()) return true; return false; } final private boolean jj_3_1750() { - if (jj_scan_token(NCHAR)) return true; + if (jj_scan_token(MOD)) return true; return false; } final private boolean jj_3_1749() { - if (jj_scan_token(MONTH)) return true; + if (jj_scan_token(METHOD)) return true; return false; } - final private boolean jj_3_840() { + final private boolean jj_3_33() { + if (jj_3R_81()) return true; + return false; + } + + final private boolean jj_3_842() { if (jj_scan_token(TRANSLATE)) return true; if (jj_scan_token(LPAREN)) return true; return false; @@ -32199,304 +32245,304 @@ final private boolean jj_3R_189() { } final private boolean jj_3_1748() { - if (jj_scan_token(MOD)) return true; + if (jj_scan_token(MEASURE)) return true; return false; } final private boolean jj_3_1747() { - if (jj_scan_token(METHOD)) return true; + if (jj_scan_token(MATCH_NUMBER)) return true; return false; } final private boolean jj_3_1746() { - if (jj_scan_token(MEASURE)) return true; + if (jj_scan_token(MATCH)) return true; return false; } final private boolean jj_3_1745() { - if (jj_scan_token(MATCH_NUMBER)) return true; + if (jj_scan_token(LN)) return true; return false; } - final private boolean jj_3_815() { + final private boolean jj_3_817() { if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_813()) { + if (jj_3_815()) { jj_scanpos = xsp; - if (jj_3_814()) return true; + if (jj_3_816()) return true; } return false; } final private boolean jj_3_1744() { - if (jj_scan_token(MATCH)) return true; + if (jj_scan_token(LATERAL)) return true; return false; } final private boolean jj_3_1743() { - if (jj_scan_token(LN)) return true; - return false; - } - - final private boolean jj_3_32() { - if (jj_scan_token(COMMA)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_33()) { - jj_scanpos = xsp; - if (jj_3_34()) return true; - } + if (jj_scan_token(LANGUAGE)) return true; return false; } final private boolean jj_3_1742() { - if (jj_scan_token(LATERAL)) return true; + if (jj_scan_token(JSON_SCOPE)) return true; return false; } final private boolean jj_3_1741() { - if (jj_scan_token(LANGUAGE)) return true; + if (jj_scan_token(JSON_OBJECT)) return true; return false; } final private boolean jj_3_1740() { - if (jj_scan_token(JSON_SCOPE)) return true; - return false; - } - - final private boolean jj_3_31() { - if (jj_3R_80()) return true; + if (jj_scan_token(JSON_ARRAY)) return true; return false; } - final private boolean jj_3_812() { + final private boolean jj_3_814() { if (jj_scan_token(INTERVAL)) return true; if (jj_3R_213()) return true; return false; } final private boolean jj_3_1739() { - if (jj_scan_token(JSON_OBJECT)) return true; + if (jj_scan_token(INT)) return true; return false; } - final private boolean jj_3_1738() { - if (jj_scan_token(JSON_ARRAY)) return true; + final private boolean jj_3_32() { + if (jj_scan_token(COMMA)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_33()) { + jj_scanpos = xsp; + if (jj_3_34()) return true; + } return false; } - final private boolean jj_3_30() { - if (jj_3R_79()) return true; + final private boolean jj_3_1738() { + if (jj_scan_token(INITIAL)) return true; return false; } - final private boolean jj_3_811() { + final private boolean jj_3_813() { if (jj_3R_118()) return true; return false; } final private boolean jj_3_1737() { - if (jj_scan_token(INT)) return true; + if (jj_scan_token(IDENTITY)) return true; return false; } final private boolean jj_3_1736() { - if (jj_scan_token(INITIAL)) return true; + if (jj_scan_token(GROUPS)) return true; + return false; + } + + final private boolean jj_3_31() { + if (jj_3R_80()) return true; return false; } final private boolean jj_3_1735() { - if (jj_scan_token(IDENTITY)) return true; + if (jj_scan_token(GLOBAL)) return true; return false; } - final private boolean jj_3_354() { + final private boolean jj_3_356() { if (jj_scan_token(SUBSET)) return true; if (jj_3R_192()) return true; return false; } final private boolean jj_3_1734() { - if (jj_scan_token(GROUPS)) return true; + if (jj_scan_token(FUNCTION)) return true; return false; } - final private boolean jj_3_808() { + final private boolean jj_3_30() { + if (jj_3R_79()) return true; + return false; + } + + final private boolean jj_3_810() { if (jj_scan_token(RPAREN)) return true; return false; } final private boolean jj_3_1733() { - if (jj_scan_token(GLOBAL)) return true; + if (jj_scan_token(FOREIGN)) return true; return false; } - final private boolean jj_3_817() { + final private boolean jj_3_819() { Token xsp; xsp = jj_scanpos; - if (jj_3_811()) { + if (jj_3_813()) { jj_scanpos = xsp; - if (jj_3_812()) return true; + if (jj_3_814()) return true; } if (jj_scan_token(COMMA)) return true; return false; } final private boolean jj_3_1732() { - if (jj_scan_token(FUNCTION)) return true; + if (jj_scan_token(FIRST_VALUE)) return true; return false; } final private boolean jj_3_1731() { - if (jj_scan_token(FOREIGN)) return true; + if (jj_scan_token(EXTERNAL)) return true; return false; } - final private boolean jj_3_353() { + final private boolean jj_3_355() { if (jj_scan_token(WITHIN)) return true; if (jj_3R_191()) return true; return false; } final private boolean jj_3_1730() { - if (jj_scan_token(FIRST_VALUE)) return true; + if (jj_scan_token(EXECUTE)) return true; return false; } final private boolean jj_3_1729() { - if (jj_scan_token(EXTERNAL)) return true; + if (jj_scan_token(ESCAPE)) return true; return false; } final private boolean jj_3_1728() { - if (jj_scan_token(EXECUTE)) return true; + if (jj_scan_token(END_FRAME)) return true; return false; } - final private boolean jj_3_345() { + final private boolean jj_3_347() { if (jj_scan_token(LAST)) return true; if (jj_3R_84()) return true; return false; } - final private boolean jj_3_807() { + final private boolean jj_3_809() { if (jj_scan_token(COMMA)) return true; if (jj_3R_84()) return true; return false; } final private boolean jj_3_1727() { - if (jj_scan_token(ESCAPE)) return true; + if (jj_scan_token(EMPTY)) return true; return false; } final private boolean jj_3_1726() { - if (jj_scan_token(END_FRAME)) return true; + if (jj_scan_token(DYNAMIC)) return true; return false; } - final private boolean jj_3_352() { + final private boolean jj_3_354() { if (jj_scan_token(DOLLAR)) return true; return false; } final private boolean jj_3_1725() { - if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(DISALLOW)) return true; return false; } final private boolean jj_3_1724() { - if (jj_scan_token(DYNAMIC)) return true; + if (jj_scan_token(DEREF)) return true; return false; } final private boolean jj_3_1723() { - if (jj_scan_token(DISALLOW)) return true; + if (jj_scan_token(DECLARE)) return true; return false; } final private boolean jj_3_1722() { - if (jj_scan_token(DEREF)) return true; + if (jj_scan_token(DEALLOCATE)) return true; return false; } - final private boolean jj_3_810() { + final private boolean jj_3_812() { if (jj_scan_token(COMMA)) return true; if (jj_3R_84()) return true; return false; } final private boolean jj_3_1721() { - if (jj_scan_token(DECLARE)) return true; + if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_351() { + final private boolean jj_3_353() { if (jj_scan_token(CARET)) return true; return false; } final private boolean jj_3_1720() { - if (jj_scan_token(DEALLOCATE)) return true; - return false; - } - - final private boolean jj_3R_181() { - if (jj_scan_token(LPAREN)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_30()) { - jj_scanpos = xsp; - if (jj_3_31()) return true; - } + if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; return false; } final private boolean jj_3_1719() { - if (jj_scan_token(DATE)) return true; + if (jj_scan_token(CURRENT_PATH)) return true; return false; } final private boolean jj_3_1718() { - if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; + if (jj_scan_token(CURRENT)) return true; return false; } final private boolean jj_3_1717() { - if (jj_scan_token(CURRENT_PATH)) return true; + if (jj_scan_token(COVAR_SAMP)) return true; return false; } - final private boolean jj_3_809() { + final private boolean jj_3_811() { if (jj_scan_token(USING)) return true; if (jj_3R_84()) return true; return false; } final private boolean jj_3_1716() { - if (jj_scan_token(CURRENT)) return true; + if (jj_scan_token(CORRESPONDING)) return true; + return false; + } + + final private boolean jj_3R_181() { + if (jj_scan_token(LPAREN)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_30()) { + jj_scanpos = xsp; + if (jj_3_31()) return true; + } return false; } final private boolean jj_3_1715() { - if (jj_scan_token(COVAR_SAMP)) return true; + if (jj_scan_token(CONTAINS)) return true; return false; } - final private boolean jj_3_349() { + final private boolean jj_3_351() { if (jj_scan_token(PAST)) return true; if (jj_scan_token(LAST)) return true; return false; } final private boolean jj_3_1714() { - if (jj_scan_token(CORRESPONDING)) return true; + if (jj_scan_token(COMMIT)) return true; return false; } final private boolean jj_3_1713() { - if (jj_scan_token(CONTAINS)) return true; + if (jj_scan_token(COALESCE)) return true; return false; } @@ -32509,193 +32555,193 @@ final private boolean jj_3R_190() { } final private boolean jj_3_1712() { - if (jj_scan_token(COMMIT)) return true; + if (jj_scan_token(CLASSIFIER)) return true; return false; } final private boolean jj_3_1711() { - if (jj_scan_token(COALESCE)) return true; + if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } final private boolean jj_3_1710() { - if (jj_scan_token(CLASSIFIER)) return true; + if (jj_scan_token(CEILING)) return true; return false; } - final private boolean jj_3_816() { + final private boolean jj_3_818() { if (jj_3R_78()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_809()) { + if (jj_3_811()) { jj_scanpos = xsp; - if (jj_3_810()) return true; + if (jj_3_812()) return true; } return false; } final private boolean jj_3_1709() { - if (jj_scan_token(CHARACTER_LENGTH)) return true; + if (jj_scan_token(CARDINALITY)) return true; return false; } final private boolean jj_3_1708() { - if (jj_scan_token(CEILING)) return true; + if (jj_scan_token(BOOLEAN)) return true; return false; } final private boolean jj_3_1707() { - if (jj_scan_token(CARDINALITY)) return true; + if (jj_scan_token(BINARY)) return true; return false; } final private boolean jj_3_1706() { - if (jj_scan_token(BOOLEAN)) return true; + if (jj_scan_token(BEGIN_FRAME)) return true; return false; } final private boolean jj_3_1705() { - if (jj_scan_token(BINARY)) return true; + if (jj_scan_token(AUTHORIZATION)) return true; return false; } final private boolean jj_3_1704() { - if (jj_scan_token(BEGIN_FRAME)) return true; + if (jj_scan_token(ASOF)) return true; return false; } final private boolean jj_3_1703() { - if (jj_scan_token(AUTHORIZATION)) return true; + if (jj_scan_token(ARE)) return true; return false; } final private boolean jj_3_1702() { - if (jj_scan_token(ASOF)) return true; + if (jj_scan_token(ABS)) return true; return false; } final private boolean jj_3_1701() { - if (jj_scan_token(ARE)) return true; + if (jj_scan_token(ANALYZE)) return true; return false; } final private boolean jj_3_1700() { - if (jj_scan_token(ABS)) return true; + if (jj_scan_token(QUERY)) return true; return false; } final private boolean jj_3_1699() { - if (jj_scan_token(ANALYZE)) return true; + if (jj_scan_token(SERVICE)) return true; return false; } final private boolean jj_3_1698() { - if (jj_scan_token(QUERY)) return true; - return false; - } - - final private boolean jj_3_29() { - if (jj_scan_token(COMMA)) return true; - if (jj_3R_78()) return true; + if (jj_scan_token(KILL)) return true; return false; } - final private boolean jj_3_839() { + final private boolean jj_3_841() { if (jj_scan_token(CONVERT)) return true; if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1697() { - if (jj_scan_token(SERVICE)) return true; + if (jj_scan_token(LOGGING)) return true; return false; } - final private boolean jj_3_347() { + final private boolean jj_3_349() { if (jj_scan_token(FIRST)) return true; if (jj_3R_84()) return true; return false; } final private boolean jj_3_1696() { - if (jj_scan_token(KILL)) return true; + if (jj_scan_token(ENCRYPTED)) return true; return false; } final private boolean jj_3_1695() { - if (jj_scan_token(LOGGING)) return true; + if (jj_scan_token(CACHE_NAME)) return true; return false; } - final private boolean jj_3_806() { + final private boolean jj_3_808() { if (jj_scan_token(FROM)) return true; if (jj_3R_78()) return true; return false; } final private boolean jj_3_1694() { - if (jj_scan_token(ENCRYPTED)) return true; + if (jj_scan_token(ATOMICITY)) return true; + return false; + } + + final private boolean jj_3_29() { + if (jj_scan_token(COMMA)) return true; + if (jj_3R_78()) return true; return false; } final private boolean jj_3_1693() { - if (jj_scan_token(CACHE_NAME)) return true; + if (jj_scan_token(TEMPLATE)) return true; return false; } final private boolean jj_3_1692() { - if (jj_scan_token(ATOMICITY)) return true; + if (jj_scan_token(XML)) return true; return false; } final private boolean jj_3_1691() { - if (jj_scan_token(TEMPLATE)) return true; + if (jj_scan_token(WORK)) return true; return false; } - final private boolean jj_3_346() { + final private boolean jj_3_348() { if (jj_scan_token(NEXT)) return true; if (jj_scan_token(ROW)) return true; return false; } final private boolean jj_3_1690() { - if (jj_scan_token(XML)) return true; + if (jj_scan_token(VIEW)) return true; return false; } final private boolean jj_3_1689() { - if (jj_scan_token(WORK)) return true; + if (jj_scan_token(UTF32)) return true; return false; } final private boolean jj_3_1688() { - if (jj_scan_token(VIEW)) return true; + if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; return false; } final private boolean jj_3_1687() { - if (jj_scan_token(UTF32)) return true; + if (jj_scan_token(USAGE)) return true; return false; } final private boolean jj_3_1686() { - if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; + if (jj_scan_token(UNDER)) return true; return false; } final private boolean jj_3_1685() { - if (jj_scan_token(USAGE)) return true; + if (jj_scan_token(UNBOUNDED)) return true; return false; } - final private boolean jj_3_348() { + final private boolean jj_3_350() { if (jj_scan_token(TO)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_346()) { + if (jj_3_348()) { jj_scanpos = xsp; - if (jj_3_347()) { + if (jj_3_349()) { jj_scanpos = xsp; lookingAhead = true; jj_semLA = true; @@ -32706,228 +32752,228 @@ final private boolean jj_3_348() { return false; } - final private boolean jj_3_838() { + final private boolean jj_3_840() { if (jj_scan_token(POSITION)) return true; if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1684() { - if (jj_scan_token(UNDER)) return true; + if (jj_scan_token(TRIGGER_SCHEMA)) return true; return false; } final private boolean jj_3_1683() { - if (jj_scan_token(UNBOUNDED)) return true; + if (jj_scan_token(TRANSFORMS)) return true; return false; } final private boolean jj_3_1682() { - if (jj_scan_token(TRIGGER_SCHEMA)) return true; + if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; return false; } final private boolean jj_3_1681() { - if (jj_scan_token(TRANSFORMS)) return true; + if (jj_scan_token(TOP_LEVEL_COUNT)) return true; return false; } final private boolean jj_3_1680() { - if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; + if (jj_scan_token(TIMESTAMPDIFF)) return true; return false; } final private boolean jj_3_1679() { - if (jj_scan_token(TOP_LEVEL_COUNT)) return true; + if (jj_scan_token(TIME_DIFF)) return true; return false; } - final private boolean jj_3_350() { + final private boolean jj_3_352() { if (jj_scan_token(AFTER)) return true; if (jj_scan_token(MATCH)) return true; return false; } - final private boolean jj_3R_171() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_79()) return true; - return false; - } - final private boolean jj_3_1678() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; + if (jj_scan_token(TABLE_NAME)) return true; return false; } final private boolean jj_3_1677() { - if (jj_scan_token(TIME_DIFF)) return true; + if (jj_scan_token(STYLE)) return true; return false; } final private boolean jj_3_1676() { - if (jj_scan_token(TABLE_NAME)) return true; + if (jj_scan_token(STATEMENT)) return true; return false; } final private boolean jj_3_1675() { - if (jj_scan_token(STYLE)) return true; + if (jj_scan_token(SQL_VARBINARY)) return true; return false; } - final private boolean jj_3_837() { + final private boolean jj_3_839() { if (jj_scan_token(EXTRACT)) return true; if (jj_scan_token(LPAREN)) return true; return false; } + final private boolean jj_3R_171() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_79()) return true; + return false; + } + final private boolean jj_3_1674() { - if (jj_scan_token(STATEMENT)) return true; + if (jj_scan_token(SQL_TSI_SECOND)) return true; return false; } final private boolean jj_3_1673() { - if (jj_scan_token(SQL_VARBINARY)) return true; + if (jj_scan_token(SQL_TSI_MINUTE)) return true; return false; } - final private boolean jj_3_344() { + final private boolean jj_3_346() { if (jj_scan_token(ALL)) return true; if (jj_scan_token(ROWS)) return true; return false; } final private boolean jj_3_1672() { - if (jj_scan_token(SQL_TSI_SECOND)) return true; + if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; return false; } - final private boolean jj_3_804() { + final private boolean jj_3_806() { if (jj_scan_token(INTERVAL)) return true; if (jj_3R_213()) return true; return false; } - final private boolean jj_3_805() { + final private boolean jj_3_807() { if (jj_scan_token(FORMAT)) return true; if (jj_3R_136()) return true; return false; } final private boolean jj_3_1671() { - if (jj_scan_token(SQL_TSI_MINUTE)) return true; + if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } final private boolean jj_3_1670() { - if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; + if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3_803() { + final private boolean jj_3_805() { if (jj_3R_118()) return true; return false; } final private boolean jj_3_1669() { - if (jj_scan_token(SQL_TIMESTAMP)) return true; + if (jj_scan_token(SQL_NCLOB)) return true; return false; } - final private boolean jj_3_343() { + final private boolean jj_3_345() { if (jj_scan_token(ONE)) return true; if (jj_scan_token(ROW)) return true; return false; } final private boolean jj_3_1668() { - if (jj_scan_token(SQL_REAL)) return true; + if (jj_scan_token(SQL_LONGVARCHAR)) return true; return false; } final private boolean jj_3_1667() { - if (jj_scan_token(SQL_NCLOB)) return true; + if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } final private boolean jj_3_1666() { - if (jj_scan_token(SQL_LONGVARCHAR)) return true; + if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } final private boolean jj_3_1665() { - if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } final private boolean jj_3_1664() { - if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; + if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } final private boolean jj_3_1663() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; + if (jj_scan_token(SQL_INTEGER)) return true; return false; } - final private boolean jj_3_342() { + final private boolean jj_3_344() { if (jj_scan_token(MEASURES)) return true; if (jj_3R_189()) return true; return false; } final private boolean jj_3_1662() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; + if (jj_scan_token(SQL_DECIMAL)) return true; return false; } - final private boolean jj_3_802() { + final private boolean jj_3_804() { if (jj_scan_token(TRY_CAST)) return true; return false; } final private boolean jj_3_1661() { - if (jj_scan_token(SQL_INTEGER)) return true; + if (jj_scan_token(SQL_CHAR)) return true; return false; } - final private boolean jj_3_800() { + final private boolean jj_3_802() { if (jj_scan_token(CAST)) return true; return false; } - final private boolean jj_3_801() { + final private boolean jj_3_803() { if (jj_scan_token(SAFE_CAST)) return true; return false; } final private boolean jj_3_1660() { - if (jj_scan_token(SQL_DECIMAL)) return true; + if (jj_scan_token(SQL_BIT)) return true; return false; } final private boolean jj_3_1659() { - if (jj_scan_token(SQL_CHAR)) return true; + if (jj_scan_token(SPECIFIC_NAME)) return true; return false; } final private boolean jj_3_1658() { - if (jj_scan_token(SQL_BIT)) return true; + if (jj_scan_token(SIZE)) return true; return false; } - final private boolean jj_3_341() { + final private boolean jj_3_343() { if (jj_3R_70()) return true; return false; } - final private boolean jj_3_836() { + final private boolean jj_3_838() { Token xsp; xsp = jj_scanpos; - if (jj_3_800()) { + if (jj_3_802()) { jj_scanpos = xsp; - if (jj_3_801()) { + if (jj_3_803()) { jj_scanpos = xsp; - if (jj_3_802()) return true; + if (jj_3_804()) return true; } } if (jj_scan_token(LPAREN)) return true; @@ -32935,32 +32981,28 @@ final private boolean jj_3_836() { } final private boolean jj_3_1657() { - if (jj_scan_token(SPECIFIC_NAME)) return true; + if (jj_scan_token(SESSION)) return true; return false; } final private boolean jj_3_1656() { - if (jj_scan_token(SIZE)) return true; + if (jj_scan_token(SERIALIZABLE)) return true; return false; } final private boolean jj_3_1655() { - if (jj_scan_token(SESSION)) return true; + if (jj_scan_token(SELF)) return true; return false; } final private boolean jj_3_1654() { - if (jj_scan_token(SERIALIZABLE)) return true; + if (jj_scan_token(SECONDS)) return true; return false; } final private boolean jj_3R_221() { Token xsp; xsp = jj_scanpos; - if (jj_3_836()) { - jj_scanpos = xsp; - if (jj_3_837()) { - jj_scanpos = xsp; if (jj_3_838()) { jj_scanpos = xsp; if (jj_3_839()) { @@ -33017,7 +33059,11 @@ final private boolean jj_3R_221() { jj_scanpos = xsp; if (jj_3_865()) { jj_scanpos = xsp; - if (jj_3_866()) return true; + if (jj_3_866()) { + jj_scanpos = xsp; + if (jj_3_867()) { + jj_scanpos = xsp; + if (jj_3_868()) return true; } } } @@ -33052,43 +33098,43 @@ final private boolean jj_3R_221() { } final private boolean jj_3_1653() { - if (jj_scan_token(SELF)) return true; + if (jj_scan_token(SCOPE_CATALOGS)) return true; return false; } final private boolean jj_3_1652() { - if (jj_scan_token(SECONDS)) return true; + if (jj_scan_token(SCALE)) return true; return false; } - final private boolean jj_3_340() { + final private boolean jj_3_342() { if (jj_scan_token(PARTITION)) return true; if (jj_scan_token(BY)) return true; return false; } final private boolean jj_3_1651() { - if (jj_scan_token(SCOPE_CATALOGS)) return true; + if (jj_scan_token(ROUTINE_SCHEMA)) return true; return false; } final private boolean jj_3_1650() { - if (jj_scan_token(SCALE)) return true; + if (jj_scan_token(ROUTINE)) return true; return false; } final private boolean jj_3_1649() { - if (jj_scan_token(ROUTINE_SCHEMA)) return true; + if (jj_scan_token(RETURNING)) return true; return false; } final private boolean jj_3_1648() { - if (jj_scan_token(ROUTINE)) return true; + if (jj_scan_token(RETURNED_LENGTH)) return true; return false; } final private boolean jj_3_1647() { - if (jj_scan_token(RETURNING)) return true; + if (jj_scan_token(RESTART)) return true; return false; } @@ -33099,134 +33145,128 @@ final private boolean jj_3R_166() { } final private boolean jj_3_1646() { - if (jj_scan_token(RETURNED_LENGTH)) return true; + if (jj_scan_token(REPEATABLE)) return true; return false; } final private boolean jj_3_1645() { - if (jj_scan_token(RESTART)) return true; + if (jj_scan_token(QUARTERS)) return true; return false; } final private boolean jj_3_1644() { - if (jj_scan_token(REPEATABLE)) return true; + if (jj_scan_token(PRIVILEGES)) return true; return false; } final private boolean jj_3_1643() { - if (jj_scan_token(QUARTERS)) return true; + if (jj_scan_token(PRECEDING)) return true; return false; } final private boolean jj_3_1642() { - if (jj_scan_token(PRIVILEGES)) return true; + if (jj_scan_token(PLACING)) return true; return false; } final private boolean jj_3_1641() { - if (jj_scan_token(PRECEDING)) return true; + if (jj_scan_token(PAST)) return true; return false; } final private boolean jj_3_1640() { - if (jj_scan_token(PLACING)) return true; + if (jj_scan_token(PASCAL)) return true; return false; } final private boolean jj_3_1639() { - if (jj_scan_token(PAST)) return true; + if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; return false; } final private boolean jj_3_1638() { - if (jj_scan_token(PASCAL)) return true; + if (jj_scan_token(PARAMETER_NAME)) return true; return false; } final private boolean jj_3_1637() { - if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; + if (jj_scan_token(OVERRIDING)) return true; return false; } final private boolean jj_3_1636() { - if (jj_scan_token(PARAMETER_NAME)) return true; + if (jj_scan_token(ORDINALITY)) return true; return false; } final private boolean jj_3_1635() { - if (jj_scan_token(OVERRIDING)) return true; + if (jj_scan_token(OPTION)) return true; return false; } final private boolean jj_3_1634() { - if (jj_scan_token(ORDINALITY)) return true; + if (jj_scan_token(NUMBER)) return true; return false; } final private boolean jj_3_1633() { - if (jj_scan_token(OPTION)) return true; + if (jj_scan_token(NORMALIZED)) return true; return false; } final private boolean jj_3_1632() { - if (jj_scan_token(NUMBER)) return true; + if (jj_scan_token(NAMES)) return true; return false; } final private boolean jj_3_1631() { - if (jj_scan_token(NORMALIZED)) return true; + if (jj_scan_token(MORE_)) return true; return false; } final private boolean jj_3_1630() { - if (jj_scan_token(NAMES)) return true; + if (jj_scan_token(MINUTES)) return true; return false; } final private boolean jj_3_1629() { - if (jj_scan_token(MORE_)) return true; + if (jj_scan_token(MICROSECOND)) return true; return false; } final private boolean jj_3_1628() { - if (jj_scan_token(MINUTES)) return true; + if (jj_scan_token(MESSAGE_LENGTH)) return true; return false; } final private boolean jj_3_1627() { - if (jj_scan_token(MICROSECOND)) return true; + if (jj_scan_token(MAP)) return true; return false; } final private boolean jj_3_1626() { - if (jj_scan_token(MESSAGE_LENGTH)) return true; + if (jj_scan_token(LIBRARY)) return true; return false; } final private boolean jj_3_1625() { - if (jj_scan_token(MAP)) return true; - return false; - } - - final private boolean jj_3R_170() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_372()) return true; + if (jj_scan_token(LAST)) return true; return false; } final private boolean jj_3_1624() { - if (jj_scan_token(LIBRARY)) return true; + if (jj_scan_token(KEY_MEMBER)) return true; return false; } - final private boolean jj_3_338() { + final private boolean jj_3_340() { if (jj_scan_token(COMMA)) return true; if (jj_3R_188()) return true; return false; } final private boolean jj_3_1623() { - if (jj_scan_token(LAST)) return true; + if (jj_scan_token(JSON)) return true; return false; } @@ -33237,53 +33277,59 @@ final private boolean jj_3R_215() { } final private boolean jj_3_1622() { - if (jj_scan_token(KEY_MEMBER)) return true; + if (jj_scan_token(ISOLATION)) return true; return false; } final private boolean jj_3_1621() { - if (jj_scan_token(JSON)) return true; + if (jj_scan_token(INSTANTIABLE)) return true; + return false; + } + + final private boolean jj_3R_170() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_372()) return true; return false; } final private boolean jj_3_1620() { - if (jj_scan_token(ISOLATION)) return true; + if (jj_scan_token(INITIALLY)) return true; return false; } final private boolean jj_3_1619() { - if (jj_scan_token(INSTANTIABLE)) return true; + if (jj_scan_token(INCLUDE)) return true; return false; } - final private boolean jj_3_339() { + final private boolean jj_3_341() { if (jj_scan_token(AS)) return true; if (jj_3R_160()) return true; return false; } final private boolean jj_3_1618() { - if (jj_scan_token(INITIALLY)) return true; + if (jj_scan_token(IMMEDIATE)) return true; return false; } final private boolean jj_3_1617() { - if (jj_scan_token(INCLUDE)) return true; + if (jj_scan_token(HOURS)) return true; return false; } final private boolean jj_3_1616() { - if (jj_scan_token(IMMEDIATE)) return true; + if (jj_scan_token(GROUP_CONCAT)) return true; return false; } final private boolean jj_3_1615() { - if (jj_scan_token(HOURS)) return true; + if (jj_scan_token(GO)) return true; return false; } final private boolean jj_3_1614() { - if (jj_scan_token(GROUP_CONCAT)) return true; + if (jj_scan_token(GENERAL)) return true; return false; } @@ -33293,42 +33339,32 @@ final private boolean jj_3R_188() { } final private boolean jj_3_1613() { - if (jj_scan_token(GO)) return true; + if (jj_scan_token(FOUND)) return true; return false; } - final private boolean jj_3_797() { + final private boolean jj_3_799() { if (jj_scan_token(LOCAL)) return true; return false; } final private boolean jj_3_1612() { - if (jj_scan_token(GENERAL)) return true; - return false; - } - - final private boolean jj_3_28() { - if (jj_3R_77()) return true; + if (jj_scan_token(FOLLOWING)) return true; return false; } final private boolean jj_3_1611() { - if (jj_scan_token(FOUND)) return true; + if (jj_scan_token(EXCLUDING)) return true; return false; } final private boolean jj_3_1610() { - if (jj_scan_token(FOLLOWING)) return true; - return false; - } - - final private boolean jj_3_27() { - if (jj_3R_76()) return true; + if (jj_scan_token(ERROR)) return true; return false; } final private boolean jj_3_1609() { - if (jj_scan_token(EXCLUDING)) return true; + if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; return false; } @@ -33337,73 +33373,65 @@ final private boolean jj_3R_397() { } final private boolean jj_3_1608() { - if (jj_scan_token(ERROR)) return true; + if (jj_scan_token(DOY)) return true; return false; } - final private boolean jj_3_1607() { - if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; + final private boolean jj_3_28() { + if (jj_3R_77()) return true; return false; } - final private boolean jj_3_1606() { - if (jj_scan_token(DOY)) return true; + final private boolean jj_3_1607() { + if (jj_scan_token(DISPATCH)) return true; return false; } - final private boolean jj_3_1605() { - if (jj_scan_token(DISPATCH)) return true; + final private boolean jj_3_1606() { + if (jj_scan_token(DESCRIPTION)) return true; return false; } - final private boolean jj_3R_204() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_26()) { - jj_scanpos = xsp; - if (jj_3_27()) { - jj_scanpos = xsp; - if (jj_3_28()) return true; - } - } + final private boolean jj_3_27() { + if (jj_3R_76()) return true; return false; } - final private boolean jj_3_1604() { - if (jj_scan_token(DESCRIPTION)) return true; + final private boolean jj_3_1605() { + if (jj_scan_token(DEPTH)) return true; return false; } - final private boolean jj_3_26() { - if (jj_3R_75()) return true; + final private boolean jj_3_1604() { + if (jj_scan_token(DEFINED)) return true; return false; } - final private boolean jj_3_799() { + final private boolean jj_3_801() { if (jj_scan_token(WITH)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_797()) jj_scanpos = xsp; + if (jj_3_799()) jj_scanpos = xsp; if (jj_scan_token(TIME)) return true; return false; } final private boolean jj_3_1603() { - if (jj_scan_token(DEPTH)) return true; + if (jj_scan_token(DEFAULTS)) return true; return false; } final private boolean jj_3_1602() { - if (jj_scan_token(DEFINED)) return true; + if (jj_scan_token(DAYOFYEAR)) return true; return false; } final private boolean jj_3R_288() { Token xsp; xsp = jj_scanpos; - if (jj_3_798()) { + if (jj_3_800()) { jj_scanpos = xsp; - if (jj_3_799()) { + if (jj_3_801()) { jj_scanpos = xsp; if (jj_3R_397()) return true; } @@ -33412,114 +33440,127 @@ final private boolean jj_3R_288() { } final private boolean jj_3_1601() { - if (jj_scan_token(DEFAULTS)) return true; + if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; return false; } - final private boolean jj_3_798() { + final private boolean jj_3_800() { if (jj_scan_token(WITHOUT)) return true; if (jj_scan_token(TIME)) return true; if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_1600() { - if (jj_scan_token(DAYOFYEAR)) return true; + final private boolean jj_3R_204() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_26()) { + jj_scanpos = xsp; + if (jj_3_27()) { + jj_scanpos = xsp; + if (jj_3_28()) return true; + } + } return false; } - final private boolean jj_3_1599() { - if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; + final private boolean jj_3_1600() { + if (jj_scan_token(DATE_TRUNC)) return true; return false; } - final private boolean jj_3_1598() { - if (jj_scan_token(DATE_TRUNC)) return true; + final private boolean jj_3_26() { + if (jj_3R_75()) return true; return false; } - final private boolean jj_3_1597() { + final private boolean jj_3_1599() { if (jj_scan_token(DATA)) return true; return false; } - final private boolean jj_3_1596() { + final private boolean jj_3_1598() { if (jj_scan_token(CONTAINS_SUBSTR)) return true; return false; } - final private boolean jj_3_25() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1597() { + if (jj_scan_token(CONSTRAINTS)) return true; return false; } - final private boolean jj_3R_374() { + final private boolean jj_3_1596() { + if (jj_scan_token(CONNECTION_NAME)) return true; return false; } - final private boolean jj_3_1595() { - if (jj_scan_token(CONSTRAINTS)) return true; + final private boolean jj_3R_374() { return false; } - final private boolean jj_3_1594() { - if (jj_scan_token(CONNECTION_NAME)) return true; + final private boolean jj_3_1595() { + if (jj_scan_token(CONDITIONAL)) return true; return false; } - final private boolean jj_3_24() { - if (jj_3R_74()) return true; + final private boolean jj_3_1594() { + if (jj_scan_token(COMMAND_FUNCTION)) return true; return false; } - final private boolean jj_3_337() { + final private boolean jj_3_339() { if (jj_scan_token(EXCLUDE)) return true; if (jj_scan_token(NULLS)) return true; return false; } final private boolean jj_3_1593() { - if (jj_scan_token(CONDITIONAL)) return true; + if (jj_scan_token(COLLATION_NAME)) return true; return false; } - final private boolean jj_3_336() { + final private boolean jj_3_338() { if (jj_scan_token(INCLUDE)) return true; if (jj_scan_token(NULLS)) return true; return false; } final private boolean jj_3_1592() { - if (jj_scan_token(COMMAND_FUNCTION)) return true; + if (jj_scan_token(COBOL)) return true; + return false; + } + + final private boolean jj_3_25() { + if (jj_scan_token(ALL)) return true; return false; } final private boolean jj_3_1591() { - if (jj_scan_token(COLLATION_NAME)) return true; + if (jj_scan_token(CHARACTER_SET_NAME)) return true; return false; } final private boolean jj_3_1590() { - if (jj_scan_token(COBOL)) return true; + if (jj_scan_token(CHARACTERISTICS)) return true; return false; } - final private boolean jj_3_1589() { - if (jj_scan_token(CHARACTER_SET_NAME)) return true; + final private boolean jj_3_24() { + if (jj_3R_74()) return true; return false; } - final private boolean jj_3R_396() { + final private boolean jj_3_1589() { + if (jj_scan_token(CATALOG_NAME)) return true; return false; } - final private boolean jj_3_1588() { - if (jj_scan_token(CHARACTERISTICS)) return true; + final private boolean jj_3R_396() { return false; } - final private boolean jj_3_22() { - if (jj_scan_token(ALL)) return true; + final private boolean jj_3_1588() { + if (jj_scan_token(C)) return true; return false; } @@ -33527,9 +33568,9 @@ final private boolean jj_3R_175() { if (jj_scan_token(UNPIVOT)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_336()) { + if (jj_3_338()) { jj_scanpos = xsp; - if (jj_3_337()) { + if (jj_3_339()) { jj_scanpos = xsp; if (jj_3R_374()) return true; } @@ -33539,34 +33580,34 @@ final private boolean jj_3R_175() { } final private boolean jj_3_1587() { - if (jj_scan_token(CATALOG_NAME)) return true; + if (jj_scan_token(BEFORE)) return true; return false; } final private boolean jj_3_1586() { - if (jj_scan_token(C)) return true; + if (jj_scan_token(ASSIGNMENT)) return true; return false; } final private boolean jj_3_1585() { - if (jj_scan_token(BEFORE)) return true; + if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } final private boolean jj_3_1584() { - if (jj_scan_token(ASSIGNMENT)) return true; + if (jj_scan_token(ALWAYS)) return true; return false; } - final private boolean jj_3_21() { - if (jj_3R_74()) return true; + final private boolean jj_3_22() { + if (jj_scan_token(ALL)) return true; return false; } final private boolean jj_3R_257() { Token xsp; xsp = jj_scanpos; - if (jj_3_796()) { + if (jj_3_798()) { jj_scanpos = xsp; if (jj_3R_396()) return true; } @@ -33574,53 +33615,29 @@ final private boolean jj_3R_257() { } final private boolean jj_3_1583() { - if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; + if (jj_scan_token(ADD)) return true; return false; } - final private boolean jj_3_796() { + final private boolean jj_3_798() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_258()) return true; return false; } final private boolean jj_3_1582() { - if (jj_scan_token(ALWAYS)) return true; - return false; - } - - final private boolean jj_3_1581() { - if (jj_scan_token(ADD)) return true; - return false; - } - - final private boolean jj_3_1580() { if (jj_scan_token(ABSOLUTE)) return true; return false; } - final private boolean jj_3_23() { + final private boolean jj_3_21() { if (jj_3R_74()) return true; - if (jj_scan_token(COMMA)) return true; - return false; - } - - final private boolean jj_3_18() { - if (jj_scan_token(NEXT)) return true; - return false; - } - - final private boolean jj_3R_377() { return false; } final private boolean jj_3R_341() { Token xsp; xsp = jj_scanpos; - if (jj_3_1580()) { - jj_scanpos = xsp; - if (jj_3_1581()) { - jj_scanpos = xsp; if (jj_3_1582()) { jj_scanpos = xsp; if (jj_3_1583()) { @@ -34055,7 +34072,11 @@ final private boolean jj_3R_341() { jj_scanpos = xsp; if (jj_3_1798()) { jj_scanpos = xsp; - if (jj_3_1799()) return true; + if (jj_3_1799()) { + jj_scanpos = xsp; + if (jj_3_1800()) { + jj_scanpos = xsp; + if (jj_3_1801()) return true; } } } @@ -34278,44 +34299,55 @@ final private boolean jj_3R_341() { return false; } - final private boolean jj_3_334() { - if (jj_scan_token(AS)) return true; + final private boolean jj_3R_377() { return false; } - final private boolean jj_3_1579() { + final private boolean jj_3_1581() { if (jj_scan_token(SUNDAY)) return true; return false; } - final private boolean jj_3R_72() { - if (jj_scan_token(LIMIT)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_23()) { - jj_scanpos = xsp; - if (jj_3_24()) { - jj_scanpos = xsp; - if (jj_3_25()) return true; - } - } + final private boolean jj_3_23() { + if (jj_3R_74()) return true; + if (jj_scan_token(COMMA)) return true; return false; } - final private boolean jj_3_1578() { + final private boolean jj_3_18() { + if (jj_scan_token(NEXT)) return true; + return false; + } + + final private boolean jj_3_1580() { if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3_335() { + final private boolean jj_3_336() { + if (jj_scan_token(AS)) return true; + return false; + } + + final private boolean jj_3_1579() { + if (jj_scan_token(MONDAY)) return true; + return false; + } + + final private boolean jj_3_1578() { + if (jj_scan_token(WITHIN)) return true; + return false; + } + + final private boolean jj_3_337() { Token xsp; xsp = jj_scanpos; - if (jj_3_334()) jj_scanpos = xsp; + if (jj_3_336()) jj_scanpos = xsp; if (jj_3R_84()) return true; return false; } - final private boolean jj_3_795() { + final private boolean jj_3_797() { if (jj_scan_token(TIMESTAMP)) return true; if (jj_3R_257()) return true; if (jj_3R_288()) return true; @@ -34323,37 +34355,41 @@ final private boolean jj_3_795() { } final private boolean jj_3_1577() { - if (jj_scan_token(MONDAY)) return true; + if (jj_scan_token(WHENEVER)) return true; return false; } final private boolean jj_3_1576() { - if (jj_scan_token(WITHIN)) return true; - return false; - } - - final private boolean jj_3_20() { - if (jj_scan_token(ROWS)) return true; + if (jj_scan_token(VAR_POP)) return true; return false; } final private boolean jj_3_1575() { - if (jj_scan_token(WHENEVER)) return true; + if (jj_scan_token(VARIANT)) return true; return false; } - final private boolean jj_3_17() { - if (jj_scan_token(FIRST)) return true; + final private boolean jj_3R_72() { + if (jj_scan_token(LIMIT)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_23()) { + jj_scanpos = xsp; + if (jj_3_24()) { + jj_scanpos = xsp; + if (jj_3_25()) return true; + } + } return false; } final private boolean jj_3_1574() { - if (jj_scan_token(VAR_POP)) return true; + if (jj_scan_token(VALUE)) return true; return false; } final private boolean jj_3_1573() { - if (jj_scan_token(VARIANT)) return true; + if (jj_scan_token(UPPER)) return true; return false; } @@ -34361,7 +34397,7 @@ final private boolean jj_3R_187() { if (jj_3R_160()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_335()) { + if (jj_3_337()) { jj_scanpos = xsp; if (jj_3R_377()) return true; } @@ -34369,21 +34405,31 @@ final private boolean jj_3R_187() { } final private boolean jj_3_1572() { - if (jj_scan_token(VALUE)) return true; + if (jj_scan_token(UESCAPE)) return true; + return false; + } + + final private boolean jj_3_20() { + if (jj_scan_token(ROWS)) return true; return false; } final private boolean jj_3_1571() { - if (jj_scan_token(UPPER)) return true; + if (jj_scan_token(TRIM_ARRAY)) return true; + return false; + } + + final private boolean jj_3_17() { + if (jj_scan_token(FIRST)) return true; return false; } final private boolean jj_3_1570() { - if (jj_scan_token(UESCAPE)) return true; + if (jj_scan_token(TREAT)) return true; return false; } - final private boolean jj_3_794() { + final private boolean jj_3_796() { if (jj_scan_token(TIME)) return true; if (jj_3R_257()) return true; if (jj_3R_288()) return true; @@ -34391,168 +34437,153 @@ final private boolean jj_3_794() { } final private boolean jj_3_1569() { - if (jj_scan_token(TRIM_ARRAY)) return true; + if (jj_scan_token(TRANSLATE)) return true; return false; } final private boolean jj_3_1568() { - if (jj_scan_token(TREAT)) return true; - return false; - } - - final private boolean jj_3_19() { - if (jj_scan_token(ROW)) return true; + if (jj_scan_token(TIMEZONE_HOUR)) return true; return false; } final private boolean jj_3_1567() { - if (jj_scan_token(TRANSLATE)) return true; + if (jj_scan_token(TABLESAMPLE)) return true; return false; } final private boolean jj_3_1566() { - if (jj_scan_token(TIMEZONE_HOUR)) return true; + if (jj_scan_token(SYSTEM)) return true; return false; } final private boolean jj_3R_283() { Token xsp; xsp = jj_scanpos; - if (jj_3_793()) { + if (jj_3_795()) { jj_scanpos = xsp; - if (jj_3_794()) { + if (jj_3_796()) { jj_scanpos = xsp; - if (jj_3_795()) return true; - } + if (jj_3_797()) return true; } - return false; - } - - final private boolean jj_3R_73() { - if (jj_scan_token(FETCH)) return true; - Token xsp; - xsp = jj_scanpos; - if (jj_3_17()) { - jj_scanpos = xsp; - if (jj_3_18()) return true; } return false; } final private boolean jj_3_1565() { - if (jj_scan_token(TABLESAMPLE)) return true; + if (jj_scan_token(SUBSTRING_REGEX)) return true; return false; } - final private boolean jj_3_793() { + final private boolean jj_3_795() { if (jj_scan_token(DATE)) return true; return false; } final private boolean jj_3_1564() { - if (jj_scan_token(SYSTEM)) return true; + if (jj_scan_token(SUBMULTISET)) return true; return false; } - final private boolean jj_3_1563() { - if (jj_scan_token(SUBSTRING_REGEX)) return true; + final private boolean jj_3_19() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_15() { - if (jj_scan_token(ROWS)) return true; + final private boolean jj_3_1563() { + if (jj_scan_token(STDDEV_POP)) return true; return false; } final private boolean jj_3_1562() { - if (jj_scan_token(SUBMULTISET)) return true; + if (jj_scan_token(SQRT)) return true; return false; } - final private boolean jj_3_331() { + final private boolean jj_3_333() { if (jj_scan_token(COMMA)) return true; if (jj_3R_187()) return true; return false; } + final private boolean jj_3R_73() { + if (jj_scan_token(FETCH)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_17()) { + jj_scanpos = xsp; + if (jj_3_18()) return true; + } + return false; + } + final private boolean jj_3_1561() { - if (jj_scan_token(STDDEV_POP)) return true; + if (jj_scan_token(SQLEXCEPTION)) return true; return false; } - final private boolean jj_3_333() { + final private boolean jj_3_335() { if (jj_scan_token(AS)) return true; return false; } final private boolean jj_3_1560() { - if (jj_scan_token(SQRT)) return true; + if (jj_scan_token(SPECIFIC)) return true; return false; } final private boolean jj_3_1559() { - if (jj_scan_token(SQLEXCEPTION)) return true; - return false; - } - - final private boolean jj_3_1558() { - if (jj_scan_token(SPECIFIC)) return true; + if (jj_scan_token(SIMILAR)) return true; return false; } - final private boolean jj_3_1557() { - if (jj_scan_token(SIMILAR)) return true; + final private boolean jj_3_15() { + if (jj_scan_token(ROWS)) return true; return false; } - final private boolean jj_3_1556() { + final private boolean jj_3_1558() { if (jj_scan_token(SENSITIVE)) return true; return false; } - final private boolean jj_3_1555() { + final private boolean jj_3_1557() { if (jj_scan_token(SEARCH)) return true; return false; } - final private boolean jj_3_14() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3_1556() { + if (jj_scan_token(SAVEPOINT)) return true; return false; } - final private boolean jj_3_16() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_14()) { - jj_scanpos = xsp; - if (jj_3_15()) return true; - } + final private boolean jj_3_1555() { + if (jj_scan_token(SAFE_CAST)) return true; return false; } - final private boolean jj_3_788() { + final private boolean jj_3_790() { if (jj_scan_token(CHAR)) return true; return false; } final private boolean jj_3_1554() { - if (jj_scan_token(SAVEPOINT)) return true; + if (jj_scan_token(ROWS)) return true; return false; } final private boolean jj_3_1553() { - if (jj_scan_token(SAFE_CAST)) return true; + if (jj_scan_token(REVOKE)) return true; return false; } - final private boolean jj_3_330() { + final private boolean jj_3_332() { if (jj_scan_token(COMMA)) return true; if (jj_3R_186()) return true; return false; } final private boolean jj_3_1552() { - if (jj_scan_token(ROWS)) return true; + if (jj_scan_token(RESULT)) return true; return false; } @@ -34561,30 +34592,39 @@ final private boolean jj_3R_186() { return false; } - final private boolean jj_3R_71() { - if (jj_scan_token(OFFSET)) return true; - if (jj_3R_74()) return true; + final private boolean jj_3_1551() { + if (jj_scan_token(REGR_SYY)) return true; return false; } - final private boolean jj_3_1551() { - if (jj_scan_token(REVOKE)) return true; + final private boolean jj_3_14() { + if (jj_scan_token(ROW)) return true; return false; } - final private boolean jj_3_792() { + final private boolean jj_3_16() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_14()) { + jj_scanpos = xsp; + if (jj_3_15()) return true; + } + return false; + } + + final private boolean jj_3_794() { if (jj_scan_token(CHARACTER)) return true; if (jj_scan_token(SET)) return true; return false; } final private boolean jj_3_1550() { - if (jj_scan_token(RESULT)) return true; + if (jj_scan_token(REGR_SLOPE)) return true; return false; } final private boolean jj_3_1549() { - if (jj_scan_token(REGR_SYY)) return true; + if (jj_scan_token(REGR_COUNT)) return true; return false; } @@ -34593,74 +34633,80 @@ final private boolean jj_3R_287() { } final private boolean jj_3_1548() { - if (jj_scan_token(REGR_SLOPE)) return true; + if (jj_scan_token(REFERENCING)) return true; + return false; + } + + final private boolean jj_3R_71() { + if (jj_scan_token(OFFSET)) return true; + if (jj_3R_74()) return true; return false; } final private boolean jj_3_1547() { - if (jj_scan_token(REGR_COUNT)) return true; + if (jj_scan_token(RECURSIVE)) return true; return false; } - final private boolean jj_3_791() { + final private boolean jj_3_793() { if (jj_scan_token(VARCHAR)) return true; return false; } final private boolean jj_3_1546() { - if (jj_scan_token(REFERENCING)) return true; + if (jj_scan_token(RANK)) return true; return false; } - final private boolean jj_3_789() { + final private boolean jj_3_791() { if (jj_scan_token(VARYING)) return true; return false; } final private boolean jj_3_1545() { - if (jj_scan_token(RECURSIVE)) return true; + if (jj_scan_token(PROCEDURE)) return true; return false; } final private boolean jj_3_1544() { - if (jj_scan_token(RANK)) return true; + if (jj_scan_token(PRECISION)) return true; return false; } final private boolean jj_3_1543() { - if (jj_scan_token(PROCEDURE)) return true; + if (jj_scan_token(POSITION_REGEX)) return true; return false; } final private boolean jj_3_1542() { - if (jj_scan_token(PRECISION)) return true; + if (jj_scan_token(PERMUTE)) return true; return false; } final private boolean jj_3_1541() { - if (jj_scan_token(POSITION_REGEX)) return true; + if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } - final private boolean jj_3_787() { + final private boolean jj_3_789() { if (jj_scan_token(CHARACTER)) return true; return false; } final private boolean jj_3_1540() { - if (jj_scan_token(PERMUTE)) return true; + if (jj_scan_token(PER)) return true; return false; } - final private boolean jj_3_790() { + final private boolean jj_3_792() { Token xsp; xsp = jj_scanpos; - if (jj_3_787()) { + if (jj_3_789()) { jj_scanpos = xsp; - if (jj_3_788()) return true; + if (jj_3_790()) return true; } xsp = jj_scanpos; - if (jj_3_789()) { + if (jj_3_791()) { jj_scanpos = xsp; if (jj_3R_287()) return true; } @@ -34668,85 +34714,85 @@ final private boolean jj_3_790() { } final private boolean jj_3_1539() { - if (jj_scan_token(PERCENTILE_DISC)) return true; + if (jj_scan_token(OVERLAY)) return true; return false; } final private boolean jj_3_1538() { - if (jj_scan_token(PER)) return true; + if (jj_scan_token(OUT)) return true; return false; } final private boolean jj_3_1537() { - if (jj_scan_token(OVERLAY)) return true; + if (jj_scan_token(ONLY)) return true; return false; } final private boolean jj_3_1536() { - if (jj_scan_token(OUT)) return true; + if (jj_scan_token(OLD)) return true; return false; } final private boolean jj_3R_282() { Token xsp; xsp = jj_scanpos; - if (jj_3_790()) { + if (jj_3_792()) { jj_scanpos = xsp; - if (jj_3_791()) return true; + if (jj_3_793()) return true; } if (jj_3R_257()) return true; xsp = jj_scanpos; - if (jj_3_792()) jj_scanpos = xsp; + if (jj_3_794()) jj_scanpos = xsp; return false; } final private boolean jj_3_1535() { - if (jj_scan_token(ONLY)) return true; - return false; - } - - final private boolean jj_3_8() { - if (jj_3R_73()) return true; + if (jj_scan_token(OCCURRENCES_REGEX)) return true; return false; } - final private boolean jj_3_332() { + final private boolean jj_3_334() { if (jj_3R_187()) return true; return false; } final private boolean jj_3_1534() { - if (jj_scan_token(OLD)) return true; - return false; - } - - final private boolean jj_3_12() { - if (jj_3R_73()) return true; + if (jj_scan_token(NTILE)) return true; return false; } final private boolean jj_3_1533() { - if (jj_scan_token(OCCURRENCES_REGEX)) return true; + if (jj_scan_token(NONE)) return true; return false; } final private boolean jj_3_1532() { - if (jj_scan_token(NTILE)) return true; + if (jj_scan_token(NEW)) return true; return false; } final private boolean jj_3_1531() { - if (jj_scan_token(NONE)) return true; + if (jj_scan_token(NATIONAL)) return true; + return false; + } + + final private boolean jj_3_8() { + if (jj_3R_73()) return true; return false; } final private boolean jj_3_1530() { - if (jj_scan_token(NEW)) return true; + if (jj_scan_token(MODULE)) return true; + return false; + } + + final private boolean jj_3_12() { + if (jj_3R_73()) return true; return false; } final private boolean jj_3_1529() { - if (jj_scan_token(NATIONAL)) return true; + if (jj_scan_token(MINUTE)) return true; return false; } @@ -34757,7 +34803,27 @@ final private boolean jj_3R_174() { } final private boolean jj_3_1528() { - if (jj_scan_token(MODULE)) return true; + if (jj_scan_token(MEMBER)) return true; + return false; + } + + final private boolean jj_3_1527() { + if (jj_scan_token(MAX)) return true; + return false; + } + + final private boolean jj_3_1526() { + if (jj_scan_token(MATCH_CONDITION)) return true; + return false; + } + + final private boolean jj_3_1525() { + if (jj_scan_token(LOWER)) return true; + return false; + } + + final private boolean jj_3_1524() { + if (jj_scan_token(LIKE_REGEX)) return true; return false; } @@ -34776,33 +34842,33 @@ final private boolean jj_3_9() { return false; } - final private boolean jj_3_1527() { - if (jj_scan_token(MINUTE)) return true; + final private boolean jj_3_1523() { + if (jj_scan_token(LAST_VALUE)) return true; return false; } - final private boolean jj_3_1526() { - if (jj_scan_token(MEMBER)) return true; + final private boolean jj_3_1522() { + if (jj_scan_token(LAG)) return true; return false; } - final private boolean jj_3_1525() { - if (jj_scan_token(MAX)) return true; + final private boolean jj_3_1521() { + if (jj_scan_token(JSON_QUERY)) return true; return false; } - final private boolean jj_3_1524() { - if (jj_scan_token(MATCH_CONDITION)) return true; + final private boolean jj_3_1520() { + if (jj_scan_token(JSON_EXISTS)) return true; return false; } - final private boolean jj_3_1523() { - if (jj_scan_token(LOWER)) return true; + final private boolean jj_3_1519() { + if (jj_scan_token(INTERSECTION)) return true; return false; } - final private boolean jj_3_1522() { - if (jj_scan_token(LIKE_REGEX)) return true; + final private boolean jj_3_1518() { + if (jj_scan_token(INSENSITIVE)) return true; return false; } @@ -34816,18 +34882,18 @@ final private boolean jj_3_11() { return false; } - final private boolean jj_3_1521() { - if (jj_scan_token(LAST_VALUE)) return true; + final private boolean jj_3_1517() { + if (jj_scan_token(INDICATOR)) return true; return false; } - final private boolean jj_3_1520() { - if (jj_scan_token(LAG)) return true; + final private boolean jj_3_1516() { + if (jj_scan_token(HOUR)) return true; return false; } - final private boolean jj_3_1519() { - if (jj_scan_token(JSON_QUERY)) return true; + final private boolean jj_3_1515() { + if (jj_scan_token(GROUPING)) return true; return false; } @@ -34849,69 +34915,69 @@ final private boolean jj_3_13() { return false; } - final private boolean jj_3_1518() { - if (jj_scan_token(JSON_EXISTS)) return true; + final private boolean jj_3R_278() { + if (jj_scan_token(MAP)) return true; + if (jj_scan_token(LT)) return true; + if (jj_3R_118()) return true; return false; } - final private boolean jj_3_1517() { - if (jj_scan_token(INTERSECTION)) return true; + final private boolean jj_3_1514() { + if (jj_scan_token(GET)) return true; return false; } - final private boolean jj_3R_404() { + final private boolean jj_3_1513() { + if (jj_scan_token(FREE)) return true; return false; } - final private boolean jj_3_1516() { - if (jj_scan_token(INSENSITIVE)) return true; + final private boolean jj_3R_404() { return false; } - final private boolean jj_3_1515() { - if (jj_scan_token(INDICATOR)) return true; + final private boolean jj_3_1512() { + if (jj_scan_token(FLOOR)) return true; return false; } - final private boolean jj_3_5() { - if (jj_3R_70()) return true; + final private boolean jj_3_1511() { + if (jj_scan_token(FILTER)) return true; return false; } - final private boolean jj_3R_278() { - if (jj_scan_token(MAP)) return true; - if (jj_scan_token(LT)) return true; - if (jj_3R_118()) return true; + final private boolean jj_3_5() { + if (jj_3R_70()) return true; return false; } - final private boolean jj_3_1514() { - if (jj_scan_token(HOUR)) return true; + final private boolean jj_3_1510() { + if (jj_scan_token(EXTEND)) return true; return false; } - final private boolean jj_3_1513() { - if (jj_scan_token(GROUPING)) return true; + final private boolean jj_3_1509() { + if (jj_scan_token(EXEC)) return true; return false; } - final private boolean jj_3_1512() { - if (jj_scan_token(GET)) return true; + final private boolean jj_3_1508() { + if (jj_scan_token(EQUALS)) return true; return false; } - final private boolean jj_3_1511() { - if (jj_scan_token(FREE)) return true; + final private boolean jj_3_1507() { + if (jj_scan_token(END_EXEC)) return true; return false; } - final private boolean jj_3_1510() { - if (jj_scan_token(FLOOR)) return true; + final private boolean jj_3_1506() { + if (jj_scan_token(ELEMENT)) return true; return false; } - final private boolean jj_3_1509() { - if (jj_scan_token(FILTER)) return true; + final private boolean jj_3_1505() { + if (jj_scan_token(DOUBLE)) return true; return false; } @@ -34927,33 +34993,13 @@ final private boolean jj_3R_346() { return false; } - final private boolean jj_3_1508() { - if (jj_scan_token(EXTEND)) return true; - return false; - } - - final private boolean jj_3_1507() { - if (jj_scan_token(EXEC)) return true; - return false; - } - - final private boolean jj_3_1506() { - if (jj_scan_token(EQUALS)) return true; - return false; - } - - final private boolean jj_3_1505() { - if (jj_scan_token(END_EXEC)) return true; - return false; - } - final private boolean jj_3_1504() { - if (jj_scan_token(ELEMENT)) return true; + if (jj_scan_token(DETERMINISTIC)) return true; return false; } final private boolean jj_3_1503() { - if (jj_scan_token(DOUBLE)) return true; + if (jj_scan_token(DENSE_RANK)) return true; return false; } @@ -34964,7 +35010,7 @@ final private boolean jj_3R_165() { } final private boolean jj_3_1502() { - if (jj_scan_token(DETERMINISTIC)) return true; + if (jj_scan_token(DECIMAL)) return true; return false; } @@ -34976,108 +35022,108 @@ final private boolean jj_3R_277() { } final private boolean jj_3_1501() { - if (jj_scan_token(DENSE_RANK)) return true; + if (jj_scan_token(DAY)) return true; return false; } final private boolean jj_3_1500() { - if (jj_scan_token(DECIMAL)) return true; + if (jj_scan_token(CYCLE)) return true; return false; } final private boolean jj_3_1499() { - if (jj_scan_token(DAY)) return true; + if (jj_scan_token(CURRENT_ROW)) return true; return false; } final private boolean jj_3_1498() { - if (jj_scan_token(CYCLE)) return true; + if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; return false; } final private boolean jj_3_1497() { - if (jj_scan_token(CURRENT_ROW)) return true; + if (jj_scan_token(CUME_DIST)) return true; return false; } final private boolean jj_3_1496() { - if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + if (jj_scan_token(COVAR_POP)) return true; return false; } final private boolean jj_3_1495() { - if (jj_scan_token(CUME_DIST)) return true; + if (jj_scan_token(CORR)) return true; return false; } final private boolean jj_3_1494() { - if (jj_scan_token(COVAR_POP)) return true; + if (jj_scan_token(CONNECT)) return true; return false; } final private boolean jj_3_1493() { - if (jj_scan_token(CORR)) return true; - return false; - } - - final private boolean jj_3R_79() { - if (jj_3R_345()) return true; - if (jj_3R_346()) return true; + if (jj_scan_token(COLLECT)) return true; return false; } final private boolean jj_3_1492() { - if (jj_scan_token(CONNECT)) return true; + if (jj_scan_token(CLOSE)) return true; return false; } final private boolean jj_3_1491() { - if (jj_scan_token(COLLECT)) return true; + if (jj_scan_token(CHECK)) return true; return false; } final private boolean jj_3_1490() { - if (jj_scan_token(CLOSE)) return true; + if (jj_scan_token(CHARACTER)) return true; return false; } final private boolean jj_3_1489() { - if (jj_scan_token(CHECK)) return true; + if (jj_scan_token(CEIL)) return true; + return false; + } + + final private boolean jj_3R_79() { + if (jj_3R_345()) return true; + if (jj_3R_346()) return true; return false; } final private boolean jj_3_1488() { - if (jj_scan_token(CHARACTER)) return true; + if (jj_scan_token(CALLED)) return true; return false; } final private boolean jj_3_1487() { - if (jj_scan_token(CEIL)) return true; + if (jj_scan_token(BLOB)) return true; return false; } final private boolean jj_3_1486() { - if (jj_scan_token(CALLED)) return true; + if (jj_scan_token(BIGINT)) return true; return false; } final private boolean jj_3_1485() { - if (jj_scan_token(BLOB)) return true; + if (jj_scan_token(BEGIN)) return true; return false; } final private boolean jj_3_1484() { - if (jj_scan_token(BIGINT)) return true; + if (jj_scan_token(ATOMIC)) return true; return false; } final private boolean jj_3_1483() { - if (jj_scan_token(BEGIN)) return true; + if (jj_scan_token(ASENSITIVE)) return true; return false; } final private boolean jj_3_1482() { - if (jj_scan_token(ATOMIC)) return true; + if (jj_scan_token(ALLOW)) return true; return false; } @@ -35087,32 +35133,32 @@ final private boolean jj_3R_286() { } final private boolean jj_3_1481() { - if (jj_scan_token(ASENSITIVE)) return true; + if (jj_scan_token(TOTAL)) return true; return false; } final private boolean jj_3_1480() { - if (jj_scan_token(ALLOW)) return true; + if (jj_scan_token(REFRESH)) return true; return false; } final private boolean jj_3_1479() { - if (jj_scan_token(TOTAL)) return true; + if (jj_scan_token(ASYNC)) return true; return false; } final private boolean jj_3_1478() { - if (jj_scan_token(REFRESH)) return true; + if (jj_scan_token(CONTINUOUS)) return true; return false; } final private boolean jj_3_1477() { - if (jj_scan_token(ASYNC)) return true; + if (jj_scan_token(PASSWORD)) return true; return false; } final private boolean jj_3_1476() { - if (jj_scan_token(CONTINUOUS)) return true; + if (jj_scan_token(INLINE_SIZE)) return true; return false; } @@ -35122,38 +35168,38 @@ final private boolean jj_3R_371() { } final private boolean jj_3_1475() { - if (jj_scan_token(PASSWORD)) return true; + if (jj_scan_token(VALUE_TYPE)) return true; return false; } final private boolean jj_3_1474() { - if (jj_scan_token(INLINE_SIZE)) return true; + if (jj_scan_token(CACHE_GROUP)) return true; return false; } final private boolean jj_3_1473() { - if (jj_scan_token(VALUE_TYPE)) return true; + if (jj_scan_token(AFFINITY_KEY)) return true; return false; } final private boolean jj_3_1472() { - if (jj_scan_token(CACHE_GROUP)) return true; + if (jj_scan_token(ZONE)) return true; return false; } - final private boolean jj_3_786() { + final private boolean jj_3_788() { if (jj_scan_token(COMMA)) return true; if (jj_3R_286()) return true; return false; } final private boolean jj_3_1471() { - if (jj_scan_token(AFFINITY_KEY)) return true; + if (jj_scan_token(WRITE)) return true; return false; } final private boolean jj_3_1470() { - if (jj_scan_token(ZONE)) return true; + if (jj_scan_token(WEEKS)) return true; return false; } @@ -35163,82 +35209,82 @@ final private boolean jj_3R_415() { } final private boolean jj_3_1469() { - if (jj_scan_token(WRITE)) return true; + if (jj_scan_token(VERSION)) return true; return false; } final private boolean jj_3_1468() { - if (jj_scan_token(WEEKS)) return true; + if (jj_scan_token(UTF16)) return true; return false; } final private boolean jj_3_1467() { - if (jj_scan_token(VERSION)) return true; + if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; return false; } final private boolean jj_3_1466() { - if (jj_scan_token(UTF16)) return true; + if (jj_scan_token(UNNAMED)) return true; return false; } final private boolean jj_3_1465() { - if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; + if (jj_scan_token(UNCONDITIONAL)) return true; return false; } final private boolean jj_3_1464() { - if (jj_scan_token(UNNAMED)) return true; + if (jj_scan_token(TYPE)) return true; return false; } final private boolean jj_3_1463() { - if (jj_scan_token(UNCONDITIONAL)) return true; + if (jj_scan_token(TRIGGER_NAME)) return true; return false; } - final private boolean jj_3_328() { + final private boolean jj_3_330() { if (jj_scan_token(NULLS)) return true; if (jj_scan_token(LAST)) return true; return false; } final private boolean jj_3_1462() { - if (jj_scan_token(TYPE)) return true; + if (jj_scan_token(TRANSFORM)) return true; return false; } final private boolean jj_3_1461() { - if (jj_scan_token(TRIGGER_NAME)) return true; + if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; return false; } final private boolean jj_3_1460() { - if (jj_scan_token(TRANSFORM)) return true; + if (jj_scan_token(TIMESTAMP_TRUNC)) return true; return false; } final private boolean jj_3_1459() { - if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; + if (jj_scan_token(TIMESTAMPADD)) return true; return false; } final private boolean jj_3_1458() { - if (jj_scan_token(TIMESTAMP_TRUNC)) return true; + if (jj_scan_token(TIES)) return true; return false; } - final private boolean jj_3_329() { + final private boolean jj_3_331() { Token xsp; xsp = jj_scanpos; - if (jj_3_327()) { + if (jj_3_329()) { jj_scanpos = xsp; - if (jj_3_328()) return true; + if (jj_3_330()) return true; } return false; } - final private boolean jj_3_327() { + final private boolean jj_3_329() { if (jj_scan_token(NULLS)) return true; if (jj_scan_token(FIRST)) return true; return false; @@ -35249,24 +35295,19 @@ final private boolean jj_3R_375() { } final private boolean jj_3_1457() { - if (jj_scan_token(TIMESTAMPADD)) return true; - return false; - } - - final private boolean jj_3_2() { - if (jj_3R_67()) return true; + if (jj_scan_token(SUBSTITUTE)) return true; return false; } final private boolean jj_3_1456() { - if (jj_scan_token(TIES)) return true; + if (jj_scan_token(STRUCTURE)) return true; return false; } final private boolean jj_3R_179() { Token xsp; xsp = jj_scanpos; - if (jj_3_785()) { + if (jj_3_787()) { jj_scanpos = xsp; if (jj_3R_375()) return true; } @@ -35274,97 +35315,97 @@ final private boolean jj_3R_179() { } final private boolean jj_3_1455() { - if (jj_scan_token(SUBSTITUTE)) return true; - return false; - } - - final private boolean jj_3_1() { - if (jj_3R_66()) return true; + if (jj_scan_token(STATE)) return true; return false; } - final private boolean jj_3_785() { + final private boolean jj_3_787() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(NULL)) return true; return false; } final private boolean jj_3_1454() { - if (jj_scan_token(STRUCTURE)) return true; + if (jj_scan_token(SQL_TSI_YEAR)) return true; return false; } final private boolean jj_3_1453() { - if (jj_scan_token(STATE)) return true; + if (jj_scan_token(SQL_TSI_QUARTER)) return true; return false; } - final private boolean jj_3_325() { - if (jj_scan_token(DESC)) return true; + final private boolean jj_3_2() { + if (jj_3R_67()) return true; return false; } - final private boolean jj_3_1452() { - if (jj_scan_token(SQL_TSI_YEAR)) return true; + final private boolean jj_3_327() { + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_4() { - if (jj_3R_69()) return true; - Token xsp; - while (true) { - xsp = jj_scanpos; - if (jj_3_1()) { jj_scanpos = xsp; break; } - } - while (true) { - xsp = jj_scanpos; - if (jj_3_2()) { jj_scanpos = xsp; break; } - } + final private boolean jj_3_1452() { + if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; return false; } - final private boolean jj_3_326() { + final private boolean jj_3_328() { Token xsp; xsp = jj_scanpos; - if (jj_3_324()) { + if (jj_3_326()) { jj_scanpos = xsp; - if (jj_3_325()) return true; + if (jj_3_327()) return true; } return false; } - final private boolean jj_3_324() { + final private boolean jj_3_326() { if (jj_scan_token(ASC)) return true; return false; } final private boolean jj_3_1451() { - if (jj_scan_token(SQL_TSI_QUARTER)) return true; + if (jj_scan_token(SQL_TSI_DAY)) return true; + return false; + } + + final private boolean jj_3_1() { + if (jj_3R_66()) return true; return false; } final private boolean jj_3_1450() { - if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; + if (jj_scan_token(SQL_TIME)) return true; return false; } final private boolean jj_3_1449() { - if (jj_scan_token(SQL_TSI_DAY)) return true; + if (jj_scan_token(SQL_NVARCHAR)) return true; return false; } final private boolean jj_3_1448() { - if (jj_scan_token(SQL_TIME)) return true; + if (jj_scan_token(SQL_NCHAR)) return true; return false; } - final private boolean jj_3_1447() { - if (jj_scan_token(SQL_NVARCHAR)) return true; + final private boolean jj_3_4() { + if (jj_3R_69()) return true; + Token xsp; + while (true) { + xsp = jj_scanpos; + if (jj_3_1()) { jj_scanpos = xsp; break; } + } + while (true) { + xsp = jj_scanpos; + if (jj_3_2()) { jj_scanpos = xsp; break; } + } return false; } - final private boolean jj_3_3() { - if (jj_3R_68()) return true; + final private boolean jj_3_1447() { + if (jj_scan_token(SQL_LONGVARBINARY)) return true; return false; } @@ -35372,187 +35413,192 @@ final private boolean jj_3R_154() { if (jj_3R_81()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_326()) jj_scanpos = xsp; + if (jj_3_328()) jj_scanpos = xsp; xsp = jj_scanpos; - if (jj_3_329()) jj_scanpos = xsp; + if (jj_3_331()) jj_scanpos = xsp; return false; } final private boolean jj_3_1446() { - if (jj_scan_token(SQL_NCHAR)) return true; + if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } final private boolean jj_3_1445() { - if (jj_scan_token(SQL_LONGVARBINARY)) return true; + if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } - final private boolean jj_3_784() { + final private boolean jj_3_786() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(NULL)) return true; return false; } final private boolean jj_3_1444() { - if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; + if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } final private boolean jj_3_1443() { - if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; + if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } - final private boolean jj_3_783() { - if (jj_scan_token(NULL)) return true; + final private boolean jj_3_3() { + if (jj_3R_68()) return true; return false; } - final private boolean jj_3R_372() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_3()) { - jj_scanpos = xsp; - if (jj_3_4()) return true; - } + final private boolean jj_3_785() { + if (jj_scan_token(NULL)) return true; return false; } final private boolean jj_3_1442() { - if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; + if (jj_scan_token(SQL_FLOAT)) return true; return false; } final private boolean jj_3_1441() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; + if (jj_scan_token(SQL_DATE)) return true; return false; } final private boolean jj_3_1440() { - if (jj_scan_token(SQL_FLOAT)) return true; + if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } final private boolean jj_3_1439() { - if (jj_scan_token(SQL_DATE)) return true; + if (jj_scan_token(SQL_BINARY)) return true; + return false; + } + + final private boolean jj_3R_372() { + Token xsp; + xsp = jj_scanpos; + if (jj_3_3()) { + jj_scanpos = xsp; + if (jj_3_4()) return true; + } return false; } final private boolean jj_3_1438() { - if (jj_scan_token(SQL_BOOLEAN)) return true; + if (jj_scan_token(SPACE)) return true; return false; } final private boolean jj_3_1437() { - if (jj_scan_token(SQL_BINARY)) return true; + if (jj_scan_token(SIMPLE)) return true; return false; } final private boolean jj_3_1436() { - if (jj_scan_token(SPACE)) return true; + if (jj_scan_token(SERVER_NAME)) return true; return false; } final private boolean jj_3_1435() { - if (jj_scan_token(SIMPLE)) return true; + if (jj_scan_token(SEQUENCE)) return true; return false; } - final private boolean jj_3_323() { + final private boolean jj_3_325() { if (jj_scan_token(COMMA)) return true; if (jj_3R_154()) return true; return false; } final private boolean jj_3_1434() { - if (jj_scan_token(SERVER_NAME)) return true; + if (jj_scan_token(SECURITY)) return true; return false; } final private boolean jj_3_1433() { - if (jj_scan_token(SEQUENCE)) return true; + if (jj_scan_token(SCOPE_SCHEMA)) return true; return false; } final private boolean jj_3_1432() { - if (jj_scan_token(SECURITY)) return true; + if (jj_scan_token(SCHEMA_NAME)) return true; return false; } final private boolean jj_3_1431() { - if (jj_scan_token(SCOPE_SCHEMA)) return true; + if (jj_scan_token(SCALAR)) return true; return false; } - final private boolean jj_3_782() { + final private boolean jj_3_784() { if (jj_scan_token(NOT)) return true; if (jj_scan_token(NULL)) return true; return false; } final private boolean jj_3_1430() { - if (jj_scan_token(SCHEMA_NAME)) return true; + if (jj_scan_token(ROUTINE_NAME)) return true; return false; } final private boolean jj_3_1429() { - if (jj_scan_token(SCALAR)) return true; + if (jj_scan_token(ROLE)) return true; return false; } - final private boolean jj_3_781() { + final private boolean jj_3_783() { if (jj_scan_token(NULL)) return true; return false; } final private boolean jj_3_1428() { - if (jj_scan_token(ROUTINE_NAME)) return true; + if (jj_scan_token(RETURNED_SQLSTATE)) return true; return false; } final private boolean jj_3_1427() { - if (jj_scan_token(ROLE)) return true; + if (jj_scan_token(RETURNED_CARDINALITY)) return true; return false; } final private boolean jj_3_1426() { - if (jj_scan_token(RETURNED_SQLSTATE)) return true; + if (jj_scan_token(RESPECT)) return true; return false; } final private boolean jj_3_1425() { - if (jj_scan_token(RETURNED_CARDINALITY)) return true; + if (jj_scan_token(RELATIVE)) return true; return false; } final private boolean jj_3_1424() { - if (jj_scan_token(RESPECT)) return true; + if (jj_scan_token(QUARTER)) return true; return false; } final private boolean jj_3_1423() { - if (jj_scan_token(RELATIVE)) return true; + if (jj_scan_token(PRIOR)) return true; return false; } final private boolean jj_3_1422() { - if (jj_scan_token(QUARTER)) return true; + if (jj_scan_token(PLI)) return true; return false; } final private boolean jj_3_1421() { - if (jj_scan_token(PRIOR)) return true; + if (jj_scan_token(PIVOT)) return true; return false; } final private boolean jj_3_1420() { - if (jj_scan_token(PLI)) return true; + if (jj_scan_token(PASSTHROUGH)) return true; return false; } final private boolean jj_3_1419() { - if (jj_scan_token(PIVOT)) return true; + if (jj_scan_token(PARTIAL)) return true; return false; } @@ -35563,82 +35609,82 @@ final private boolean jj_3R_70() { } final private boolean jj_3_1418() { - if (jj_scan_token(PASSTHROUGH)) return true; + if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; return false; } - final private boolean jj_3_780() { + final private boolean jj_3_782() { if (jj_scan_token(ARRAY)) return true; return false; } final private boolean jj_3_1417() { - if (jj_scan_token(PARTIAL)) return true; + if (jj_scan_token(PARAMETER_MODE)) return true; return false; } final private boolean jj_3_1416() { - if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; + if (jj_scan_token(OUTPUT)) return true; return false; } - final private boolean jj_3_779() { + final private boolean jj_3_781() { if (jj_scan_token(MULTISET)) return true; return false; } final private boolean jj_3_1415() { - if (jj_scan_token(PARAMETER_MODE)) return true; + if (jj_scan_token(ORDERING)) return true; return false; } final private boolean jj_3_1414() { - if (jj_scan_token(OUTPUT)) return true; + if (jj_scan_token(OCTETS)) return true; return false; } final private boolean jj_3_1413() { - if (jj_scan_token(ORDERING)) return true; + if (jj_scan_token(NULLS)) return true; return false; } final private boolean jj_3_1412() { - if (jj_scan_token(OCTETS)) return true; + if (jj_scan_token(NESTING)) return true; return false; } final private boolean jj_3R_275() { Token xsp; xsp = jj_scanpos; - if (jj_3_779()) { + if (jj_3_781()) { jj_scanpos = xsp; - if (jj_3_780()) return true; + if (jj_3_782()) return true; } return false; } final private boolean jj_3_1411() { - if (jj_scan_token(NULLS)) return true; + if (jj_scan_token(NAME)) return true; return false; } final private boolean jj_3_1410() { - if (jj_scan_token(NESTING)) return true; + if (jj_scan_token(MONTHS)) return true; return false; } final private boolean jj_3_1409() { - if (jj_scan_token(NAME)) return true; + if (jj_scan_token(MILLISECOND)) return true; return false; } final private boolean jj_3_1408() { - if (jj_scan_token(MONTHS)) return true; + if (jj_scan_token(MESSAGE_TEXT)) return true; return false; } final private boolean jj_3_1407() { - if (jj_scan_token(MILLISECOND)) return true; + if (jj_scan_token(MAXVALUE)) return true; return false; } @@ -35649,732 +35695,711 @@ final private boolean jj_3R_147() { } final private boolean jj_3_1406() { - if (jj_scan_token(MESSAGE_TEXT)) return true; + if (jj_scan_token(M)) return true; return false; } final private boolean jj_3_1405() { - if (jj_scan_token(MAXVALUE)) return true; + if (jj_scan_token(LEVEL)) return true; return false; } final private boolean jj_3_1404() { - if (jj_scan_token(M)) return true; + if (jj_scan_token(LABEL)) return true; return false; } final private boolean jj_3_1403() { - if (jj_scan_token(LEVEL)) return true; + if (jj_scan_token(KEY)) return true; return false; } final private boolean jj_3_1402() { - if (jj_scan_token(LABEL)) return true; + if (jj_scan_token(JAVA)) return true; return false; } final private boolean jj_3_1401() { - if (jj_scan_token(KEY)) return true; + if (jj_scan_token(ISODOW)) return true; return false; } - final private boolean jj_3_321() { + final private boolean jj_3_323() { if (jj_scan_token(TIES)) return true; return false; } final private boolean jj_3_1400() { - if (jj_scan_token(JAVA)) return true; + if (jj_scan_token(INSTANCE)) return true; return false; } final private boolean jj_3_1399() { - if (jj_scan_token(ISODOW)) return true; + if (jj_scan_token(INCREMENT)) return true; return false; } - final private boolean jj_3_320() { + final private boolean jj_3_322() { if (jj_scan_token(GROUP)) return true; return false; } final private boolean jj_3_1398() { - if (jj_scan_token(INSTANCE)) return true; + if (jj_scan_token(IMPLEMENTATION)) return true; return false; } final private boolean jj_3_1397() { - if (jj_scan_token(INCREMENT)) return true; + if (jj_scan_token(ILIKE)) return true; return false; } - final private boolean jj_3_319() { + final private boolean jj_3_321() { if (jj_scan_token(NO)) return true; if (jj_scan_token(OTHERS)) return true; return false; } final private boolean jj_3_1396() { - if (jj_scan_token(IMPLEMENTATION)) return true; + if (jj_scan_token(HOP)) return true; return false; } final private boolean jj_3_1395() { - if (jj_scan_token(ILIKE)) return true; + if (jj_scan_token(GRANTED)) return true; return false; } - final private boolean jj_3_318() { + final private boolean jj_3_320() { if (jj_scan_token(CURRENT)) return true; if (jj_scan_token(ROW)) return true; return false; } final private boolean jj_3_1394() { - if (jj_scan_token(HOP)) return true; + if (jj_scan_token(GEOMETRY)) return true; return false; } final private boolean jj_3_1393() { - if (jj_scan_token(GRANTED)) return true; + if (jj_scan_token(G)) return true; return false; } final private boolean jj_3_1392() { - if (jj_scan_token(GEOMETRY)) return true; + if (jj_scan_token(FORTRAN)) return true; return false; } final private boolean jj_3_1391() { - if (jj_scan_token(G)) return true; + if (jj_scan_token(FIRST)) return true; return false; } - final private boolean jj_3_746() { + final private boolean jj_3_748() { if (jj_scan_token(DOUBLE)) return true; return false; } - final private boolean jj_3_748() { + final private boolean jj_3_750() { if (jj_scan_token(FLOAT)) return true; return false; } final private boolean jj_3_1390() { - if (jj_scan_token(FORTRAN)) return true; + if (jj_scan_token(EXCLUDE)) return true; return false; } - final private boolean jj_3_740() { + final private boolean jj_3_742() { if (jj_scan_token(SMALLINT)) return true; return false; } final private boolean jj_3_1389() { - if (jj_scan_token(FIRST)) return true; + if (jj_scan_token(EPOCH)) return true; return false; } - final private boolean jj_3_322() { + final private boolean jj_3_324() { if (jj_scan_token(EXCLUDE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_318()) { + if (jj_3_320()) { jj_scanpos = xsp; - if (jj_3_319()) { + if (jj_3_321()) { jj_scanpos = xsp; - if (jj_3_320()) { + if (jj_3_322()) { jj_scanpos = xsp; - if (jj_3_321()) return true; + if (jj_3_323()) return true; } } } return false; } - final private boolean jj_3_736() { + final private boolean jj_3_738() { if (jj_scan_token(VARBINARY)) return true; return false; } - final private boolean jj_3_742() { + final private boolean jj_3_744() { if (jj_scan_token(BIGINT)) return true; return false; } - final private boolean jj_3_778() { + final private boolean jj_3_780() { if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } final private boolean jj_3_1388() { - if (jj_scan_token(EXCLUDE)) return true; + if (jj_scan_token(DYNAMIC_FUNCTION)) return true; return false; } - final private boolean jj_3_738() { + final private boolean jj_3_740() { if (jj_scan_token(TINYINT)) return true; return false; } - final private boolean jj_3_777() { + final private boolean jj_3_779() { if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } final private boolean jj_3_1387() { - if (jj_scan_token(EPOCH)) return true; + if (jj_scan_token(DOW)) return true; return false; } - final private boolean jj_3_744() { + final private boolean jj_3_746() { if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_776() { + final private boolean jj_3_778() { if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } final private boolean jj_3_1386() { - if (jj_scan_token(DYNAMIC_FUNCTION)) return true; + if (jj_scan_token(DIAGNOSTICS)) return true; return false; } - final private boolean jj_3_775() { + final private boolean jj_3_777() { if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } final private boolean jj_3_1385() { - if (jj_scan_token(DOW)) return true; + if (jj_scan_token(DESC)) return true; return false; } - final private boolean jj_3_732() { + final private boolean jj_3_734() { if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_734() { + final private boolean jj_3_736() { if (jj_scan_token(BINARY)) return true; return false; } - final private boolean jj_3_774() { + final private boolean jj_3_776() { if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } final private boolean jj_3_1384() { - if (jj_scan_token(DIAGNOSTICS)) return true; + if (jj_scan_token(DEGREE)) return true; return false; } - final private boolean jj_3_730() { + final private boolean jj_3_732() { if (jj_scan_token(BOOLEAN)) return true; return false; } - final private boolean jj_3_773() { + final private boolean jj_3_775() { if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } final private boolean jj_3_1383() { - if (jj_scan_token(DESC)) return true; + if (jj_scan_token(DEFERRED)) return true; return false; } - final private boolean jj_3_724() { + final private boolean jj_3_726() { if (jj_scan_token(TIMESTAMP)) return true; return false; } - final private boolean jj_3_728() { + final private boolean jj_3_730() { if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_772() { + final private boolean jj_3_774() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; return false; } final private boolean jj_3_1382() { - if (jj_scan_token(DEGREE)) return true; + if (jj_scan_token(DECADE)) return true; return false; } - final private boolean jj_3_726() { + final private boolean jj_3_728() { if (jj_scan_token(DECIMAL)) return true; return false; } - final private boolean jj_3_771() { + final private boolean jj_3_773() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } final private boolean jj_3_1381() { - if (jj_scan_token(DEFERRED)) return true; + if (jj_scan_token(DAYOFWEEK)) return true; return false; } - final private boolean jj_3_770() { + final private boolean jj_3_772() { if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } final private boolean jj_3_1380() { - if (jj_scan_token(DECADE)) return true; + if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; return false; } - final private boolean jj_3_769() { + final private boolean jj_3_771() { if (jj_scan_token(SQL_INTERVAL_DAY)) return true; return false; } final private boolean jj_3_1379() { - if (jj_scan_token(DAYOFWEEK)) return true; + if (jj_scan_token(DATE_DIFF)) return true; return false; } - final private boolean jj_3_768() { + final private boolean jj_3_770() { if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } final private boolean jj_3_1378() { - if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; + if (jj_scan_token(CURSOR_NAME)) return true; return false; } - final private boolean jj_3_718() { + final private boolean jj_3_720() { if (jj_scan_token(VARCHAR)) return true; return false; } - final private boolean jj_3_767() { + final private boolean jj_3_769() { if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; return false; } final private boolean jj_3_1377() { - if (jj_scan_token(DATE_DIFF)) return true; + if (jj_scan_token(CONSTRUCTOR)) return true; return false; } - final private boolean jj_3_314() { + final private boolean jj_3_316() { if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_722() { + final private boolean jj_3_724() { if (jj_scan_token(TIME)) return true; return false; } - final private boolean jj_3_747() { + final private boolean jj_3_749() { if (jj_scan_token(SQL_FLOAT)) return true; return false; } - final private boolean jj_3_766() { + final private boolean jj_3_768() { if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } final private boolean jj_3_1376() { - if (jj_scan_token(CURSOR_NAME)) return true; + if (jj_scan_token(CONSTRAINT_NAME)) return true; return false; } - final private boolean jj_3_720() { + final private boolean jj_3_722() { if (jj_scan_token(DATE)) return true; return false; } - final private boolean jj_3_745() { + final private boolean jj_3_747() { if (jj_scan_token(SQL_DOUBLE)) return true; return false; } - final private boolean jj_3_765() { + final private boolean jj_3_767() { Token xsp; xsp = jj_scanpos; - if (jj_3_747()) { + if (jj_3_749()) { jj_scanpos = xsp; - if (jj_3_748()) return true; + if (jj_3_750()) return true; } return false; } final private boolean jj_3_1375() { - if (jj_scan_token(CONSTRUCTOR)) return true; + if (jj_scan_token(CONNECTION)) return true; return false; } - final private boolean jj_3_743() { + final private boolean jj_3_745() { if (jj_scan_token(SQL_REAL)) return true; return false; } - final private boolean jj_3_764() { + final private boolean jj_3_766() { Token xsp; xsp = jj_scanpos; - if (jj_3_745()) { + if (jj_3_747()) { jj_scanpos = xsp; - if (jj_3_746()) return true; + if (jj_3_748()) return true; } return false; } final private boolean jj_3_1374() { - if (jj_scan_token(CONSTRAINT_NAME)) return true; + if (jj_scan_token(COMMITTED)) return true; return false; } - final private boolean jj_3_716() { + final private boolean jj_3_718() { if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_741() { + final private boolean jj_3_743() { if (jj_scan_token(SQL_BIGINT)) return true; return false; } - final private boolean jj_3_763() { + final private boolean jj_3_765() { Token xsp; xsp = jj_scanpos; - if (jj_3_743()) { + if (jj_3_745()) { jj_scanpos = xsp; - if (jj_3_744()) return true; + if (jj_3_746()) return true; } return false; } final private boolean jj_3_1373() { - if (jj_scan_token(CONNECTION)) return true; + if (jj_scan_token(COLUMN_NAME)) return true; return false; } - final private boolean jj_3_313() { + final private boolean jj_3_315() { if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_739() { + final private boolean jj_3_741() { if (jj_scan_token(SQL_SMALLINT)) return true; return false; } - final private boolean jj_3_762() { + final private boolean jj_3_764() { Token xsp; xsp = jj_scanpos; - if (jj_3_741()) { + if (jj_3_743()) { jj_scanpos = xsp; - if (jj_3_742()) return true; + if (jj_3_744()) return true; } return false; } final private boolean jj_3_1372() { - if (jj_scan_token(COMMITTED)) return true; + if (jj_scan_token(COLLATION_CATALOG)) return true; return false; } - final private boolean jj_3_737() { + final private boolean jj_3_739() { if (jj_scan_token(SQL_TINYINT)) return true; return false; } - final private boolean jj_3_761() { + final private boolean jj_3_763() { Token xsp; xsp = jj_scanpos; - if (jj_3_739()) { + if (jj_3_741()) { jj_scanpos = xsp; - if (jj_3_740()) return true; + if (jj_3_742()) return true; } return false; } final private boolean jj_3_1371() { - if (jj_scan_token(COLUMN_NAME)) return true; + if (jj_scan_token(CLASS_ORIGIN)) return true; return false; } - final private boolean jj_3_735() { + final private boolean jj_3_737() { if (jj_scan_token(SQL_VARBINARY)) return true; return false; } - final private boolean jj_3_760() { + final private boolean jj_3_762() { Token xsp; xsp = jj_scanpos; - if (jj_3_737()) { + if (jj_3_739()) { jj_scanpos = xsp; - if (jj_3_738()) return true; + if (jj_3_740()) return true; } return false; } final private boolean jj_3_1370() { - if (jj_scan_token(COLLATION_CATALOG)) return true; + if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; return false; } - final private boolean jj_3_733() { + final private boolean jj_3_735() { if (jj_scan_token(SQL_BINARY)) return true; return false; } - final private boolean jj_3_759() { + final private boolean jj_3_761() { Token xsp; xsp = jj_scanpos; - if (jj_3_735()) { + if (jj_3_737()) { jj_scanpos = xsp; - if (jj_3_736()) return true; + if (jj_3_738()) return true; } return false; } final private boolean jj_3_1369() { - if (jj_scan_token(CLASS_ORIGIN)) return true; + if (jj_scan_token(CHAIN)) return true; return false; } - final private boolean jj_3_731() { + final private boolean jj_3_733() { if (jj_scan_token(SQL_INTEGER)) return true; return false; } - final private boolean jj_3_758() { + final private boolean jj_3_760() { Token xsp; xsp = jj_scanpos; - if (jj_3_733()) { + if (jj_3_735()) { jj_scanpos = xsp; - if (jj_3_734()) return true; + if (jj_3_736()) return true; } return false; } final private boolean jj_3_1368() { - if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; + if (jj_scan_token(CATALOG)) return true; return false; } - final private boolean jj_3_729() { + final private boolean jj_3_731() { if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } - final private boolean jj_3_757() { + final private boolean jj_3_759() { Token xsp; xsp = jj_scanpos; - if (jj_3_731()) { + if (jj_3_733()) { jj_scanpos = xsp; - if (jj_3_732()) return true; + if (jj_3_734()) return true; } return false; } final private boolean jj_3_1367() { - if (jj_scan_token(CHAIN)) return true; + if (jj_scan_token(BREADTH)) return true; return false; } - final private boolean jj_3_317() { + final private boolean jj_3_319() { if (jj_3R_81()) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_313()) { + if (jj_3_315()) { jj_scanpos = xsp; - if (jj_3_314()) return true; + if (jj_3_316()) return true; } return false; } - final private boolean jj_3_727() { + final private boolean jj_3_729() { if (jj_scan_token(SQL_NUMERIC)) return true; return false; } - final private boolean jj_3_756() { + final private boolean jj_3_758() { Token xsp; xsp = jj_scanpos; - if (jj_3_729()) { + if (jj_3_731()) { jj_scanpos = xsp; - if (jj_3_730()) return true; + if (jj_3_732()) return true; } return false; } final private boolean jj_3_1366() { - if (jj_scan_token(CATALOG)) return true; + if (jj_scan_token(ATTRIBUTES)) return true; return false; } - final private boolean jj_3_312() { + final private boolean jj_3_314() { if (jj_scan_token(FOLLOWING)) return true; return false; } - final private boolean jj_3_725() { + final private boolean jj_3_727() { if (jj_scan_token(SQL_DECIMAL)) return true; return false; } - final private boolean jj_3_755() { + final private boolean jj_3_757() { Token xsp; xsp = jj_scanpos; - if (jj_3_727()) { + if (jj_3_729()) { jj_scanpos = xsp; - if (jj_3_728()) return true; + if (jj_3_730()) return true; } return false; } final private boolean jj_3_1365() { - if (jj_scan_token(BREADTH)) return true; + if (jj_scan_token(ASSERTION)) return true; return false; } - final private boolean jj_3_723() { + final private boolean jj_3_725() { if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } - final private boolean jj_3_754() { + final private boolean jj_3_756() { Token xsp; xsp = jj_scanpos; - if (jj_3_725()) { + if (jj_3_727()) { jj_scanpos = xsp; - if (jj_3_726()) return true; + if (jj_3_728()) return true; } return false; } final private boolean jj_3_1364() { - if (jj_scan_token(ATTRIBUTES)) return true; + if (jj_scan_token(ARRAY_AGG)) return true; return false; } - final private boolean jj_3_721() { + final private boolean jj_3_723() { if (jj_scan_token(SQL_TIME)) return true; return false; } - final private boolean jj_3_753() { + final private boolean jj_3_755() { Token xsp; xsp = jj_scanpos; - if (jj_3_723()) { + if (jj_3_725()) { jj_scanpos = xsp; - if (jj_3_724()) return true; + if (jj_3_726()) return true; } return false; } final private boolean jj_3_1363() { - if (jj_scan_token(ASSERTION)) return true; + if (jj_scan_token(AFTER)) return true; return false; } - final private boolean jj_3_719() { + final private boolean jj_3_721() { if (jj_scan_token(SQL_DATE)) return true; return false; } - final private boolean jj_3_752() { + final private boolean jj_3_754() { Token xsp; xsp = jj_scanpos; - if (jj_3_721()) { + if (jj_3_723()) { jj_scanpos = xsp; - if (jj_3_722()) return true; + if (jj_3_724()) return true; } return false; } final private boolean jj_3_1362() { - if (jj_scan_token(ARRAY_AGG)) return true; + if (jj_scan_token(ADA)) return true; return false; } - final private boolean jj_3_311() { + final private boolean jj_3_313() { if (jj_scan_token(PRECEDING)) return true; return false; } - final private boolean jj_3_710() { + final private boolean jj_3_712() { if (jj_scan_token(NUMERIC)) return true; return false; } - final private boolean jj_3_717() { + final private boolean jj_3_719() { if (jj_scan_token(SQL_VARCHAR)) return true; return false; } - final private boolean jj_3_751() { + final private boolean jj_3_753() { Token xsp; xsp = jj_scanpos; - if (jj_3_719()) { + if (jj_3_721()) { jj_scanpos = xsp; - if (jj_3_720()) return true; + if (jj_3_722()) return true; } return false; } final private boolean jj_3_1361() { - if (jj_scan_token(AFTER)) return true; + if (jj_scan_token(ABSENT)) return true; return false; } - final private boolean jj_3_715() { + final private boolean jj_3_717() { if (jj_scan_token(SQL_CHAR)) return true; return false; } - final private boolean jj_3_750() { - Token xsp; - xsp = jj_scanpos; - if (jj_3_717()) { - jj_scanpos = xsp; - if (jj_3_718()) return true; - } - return false; - } - - final private boolean jj_3_1360() { - if (jj_scan_token(ADA)) return true; - return false; - } - - final private boolean jj_3_749() { + final private boolean jj_3_752() { Token xsp; xsp = jj_scanpos; - if (jj_3_715()) { + if (jj_3_719()) { jj_scanpos = xsp; - if (jj_3_716()) return true; + if (jj_3_720()) return true; } return false; } - final private boolean jj_3_1359() { - if (jj_scan_token(ABSENT)) return true; - return false; - } - - final private boolean jj_3_316() { - if (jj_scan_token(UNBOUNDED)) return true; + final private boolean jj_3_751() { Token xsp; xsp = jj_scanpos; - if (jj_3_311()) { + if (jj_3_717()) { jj_scanpos = xsp; - if (jj_3_312()) return true; + if (jj_3_718()) return true; } return false; } @@ -36382,10 +36407,6 @@ final private boolean jj_3_316() { final private boolean jj_3R_340() { Token xsp; xsp = jj_scanpos; - if (jj_3_1359()) { - jj_scanpos = xsp; - if (jj_3_1360()) { - jj_scanpos = xsp; if (jj_3_1361()) { jj_scanpos = xsp; if (jj_3_1362()) { @@ -36822,7 +36843,12 @@ final private boolean jj_3R_340() { jj_scanpos = xsp; if (jj_3_1578()) { jj_scanpos = xsp; - if (jj_3_1579()) return true; + if (jj_3_1579()) { + jj_scanpos = xsp; + if (jj_3_1580()) { + jj_scanpos = xsp; + if (jj_3_1581()) return true; + } } } } @@ -37042,210 +37068,230 @@ final private boolean jj_3R_340() { } } } + return false; + } + + final private boolean jj_3_318() { + if (jj_scan_token(UNBOUNDED)) return true; + Token xsp; + xsp = jj_scanpos; + if (jj_3_313()) { + jj_scanpos = xsp; + if (jj_3_314()) return true; } return false; } - final private boolean jj_3_709() { + final private boolean jj_3_711() { if (jj_scan_token(DEC)) return true; return false; } - final private boolean jj_3_713() { + final private boolean jj_3_715() { if (jj_scan_token(COMMA)) return true; if (jj_3R_285()) return true; return false; } + final private boolean jj_3_1360() { + if (jj_scan_token(SATURDAY)) return true; + return false; + } + final private boolean jj_3R_185() { Token xsp; xsp = jj_scanpos; - if (jj_3_315()) { + if (jj_3_317()) { jj_scanpos = xsp; - if (jj_3_316()) { + if (jj_3_318()) { jj_scanpos = xsp; - if (jj_3_317()) return true; + if (jj_3_319()) return true; } } return false; } - final private boolean jj_3_315() { + final private boolean jj_3_1359() { + if (jj_scan_token(WEDNESDAY)) return true; + return false; + } + + final private boolean jj_3_317() { if (jj_scan_token(CURRENT)) return true; if (jj_scan_token(ROW)) return true; return false; } final private boolean jj_3_1358() { - if (jj_scan_token(SATURDAY)) return true; + if (jj_scan_token(YEAR)) return true; return false; } final private boolean jj_3_1357() { - if (jj_scan_token(WEDNESDAY)) return true; + if (jj_scan_token(WINDOW)) return true; return false; } final private boolean jj_3_1356() { - if (jj_scan_token(YEAR)) return true; + if (jj_scan_token(VERSIONING)) return true; return false; } final private boolean jj_3_1355() { - if (jj_scan_token(WINDOW)) return true; + if (jj_scan_token(VARYING)) return true; return false; } - final private boolean jj_3_714() { + final private boolean jj_3_716() { if (jj_scan_token(LPAREN)) return true; if (jj_3R_258()) return true; return false; } final private boolean jj_3_1354() { - if (jj_scan_token(VERSIONING)) return true; + if (jj_scan_token(VARBINARY)) return true; return false; } final private boolean jj_3_1353() { - if (jj_scan_token(VARYING)) return true; + if (jj_scan_token(UUID)) return true; return false; } final private boolean jj_3_1352() { - if (jj_scan_token(VARBINARY)) return true; + if (jj_scan_token(UNKNOWN)) return true; return false; } - final private boolean jj_3_712() { + final private boolean jj_3_714() { if (jj_scan_token(ANY)) return true; return false; } final private boolean jj_3_1351() { - if (jj_scan_token(UUID)) return true; + if (jj_scan_token(TRY_CAST)) return true; return false; } - final private boolean jj_3_708() { + final private boolean jj_3_710() { if (jj_scan_token(DECIMAL)) return true; return false; } final private boolean jj_3_1350() { - if (jj_scan_token(UNKNOWN)) return true; + if (jj_scan_token(TRIM)) return true; return false; } - final private boolean jj_3_711() { + final private boolean jj_3_713() { Token xsp; xsp = jj_scanpos; - if (jj_3_708()) { + if (jj_3_710()) { jj_scanpos = xsp; - if (jj_3_709()) { + if (jj_3_711()) { jj_scanpos = xsp; - if (jj_3_710()) return true; + if (jj_3_712()) return true; } } return false; } final private boolean jj_3_1349() { - if (jj_scan_token(TRY_CAST)) return true; + if (jj_scan_token(TRANSLATION)) return true; return false; } final private boolean jj_3_1348() { - if (jj_scan_token(TRIM)) return true; + if (jj_scan_token(TINYINT)) return true; return false; } final private boolean jj_3_1347() { - if (jj_scan_token(TRANSLATION)) return true; + if (jj_scan_token(TIMESTAMP)) return true; return false; } final private boolean jj_3_1346() { - if (jj_scan_token(TINYINT)) return true; + if (jj_scan_token(SYSTEM_USER)) return true; return false; } final private boolean jj_3R_281() { Token xsp; xsp = jj_scanpos; - if (jj_3_711()) { + if (jj_3_713()) { jj_scanpos = xsp; - if (jj_3_712()) return true; + if (jj_3_714()) return true; } xsp = jj_scanpos; - if (jj_3_714()) jj_scanpos = xsp; + if (jj_3_716()) jj_scanpos = xsp; return false; } final private boolean jj_3_1345() { - if (jj_scan_token(TIMESTAMP)) return true; + if (jj_scan_token(SUM)) return true; return false; } - final private boolean jj_3_310() { + final private boolean jj_3_312() { if (jj_scan_token(DISALLOW)) return true; if (jj_scan_token(PARTIAL)) return true; return false; } final private boolean jj_3_1344() { - if (jj_scan_token(SYSTEM_USER)) return true; + if (jj_scan_token(SUBSTRING)) return true; return false; } final private boolean jj_3_1343() { - if (jj_scan_token(SUM)) return true; + if (jj_scan_token(STREAM)) return true; return false; } final private boolean jj_3_1342() { - if (jj_scan_token(SUBSTRING)) return true; + if (jj_scan_token(STATIC)) return true; return false; } final private boolean jj_3_1341() { - if (jj_scan_token(STREAM)) return true; + if (jj_scan_token(SQLWARNING)) return true; return false; } - final private boolean jj_3_309() { + final private boolean jj_3_311() { if (jj_scan_token(ALLOW)) return true; if (jj_scan_token(PARTIAL)) return true; return false; } final private boolean jj_3_1340() { - if (jj_scan_token(STATIC)) return true; + if (jj_scan_token(SQL)) return true; return false; } final private boolean jj_3_1339() { - if (jj_scan_token(SQLWARNING)) return true; + if (jj_scan_token(SMALLINT)) return true; return false; } final private boolean jj_3_1338() { - if (jj_scan_token(SQL)) return true; + if (jj_scan_token(SHOW)) return true; return false; } final private boolean jj_3_1337() { - if (jj_scan_token(SMALLINT)) return true; + if (jj_scan_token(SEEK)) return true; return false; } final private boolean jj_3_1336() { - if (jj_scan_token(SHOW)) return true; + if (jj_scan_token(SCROLL)) return true; return false; } final private boolean jj_3_1335() { - if (jj_scan_token(SEEK)) return true; + if (jj_scan_token(SAFE_ORDINAL)) return true; return false; } @@ -37254,81 +37300,81 @@ final private boolean jj_3R_284() { } final private boolean jj_3_1334() { - if (jj_scan_token(SCROLL)) return true; + if (jj_scan_token(RUNNING)) return true; return false; } final private boolean jj_3_1333() { - if (jj_scan_token(SAFE_ORDINAL)) return true; + if (jj_scan_token(ROLLUP)) return true; return false; } - final private boolean jj_3_307() { + final private boolean jj_3_309() { if (jj_3R_185()) return true; return false; } - final private boolean jj_3_707() { + final private boolean jj_3_709() { if (jj_scan_token(VARBINARY)) return true; return false; } final private boolean jj_3_1332() { - if (jj_scan_token(RUNNING)) return true; + if (jj_scan_token(RETURNS)) return true; return false; } - final private boolean jj_3_705() { + final private boolean jj_3_707() { if (jj_scan_token(VARYING)) return true; return false; } final private boolean jj_3_1331() { - if (jj_scan_token(ROLLUP)) return true; + if (jj_scan_token(RESET)) return true; return false; } final private boolean jj_3_1330() { - if (jj_scan_token(RETURNS)) return true; + if (jj_scan_token(REGR_SXY)) return true; return false; } - final private boolean jj_3_306() { + final private boolean jj_3_308() { if (jj_scan_token(BETWEEN)) return true; if (jj_3R_185()) return true; return false; } final private boolean jj_3_1329() { - if (jj_scan_token(RESET)) return true; + if (jj_scan_token(REGR_R2)) return true; return false; } final private boolean jj_3_1328() { - if (jj_scan_token(REGR_SXY)) return true; + if (jj_scan_token(REGR_AVGY)) return true; return false; } final private boolean jj_3_1327() { - if (jj_scan_token(REGR_R2)) return true; + if (jj_scan_token(REFERENCES)) return true; return false; } - final private boolean jj_3_305() { + final private boolean jj_3_307() { if (jj_scan_token(RANGE)) return true; return false; } final private boolean jj_3_1326() { - if (jj_scan_token(REGR_AVGY)) return true; + if (jj_scan_token(REAL)) return true; return false; } - final private boolean jj_3_706() { + final private boolean jj_3_708() { if (jj_scan_token(BINARY)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_705()) { + if (jj_3_707()) { jj_scanpos = xsp; if (jj_3R_284()) return true; } @@ -37336,148 +37382,148 @@ final private boolean jj_3_706() { } final private boolean jj_3_1325() { - if (jj_scan_token(REFERENCES)) return true; + if (jj_scan_token(RANGE)) return true; return false; } - final private boolean jj_3_304() { + final private boolean jj_3_306() { if (jj_scan_token(ROWS)) return true; return false; } final private boolean jj_3_1324() { - if (jj_scan_token(REAL)) return true; + if (jj_scan_token(PREV)) return true; return false; } final private boolean jj_3_1323() { - if (jj_scan_token(RANGE)) return true; + if (jj_scan_token(PRECEDES)) return true; return false; } final private boolean jj_3_1322() { - if (jj_scan_token(PREV)) return true; + if (jj_scan_token(POSITION)) return true; return false; } final private boolean jj_3R_280() { Token xsp; xsp = jj_scanpos; - if (jj_3_706()) { + if (jj_3_708()) { jj_scanpos = xsp; - if (jj_3_707()) return true; + if (jj_3_709()) return true; } if (jj_3R_257()) return true; return false; } final private boolean jj_3_1321() { - if (jj_scan_token(PRECEDES)) return true; + if (jj_scan_token(PERIOD)) return true; return false; } final private boolean jj_3_1320() { - if (jj_scan_token(POSITION)) return true; + if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } - final private boolean jj_3_308() { + final private boolean jj_3_310() { Token xsp; xsp = jj_scanpos; - if (jj_3_304()) { + if (jj_3_306()) { jj_scanpos = xsp; - if (jj_3_305()) return true; + if (jj_3_307()) return true; } xsp = jj_scanpos; - if (jj_3_306()) { + if (jj_3_308()) { jj_scanpos = xsp; - if (jj_3_307()) return true; + if (jj_3_309()) return true; } return false; } final private boolean jj_3_1319() { - if (jj_scan_token(PERIOD)) return true; + if (jj_scan_token(PATTERN)) return true; return false; } final private boolean jj_3_1318() { - if (jj_scan_token(PERCENTILE_CONT)) return true; + if (jj_scan_token(OVERLAPS)) return true; return false; } final private boolean jj_3_1317() { - if (jj_scan_token(PATTERN)) return true; + if (jj_scan_token(ORDINAL)) return true; return false; } final private boolean jj_3_1316() { - if (jj_scan_token(OVERLAPS)) return true; + if (jj_scan_token(ONE)) return true; return false; } - final private boolean jj_3_303() { + final private boolean jj_3_305() { if (jj_3R_70()) return true; return false; } final private boolean jj_3_1315() { - if (jj_scan_token(ORDINAL)) return true; + if (jj_scan_token(OF)) return true; return false; } final private boolean jj_3_1314() { - if (jj_scan_token(ONE)) return true; + if (jj_scan_token(NUMERIC)) return true; return false; } final private boolean jj_3_1313() { - if (jj_scan_token(OF)) return true; + if (jj_scan_token(NTH_VALUE)) return true; return false; } final private boolean jj_3_1312() { - if (jj_scan_token(NUMERIC)) return true; + if (jj_scan_token(NO)) return true; return false; } final private boolean jj_3_1311() { - if (jj_scan_token(NTH_VALUE)) return true; + if (jj_scan_token(NCLOB)) return true; return false; } - final private boolean jj_3_704() { + final private boolean jj_3_706() { if (jj_scan_token(UUID)) return true; return false; } final private boolean jj_3_1310() { - if (jj_scan_token(NO)) return true; + if (jj_scan_token(MULTISET)) return true; return false; } - final private boolean jj_3_302() { + final private boolean jj_3_304() { if (jj_scan_token(PARTITION)) return true; if (jj_scan_token(BY)) return true; return false; } final private boolean jj_3_1309() { - if (jj_scan_token(NCLOB)) return true; + if (jj_scan_token(MODIFIES)) return true; return false; } - final private boolean jj_3_703() { + final private boolean jj_3_705() { if (jj_scan_token(VARIANT)) return true; return false; } final private boolean jj_3_1308() { - if (jj_scan_token(MULTISET)) return true; + if (jj_scan_token(MIN)) return true; return false; } - final private boolean jj_3_692() { + final private boolean jj_3_694() { if (jj_scan_token(INT)) return true; return false; } @@ -37487,65 +37533,65 @@ final private boolean jj_3R_403() { } final private boolean jj_3_1307() { - if (jj_scan_token(MODIFIES)) return true; + if (jj_scan_token(MEASURES)) return true; return false; } - final private boolean jj_3_693() { + final private boolean jj_3_695() { if (jj_scan_token(PRECISION)) return true; return false; } - final private boolean jj_3_702() { + final private boolean jj_3_704() { if (jj_scan_token(FLOAT)) return true; return false; } final private boolean jj_3_1306() { - if (jj_scan_token(MIN)) return true; + if (jj_scan_token(MATCH_RECOGNIZE)) return true; return false; } - final private boolean jj_3_301() { + final private boolean jj_3_303() { if (jj_3R_84()) return true; return false; } final private boolean jj_3_1305() { - if (jj_scan_token(MEASURES)) return true; + if (jj_scan_token(MATCHES)) return true; return false; } final private boolean jj_3_1304() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; + if (jj_scan_token(LOCAL)) return true; return false; } - final private boolean jj_3_701() { + final private boolean jj_3_703() { if (jj_scan_token(DOUBLE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_693()) jj_scanpos = xsp; + if (jj_3_695()) jj_scanpos = xsp; return false; } final private boolean jj_3_1303() { - if (jj_scan_token(MATCHES)) return true; + if (jj_scan_token(LEAD)) return true; return false; } final private boolean jj_3_1302() { - if (jj_scan_token(LOCAL)) return true; + if (jj_scan_token(LARGE)) return true; return false; } - final private boolean jj_3_700() { + final private boolean jj_3_702() { if (jj_scan_token(REAL)) return true; return false; } final private boolean jj_3_1301() { - if (jj_scan_token(LEAD)) return true; + if (jj_scan_token(JSON_VALUE)) return true; return false; } @@ -37553,7 +37599,7 @@ final private boolean jj_3R_329() { if (jj_scan_token(LPAREN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_301()) { + if (jj_3_303()) { jj_scanpos = xsp; if (jj_3R_403()) return true; } @@ -37561,157 +37607,153 @@ final private boolean jj_3R_329() { } final private boolean jj_3_1300() { - if (jj_scan_token(LARGE)) return true; + if (jj_scan_token(JSON_OBJECTAGG)) return true; return false; } - final private boolean jj_3_699() { + final private boolean jj_3_701() { if (jj_scan_token(BIGINT)) return true; return false; } final private boolean jj_3_1299() { - if (jj_scan_token(JSON_VALUE)) return true; + if (jj_scan_token(JSON_ARRAYAGG)) return true; return false; } final private boolean jj_3_1298() { - if (jj_scan_token(JSON_OBJECTAGG)) return true; + if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_698() { + final private boolean jj_3_700() { if (jj_scan_token(SMALLINT)) return true; return false; } final private boolean jj_3_1297() { - if (jj_scan_token(JSON_ARRAYAGG)) return true; + if (jj_scan_token(INOUT)) return true; return false; } final private boolean jj_3_1296() { - if (jj_scan_token(INTEGER)) return true; + if (jj_scan_token(IMPORT)) return true; return false; } - final private boolean jj_3_691() { + final private boolean jj_3_693() { if (jj_scan_token(INTEGER)) return true; return false; } - final private boolean jj_3_697() { + final private boolean jj_3_699() { if (jj_scan_token(TINYINT)) return true; return false; } final private boolean jj_3_1295() { - if (jj_scan_token(INOUT)) return true; + if (jj_scan_token(HOLD)) return true; return false; } final private boolean jj_3_1294() { - if (jj_scan_token(IMPORT)) return true; + if (jj_scan_token(GRANT)) return true; return false; } - final private boolean jj_3_696() { + final private boolean jj_3_698() { Token xsp; xsp = jj_scanpos; - if (jj_3_691()) { + if (jj_3_693()) { jj_scanpos = xsp; - if (jj_3_692()) return true; + if (jj_3_694()) return true; } return false; } final private boolean jj_3_1293() { - if (jj_scan_token(HOLD)) return true; + if (jj_scan_token(FUSION)) return true; return false; } final private boolean jj_3_1292() { - if (jj_scan_token(GRANT)) return true; + if (jj_scan_token(FRAME_ROW)) return true; return false; } - final private boolean jj_3_695() { + final private boolean jj_3_697() { if (jj_scan_token(BOOLEAN)) return true; return false; } final private boolean jj_3_1291() { - if (jj_scan_token(FUSION)) return true; + if (jj_scan_token(FLOAT)) return true; return false; } final private boolean jj_3_1290() { - if (jj_scan_token(FRAME_ROW)) return true; + if (jj_scan_token(EXTRACT)) return true; return false; } final private boolean jj_3_1289() { - if (jj_scan_token(FLOAT)) return true; + if (jj_scan_token(EXP)) return true; return false; } final private boolean jj_3_1288() { - if (jj_scan_token(EXTRACT)) return true; + if (jj_scan_token(EVERY)) return true; return false; } final private boolean jj_3_1287() { - if (jj_scan_token(EXP)) return true; + if (jj_scan_token(END_PARTITION)) return true; return false; } final private boolean jj_3_1286() { - if (jj_scan_token(EVERY)) return true; + if (jj_scan_token(END)) return true; return false; } final private boolean jj_3_1285() { - if (jj_scan_token(END_PARTITION)) return true; + if (jj_scan_token(EACH)) return true; return false; } final private boolean jj_3_1284() { - if (jj_scan_token(END)) return true; + if (jj_scan_token(DISCONNECT)) return true; return false; } - final private boolean jj_3_694() { + final private boolean jj_3_696() { if (jj_scan_token(GEOMETRY)) return true; return false; } final private boolean jj_3_1283() { - if (jj_scan_token(EACH)) return true; + if (jj_scan_token(DESCRIBE)) return true; return false; } final private boolean jj_3_1282() { - if (jj_scan_token(DISCONNECT)) return true; + if (jj_scan_token(DEFINE)) return true; return false; } final private boolean jj_3_1281() { - if (jj_scan_token(DESCRIBE)) return true; + if (jj_scan_token(DEC)) return true; return false; } final private boolean jj_3_1280() { - if (jj_scan_token(DEFINE)) return true; + if (jj_scan_token(DATETIME)) return true; return false; } final private boolean jj_3R_279() { Token xsp; xsp = jj_scanpos; - if (jj_3_694()) { - jj_scanpos = xsp; - if (jj_3_695()) { - jj_scanpos = xsp; if (jj_3_696()) { jj_scanpos = xsp; if (jj_3_697()) { @@ -37728,7 +37770,11 @@ final private boolean jj_3R_279() { jj_scanpos = xsp; if (jj_3_703()) { jj_scanpos = xsp; - if (jj_3_704()) return true; + if (jj_3_704()) { + jj_scanpos = xsp; + if (jj_3_705()) { + jj_scanpos = xsp; + if (jj_3_706()) return true; } } } @@ -37748,112 +37794,112 @@ final private boolean jj_3R_184() { } final private boolean jj_3_1279() { - if (jj_scan_token(DEC)) return true; + if (jj_scan_token(CURSOR)) return true; return false; } final private boolean jj_3_1278() { - if (jj_scan_token(DATETIME)) return true; + if (jj_scan_token(CURRENT_ROLE)) return true; return false; } final private boolean jj_3_1277() { - if (jj_scan_token(CURSOR)) return true; + if (jj_scan_token(CURRENT_CATALOG)) return true; return false; } final private boolean jj_3_1276() { - if (jj_scan_token(CURRENT_ROLE)) return true; + if (jj_scan_token(CUBE)) return true; return false; } final private boolean jj_3_1275() { - if (jj_scan_token(CURRENT_CATALOG)) return true; + if (jj_scan_token(COUNT)) return true; return false; } final private boolean jj_3_1274() { - if (jj_scan_token(CUBE)) return true; + if (jj_scan_token(CONVERT)) return true; return false; } final private boolean jj_3_1273() { - if (jj_scan_token(COUNT)) return true; + if (jj_scan_token(CONDITION)) return true; return false; } final private boolean jj_3_1272() { - if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(COLLATE)) return true; return false; } final private boolean jj_3_1271() { - if (jj_scan_token(CONDITION)) return true; + if (jj_scan_token(CLOB)) return true; return false; } final private boolean jj_3_1270() { - if (jj_scan_token(COLLATE)) return true; + if (jj_scan_token(CHAR_LENGTH)) return true; return false; } final private boolean jj_3_1269() { - if (jj_scan_token(CLOB)) return true; + if (jj_scan_token(CHAR)) return true; return false; } - final private boolean jj_3_300() { + final private boolean jj_3_302() { if (jj_scan_token(COMMA)) return true; if (jj_3R_184()) return true; return false; } - final private boolean jj_3_690() { + final private boolean jj_3_692() { if (jj_3R_283()) return true; return false; } final private boolean jj_3_1268() { - if (jj_scan_token(CHAR_LENGTH)) return true; + if (jj_scan_token(CASCADED)) return true; return false; } final private boolean jj_3_1267() { - if (jj_scan_token(CHAR)) return true; + if (jj_scan_token(CALL)) return true; return false; } - final private boolean jj_3_689() { + final private boolean jj_3_691() { if (jj_3R_282()) return true; return false; } final private boolean jj_3_1266() { - if (jj_scan_token(CASCADED)) return true; + if (jj_scan_token(BIT)) return true; return false; } final private boolean jj_3_1265() { - if (jj_scan_token(CALL)) return true; + if (jj_scan_token(BEGIN_PARTITION)) return true; return false; } - final private boolean jj_3_688() { + final private boolean jj_3_690() { if (jj_3R_281()) return true; return false; } final private boolean jj_3_1264() { - if (jj_scan_token(BIT)) return true; + if (jj_scan_token(AVG)) return true; return false; } final private boolean jj_3_1263() { - if (jj_scan_token(BEGIN_PARTITION)) return true; + if (jj_scan_token(AT)) return true; return false; } - final private boolean jj_3_687() { + final private boolean jj_3_689() { if (jj_3R_280()) return true; return false; } @@ -37865,52 +37911,52 @@ final private boolean jj_3R_146() { } final private boolean jj_3_1262() { - if (jj_scan_token(AVG)) return true; + if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; return false; } final private boolean jj_3_1261() { - if (jj_scan_token(AT)) return true; + if (jj_scan_token(ALLOCATE)) return true; return false; } - final private boolean jj_3_686() { + final private boolean jj_3_688() { if (jj_3R_279()) return true; return false; } final private boolean jj_3_1260() { - if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; + if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; return false; } final private boolean jj_3_1259() { - if (jj_scan_token(ALLOCATE)) return true; + if (jj_scan_token(STATISTICS)) return true; return false; } final private boolean jj_3_1258() { - if (jj_scan_token(MAX_CHANGED_PARTITION_ROWS_PERCENT)) return true; + if (jj_scan_token(COMPUTE)) return true; return false; } final private boolean jj_3_1257() { - if (jj_scan_token(STATISTICS)) return true; + if (jj_scan_token(SCAN)) return true; return false; } final private boolean jj_3R_276() { Token xsp; xsp = jj_scanpos; - if (jj_3_686()) { - jj_scanpos = xsp; - if (jj_3_687()) { - jj_scanpos = xsp; if (jj_3_688()) { jj_scanpos = xsp; if (jj_3_689()) { jj_scanpos = xsp; - if (jj_3_690()) return true; + if (jj_3_690()) { + jj_scanpos = xsp; + if (jj_3_691()) { + jj_scanpos = xsp; + if (jj_3_692()) return true; } } } @@ -37919,22 +37965,22 @@ final private boolean jj_3R_276() { } final private boolean jj_3_1256() { - if (jj_scan_token(COMPUTE)) return true; + if (jj_scan_token(NOLOGGING)) return true; return false; } final private boolean jj_3_1255() { - if (jj_scan_token(SCAN)) return true; + if (jj_scan_token(PARALLEL)) return true; return false; } final private boolean jj_3_1254() { - if (jj_scan_token(NOLOGGING)) return true; + if (jj_scan_token(DATA_REGION)) return true; return false; } final private boolean jj_3_1253() { - if (jj_scan_token(PARALLEL)) return true; + if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; return false; } @@ -37945,98 +37991,98 @@ final private boolean jj_3R_145() { } final private boolean jj_3_1252() { - if (jj_scan_token(DATA_REGION)) return true; + if (jj_scan_token(BACKUPS)) return true; return false; } final private boolean jj_3_1251() { - if (jj_scan_token(WRITE_SYNCHRONIZATION_MODE)) return true; + if (jj_scan_token(YEARS)) return true; return false; } final private boolean jj_3_1250() { - if (jj_scan_token(BACKUPS)) return true; + if (jj_scan_token(WRAPPER)) return true; return false; } final private boolean jj_3_1249() { - if (jj_scan_token(YEARS)) return true; + if (jj_scan_token(WEEK)) return true; return false; } final private boolean jj_3_1248() { - if (jj_scan_token(WRAPPER)) return true; + if (jj_scan_token(UTF8)) return true; return false; } final private boolean jj_3_1247() { - if (jj_scan_token(WEEK)) return true; + if (jj_scan_token(USER_DEFINED_TYPE_SCHEMA)) return true; return false; } final private boolean jj_3_1246() { - if (jj_scan_token(UTF8)) return true; + if (jj_scan_token(USER_DEFINED_TYPE_CATALOG)) return true; return false; } final private boolean jj_3_1245() { - if (jj_scan_token(USER_DEFINED_TYPE_SCHEMA)) return true; + if (jj_scan_token(UNPIVOT)) return true; return false; } - final private boolean jj_3_299() { + final private boolean jj_3_301() { if (jj_scan_token(COMMA)) return true; if (jj_3R_78()) return true; return false; } - final private boolean jj_3_685() { + final private boolean jj_3_687() { if (jj_3R_150()) return true; return false; } final private boolean jj_3_1244() { - if (jj_scan_token(USER_DEFINED_TYPE_CATALOG)) return true; + if (jj_scan_token(UNCOMMITTED)) return true; return false; } final private boolean jj_3_1243() { - if (jj_scan_token(UNPIVOT)) return true; + if (jj_scan_token(TUMBLE)) return true; return false; } final private boolean jj_3_1242() { - if (jj_scan_token(UNCOMMITTED)) return true; + if (jj_scan_token(TRIGGER_CATALOG)) return true; return false; } - final private boolean jj_3_684() { + final private boolean jj_3_686() { if (jj_3R_278()) return true; return false; } final private boolean jj_3_1241() { - if (jj_scan_token(TUMBLE)) return true; + if (jj_scan_token(TRANSACTIONS_ROLLED_BACK)) return true; return false; } final private boolean jj_3_1240() { - if (jj_scan_token(TRIGGER_CATALOG)) return true; + if (jj_scan_token(TRANSACTION)) return true; return false; } - final private boolean jj_3_683() { + final private boolean jj_3_685() { if (jj_3R_277()) return true; return false; } final private boolean jj_3_1239() { - if (jj_scan_token(TRANSACTIONS_ROLLED_BACK)) return true; + if (jj_scan_token(TIMESTAMP_DIFF)) return true; return false; } final private boolean jj_3_1238() { - if (jj_scan_token(TRANSACTION)) return true; + if (jj_scan_token(TIME_TRUNC)) return true; return false; } @@ -38045,51 +38091,51 @@ final private boolean jj_3R_394() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_299()) { jj_scanpos = xsp; break; } + if (jj_3_301()) { jj_scanpos = xsp; break; } } return false; } final private boolean jj_3_1237() { - if (jj_scan_token(TIMESTAMP_DIFF)) return true; + if (jj_scan_token(TEMPORARY)) return true; return false; } - final private boolean jj_3_682() { + final private boolean jj_3_684() { if (jj_3R_276()) return true; return false; } final private boolean jj_3_1236() { - if (jj_scan_token(TIME_TRUNC)) return true; + if (jj_scan_token(SUBCLASS_ORIGIN)) return true; return false; } final private boolean jj_3_1235() { - if (jj_scan_token(TEMPORARY)) return true; + if (jj_scan_token(STRING_AGG)) return true; return false; } final private boolean jj_3_1234() { - if (jj_scan_token(SUBCLASS_ORIGIN)) return true; + if (jj_scan_token(SQL_VARCHAR)) return true; return false; } final private boolean jj_3_1233() { - if (jj_scan_token(STRING_AGG)) return true; + if (jj_scan_token(SQL_TSI_WEEK)) return true; return false; } final private boolean jj_3R_358() { Token xsp; xsp = jj_scanpos; - if (jj_3_682()) { + if (jj_3_684()) { jj_scanpos = xsp; - if (jj_3_683()) { + if (jj_3_685()) { jj_scanpos = xsp; - if (jj_3_684()) { + if (jj_3_686()) { jj_scanpos = xsp; - if (jj_3_685()) return true; + if (jj_3_687()) return true; } } } @@ -38097,42 +38143,42 @@ final private boolean jj_3R_358() { } final private boolean jj_3_1232() { - if (jj_scan_token(SQL_VARCHAR)) return true; + if (jj_scan_token(SQL_TSI_MONTH)) return true; return false; } final private boolean jj_3_1231() { - if (jj_scan_token(SQL_TSI_WEEK)) return true; + if (jj_scan_token(SQL_TSI_HOUR)) return true; return false; } final private boolean jj_3_1230() { - if (jj_scan_token(SQL_TSI_MONTH)) return true; + if (jj_scan_token(SQL_TINYINT)) return true; return false; } final private boolean jj_3_1229() { - if (jj_scan_token(SQL_TSI_HOUR)) return true; + if (jj_scan_token(SQL_SMALLINT)) return true; return false; } final private boolean jj_3_1228() { - if (jj_scan_token(SQL_TINYINT)) return true; + if (jj_scan_token(SQL_NUMERIC)) return true; return false; } final private boolean jj_3_1227() { - if (jj_scan_token(SQL_SMALLINT)) return true; + if (jj_scan_token(SQL_LONGVARNCHAR)) return true; return false; } final private boolean jj_3_1226() { - if (jj_scan_token(SQL_NUMERIC)) return true; + if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; return false; } final private boolean jj_3_1225() { - if (jj_scan_token(SQL_LONGVARNCHAR)) return true; + if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; return false; } @@ -38142,67 +38188,67 @@ final private boolean jj_3R_232() { } final private boolean jj_3_1224() { - if (jj_scan_token(SQL_INTERVAL_YEAR_TO_MONTH)) return true; + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; return false; } final private boolean jj_3_1223() { - if (jj_scan_token(SQL_INTERVAL_MONTH)) return true; + if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; return false; } final private boolean jj_3_1222() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_SECOND)) return true; + if (jj_scan_token(SQL_INTERVAL_DAY)) return true; return false; } final private boolean jj_3_1221() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_SECOND)) return true; + if (jj_scan_token(SQL_DOUBLE)) return true; return false; } final private boolean jj_3_1220() { - if (jj_scan_token(SQL_INTERVAL_DAY)) return true; + if (jj_scan_token(SQL_CLOB)) return true; return false; } - final private boolean jj_3_681() { + final private boolean jj_3_683() { if (jj_3R_275()) return true; return false; } final private boolean jj_3_1219() { - if (jj_scan_token(SQL_DOUBLE)) return true; + if (jj_scan_token(SQL_BLOB)) return true; return false; } final private boolean jj_3_1218() { - if (jj_scan_token(SQL_CLOB)) return true; + if (jj_scan_token(SQL_BIGINT)) return true; return false; } final private boolean jj_3_1217() { - if (jj_scan_token(SQL_BLOB)) return true; + if (jj_scan_token(SOURCE)) return true; return false; } final private boolean jj_3_1216() { - if (jj_scan_token(SQL_BIGINT)) return true; + if (jj_scan_token(SETS)) return true; return false; } final private boolean jj_3_1215() { - if (jj_scan_token(SOURCE)) return true; + if (jj_scan_token(SERVER)) return true; return false; } final private boolean jj_3_1214() { - if (jj_scan_token(SETS)) return true; + if (jj_scan_token(SEPARATOR)) return true; return false; } final private boolean jj_3_1213() { - if (jj_scan_token(SERVER)) return true; + if (jj_scan_token(SECTION)) return true; return false; } @@ -38211,167 +38257,167 @@ final private boolean jj_3R_118() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_681()) { jj_scanpos = xsp; break; } + if (jj_3_683()) { jj_scanpos = xsp; break; } } return false; } final private boolean jj_3_1212() { - if (jj_scan_token(SEPARATOR)) return true; + if (jj_scan_token(SCOPE_NAME)) return true; return false; } final private boolean jj_3_1211() { - if (jj_scan_token(SECTION)) return true; + if (jj_scan_token(SCHEMA)) return true; return false; } - final private boolean jj_3_298() { + final private boolean jj_3_300() { if (jj_3R_78()) return true; return false; } final private boolean jj_3_1210() { - if (jj_scan_token(SCOPE_NAME)) return true; + if (jj_scan_token(ROW_COUNT)) return true; return false; } final private boolean jj_3_1209() { - if (jj_scan_token(SCHEMA)) return true; + if (jj_scan_token(ROUTINE_CATALOG)) return true; return false; } final private boolean jj_3_1208() { - if (jj_scan_token(ROW_COUNT)) return true; + if (jj_scan_token(RLIKE)) return true; return false; } final private boolean jj_3_1207() { - if (jj_scan_token(ROUTINE_CATALOG)) return true; + if (jj_scan_token(RETURNED_OCTET_LENGTH)) return true; return false; } - final private boolean jj_3_297() { + final private boolean jj_3_299() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } final private boolean jj_3_1206() { - if (jj_scan_token(RLIKE)) return true; + if (jj_scan_token(RESTRICT)) return true; return false; } final private boolean jj_3_1205() { - if (jj_scan_token(RETURNED_OCTET_LENGTH)) return true; + if (jj_scan_token(REPLACE)) return true; return false; } final private boolean jj_3_1204() { - if (jj_scan_token(RESTRICT)) return true; + if (jj_scan_token(READ)) return true; return false; } final private boolean jj_3_1203() { - if (jj_scan_token(REPLACE)) return true; + if (jj_scan_token(PUBLIC)) return true; return false; } final private boolean jj_3_1202() { - if (jj_scan_token(READ)) return true; + if (jj_scan_token(PRESERVE)) return true; return false; } final private boolean jj_3_1201() { - if (jj_scan_token(PUBLIC)) return true; + if (jj_scan_token(PLAN)) return true; return false; } - final private boolean jj_3_296() { + final private boolean jj_3_298() { if (jj_scan_token(CUBE)) return true; if (jj_scan_token(LPAREN)) return true; return false; } final private boolean jj_3_1200() { - if (jj_scan_token(PRESERVE)) return true; + if (jj_scan_token(PATH)) return true; return false; } final private boolean jj_3_1199() { - if (jj_scan_token(PLAN)) return true; + if (jj_scan_token(PASSING)) return true; return false; } final private boolean jj_3_1198() { - if (jj_scan_token(PATH)) return true; + if (jj_scan_token(PARAMETER_SPECIFIC_SCHEMA)) return true; return false; } final private boolean jj_3_1197() { - if (jj_scan_token(PASSING)) return true; + if (jj_scan_token(PARAMETER_ORDINAL_POSITION)) return true; return false; } final private boolean jj_3_1196() { - if (jj_scan_token(PARAMETER_SPECIFIC_SCHEMA)) return true; + if (jj_scan_token(PAD)) return true; return false; } final private boolean jj_3_1195() { - if (jj_scan_token(PARAMETER_ORDINAL_POSITION)) return true; + if (jj_scan_token(OTHERS)) return true; return false; } - final private boolean jj_3_295() { + final private boolean jj_3_297() { if (jj_scan_token(ROLLUP)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_680() { + final private boolean jj_3_682() { if (jj_scan_token(MINUS)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } final private boolean jj_3_1194() { - if (jj_scan_token(PAD)) return true; + if (jj_scan_token(OPTIONS)) return true; return false; } final private boolean jj_3_1193() { - if (jj_scan_token(OTHERS)) return true; + if (jj_scan_token(OBJECT)) return true; return false; } final private boolean jj_3_1192() { - if (jj_scan_token(OPTIONS)) return true; + if (jj_scan_token(NULLABLE)) return true; return false; } final private boolean jj_3_1191() { - if (jj_scan_token(OBJECT)) return true; + if (jj_scan_token(NANOSECOND)) return true; return false; } final private boolean jj_3_1190() { - if (jj_scan_token(NULLABLE)) return true; + if (jj_scan_token(MUMPS)) return true; return false; } final private boolean jj_3R_183() { Token xsp; xsp = jj_scanpos; - if (jj_3_294()) { - jj_scanpos = xsp; - if (jj_3_295()) { - jj_scanpos = xsp; if (jj_3_296()) { jj_scanpos = xsp; if (jj_3_297()) { jj_scanpos = xsp; - if (jj_3_298()) return true; + if (jj_3_298()) { + jj_scanpos = xsp; + if (jj_3_299()) { + jj_scanpos = xsp; + if (jj_3_300()) return true; } } } @@ -38380,170 +38426,165 @@ final private boolean jj_3R_183() { } final private boolean jj_3_1189() { - if (jj_scan_token(NANOSECOND)) return true; + if (jj_scan_token(MINVALUE)) return true; return false; } - final private boolean jj_3_294() { + final private boolean jj_3_296() { if (jj_scan_token(GROUPING)) return true; if (jj_scan_token(SETS)) return true; return false; } final private boolean jj_3_1188() { - if (jj_scan_token(MUMPS)) return true; + if (jj_scan_token(MILLENNIUM)) return true; return false; } - final private boolean jj_3_678() { + final private boolean jj_3_680() { if (jj_scan_token(PLUS)) return true; if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } final private boolean jj_3_1187() { - if (jj_scan_token(MINVALUE)) return true; + if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; return false; } final private boolean jj_3_1186() { - if (jj_scan_token(MILLENNIUM)) return true; + if (jj_scan_token(MATCHED)) return true; return false; } - final private boolean jj_3_677() { + final private boolean jj_3_679() { if (jj_scan_token(UNSIGNED_INTEGER_LITERAL)) return true; return false; } final private boolean jj_3_1185() { - if (jj_scan_token(MESSAGE_OCTET_LENGTH)) return true; + if (jj_scan_token(LOCATOR)) return true; return false; } final private boolean jj_3_1184() { - if (jj_scan_token(MATCHED)) return true; + if (jj_scan_token(LENGTH)) return true; return false; } final private boolean jj_3_1183() { - if (jj_scan_token(LOCATOR)) return true; + if (jj_scan_token(KEY_TYPE)) return true; return false; } final private boolean jj_3_1182() { - if (jj_scan_token(LENGTH)) return true; + if (jj_scan_token(K)) return true; return false; } final private boolean jj_3R_285() { Token xsp; xsp = jj_scanpos; - if (jj_3_679()) { + if (jj_3_681()) { jj_scanpos = xsp; - if (jj_3_680()) return true; + if (jj_3_682()) return true; } return false; } final private boolean jj_3_1181() { - if (jj_scan_token(KEY_TYPE)) return true; + if (jj_scan_token(ISOYEAR)) return true; return false; } - final private boolean jj_3_679() { + final private boolean jj_3_681() { Token xsp; xsp = jj_scanpos; - if (jj_3_677()) { + if (jj_3_679()) { jj_scanpos = xsp; - if (jj_3_678()) return true; + if (jj_3_680()) return true; } return false; } final private boolean jj_3_1180() { - if (jj_scan_token(K)) return true; + if (jj_scan_token(INVOKER)) return true; return false; } - final private boolean jj_3_293() { + final private boolean jj_3_295() { if (jj_scan_token(COMMA)) return true; if (jj_3R_183()) return true; return false; } final private boolean jj_3_1179() { - if (jj_scan_token(ISOYEAR)) return true; + if (jj_scan_token(INPUT)) return true; return false; } final private boolean jj_3_1178() { - if (jj_scan_token(INVOKER)) return true; + if (jj_scan_token(INCLUDING)) return true; return false; } final private boolean jj_3_1177() { - if (jj_scan_token(INPUT)) return true; + if (jj_scan_token(IMMEDIATELY)) return true; return false; } final private boolean jj_3_1176() { - if (jj_scan_token(INCLUDING)) return true; + if (jj_scan_token(IGNORE)) return true; return false; } final private boolean jj_3_1175() { - if (jj_scan_token(IMMEDIATELY)) return true; + if (jj_scan_token(HIERARCHY)) return true; return false; } final private boolean jj_3_1174() { - if (jj_scan_token(IGNORE)) return true; + if (jj_scan_token(GOTO)) return true; return false; } final private boolean jj_3_1173() { - if (jj_scan_token(HIERARCHY)) return true; + if (jj_scan_token(GENERATED)) return true; return false; } final private boolean jj_3_1172() { - if (jj_scan_token(GOTO)) return true; + if (jj_scan_token(FRAC_SECOND)) return true; return false; } final private boolean jj_3_1171() { - if (jj_scan_token(GENERATED)) return true; + if (jj_scan_token(FORMAT)) return true; return false; } final private boolean jj_3_1170() { - if (jj_scan_token(FRAC_SECOND)) return true; + if (jj_scan_token(FINAL)) return true; return false; } final private boolean jj_3_1169() { - if (jj_scan_token(FORMAT)) return true; + if (jj_scan_token(EXCEPTION)) return true; return false; } final private boolean jj_3_1168() { - if (jj_scan_token(FINAL)) return true; + if (jj_scan_token(ENCODING)) return true; return false; } final private boolean jj_3_1167() { - if (jj_scan_token(EXCEPTION)) return true; - return false; - } - - final private boolean jj_3R_289() { - if (jj_3R_398()) return true; + if (jj_scan_token(DOT_FORMAT)) return true; return false; } final private boolean jj_3_1166() { - if (jj_scan_token(ENCODING)) return true; + if (jj_scan_token(DOMAIN)) return true; return false; } @@ -38553,67 +38594,67 @@ final private boolean jj_3R_258() { } final private boolean jj_3_1165() { - if (jj_scan_token(DOT_FORMAT)) return true; + if (jj_scan_token(DESCRIPTOR)) return true; return false; } final private boolean jj_3_1164() { - if (jj_scan_token(DOMAIN)) return true; + if (jj_scan_token(DERIVED)) return true; return false; } final private boolean jj_3_1163() { - if (jj_scan_token(DESCRIPTOR)) return true; + if (jj_scan_token(DEFINER)) return true; return false; } - final private boolean jj_3_292() { + final private boolean jj_3_294() { if (jj_scan_token(ALL)) return true; return false; } + final private boolean jj_3R_289() { + if (jj_3R_398()) return true; + return false; + } + final private boolean jj_3_1162() { - if (jj_scan_token(DERIVED)) return true; + if (jj_scan_token(DEFERRABLE)) return true; return false; } - final private boolean jj_3_291() { + final private boolean jj_3_293() { if (jj_scan_token(DISTINCT)) return true; return false; } final private boolean jj_3_1161() { - if (jj_scan_token(DEFINER)) return true; + if (jj_scan_token(DAYS)) return true; return false; } final private boolean jj_3_1160() { - if (jj_scan_token(DEFERRABLE)) return true; + if (jj_scan_token(DATETIME_TRUNC)) return true; return false; } final private boolean jj_3_1159() { - if (jj_scan_token(DAYS)) return true; + if (jj_scan_token(DATETIME_DIFF)) return true; return false; } final private boolean jj_3_1158() { - if (jj_scan_token(DATETIME_TRUNC)) return true; + if (jj_scan_token(DATABASE)) return true; return false; } final private boolean jj_3_1157() { - if (jj_scan_token(DATETIME_DIFF)) return true; + if (jj_scan_token(CONTINUE)) return true; return false; } final private boolean jj_3_1156() { - if (jj_scan_token(DATABASE)) return true; - return false; - } - - final private boolean jj_3R_355() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + if (jj_scan_token(CONSTRAINT_SCHEMA)) return true; return false; } @@ -38624,22 +38665,27 @@ final private boolean jj_3R_144() { } final private boolean jj_3_1155() { - if (jj_scan_token(CONTINUE)) return true; + if (jj_scan_token(CONSTRAINT_CATALOG)) return true; return false; } final private boolean jj_3_1154() { - if (jj_scan_token(CONSTRAINT_SCHEMA)) return true; + if (jj_scan_token(CONDITION_NUMBER)) return true; return false; } final private boolean jj_3_1153() { - if (jj_scan_token(CONSTRAINT_CATALOG)) return true; + if (jj_scan_token(COMMAND_FUNCTION_CODE)) return true; return false; } final private boolean jj_3_1152() { - if (jj_scan_token(CONDITION_NUMBER)) return true; + if (jj_scan_token(COLLATION_SCHEMA)) return true; + return false; + } + + final private boolean jj_3R_355() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} return false; } @@ -38650,52 +38696,52 @@ final private boolean jj_3R_229() { } final private boolean jj_3_1151() { - if (jj_scan_token(COMMAND_FUNCTION_CODE)) return true; + if (jj_scan_token(COLLATION)) return true; return false; } final private boolean jj_3_1150() { - if (jj_scan_token(COLLATION_SCHEMA)) return true; + if (jj_scan_token(CHARACTER_SET_SCHEMA)) return true; return false; } final private boolean jj_3_1149() { - if (jj_scan_token(COLLATION)) return true; + if (jj_scan_token(CHARACTERS)) return true; return false; } final private boolean jj_3_1148() { - if (jj_scan_token(CHARACTER_SET_SCHEMA)) return true; + if (jj_scan_token(CENTURY)) return true; return false; } final private boolean jj_3_1147() { - if (jj_scan_token(CHARACTERS)) return true; - return false; - } - - final private boolean jj_3R_344() { - if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} + if (jj_scan_token(CASCADE)) return true; return false; } final private boolean jj_3_1146() { - if (jj_scan_token(CENTURY)) return true; + if (jj_scan_token(BERNOULLI)) return true; return false; } final private boolean jj_3_1145() { - if (jj_scan_token(CASCADE)) return true; + if (jj_scan_token(ATTRIBUTE)) return true; return false; } final private boolean jj_3_1144() { - if (jj_scan_token(BERNOULLI)) return true; + if (jj_scan_token(ASC)) return true; return false; } final private boolean jj_3_1143() { - if (jj_scan_token(ATTRIBUTE)) return true; + if (jj_scan_token(APPLY)) return true; + return false; + } + + final private boolean jj_3R_344() { + if (true) { jj_la = 0; jj_scanpos = jj_lastpos; return false;} return false; } @@ -38706,47 +38752,23 @@ final private boolean jj_3R_143() { } final private boolean jj_3_1142() { - if (jj_scan_token(ASC)) return true; - return false; - } - - final private boolean jj_3_1141() { - if (jj_scan_token(APPLY)) return true; - return false; - } - - final private boolean jj_3_1140() { if (jj_scan_token(ADMIN)) return true; return false; } - final private boolean jj_3_1139() { + final private boolean jj_3_1141() { if (jj_scan_token(ACTION)) return true; return false; } - final private boolean jj_3_1138() { + final private boolean jj_3_1140() { if (jj_scan_token(A)) return true; return false; } - final private boolean jj_3R_409() { - return false; - } - - final private boolean jj_3R_157() { - if (jj_scan_token(LPAREN)) return true; - if (jj_3R_367()) return true; - return false; - } - final private boolean jj_3R_339() { Token xsp; xsp = jj_scanpos; - if (jj_3_1138()) { - jj_scanpos = xsp; - if (jj_3_1139()) { - jj_scanpos = xsp; if (jj_3_1140()) { jj_scanpos = xsp; if (jj_3_1141()) { @@ -39183,7 +39205,11 @@ final private boolean jj_3R_339() { jj_scanpos = xsp; if (jj_3_1357()) { jj_scanpos = xsp; - if (jj_3_1358()) return true; + if (jj_3_1358()) { + jj_scanpos = xsp; + if (jj_3_1359()) { + jj_scanpos = xsp; + if (jj_3_1360()) return true; } } } @@ -39407,32 +39433,37 @@ final private boolean jj_3R_339() { return false; } - final private boolean jj_3_1137() { + final private boolean jj_3R_157() { + if (jj_scan_token(LPAREN)) return true; + if (jj_3R_367()) return true; + return false; + } + + final private boolean jj_3R_409() { + return false; + } + + final private boolean jj_3_1139() { if (jj_3R_341()) return true; return false; } - final private boolean jj_3_1136() { + final private boolean jj_3_1138() { if (jj_3R_340()) return true; return false; } - final private boolean jj_3_1135() { + final private boolean jj_3_1137() { if (jj_3R_339()) return true; return false; } - final private boolean jj_3_676() { + final private boolean jj_3_678() { if (jj_scan_token(COMMA)) return true; if (jj_3R_274()) return true; return false; } - final private boolean jj_3R_173() { - if (jj_3R_373()) return true; - return false; - } - final private boolean jj_3R_367() { if (jj_3R_274()) return true; return false; @@ -39441,11 +39472,11 @@ final private boolean jj_3R_367() { final private boolean jj_3R_271() { Token xsp; xsp = jj_scanpos; - if (jj_3_1135()) { + if (jj_3_1137()) { jj_scanpos = xsp; - if (jj_3_1136()) { + if (jj_3_1138()) { jj_scanpos = xsp; - if (jj_3_1137()) return true; + if (jj_3_1139()) return true; } } return false; @@ -39455,20 +39486,25 @@ final private boolean jj_3R_182() { return false; } - final private boolean jj_3_290() { + final private boolean jj_3_292() { if (jj_3R_81()) return true; return false; } - final private boolean jj_3_287() { - if (jj_scan_token(ROW)) return true; + final private boolean jj_3R_173() { + if (jj_3R_373()) return true; return false; } final private boolean jj_3_289() { + if (jj_scan_token(ROW)) return true; + return false; + } + + final private boolean jj_3_291() { Token xsp; xsp = jj_scanpos; - if (jj_3_287()) { + if (jj_3_289()) { jj_scanpos = xsp; if (jj_3R_182()) return true; } @@ -39476,13 +39512,13 @@ final private boolean jj_3_289() { return false; } - final private boolean jj_3_675() { + final private boolean jj_3_677() { if (jj_scan_token(DOT)) return true; if (jj_3R_273()) return true; return false; } - final private boolean jj_3_288() { + final private boolean jj_3_290() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(ROW)) return true; if (jj_3R_181()) return true; @@ -39494,7 +39530,7 @@ final private boolean jj_3R_168() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_675()) { jj_scanpos = xsp; break; } + if (jj_3_677()) { jj_scanpos = xsp; break; } } return false; } @@ -39502,11 +39538,11 @@ final private boolean jj_3R_168() { final private boolean jj_3R_160() { Token xsp; xsp = jj_scanpos; - if (jj_3_288()) { + if (jj_3_290()) { jj_scanpos = xsp; - if (jj_3_289()) { + if (jj_3_291()) { jj_scanpos = xsp; - if (jj_3_290()) return true; + if (jj_3_292()) return true; } } return false; @@ -39517,19 +39553,19 @@ final private boolean jj_3R_180() { return false; } - final private boolean jj_3_674() { + final private boolean jj_3_676() { if (jj_scan_token(DOT)) return true; if (jj_scan_token(STAR)) return true; return false; } - final private boolean jj_3_673() { + final private boolean jj_3_675() { if (jj_scan_token(DOT)) return true; if (jj_3R_272()) return true; return false; } - final private boolean jj_3_286() { + final private boolean jj_3_288() { if (jj_scan_token(COMMA)) return true; if (jj_3R_180()) return true; return false; @@ -39540,19 +39576,19 @@ final private boolean jj_3R_150() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_673()) { jj_scanpos = xsp; break; } + if (jj_3_675()) { jj_scanpos = xsp; break; } } xsp = jj_scanpos; - if (jj_3_674()) jj_scanpos = xsp; + if (jj_3_676()) jj_scanpos = xsp; return false; } - final private boolean jj_3_285() { + final private boolean jj_3_287() { if (jj_scan_token(VALUE)) return true; return false; } - final private boolean jj_3_284() { + final private boolean jj_3_286() { if (jj_scan_token(VALUES)) return true; return false; } @@ -39560,15 +39596,15 @@ final private boolean jj_3_284() { final private boolean jj_3R_76() { Token xsp; xsp = jj_scanpos; - if (jj_3_284()) { + if (jj_3_286()) { jj_scanpos = xsp; - if (jj_3_285()) return true; + if (jj_3_287()) return true; } if (jj_3R_180()) return true; return false; } - final private boolean jj_3_672() { + final private boolean jj_3_674() { if (jj_3R_122()) return true; return false; } @@ -39576,14 +39612,14 @@ final private boolean jj_3_672() { final private boolean jj_3R_132() { Token xsp; xsp = jj_scanpos; - if (jj_3_671()) { + if (jj_3_673()) { jj_scanpos = xsp; - if (jj_3_672()) return true; + if (jj_3_674()) return true; } return false; } - final private boolean jj_3_671() { + final private boolean jj_3_673() { if (jj_3R_84()) return true; return false; } @@ -39601,7 +39637,7 @@ final private boolean jj_3R_122() { return false; } - final private boolean jj_3_670() { + final private boolean jj_3_672() { if (jj_scan_token(COMMA)) return true; if (jj_3R_84()) return true; return false; @@ -39612,12 +39648,12 @@ final private boolean jj_3R_359() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_670()) { jj_scanpos = xsp; break; } + if (jj_3_672()) { jj_scanpos = xsp; break; } } return false; } - final private boolean jj_3_283() { + final private boolean jj_3_285() { if (jj_scan_token(SPECIFIC)) return true; return false; } @@ -39633,7 +39669,7 @@ final private boolean jj_3R_368() { return false; } - final private boolean jj_3_281() { + final private boolean jj_3_283() { if (jj_scan_token(COMMA)) return true; if (jj_3R_83()) return true; return false; @@ -39644,12 +39680,12 @@ final private boolean jj_3R_84() { return false; } - final private boolean jj_3_282() { + final private boolean jj_3_284() { if (jj_3R_152()) return true; Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_281()) { jj_scanpos = xsp; break; } + if (jj_3_283()) { jj_scanpos = xsp; break; } } return false; } @@ -39658,7 +39694,7 @@ final private boolean jj_3R_167() { if (jj_scan_token(LPAREN)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_282()) jj_scanpos = xsp; + if (jj_3_284()) jj_scanpos = xsp; if (jj_scan_token(RPAREN)) return true; return false; } @@ -39668,7 +39704,7 @@ final private boolean jj_3R_333() { return false; } - final private boolean jj_3_280() { + final private boolean jj_3_282() { if (jj_3R_118()) return true; if (jj_3R_179()) return true; return false; @@ -39691,18 +39727,18 @@ final private boolean jj_3R_178() { return false; } - final private boolean jj_3_669() { + final private boolean jj_3_671() { if (jj_3R_271()) return true; return false; } - final private boolean jj_3_279() { + final private boolean jj_3_281() { if (jj_scan_token(COMMA)) return true; if (jj_3R_178()) return true; return false; } - final private boolean jj_3_661() { + final private boolean jj_3_663() { if (jj_scan_token(UESCAPE)) return true; if (jj_scan_token(QUOTED_STRING)) return true; return false; @@ -39714,21 +39750,21 @@ final private boolean jj_3R_366() { Token xsp; while (true) { xsp = jj_scanpos; - if (jj_3_279()) { jj_scanpos = xsp; break; } + if (jj_3_281()) { jj_scanpos = xsp; break; } } if (jj_scan_token(RPAREN)) return true; return false; } - final private boolean jj_3_668() { + final private boolean jj_3_670() { if (jj_scan_token(UNICODE_QUOTED_IDENTIFIER)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_661()) jj_scanpos = xsp; + if (jj_3_663()) jj_scanpos = xsp; return false; } - final private boolean jj_3_278() { + final private boolean jj_3_280() { if (jj_scan_token(EXTEND)) return true; return false; } @@ -39736,63 +39772,63 @@ final private boolean jj_3_278() { final private boolean jj_3R_156() { Token xsp; xsp = jj_scanpos; - if (jj_3_278()) jj_scanpos = xsp; + if (jj_3_280()) jj_scanpos = xsp; if (jj_3R_366()) return true; return false; } - final private boolean jj_3_667() { + final private boolean jj_3_669() { if (jj_scan_token(BRACKET_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_666() { + final private boolean jj_3_668() { if (jj_scan_token(BIG_QUERY_BACK_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_665() { + final private boolean jj_3_667() { if (jj_scan_token(BACK_QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_664() { + final private boolean jj_3_666() { if (jj_scan_token(QUOTED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_275() { + final private boolean jj_3_277() { if (jj_scan_token(REPEATABLE)) return true; if (jj_scan_token(LPAREN)) return true; return false; } - final private boolean jj_3_663() { + final private boolean jj_3_665() { if (jj_scan_token(HYPHENATED_IDENTIFIER)) return true; return false; } - final private boolean jj_3_274() { + final private boolean jj_3_276() { if (jj_scan_token(SYSTEM)) return true; return false; } - final private boolean jj_3_273() { + final private boolean jj_3_275() { if (jj_scan_token(BERNOULLI)) return true; return false; } - final private boolean jj_3_662() { + final private boolean jj_3_664() { if (jj_scan_token(IDENTIFIER)) return true; return false; } - final private boolean jj_3_277() { + final private boolean jj_3_279() { Token xsp; xsp = jj_scanpos; - if (jj_3_273()) { + if (jj_3_275()) { jj_scanpos = xsp; - if (jj_3_274()) return true; + if (jj_3_276()) return true; } if (jj_scan_token(LPAREN)) return true; return false; @@ -39801,10 +39837,6 @@ final private boolean jj_3_277() { final private boolean jj_3R_272() { Token xsp; xsp = jj_scanpos; - if (jj_3_662()) { - jj_scanpos = xsp; - if (jj_3_663()) { - jj_scanpos = xsp; if (jj_3_664()) { jj_scanpos = xsp; if (jj_3_665()) { @@ -39815,7 +39847,11 @@ final private boolean jj_3R_272() { jj_scanpos = xsp; if (jj_3_668()) { jj_scanpos = xsp; - if (jj_3_669()) return true; + if (jj_3_669()) { + jj_scanpos = xsp; + if (jj_3_670()) { + jj_scanpos = xsp; + if (jj_3_671()) return true; } } } @@ -39826,7 +39862,7 @@ final private boolean jj_3R_272() { return false; } - final private boolean jj_3_276() { + final private boolean jj_3_278() { if (jj_scan_token(SUBSTITUTE)) return true; if (jj_scan_token(LPAREN)) return true; return false; @@ -39836,9 +39872,9 @@ final private boolean jj_3R_177() { if (jj_scan_token(TABLESAMPLE)) return true; Token xsp; xsp = jj_scanpos; - if (jj_3_276()) { + if (jj_3_278()) { jj_scanpos = xsp; - if (jj_3_277()) return true; + if (jj_3_279()) return true; } return false; } @@ -39848,37 +39884,37 @@ final private boolean jj_3R_217() { return false; } - final private boolean jj_3_272() { + final private boolean jj_3_274() { if (jj_3R_177()) return true; return false; } - final private boolean jj_3_660() { + final private boolean jj_3_662() { if (jj_scan_token(SATURDAY)) return true; return false; } - final private boolean jj_3_659() { + final private boolean jj_3_661() { if (jj_scan_token(FRIDAY)) return true; return false; } - final private boolean jj_3_658() { + final private boolean jj_3_660() { if (jj_scan_token(THURSDAY)) return true; return false; } - final private boolean jj_3_657() { + final private boolean jj_3_659() { if (jj_scan_token(WEDNESDAY)) return true; return false; } - final private boolean jj_3_656() { + final private boolean jj_3_658() { if (jj_scan_token(TUESDAY)) return true; return false; } - final private boolean jj_3_655() { + final private boolean jj_3_657() { if (jj_scan_token(MONDAY)) return true; return false; } @@ -39886,10 +39922,6 @@ final private boolean jj_3_655() { final private boolean jj_3R_269() { Token xsp; xsp = jj_scanpos; - if (jj_3_654()) { - jj_scanpos = xsp; - if (jj_3_655()) { - jj_scanpos = xsp; if (jj_3_656()) { jj_scanpos = xsp; if (jj_3_657()) { @@ -39898,7 +39930,11 @@ final private boolean jj_3R_269() { jj_scanpos = xsp; if (jj_3_659()) { jj_scanpos = xsp; - if (jj_3_660()) return true; + if (jj_3_660()) { + jj_scanpos = xsp; + if (jj_3_661()) { + jj_scanpos = xsp; + if (jj_3_662()) return true; } } } @@ -39908,7 +39944,7 @@ final private boolean jj_3R_269() { return false; } - final private boolean jj_3_654() { + final private boolean jj_3_656() { if (jj_scan_token(SUNDAY)) return true; return false; } @@ -40047,15 +40083,15 @@ private static void jj_la1_22() { jj_la1_22 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_23() { - jj_la1_23 = new int[] {0x0,0x100000,0x0,0x0,0x0,0x100000,0x100000,0x0,0x0,0x0,}; + jj_la1_23 = new int[] {0x0,0x400000,0x0,0x0,0x0,0x400000,0x400000,0x0,0x0,0x0,}; } private static void jj_la1_24() { - jj_la1_24 = new int[] {0x0,0x0,0x100,0x241004,0xc0000,0x0,0x0,0x0,0x0,0x0,}; + jj_la1_24 = new int[] {0x0,0x0,0x400,0x904010,0x300000,0x0,0x0,0x0,0x0,0x0,}; } private static void jj_la1_25() { jj_la1_25 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } - final private JJCalls[] jj_2_rtns = new JJCalls[1799]; + final private JJCalls[] jj_2_rtns = new JJCalls[1801]; private boolean jj_rescan = false; private int jj_gc = 0; @@ -40230,8 +40266,8 @@ private void jj_add_error_token(int kind, int pos) { public ParseException generateParseException() { jj_expentries.removeAllElements(); - boolean[] la1tokens = new boolean[825]; - for (int i = 0; i < 825; i++) { + boolean[] la1tokens = new boolean[827]; + for (int i = 0; i < 827; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { @@ -40322,7 +40358,7 @@ public ParseException generateParseException() { } } } - for (int i = 0; i < 825; i++) { + for (int i = 0; i < 827; i++) { if (la1tokens[i]) { jj_expentry = new int[1]; jj_expentry[0] = i; @@ -40347,7 +40383,7 @@ final public void disable_tracing() { final private void jj_rescan_token() { jj_rescan = true; - for (int i = 0; i < 1799; i++) { + for (int i = 0; i < 1801; i++) { try { JJCalls p = jj_2_rtns[i]; do { @@ -42153,6 +42189,8 @@ final private void jj_rescan_token() { case 1796: jj_3_1797(); break; case 1797: jj_3_1798(); break; case 1798: jj_3_1799(); break; + case 1799: jj_3_1800(); break; + case 1800: jj_3_1801(); break; } } p = p.next; diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java index 9d8ebf46ed662..f2c224e610798 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java @@ -729,97 +729,99 @@ public interface IgniteSqlParserImplConstants { int AFFINITY_KEY = 723; int ATOMICITY = 724; int WRITE_SYNCHRONIZATION_MODE = 725; - int CACHE_GROUP = 726; - int CACHE_NAME = 727; - int DATA_REGION = 728; - int VALUE_TYPE = 729; - int ENCRYPTED = 730; - int INDEX = 731; - int PARALLEL = 732; - int INLINE_SIZE = 733; - int LOGGING = 734; - int NOLOGGING = 735; - int PASSWORD = 736; - int KILL = 737; - int SCAN = 738; - int CONTINUOUS = 739; - int SERVICE = 740; - int COMPUTE = 741; - int ASYNC = 742; - int QUERY = 743; - int STATISTICS = 744; - int REFRESH = 745; - int ANALYZE = 746; - int MAX_CHANGED_PARTITION_ROWS_PERCENT = 747; - int TOTAL = 748; - int UNSIGNED_INTEGER_LITERAL = 749; - int APPROX_NUMERIC_LITERAL = 750; - int DECIMAL_NUMERIC_LITERAL = 751; - int EXPONENT = 752; - int HEXDIGIT = 753; - int WHITESPACE = 754; - int BINARY_STRING_LITERAL = 755; - int QUOTED_STRING = 756; - int PREFIXED_STRING_LITERAL = 757; - int UNICODE_STRING_LITERAL = 758; - int C_STYLE_ESCAPED_STRING_LITERAL = 759; - int CHARSETNAME = 760; - int BIG_QUERY_DOUBLE_QUOTED_STRING = 761; - int BIG_QUERY_QUOTED_STRING = 762; - int UNICODE_QUOTED_ESCAPE_CHAR = 763; - int LPAREN = 764; - int RPAREN = 765; - int LBRACE_D = 766; - int LBRACE_T = 767; - int LBRACE_TS = 768; - int LBRACE_FN = 769; - int LBRACE = 770; - int RBRACE = 771; - int LBRACKET = 772; - int RBRACKET = 773; - int SEMICOLON = 774; - int DOT = 775; - int COMMA = 776; - int EQ = 777; - int GT = 778; - int LT = 779; - int HOOK = 780; - int COLON = 781; - int LE = 782; - int GE = 783; - int NE = 784; - int NE2 = 785; - int PLUS = 786; - int MINUS = 787; - int LAMBDA = 788; - int STAR = 789; - int SLASH = 790; - int PERCENT_REMAINDER = 791; - int CONCAT = 792; - int NAMED_ARGUMENT_ASSIGNMENT = 793; - int DOUBLE_PERIOD = 794; - int QUOTE = 795; - int DOUBLE_QUOTE = 796; - int VERTICAL_BAR = 797; - int CARET = 798; - int DOLLAR = 799; - int INFIX_CAST = 800; - int HINT_BEG = 806; - int COMMENT_END = 807; - int SINGLE_LINE_COMMENT = 810; - int FORMAL_COMMENT = 811; - int MULTI_LINE_COMMENT = 812; - int BRACKET_QUOTED_IDENTIFIER = 814; - int QUOTED_IDENTIFIER = 815; - int BACK_QUOTED_IDENTIFIER = 816; - int BIG_QUERY_BACK_QUOTED_IDENTIFIER = 817; - int HYPHENATED_IDENTIFIER = 818; - int IDENTIFIER = 819; - int COLLATION_ID = 820; - int UNICODE_QUOTED_IDENTIFIER = 821; - int LETTER = 822; - int DIGIT = 823; - int BEL = 824; + int WRAP_KEY = 726; + int WRAP_VALUE = 727; + int CACHE_GROUP = 728; + int CACHE_NAME = 729; + int DATA_REGION = 730; + int VALUE_TYPE = 731; + int ENCRYPTED = 732; + int INDEX = 733; + int PARALLEL = 734; + int INLINE_SIZE = 735; + int LOGGING = 736; + int NOLOGGING = 737; + int PASSWORD = 738; + int KILL = 739; + int SCAN = 740; + int CONTINUOUS = 741; + int SERVICE = 742; + int COMPUTE = 743; + int ASYNC = 744; + int QUERY = 745; + int STATISTICS = 746; + int REFRESH = 747; + int ANALYZE = 748; + int MAX_CHANGED_PARTITION_ROWS_PERCENT = 749; + int TOTAL = 750; + int UNSIGNED_INTEGER_LITERAL = 751; + int APPROX_NUMERIC_LITERAL = 752; + int DECIMAL_NUMERIC_LITERAL = 753; + int EXPONENT = 754; + int HEXDIGIT = 755; + int WHITESPACE = 756; + int BINARY_STRING_LITERAL = 757; + int QUOTED_STRING = 758; + int PREFIXED_STRING_LITERAL = 759; + int UNICODE_STRING_LITERAL = 760; + int C_STYLE_ESCAPED_STRING_LITERAL = 761; + int CHARSETNAME = 762; + int BIG_QUERY_DOUBLE_QUOTED_STRING = 763; + int BIG_QUERY_QUOTED_STRING = 764; + int UNICODE_QUOTED_ESCAPE_CHAR = 765; + int LPAREN = 766; + int RPAREN = 767; + int LBRACE_D = 768; + int LBRACE_T = 769; + int LBRACE_TS = 770; + int LBRACE_FN = 771; + int LBRACE = 772; + int RBRACE = 773; + int LBRACKET = 774; + int RBRACKET = 775; + int SEMICOLON = 776; + int DOT = 777; + int COMMA = 778; + int EQ = 779; + int GT = 780; + int LT = 781; + int HOOK = 782; + int COLON = 783; + int LE = 784; + int GE = 785; + int NE = 786; + int NE2 = 787; + int PLUS = 788; + int MINUS = 789; + int LAMBDA = 790; + int STAR = 791; + int SLASH = 792; + int PERCENT_REMAINDER = 793; + int CONCAT = 794; + int NAMED_ARGUMENT_ASSIGNMENT = 795; + int DOUBLE_PERIOD = 796; + int QUOTE = 797; + int DOUBLE_QUOTE = 798; + int VERTICAL_BAR = 799; + int CARET = 800; + int DOLLAR = 801; + int INFIX_CAST = 802; + int HINT_BEG = 808; + int COMMENT_END = 809; + int SINGLE_LINE_COMMENT = 812; + int FORMAL_COMMENT = 813; + int MULTI_LINE_COMMENT = 814; + int BRACKET_QUOTED_IDENTIFIER = 816; + int QUOTED_IDENTIFIER = 817; + int BACK_QUOTED_IDENTIFIER = 818; + int BIG_QUERY_BACK_QUOTED_IDENTIFIER = 819; + int HYPHENATED_IDENTIFIER = 820; + int IDENTIFIER = 821; + int COLLATION_ID = 822; + int UNICODE_QUOTED_IDENTIFIER = 823; + int LETTER = 824; + int DIGIT = 825; + int BEL = 826; int DEFAULT = 0; int DQID = 1; @@ -1556,6 +1558,8 @@ public interface IgniteSqlParserImplConstants { "\"AFFINITY_KEY\"", "\"ATOMICITY\"", "\"WRITE_SYNCHRONIZATION_MODE\"", + "\"WRAP_KEY\"", + "\"WRAP_VALUE\"", "\"CACHE_GROUP\"", "\"CACHE_NAME\"", "\"DATA_REGION\"", @@ -1638,12 +1642,12 @@ public interface IgniteSqlParserImplConstants { "\"\\f\"", "\"/*+\"", "\"*/\"", - "", + "", "\"/*\"", "", "", "", - "", + "", "", "", "", diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java index 266d27e355387..b81f9f3d784c6 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java @@ -144,205 +144,205 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, switch (pos) { case 0: - if ((active12 & 0x4L) != 0L) - return 94; - if ((active11 & 0x1000L) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) { - jjmatchedKind = 819; - return 1; + jjmatchedKind = 821; + return 16; } - if ((active12 & 0x8000000L) != 0L) + if ((active12 & 0x10L) != 0L) + return 94; + if ((active12 & 0x20000000L) != 0L) return 63; - if ((active12 & 0x24000400000L) != 0L) - return 92; - if ((active12 & 0x10000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) + { + jjmatchedKind = 821; return 95; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x80000000L) != 0L) + } + if ((active12 & 0x90001000000L) != 0L) + return 92; + if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 819; - return 96; + jjmatchedKind = 821; + return 1; } - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x13957b27efffL) != 0L) + if ((active12 & 0x40000000L) != 0L) + return 96; + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ece7efffL) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 97; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x80000000L) != 0L) - return 97; if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 66; } - if ((active12 & 0x4000080L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + return 97; + if ((active12 & 0x10000200L) != 0L) return 98; - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x4000000L) != 0L) - { - jjmatchedKind = 819; - return 16; - } - if ((active12 & 0x180000L) != 0L) + if ((active12 & 0x600000L) != 0L) return 23; return -1; case 1: - if ((active12 & 0x24000000000L) != 0L) - return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) - return 97; - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0xfbf57eeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 1; } return 97; } + if ((active12 & 0x90000000000L) != 0L) + return 90; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + return 97; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x15fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 2; } return 97; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) return 97; return -1; case 3: - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x1ff9fefe0c38L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + return 97; + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 3; } return 97; } - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) - return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0xf39f5de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 4; } return 97; } + if ((active2 & 0x8000000000000000L) != 0L) + return 99; return -1; case 5: - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 97; - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0xf39f7ee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 5; } return 97; } + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) + return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 6: - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x909b7fa0014L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + return 97; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 6; } return 97; } - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) + return -1; + case 7: + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - return -1; - case 7: - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x908a7f80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 7; } return 97; } - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x110020004L) != 0L) - return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; return -1; case 8: - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) - return 97; - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x90823e80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 8; } return 97; } + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + return 97; return -1; case 9: - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x10802800000L) != 0L) - return 97; - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 9; } return 97; } + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + return 97; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) return 97; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 10; } return 97; } return -1; case 11: - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) - return 97; - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 11; } return 97; } + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + return 97; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 12; return 97; } @@ -350,31 +350,31 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 13: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) + return 97; + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 13; return 97; } - if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) - return 97; return -1; case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 97; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 14; return 97; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 15; } return 97; @@ -383,11 +383,11 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 16; } return 97; @@ -396,62 +396,62 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) + return 97; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 17; return 97; } - if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 97; return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 18; } return 97; } return -1; case 19: - if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 19; return 97; } + if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) + return 97; return -1; case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 20; return 97; } return -1; case 21: - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 21; return 97; } + if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + return 97; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 22; return 97; } @@ -459,39 +459,39 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 23: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) + return 97; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 23; return 97; } - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 97; return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 24; return 97; } return -1; case 25: - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 25; return 97; } + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + return 97; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 26; return 97; } @@ -499,9 +499,9 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 27; return 97; } @@ -509,17 +509,17 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 28; return 97; } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 29; return 97; } @@ -527,27 +527,27 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 97; - if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 30; return 97; } return -1; case 31: - if ((active2 & 0x2L) != 0L) - return 97; - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 31; return 97; } + if ((active2 & 0x2L) != 0L) + return 97; return -1; case 32: - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 32; return 97; } @@ -580,74 +580,74 @@ private final int jjMoveStringLiteralDfa0_1() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 34: - return jjStartNfaWithStates_1(0, 796, 95); + return jjStartNfaWithStates_1(0, 798, 96); case 36: - return jjStartNfaWithStates_1(0, 799, 97); + return jjStartNfaWithStates_1(0, 801, 97); case 37: - return jjStopAtPos(0, 791); + return jjStopAtPos(0, 793); case 39: - return jjStartNfaWithStates_1(0, 795, 63); + return jjStartNfaWithStates_1(0, 797, 63); case 40: - return jjStopAtPos(0, 764); + return jjStopAtPos(0, 766); case 41: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 767); case 42: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); case 43: - return jjStopAtPos(0, 786); + return jjStopAtPos(0, 788); case 44: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 45: - jjmatchedKind = 787; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); + jjmatchedKind = 789; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); case 46: - jjmatchedKind = 775; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 777; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 47: - jjmatchedKind = 790; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x24000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); case 58: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 59: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 60: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); case 61: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 62: - jjmatchedKind = 778; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); + jjmatchedKind = 780; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); case 63: - return jjStopAtPos(0, 780); + return jjStopAtPos(0, 782); case 91: - return jjStopAtPos(0, 772); + return jjStopAtPos(0, 774); case 93: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 94: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 800); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_1(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_1(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_1(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -660,51 +660,51 @@ private final int jjMoveStringLiteralDfa0_1() return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x200fffL, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -715,12 +715,12 @@ private final int jjMoveStringLiteralDfa0_1() case 122: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); case 123: - return jjStartNfaWithStates_1(0, 770, 94); + return jjStartNfaWithStates_1(0, 772, 94); case 124: - jjmatchedKind = 797; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); + jjmatchedKind = 799; + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); case 125: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 773); case 126: return jjStopAtPos(0, 2); default : @@ -737,55 +737,55 @@ private final int jjMoveStringLiteralDfa1_1(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x20000000000L) != 0L) + if ((active12 & 0x80000000000L) != 0L) { - jjmatchedKind = 809; + jjmatchedKind = 811; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x4000000000L); + return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); case 46: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 47: - if ((active12 & 0x8000000000L) != 0L) - return jjStopAtPos(1, 807); + if ((active12 & 0x20000000000L) != 0L) + return jjStopAtPos(1, 809); break; case 58: - if ((active12 & 0x100000000L) != 0L) - return jjStopAtPos(1, 800); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 61: - if ((active12 & 0x4000L) != 0L) - return jjStopAtPos(1, 782); - else if ((active12 & 0x8000L) != 0L) - return jjStopAtPos(1, 783); + if ((active12 & 0x10000L) != 0L) + return jjStopAtPos(1, 784); else if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); + else if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; case 62: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x100000L) != 0L) - return jjStopAtPos(1, 788); - else if ((active12 & 0x2000000L) != 0L) - return jjStopAtPos(1, 793); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x400000L) != 0L) + return jjStopAtPos(1, 790); + else if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 65: case 97: - return jjMoveStringLiteralDfa2_1(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_1(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_1(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_1(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -804,7 +804,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_1(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -828,7 +828,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -846,7 +846,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_1(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -860,7 +860,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -873,7 +873,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -881,10 +881,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_1(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -897,8 +897,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(1, 51, 97); return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x1000000L) != 0L) - return jjStopAtPos(1, 792); + if ((active12 & 0x4000000L) != 0L) + return jjStopAtPos(1, 794); break; default : break; @@ -917,14 +917,14 @@ private final int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x4000000000L) != 0L) - return jjStopAtPos(2, 806); + if ((active12 & 0x10000000000L) != 0L) + return jjStopAtPos(2, 808); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_1(2, 8, 97); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x50400006400L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -937,7 +937,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -958,14 +958,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_1(2, 385, 97); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_1(2, 406, 97); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_1(2, 20, 97); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_1(2, 388, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -973,14 +973,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_1(2, 37, 97); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_1(2, 301, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1009,12 +1009,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_1(2, 716, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_1(2, 616, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -1022,7 +1022,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_1(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -1053,7 +1053,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -1061,7 +1061,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -1087,7 +1087,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -1113,7 +1113,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -1130,7 +1130,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1161,7 +1161,7 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, return jjStartNfaWithStates_1(3, 686, 97); break; case 95: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -1171,7 +1171,7 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_1(3, 285, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -1255,7 +1255,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_1(3, 664, 97); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_1(3, 719, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -1265,7 +1265,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -1279,10 +1279,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); case 73: case 105: - return jjMoveStringLiteralDfa4_1(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); + return jjMoveStringLiteralDfa4_1(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -1318,9 +1318,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_1(3, 455, 97); - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(3, 737, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(3, 739, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -1351,23 +1351,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(3, 738, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(3, 740, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_1(3, 240, 97); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_1(3, 279, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_1(3, 181, 97); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(3, 537, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x2000020400L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); case 81: case 113: return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -1403,7 +1403,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); + return jjMoveStringLiteralDfa4_1(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -1414,7 +1414,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_1(3, 531, 97); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_1(3, 628, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -1434,15 +1434,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_1(3, 419, 97); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_1(3, 598, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_1(3, 442, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -1480,7 +1480,7 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, return jjStartNfaWithStates_1(4, 687, 97); break; case 95: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x1000000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); case 65: case 97: return jjMoveStringLiteralDfa5_1(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -1491,9 +1491,9 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(4, 742, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); + if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(4, 744, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -1554,7 +1554,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); + return jjMoveStringLiteralDfa5_1(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -1564,7 +1564,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_1(4, 685, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -1586,7 +1586,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_1(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); + return jjMoveStringLiteralDfa5_1(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -1607,9 +1607,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(4, 748, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(4, 750, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); case 77: case 109: return jjMoveStringLiteralDfa5_1(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -1626,7 +1626,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_1(4, 65, 97); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_1(4, 670, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); + return jjMoveStringLiteralDfa5_1(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); case 79: case 111: return jjMoveStringLiteralDfa5_1(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -1726,7 +1726,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -1734,11 +1734,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_1(4, 14, 97); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); case 88: case 120: - if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(4, 731, 97); + if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(4, 733, 97); return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -1753,9 +1753,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_1(4, 188, 97); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_1(4, 198, 97); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(4, 743, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(4, 745, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); case 90: case 122: return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -1776,7 +1776,7 @@ private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_1(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_1(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -1799,7 +1799,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_1(5, 447, 97); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(5, 602, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -1858,7 +1858,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_1(5, 671, 97); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_1(5, 676, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); + return jjMoveStringLiteralDfa6_1(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -1868,17 +1868,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_1(5, 247, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_1(5, 310, 97); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_1(5, 514, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_1(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + case 75: + case 107: + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -1887,7 +1890,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_1(5, 416, 97); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_1(5, 513, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -1923,15 +1926,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_1(5, 711, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_1(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(5, 490, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); case 81: case 113: return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -1955,7 +1958,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -1974,7 +1977,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_1(5, 398, 97); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(5, 691, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -2013,13 +2016,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_1(5, 675, 97); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_1(5, 678, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_1(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x4L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -2043,7 +2046,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); default : break; } @@ -2065,10 +2068,10 @@ private final int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, return jjStartNfaWithStates_1(6, 464, 97); break; case 95: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_1(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa7_1(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); case 66: case 98: return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -2132,13 +2135,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(6, 665, 97); - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(6, 740, 97); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(6, 741, 97); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(6, 746, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x11000004L); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(6, 742, 97); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(6, 743, 97); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(6, 748, 97); + return jjMoveStringLiteralDfa7_1(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); case 70: case 102: return jjMoveStringLiteralDfa7_1(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -2163,19 +2166,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(6, 499, 97); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_1(6, 698, 97); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(6, 734, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(6, 736, 97); + return jjMoveStringLiteralDfa7_1(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_1(6, 50, 97); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(6, 745, 97); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(6, 747, 97); return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_1(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); + return jjMoveStringLiteralDfa7_1(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -2232,7 +2235,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); case 79: case 111: return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -2269,7 +2272,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_1(6, 696, 97); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_1(6, 714, 97); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -2329,10 +2332,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_1(6, 697, 97); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_1(6, 712, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); + return jjMoveStringLiteralDfa7_1(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_1(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa7_1(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -2374,7 +2377,7 @@ private final int jjMoveStringLiteralDfa7_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_1(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_1(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_1(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -2398,8 +2401,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_1(7, 57, 97); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_1(7, 156, 97); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(7, 736, 97); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(7, 738, 97); return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -2451,7 +2454,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_1(7, 660, 97); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_1(7, 721, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -2467,7 +2470,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_1(7, 395, 97); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 642, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -2475,7 +2478,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_1(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -2494,9 +2497,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(7, 359, 97); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_1(7, 581, 97); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(7, 732, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(7, 734, 97); + return jjMoveStringLiteralDfa8_1(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); case 77: case 109: return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -2509,10 +2512,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_1(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -2524,7 +2527,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_1(7, 554, 97); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 706, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + return jjMoveStringLiteralDfa8_1(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -2546,7 +2549,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 450, 97); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(7, 615, 97); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -2592,7 +2595,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_1(7, 518, 97); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(7, 627, 97); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(7, 726, 97); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); case 90: case 122: return jjMoveStringLiteralDfa8_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -2626,7 +2631,7 @@ private final int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(8, 618, 97); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -2635,8 +2640,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_1(8, 235, 97); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(8, 666, 97); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(8, 730, 97); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(8, 732, 97); return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -2704,9 +2709,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(8, 735, 97); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(8, 737, 97); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -2714,7 +2719,7 @@ else if ((active11 & 0x80000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(8, 42, 97); - return jjMoveStringLiteralDfa9_1(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); + return jjMoveStringLiteralDfa9_1(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -2730,7 +2735,7 @@ else if ((active11 & 0x80000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -2756,7 +2761,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_1(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -2766,7 +2771,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); case 81: case 113: return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -2818,7 +2823,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); case 86: case 118: return jjMoveStringLiteralDfa9_1(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -2919,7 +2924,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_1(9, 727, 97); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(9, 729, 97); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(9, 731, 97); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -2960,7 +2967,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -2991,10 +2998,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_1(9, 458, 97); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_1(9, 648, 97); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(9, 739, 97); - else if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(9, 744, 97); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(9, 741, 97); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(9, 746, 97); return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -3014,7 +3021,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); case 86: case 118: return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -3041,7 +3048,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); default : break; } @@ -3078,7 +3085,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_1(10, 341, 97); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_1(10, 667, 97); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -3099,8 +3106,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_1(10, 620, 97); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_1(10, 624, 97); - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(10, 733, 97); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(10, 735, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -3143,8 +3150,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_1(10, 651, 97); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(10, 728, 97); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(10, 730, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -3153,8 +3160,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_1(10, 604, 97); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(10, 726, 97); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(10, 728, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -3230,7 +3237,7 @@ private final int jjMoveStringLiteralDfa11_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -3432,7 +3439,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_1(12, 584, 97); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -3478,7 +3485,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_1(13, 494, 97); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_1(13, 656, 97); - return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3646,7 +3653,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_1(14, 575, 97); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_1(14, 592, 97); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -3748,7 +3755,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -3801,7 +3808,7 @@ private final int jjMoveStringLiteralDfa16_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -3901,7 +3908,7 @@ private final int jjMoveStringLiteralDfa17_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -3953,7 +3960,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -4014,7 +4021,7 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4081,7 +4088,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4113,7 +4120,7 @@ private final int jjMoveStringLiteralDfa21_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -4207,7 +4214,7 @@ private final int jjMoveStringLiteralDfa22_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -4259,7 +4266,7 @@ private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -4326,7 +4333,7 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -4380,7 +4387,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -4401,7 +4408,7 @@ private final int jjMoveStringLiteralDfa26_1(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -4449,7 +4456,7 @@ private final int jjMoveStringLiteralDfa27_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_1(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -4476,7 +4483,7 @@ private final int jjMoveStringLiteralDfa28_1(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_1(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -4501,7 +4508,7 @@ private final int jjMoveStringLiteralDfa29_1(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_1(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -4526,7 +4533,7 @@ private final int jjMoveStringLiteralDfa30_1(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0L, active11, 0x200000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -4552,7 +4559,7 @@ private final int jjMoveStringLiteralDfa31_1(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_1(31, 129, 97); - return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x200000000000L); default : break; } @@ -4571,7 +4578,7 @@ private final int jjMoveStringLiteralDfa32_1(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_1(active11, 0x80000000000L); + return jjMoveStringLiteralDfa33_1(active11, 0x200000000000L); default : break; } @@ -4590,8 +4597,8 @@ private final int jjMoveStringLiteralDfa33_1(long old11, long active11) { case 84: case 116: - if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(33, 747, 97); + if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(33, 749, 97); break; default : break; @@ -4685,8 +4692,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 824) - kind = 824; + if (kind > 826) + kind = 826; } else if (curChar == 34) jjCheckNAddTwoStates(30, 32); @@ -4694,14 +4701,14 @@ else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -4714,8 +4721,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -4728,14 +4735,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 96: + case 95: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(37, 38); else if (curChar == 39) @@ -4744,14 +4751,14 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) jjCheckNAdd(39); break; - case 95: + case 96: if ((0xfffffffbffffdbffL & l) != 0L) jjCheckNAddStates(22, 24); else if (curChar == 34) @@ -4768,8 +4775,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -4778,8 +4785,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -4794,8 +4801,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -4816,8 +4823,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 756) - kind = 756; + if (kind > 758) + kind = 758; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -4827,8 +4834,8 @@ else if (curChar == 39) case 98: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -4853,8 +4860,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 755) - kind = 755; + if (curChar == 39 && kind > 757) + kind = 757; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -4878,8 +4885,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -4897,30 +4904,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 761) + kind = 761; break; case 23: if (curChar != 45) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 810) - kind = 810; + if ((0x2400L & l) != 0L && kind > 812) + kind = 812; break; case 26: - if (curChar == 10 && kind > 810) - kind = 810; + if (curChar == 10 && kind > 812) + kind = 812; break; case 27: if (curChar == 13) @@ -4947,21 +4954,21 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 34 && kind > 815) - kind = 815; + if (curChar == 34 && kind > 817) + kind = 817; break; case 34: if (curChar != 36) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -4979,8 +4986,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -4990,26 +4997,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 824) - kind = 824; + if (curChar == 7 && kind > 826) + kind = 826; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAdd(44); break; case 45: @@ -5023,8 +5030,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 750) - kind = 750; + if (kind > 752) + kind = 752; jjCheckNAdd(48); break; case 49: @@ -5038,22 +5045,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(35, 37); break; case 54: @@ -5071,8 +5078,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(57); break; case 58: @@ -5092,12 +5099,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 756) - kind = 756; + if (curChar == 39 && kind > 758) + kind = 758; break; case 64: - if (curChar == 39 && kind > 763) - kind = 763; + if (curChar == 39 && kind > 765) + kind = 765; break; case 67: case 69: @@ -5113,8 +5120,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 760) + kind = 760; break; case 72: if (curChar == 38) @@ -5137,8 +5144,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 821) - kind = 821; + if (curChar == 34 && kind > 823) + kind = 823; break; case 79: if (curChar == 32) @@ -5165,14 +5172,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 808) - kind = 808; + if ((0xffff7fffffffffffL & l) != 0L && kind > 810) + kind = 810; break; case 93: if (curChar != 47) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; default : break; @@ -5193,8 +5200,8 @@ else if (curChar == 123) jjAddStates(48, 55); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -5215,8 +5222,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -5227,24 +5234,24 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; - case 96: + case 95: if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddTwoStates(37, 38); if ((0x7fffffe87fffffeL & l) != 0L) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; - case 95: + case 96: case 30: jjCheckNAddStates(22, 24); break; @@ -5255,8 +5262,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -5267,8 +5274,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -5279,13 +5286,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 766) - kind = 766; + if (kind > 768) + kind = 768; } if ((0x10000000100000L & l) != 0L) { - if (kind > 767) - kind = 767; + if (kind > 769) + kind = 769; } break; case 63: @@ -5336,22 +5343,22 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(25, 27); break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -5361,15 +5368,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -5394,32 +5401,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 766) - kind = 766; + if ((0x1000000010L & l) != 0L && kind > 768) + kind = 768; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 767) - kind = 767; + if ((0x10000000100000L & l) != 0L && kind > 769) + kind = 769; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 768) - kind = 768; + if ((0x8000000080000L & l) != 0L && kind > 770) + kind = 770; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 769) - kind = 769; + if ((0x400000004000L & l) != 0L && kind > 771) + kind = 771; break; case 91: - if (kind > 808) - kind = 808; + if (kind > 810) + kind = 810; break; default : break; } @@ -5439,8 +5446,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5449,8 +5456,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5461,8 +5468,8 @@ else if ((0x1000000010L & l) != 0L) case 97: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5470,11 +5477,11 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 96: + case 95: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5482,7 +5489,7 @@ else if ((0x1000000010L & l) != 0L) if (jjCanMove_1(hiByte, i1, i2, l1, l2)) jjCheckNAddTwoStates(37, 38); break; - case 95: + case 96: case 30: if (jjCanMove_0(hiByte, i1, i2, l1, l2)) jjCheckNAddStates(22, 24); @@ -5490,8 +5497,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5502,8 +5509,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -5538,22 +5545,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -5563,15 +5570,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -5587,8 +5594,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 808) - kind = 808; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) + kind = 810; break; default : break; } @@ -5612,205 +5619,205 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, switch (pos) { case 0: - if ((active12 & 0x4L) != 0L) - return 94; - if ((active11 & 0x1000L) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) { - jjmatchedKind = 819; - return 1; + jjmatchedKind = 821; + return 16; } - if ((active12 & 0x8000000L) != 0L) + if ((active12 & 0x10L) != 0L) + return 94; + if ((active12 & 0x20000000L) != 0L) return 63; - if ((active12 & 0x24000400000L) != 0L) - return 92; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x80000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 95; } - if ((active12 & 0x10L) != 0L) + if ((active12 & 0x90001000000L) != 0L) + return 92; + if ((active11 & 0x1000L) != 0L) + { + jjmatchedKind = 821; + return 1; + } + if ((active12 & 0x40L) != 0L) return 96; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x13957b27efffL) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ece7efffL) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 97; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x80000000L) != 0L) - return 97; if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 66; } - if ((active12 & 0x4000080L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + return 97; + if ((active12 & 0x10000200L) != 0L) return 98; - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x4000000L) != 0L) - { - jjmatchedKind = 819; - return 16; - } - if ((active12 & 0x180000L) != 0L) + if ((active12 & 0x600000L) != 0L) return 23; return -1; case 1: - if ((active12 & 0x24000000000L) != 0L) - return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) - return 97; - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0xfbf57eeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 1; } return 97; } + if ((active12 & 0x90000000000L) != 0L) + return 90; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + return 97; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x15fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 2; } return 97; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) return 97; return -1; case 3: - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x1ff9fefe0c38L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + return 97; + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 3; } return 97; } - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) - return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0xf39f5de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 4; } return 97; } + if ((active2 & 0x8000000000000000L) != 0L) + return 99; return -1; case 5: - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 97; - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0xf39f7ee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 5; } return 97; } + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) + return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; return -1; case 6: - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x909b7fa0014L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + return 97; + if ((active2 & 0x8000000000000000L) != 0L) + return 99; + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 6; } return 97; } - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) + return -1; + case 7: + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - return -1; - case 7: - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x908a7f80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 7; } return 97; } - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x110020004L) != 0L) - return 97; - if ((active2 & 0x8000000000000000L) != 0L) - return 99; return -1; case 8: - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) - return 97; - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x90823e80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 8; } return 97; } + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + return 97; return -1; case 9: - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x10802800000L) != 0L) - return 97; - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 9; } return 97; } + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + return 97; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) return 97; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 10; } return 97; } return -1; case 11: - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) - return 97; - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 11; } return 97; } + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + return 97; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 12; return 97; } @@ -5818,31 +5825,31 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 13: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) + return 97; + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 13; return 97; } - if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) - return 97; return -1; case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 97; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 14; return 97; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 15; } return 97; @@ -5851,11 +5858,11 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 16; } return 97; @@ -5864,62 +5871,62 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) + return 97; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 17; return 97; } - if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 97; return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 18; } return 97; } return -1; case 19: - if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 19; return 97; } + if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) + return 97; return -1; case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 20; return 97; } return -1; case 21: - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 21; return 97; } + if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + return 97; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 22; return 97; } @@ -5927,39 +5934,39 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 23: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) + return 97; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 23; return 97; } - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 97; return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 24; return 97; } return -1; case 25: - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 25; return 97; } + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + return 97; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 26; return 97; } @@ -5967,9 +5974,9 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 27; return 97; } @@ -5977,17 +5984,17 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 28; return 97; } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 29; return 97; } @@ -5995,27 +6002,27 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 97; - if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 30; return 97; } return -1; case 31: - if ((active2 & 0x2L) != 0L) - return 97; - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 31; return 97; } + if ((active2 & 0x2L) != 0L) + return 97; return -1; case 32: - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 32; return 97; } @@ -6042,74 +6049,74 @@ private final int jjMoveStringLiteralDfa0_0() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 34: - return jjStopAtPos(0, 796); + return jjStopAtPos(0, 798); case 36: - return jjStartNfaWithStates_0(0, 799, 97); + return jjStartNfaWithStates_0(0, 801, 97); case 37: - return jjStopAtPos(0, 791); + return jjStopAtPos(0, 793); case 39: - return jjStartNfaWithStates_0(0, 795, 63); + return jjStartNfaWithStates_0(0, 797, 63); case 40: - return jjStopAtPos(0, 764); + return jjStopAtPos(0, 766); case 41: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 767); case 42: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); case 43: - return jjStopAtPos(0, 786); + return jjStopAtPos(0, 788); case 44: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 45: - jjmatchedKind = 787; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); + jjmatchedKind = 789; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); case 46: - jjmatchedKind = 775; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 777; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 47: - jjmatchedKind = 790; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x24000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); case 58: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 59: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 60: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); case 61: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 62: - jjmatchedKind = 778; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); + jjmatchedKind = 780; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); case 63: - return jjStopAtPos(0, 780); + return jjStopAtPos(0, 782); case 91: - return jjStartNfaWithStates_0(0, 772, 96); + return jjStartNfaWithStates_0(0, 774, 96); case 93: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 94: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 800); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_0(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_0(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_0(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -6122,51 +6129,51 @@ private final int jjMoveStringLiteralDfa0_0() return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x200fffL, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -6177,12 +6184,12 @@ private final int jjMoveStringLiteralDfa0_0() case 122: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); case 123: - return jjStartNfaWithStates_0(0, 770, 94); + return jjStartNfaWithStates_0(0, 772, 94); case 124: - jjmatchedKind = 797; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); + jjmatchedKind = 799; + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); case 125: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 773); case 126: return jjStopAtPos(0, 2); default : @@ -6199,55 +6206,55 @@ private final int jjMoveStringLiteralDfa1_0(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x20000000000L) != 0L) + if ((active12 & 0x80000000000L) != 0L) { - jjmatchedKind = 809; + jjmatchedKind = 811; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x4000000000L); + return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); case 46: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 47: - if ((active12 & 0x8000000000L) != 0L) - return jjStopAtPos(1, 807); + if ((active12 & 0x20000000000L) != 0L) + return jjStopAtPos(1, 809); break; case 58: - if ((active12 & 0x100000000L) != 0L) - return jjStopAtPos(1, 800); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 61: - if ((active12 & 0x4000L) != 0L) - return jjStopAtPos(1, 782); - else if ((active12 & 0x8000L) != 0L) - return jjStopAtPos(1, 783); + if ((active12 & 0x10000L) != 0L) + return jjStopAtPos(1, 784); else if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); + else if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; case 62: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x100000L) != 0L) - return jjStopAtPos(1, 788); - else if ((active12 & 0x2000000L) != 0L) - return jjStopAtPos(1, 793); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x400000L) != 0L) + return jjStopAtPos(1, 790); + else if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 65: case 97: - return jjMoveStringLiteralDfa2_0(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_0(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_0(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_0(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -6266,7 +6273,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_0(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6290,7 +6297,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -6308,7 +6315,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_0(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -6322,7 +6329,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -6335,7 +6342,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -6343,10 +6350,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_0(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6359,8 +6366,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(1, 51, 97); return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x1000000L) != 0L) - return jjStopAtPos(1, 792); + if ((active12 & 0x4000000L) != 0L) + return jjStopAtPos(1, 794); break; default : break; @@ -6379,14 +6386,14 @@ private final int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x4000000000L) != 0L) - return jjStopAtPos(2, 806); + if ((active12 & 0x10000000000L) != 0L) + return jjStopAtPos(2, 808); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_0(2, 8, 97); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x50400006400L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -6399,7 +6406,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -6420,14 +6427,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_0(2, 385, 97); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_0(2, 406, 97); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_0(2, 20, 97); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_0(2, 388, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -6435,14 +6442,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_0(2, 37, 97); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_0(2, 301, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6471,12 +6478,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_0(2, 716, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_0(2, 616, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -6484,7 +6491,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_0(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -6515,7 +6522,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -6523,7 +6530,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -6549,7 +6556,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -6575,7 +6582,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -6592,7 +6599,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6623,7 +6630,7 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, return jjStartNfaWithStates_0(3, 686, 97); break; case 95: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -6633,7 +6640,7 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_0(3, 285, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -6717,7 +6724,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_0(3, 664, 97); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_0(3, 719, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -6727,7 +6734,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -6741,10 +6748,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); case 73: case 105: - return jjMoveStringLiteralDfa4_0(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); + return jjMoveStringLiteralDfa4_0(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -6780,9 +6787,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_0(3, 455, 97); - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(3, 737, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(3, 739, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -6813,23 +6820,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(3, 738, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(3, 740, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_0(3, 240, 97); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_0(3, 279, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_0(3, 181, 97); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(3, 537, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x2000020400L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); case 81: case 113: return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -6865,7 +6872,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); + return jjMoveStringLiteralDfa4_0(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -6876,7 +6883,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_0(3, 531, 97); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_0(3, 628, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -6896,15 +6903,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_0(3, 419, 97); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_0(3, 598, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_0(3, 442, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -6942,7 +6949,7 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, return jjStartNfaWithStates_0(4, 687, 97); break; case 95: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x1000000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); case 65: case 97: return jjMoveStringLiteralDfa5_0(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -6953,9 +6960,9 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(4, 742, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); + if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(4, 744, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -7016,7 +7023,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); + return jjMoveStringLiteralDfa5_0(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -7026,7 +7033,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_0(4, 685, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -7048,7 +7055,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_0(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); + return jjMoveStringLiteralDfa5_0(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -7069,9 +7076,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(4, 748, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(4, 750, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); case 77: case 109: return jjMoveStringLiteralDfa5_0(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -7088,7 +7095,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_0(4, 65, 97); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_0(4, 670, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); + return jjMoveStringLiteralDfa5_0(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); case 79: case 111: return jjMoveStringLiteralDfa5_0(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -7188,7 +7195,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -7196,11 +7203,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_0(4, 14, 97); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); case 88: case 120: - if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(4, 731, 97); + if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(4, 733, 97); return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -7215,9 +7222,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_0(4, 188, 97); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_0(4, 198, 97); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(4, 743, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(4, 745, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); case 90: case 122: return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -7238,7 +7245,7 @@ private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_0(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_0(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -7261,7 +7268,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_0(5, 447, 97); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(5, 602, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -7320,7 +7327,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_0(5, 671, 97); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_0(5, 676, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); + return jjMoveStringLiteralDfa6_0(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -7330,17 +7337,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_0(5, 247, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_0(5, 310, 97); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_0(5, 514, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_0(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + case 75: + case 107: + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -7349,7 +7359,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_0(5, 416, 97); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_0(5, 513, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -7385,15 +7395,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_0(5, 711, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_0(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(5, 490, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); case 81: case 113: return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7417,7 +7427,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -7436,7 +7446,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_0(5, 398, 97); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(5, 691, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -7475,13 +7485,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_0(5, 675, 97); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_0(5, 678, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_0(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x4L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -7505,7 +7515,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); default : break; } @@ -7527,10 +7537,10 @@ private final int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, return jjStartNfaWithStates_0(6, 464, 97); break; case 95: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_0(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa7_0(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); case 66: case 98: return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -7594,13 +7604,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(6, 665, 97); - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(6, 740, 97); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(6, 741, 97); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(6, 746, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x11000004L); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(6, 742, 97); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(6, 743, 97); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(6, 748, 97); + return jjMoveStringLiteralDfa7_0(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); case 70: case 102: return jjMoveStringLiteralDfa7_0(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7625,19 +7635,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(6, 499, 97); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_0(6, 698, 97); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(6, 734, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(6, 736, 97); + return jjMoveStringLiteralDfa7_0(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_0(6, 50, 97); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(6, 745, 97); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(6, 747, 97); return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_0(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); + return jjMoveStringLiteralDfa7_0(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -7694,7 +7704,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); case 79: case 111: return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -7731,7 +7741,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_0(6, 696, 97); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_0(6, 714, 97); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -7791,10 +7801,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_0(6, 697, 97); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_0(6, 712, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); + return jjMoveStringLiteralDfa7_0(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_0(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa7_0(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -7836,7 +7846,7 @@ private final int jjMoveStringLiteralDfa7_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_0(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_0(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_0(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -7860,8 +7870,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_0(7, 57, 97); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_0(7, 156, 97); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(7, 736, 97); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(7, 738, 97); return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -7913,7 +7923,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_0(7, 660, 97); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_0(7, 721, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -7929,7 +7939,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_0(7, 395, 97); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 642, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -7937,7 +7947,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_0(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7956,9 +7966,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(7, 359, 97); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_0(7, 581, 97); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(7, 732, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(7, 734, 97); + return jjMoveStringLiteralDfa8_0(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); case 77: case 109: return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -7971,10 +7981,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_0(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -7986,7 +7996,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_0(7, 554, 97); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 706, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + return jjMoveStringLiteralDfa8_0(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -8008,7 +8018,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 450, 97); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(7, 615, 97); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -8054,7 +8064,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_0(7, 518, 97); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(7, 627, 97); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(7, 726, 97); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); case 90: case 122: return jjMoveStringLiteralDfa8_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -8088,7 +8100,7 @@ private final int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(8, 618, 97); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -8097,8 +8109,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_0(8, 235, 97); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(8, 666, 97); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(8, 730, 97); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(8, 732, 97); return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -8166,9 +8178,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(8, 735, 97); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(8, 737, 97); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -8176,7 +8188,7 @@ else if ((active11 & 0x80000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(8, 42, 97); - return jjMoveStringLiteralDfa9_0(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); + return jjMoveStringLiteralDfa9_0(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -8192,7 +8204,7 @@ else if ((active11 & 0x80000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -8218,7 +8230,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_0(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -8228,7 +8240,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); case 81: case 113: return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -8280,7 +8292,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); case 86: case 118: return jjMoveStringLiteralDfa9_0(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -8381,7 +8393,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_0(9, 727, 97); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(9, 729, 97); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(9, 731, 97); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -8422,7 +8436,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -8453,10 +8467,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_0(9, 458, 97); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_0(9, 648, 97); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(9, 739, 97); - else if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(9, 744, 97); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(9, 741, 97); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(9, 746, 97); return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -8476,7 +8490,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); case 86: case 118: return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -8503,7 +8517,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); default : break; } @@ -8540,7 +8554,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_0(10, 341, 97); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_0(10, 667, 97); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -8561,8 +8575,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_0(10, 620, 97); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_0(10, 624, 97); - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(10, 733, 97); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(10, 735, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -8605,8 +8619,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_0(10, 651, 97); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(10, 728, 97); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(10, 730, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -8615,8 +8629,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_0(10, 604, 97); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(10, 726, 97); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(10, 728, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -8692,7 +8706,7 @@ private final int jjMoveStringLiteralDfa11_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -8894,7 +8908,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_0(12, 584, 97); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -8940,7 +8954,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_0(13, 494, 97); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_0(13, 656, 97); - return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9108,7 +9122,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_0(14, 575, 97); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_0(14, 592, 97); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -9210,7 +9224,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -9263,7 +9277,7 @@ private final int jjMoveStringLiteralDfa16_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -9363,7 +9377,7 @@ private final int jjMoveStringLiteralDfa17_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -9415,7 +9429,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9476,7 +9490,7 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9543,7 +9557,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9575,7 +9589,7 @@ private final int jjMoveStringLiteralDfa21_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -9669,7 +9683,7 @@ private final int jjMoveStringLiteralDfa22_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -9721,7 +9735,7 @@ private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -9788,7 +9802,7 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -9842,7 +9856,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -9863,7 +9877,7 @@ private final int jjMoveStringLiteralDfa26_0(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -9911,7 +9925,7 @@ private final int jjMoveStringLiteralDfa27_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_0(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -9938,7 +9952,7 @@ private final int jjMoveStringLiteralDfa28_0(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_0(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -9963,7 +9977,7 @@ private final int jjMoveStringLiteralDfa29_0(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_0(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -9988,7 +10002,7 @@ private final int jjMoveStringLiteralDfa30_0(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0L, active11, 0x200000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -10014,7 +10028,7 @@ private final int jjMoveStringLiteralDfa31_0(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_0(31, 129, 97); - return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x200000000000L); default : break; } @@ -10033,7 +10047,7 @@ private final int jjMoveStringLiteralDfa32_0(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_0(active11, 0x80000000000L); + return jjMoveStringLiteralDfa33_0(active11, 0x200000000000L); default : break; } @@ -10052,8 +10066,8 @@ private final int jjMoveStringLiteralDfa33_0(long old11, long active11) { case 84: case 116: - if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(33, 747, 97); + if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(33, 749, 97); break; default : break; @@ -10090,21 +10104,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 824) - kind = 824; + if (kind > 826) + kind = 826; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -10117,8 +10131,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -10131,8 +10145,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -10147,8 +10161,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -10170,8 +10184,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -10180,8 +10194,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -10196,8 +10210,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -10218,8 +10232,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 756) - kind = 756; + if (kind > 758) + kind = 758; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -10229,8 +10243,8 @@ else if (curChar == 39) case 98: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -10255,8 +10269,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 755) - kind = 755; + if (curChar == 39 && kind > 757) + kind = 757; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -10280,8 +10294,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -10299,30 +10313,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 761) + kind = 761; break; case 23: if (curChar != 45) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 810) - kind = 810; + if ((0x2400L & l) != 0L && kind > 812) + kind = 812; break; case 26: - if (curChar == 10 && kind > 810) - kind = 810; + if (curChar == 10 && kind > 812) + kind = 812; break; case 27: if (curChar == 13) @@ -10335,15 +10349,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -10361,8 +10375,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -10372,26 +10386,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 824) - kind = 824; + if (curChar == 7 && kind > 826) + kind = 826; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAdd(44); break; case 45: @@ -10405,8 +10419,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 750) - kind = 750; + if (kind > 752) + kind = 752; jjCheckNAdd(48); break; case 49: @@ -10420,22 +10434,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(35, 37); break; case 54: @@ -10453,8 +10467,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(57); break; case 58: @@ -10474,12 +10488,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 756) - kind = 756; + if (curChar == 39 && kind > 758) + kind = 758; break; case 64: - if (curChar == 39 && kind > 763) - kind = 763; + if (curChar == 39 && kind > 765) + kind = 765; break; case 67: case 69: @@ -10495,8 +10509,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 760) + kind = 760; break; case 72: if (curChar == 38) @@ -10519,8 +10533,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 821) - kind = 821; + if (curChar == 34 && kind > 823) + kind = 823; break; case 79: if (curChar == 32) @@ -10547,14 +10561,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 808) - kind = 808; + if ((0xffff7fffffffffffL & l) != 0L && kind > 810) + kind = 810; break; case 93: if (curChar != 47) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; default : break; @@ -10577,8 +10591,8 @@ else if (curChar == 91) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -10599,8 +10613,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -10611,8 +10625,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -10623,8 +10637,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -10641,8 +10655,8 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -10653,8 +10667,8 @@ else if (curChar == 93) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -10665,13 +10679,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 766) - kind = 766; + if (kind > 768) + kind = 768; } if ((0x10000000100000L & l) != 0L) { - if (kind > 767) - kind = 767; + if (kind > 769) + kind = 769; } break; case 63: @@ -10722,8 +10736,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(25, 27); break; case 29: @@ -10743,21 +10757,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 93 && kind > 814) - kind = 814; + if (curChar == 93 && kind > 816) + kind = 816; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -10767,15 +10781,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -10800,32 +10814,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 766) - kind = 766; + if ((0x1000000010L & l) != 0L && kind > 768) + kind = 768; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 767) - kind = 767; + if ((0x10000000100000L & l) != 0L && kind > 769) + kind = 769; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 768) - kind = 768; + if ((0x8000000080000L & l) != 0L && kind > 770) + kind = 770; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 769) - kind = 769; + if ((0x400000004000L & l) != 0L && kind > 771) + kind = 771; break; case 91: - if (kind > 808) - kind = 808; + if (kind > 810) + kind = 810; break; default : break; } @@ -10845,8 +10859,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10855,8 +10869,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10867,8 +10881,8 @@ else if ((0x1000000010L & l) != 0L) case 97: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10879,8 +10893,8 @@ else if ((0x1000000010L & l) != 0L) case 95: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10896,8 +10910,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10908,8 +10922,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -10944,22 +10958,22 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(25, 27); break; case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -10969,15 +10983,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -10993,8 +11007,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 808) - kind = 808; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) + kind = 810; break; default : break; } @@ -11038,7 +11052,7 @@ private final int jjMoveNfa_6(int startState, int curPos) { case 0: if (curChar == 47) - kind = 812; + kind = 814; break; case 1: if (curChar == 42) @@ -11092,203 +11106,203 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, switch (pos) { case 0: - if ((active12 & 0x4L) != 0L) - return 94; - if ((active11 & 0x1000L) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) { - jjmatchedKind = 819; - return 1; + jjmatchedKind = 821; + return 16; } - if ((active12 & 0x8000000L) != 0L) + if ((active12 & 0x10L) != 0L) + return 94; + if ((active12 & 0x20000000L) != 0L) return 63; - if ((active12 & 0x24000400000L) != 0L) - return 92; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x80000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 95; } - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x13957b27efffL) != 0L) + if ((active12 & 0x90001000000L) != 0L) + return 92; + if ((active11 & 0x1000L) != 0L) + { + jjmatchedKind = 821; + return 1; + } + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ece7efffL) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 96; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x80000000L) != 0L) - return 96; if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 66; } - if ((active12 & 0x4000080L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + return 96; + if ((active12 & 0x10000200L) != 0L) return 97; - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x4000000L) != 0L) - { - jjmatchedKind = 819; - return 16; - } - if ((active12 & 0x180000L) != 0L) + if ((active12 & 0x600000L) != 0L) return 23; return -1; case 1: - if ((active12 & 0x24000000000L) != 0L) - return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) - return 96; - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0xfbf57eeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 1; } return 96; } + if ((active12 & 0x90000000000L) != 0L) + return 90; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + return 96; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x15fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 2; } return 96; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) return 96; return -1; case 3: - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x1ff9fefe0c38L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + return 96; + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 3; } return 96; } - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) - return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) return 96; - if ((active2 & 0x8000000000000000L) != 0L) - return 98; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0xf39f5de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 4; } return 96; } + if ((active2 & 0x8000000000000000L) != 0L) + return 98; return -1; case 5: - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 96; - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0xf39f7ee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 5; } return 96; } + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) + return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; return -1; case 6: - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x909b7fa0014L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + return 96; + if ((active2 & 0x8000000000000000L) != 0L) + return 98; + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 6; } return 96; } - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) + return -1; + case 7: + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; - return -1; - case 7: - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x908a7f80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 7; } return 96; } - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x110020004L) != 0L) - return 96; - if ((active2 & 0x8000000000000000L) != 0L) - return 98; return -1; case 8: - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) - return 96; - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x90823e80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 8; } return 96; } + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + return 96; return -1; case 9: - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x10802800000L) != 0L) - return 96; - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 9; } return 96; } + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + return 96; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) return 96; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 10; } return 96; } return -1; case 11: - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) - return 96; - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 11; } return 96; } + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + return 96; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 12; return 96; } @@ -11296,31 +11310,31 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 13: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) + return 96; + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 13; return 96; } - if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) - return 96; return -1; case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 96; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 14; return 96; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 15; } return 96; @@ -11329,11 +11343,11 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 16; } return 96; @@ -11342,62 +11356,62 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) + return 96; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 17; return 96; } - if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 96; return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 96; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 18; } return 96; } return -1; case 19: - if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 96; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 19; return 96; } + if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) + return 96; return -1; case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 20; return 96; } return -1; case 21: - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 21; return 96; } + if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + return 96; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 22; return 96; } @@ -11405,39 +11419,39 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 23: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) + return 96; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 23; return 96; } - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 96; return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 24; return 96; } return -1; case 25: - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 25; return 96; } + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + return 96; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 26; return 96; } @@ -11445,9 +11459,9 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 27; return 96; } @@ -11455,17 +11469,17 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 28; return 96; } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 29; return 96; } @@ -11473,27 +11487,27 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 96; - if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 30; return 96; } return -1; case 31: - if ((active2 & 0x2L) != 0L) - return 96; - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 31; return 96; } + if ((active2 & 0x2L) != 0L) + return 96; return -1; case 32: - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 32; return 96; } @@ -11520,74 +11534,74 @@ private final int jjMoveStringLiteralDfa0_2() { case 33: jjmatchedKind = 1; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 34: - return jjStopAtPos(0, 796); + return jjStopAtPos(0, 798); case 36: - return jjStartNfaWithStates_2(0, 799, 96); + return jjStartNfaWithStates_2(0, 801, 96); case 37: - return jjStopAtPos(0, 791); + return jjStopAtPos(0, 793); case 39: - return jjStartNfaWithStates_2(0, 795, 63); + return jjStartNfaWithStates_2(0, 797, 63); case 40: - return jjStopAtPos(0, 764); + return jjStopAtPos(0, 766); case 41: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 767); case 42: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); case 43: - return jjStopAtPos(0, 786); + return jjStopAtPos(0, 788); case 44: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 45: - jjmatchedKind = 787; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); + jjmatchedKind = 789; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); case 46: - jjmatchedKind = 775; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 777; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 47: - jjmatchedKind = 790; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x24000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); case 58: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 59: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 60: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); case 61: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 62: - jjmatchedKind = 778; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); + jjmatchedKind = 780; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); case 63: - return jjStopAtPos(0, 780); + return jjStopAtPos(0, 782); case 91: - return jjStopAtPos(0, 772); + return jjStopAtPos(0, 774); case 93: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 94: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 800); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_2(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_2(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_2(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -11600,51 +11614,51 @@ private final int jjMoveStringLiteralDfa0_2() return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x200fffL, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -11655,12 +11669,12 @@ private final int jjMoveStringLiteralDfa0_2() case 122: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); case 123: - return jjStartNfaWithStates_2(0, 770, 94); + return jjStartNfaWithStates_2(0, 772, 94); case 124: - jjmatchedKind = 797; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); + jjmatchedKind = 799; + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); case 125: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 773); case 126: return jjStopAtPos(0, 2); default : @@ -11677,55 +11691,55 @@ private final int jjMoveStringLiteralDfa1_2(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x20000000000L) != 0L) + if ((active12 & 0x80000000000L) != 0L) { - jjmatchedKind = 809; + jjmatchedKind = 811; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x4000000000L); + return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); case 46: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 47: - if ((active12 & 0x8000000000L) != 0L) - return jjStopAtPos(1, 807); + if ((active12 & 0x20000000000L) != 0L) + return jjStopAtPos(1, 809); break; case 58: - if ((active12 & 0x100000000L) != 0L) - return jjStopAtPos(1, 800); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 61: - if ((active12 & 0x4000L) != 0L) - return jjStopAtPos(1, 782); - else if ((active12 & 0x8000L) != 0L) - return jjStopAtPos(1, 783); + if ((active12 & 0x10000L) != 0L) + return jjStopAtPos(1, 784); else if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); + else if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; case 62: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x100000L) != 0L) - return jjStopAtPos(1, 788); - else if ((active12 & 0x2000000L) != 0L) - return jjStopAtPos(1, 793); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x400000L) != 0L) + return jjStopAtPos(1, 790); + else if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 65: case 97: - return jjMoveStringLiteralDfa2_2(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_2(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_2(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_2(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -11744,7 +11758,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_2(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11768,7 +11782,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -11786,7 +11800,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_2(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -11800,7 +11814,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -11813,7 +11827,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -11821,10 +11835,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_2(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11837,8 +11851,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(1, 51, 96); return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x1000000L) != 0L) - return jjStopAtPos(1, 792); + if ((active12 & 0x4000000L) != 0L) + return jjStopAtPos(1, 794); break; default : break; @@ -11857,14 +11871,14 @@ private final int jjMoveStringLiteralDfa2_2(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x4000000000L) != 0L) - return jjStopAtPos(2, 806); + if ((active12 & 0x10000000000L) != 0L) + return jjStopAtPos(2, 808); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_2(2, 8, 96); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x50400006400L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -11877,7 +11891,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -11898,14 +11912,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_2(2, 385, 96); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_2(2, 406, 96); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_2(2, 20, 96); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_2(2, 388, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -11913,14 +11927,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_2(2, 37, 96); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_2(2, 301, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11949,12 +11963,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_2(2, 716, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_2(2, 616, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -11962,7 +11976,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_2(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -11993,7 +12007,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -12001,7 +12015,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -12027,7 +12041,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -12053,7 +12067,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -12070,7 +12084,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -12101,7 +12115,7 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, return jjStartNfaWithStates_2(3, 686, 96); break; case 95: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -12111,7 +12125,7 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_2(3, 285, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -12195,7 +12209,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_2(3, 664, 96); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_2(3, 719, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -12205,7 +12219,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -12219,10 +12233,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); case 73: case 105: - return jjMoveStringLiteralDfa4_2(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); + return jjMoveStringLiteralDfa4_2(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -12258,9 +12272,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_2(3, 455, 96); - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(3, 737, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(3, 739, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -12291,23 +12305,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(3, 738, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(3, 740, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_2(3, 240, 96); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_2(3, 279, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_2(3, 181, 96); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(3, 537, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x2000020400L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); case 81: case 113: return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -12343,7 +12357,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); + return jjMoveStringLiteralDfa4_2(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -12354,7 +12368,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_2(3, 531, 96); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_2(3, 628, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -12374,15 +12388,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_2(3, 419, 96); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_2(3, 598, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_2(3, 442, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -12420,7 +12434,7 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, return jjStartNfaWithStates_2(4, 687, 96); break; case 95: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x1000000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); case 65: case 97: return jjMoveStringLiteralDfa5_2(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -12431,9 +12445,9 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(4, 742, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); + if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(4, 744, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -12494,7 +12508,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); + return jjMoveStringLiteralDfa5_2(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -12504,7 +12518,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_2(4, 685, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -12526,7 +12540,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_2(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); + return jjMoveStringLiteralDfa5_2(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -12547,9 +12561,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(4, 748, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(4, 750, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); case 77: case 109: return jjMoveStringLiteralDfa5_2(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -12566,7 +12580,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_2(4, 65, 96); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_2(4, 670, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); + return jjMoveStringLiteralDfa5_2(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); case 79: case 111: return jjMoveStringLiteralDfa5_2(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -12666,7 +12680,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -12674,11 +12688,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_2(4, 14, 96); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); case 88: case 120: - if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(4, 731, 96); + if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(4, 733, 96); return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -12693,9 +12707,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_2(4, 188, 96); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_2(4, 198, 96); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(4, 743, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(4, 745, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); case 90: case 122: return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -12716,7 +12730,7 @@ private final int jjMoveStringLiteralDfa5_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_2(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_2(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -12739,7 +12753,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_2(5, 447, 96); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(5, 602, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -12798,7 +12812,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_2(5, 671, 96); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_2(5, 676, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); + return jjMoveStringLiteralDfa6_2(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -12808,17 +12822,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_2(5, 247, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_2(5, 310, 96); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_2(5, 514, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_2(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + case 75: + case 107: + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -12827,7 +12844,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_2(5, 416, 96); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_2(5, 513, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -12863,15 +12880,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_2(5, 711, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_2(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(5, 490, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); case 81: case 113: return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -12895,7 +12912,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -12914,7 +12931,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_2(5, 398, 96); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(5, 691, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -12953,13 +12970,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_2(5, 675, 96); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_2(5, 678, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_2(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x4L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -12983,7 +13000,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); default : break; } @@ -13005,10 +13022,10 @@ private final int jjMoveStringLiteralDfa6_2(long old0, long active0, long old1, return jjStartNfaWithStates_2(6, 464, 96); break; case 95: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_2(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa7_2(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); case 66: case 98: return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -13072,13 +13089,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(6, 665, 96); - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(6, 740, 96); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(6, 741, 96); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(6, 746, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x11000004L); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(6, 742, 96); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(6, 743, 96); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(6, 748, 96); + return jjMoveStringLiteralDfa7_2(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); case 70: case 102: return jjMoveStringLiteralDfa7_2(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -13103,19 +13120,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(6, 499, 96); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_2(6, 698, 96); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(6, 734, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(6, 736, 96); + return jjMoveStringLiteralDfa7_2(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_2(6, 50, 96); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(6, 745, 96); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(6, 747, 96); return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_2(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); + return jjMoveStringLiteralDfa7_2(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -13172,7 +13189,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); case 79: case 111: return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -13209,7 +13226,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_2(6, 696, 96); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_2(6, 714, 96); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -13269,10 +13286,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_2(6, 697, 96); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_2(6, 712, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); + return jjMoveStringLiteralDfa7_2(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_2(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa7_2(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -13314,7 +13331,7 @@ private final int jjMoveStringLiteralDfa7_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_2(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_2(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_2(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -13338,8 +13355,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_2(7, 57, 96); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_2(7, 156, 96); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(7, 736, 96); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(7, 738, 96); return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -13391,7 +13408,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_2(7, 660, 96); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_2(7, 721, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -13407,7 +13424,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_2(7, 395, 96); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 642, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -13415,7 +13432,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_2(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -13434,9 +13451,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(7, 359, 96); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_2(7, 581, 96); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(7, 732, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(7, 734, 96); + return jjMoveStringLiteralDfa8_2(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); case 77: case 109: return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -13449,10 +13466,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_2(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -13464,7 +13481,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_2(7, 554, 96); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 706, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + return jjMoveStringLiteralDfa8_2(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -13486,7 +13503,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 450, 96); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(7, 615, 96); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -13532,7 +13549,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_2(7, 518, 96); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(7, 627, 96); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(7, 726, 96); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); case 90: case 122: return jjMoveStringLiteralDfa8_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -13566,7 +13585,7 @@ private final int jjMoveStringLiteralDfa8_2(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(8, 618, 96); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -13575,8 +13594,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_2(8, 235, 96); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(8, 666, 96); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(8, 730, 96); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(8, 732, 96); return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -13644,9 +13663,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(8, 735, 96); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(8, 737, 96); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -13654,7 +13673,7 @@ else if ((active11 & 0x80000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(8, 42, 96); - return jjMoveStringLiteralDfa9_2(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); + return jjMoveStringLiteralDfa9_2(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -13670,7 +13689,7 @@ else if ((active11 & 0x80000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -13696,7 +13715,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_2(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -13706,7 +13725,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); case 81: case 113: return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -13758,7 +13777,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); case 86: case 118: return jjMoveStringLiteralDfa9_2(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -13859,7 +13878,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_2(9, 727, 96); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(9, 729, 96); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(9, 731, 96); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -13900,7 +13921,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -13931,10 +13952,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_2(9, 458, 96); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_2(9, 648, 96); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(9, 739, 96); - else if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(9, 744, 96); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(9, 741, 96); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(9, 746, 96); return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -13954,7 +13975,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); case 86: case 118: return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -13981,7 +14002,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); default : break; } @@ -14018,7 +14039,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_2(10, 341, 96); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_2(10, 667, 96); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -14039,8 +14060,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_2(10, 620, 96); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_2(10, 624, 96); - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(10, 733, 96); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(10, 735, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -14083,8 +14104,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_2(10, 651, 96); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(10, 728, 96); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(10, 730, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -14093,8 +14114,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_2(10, 604, 96); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(10, 726, 96); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(10, 728, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -14170,7 +14191,7 @@ private final int jjMoveStringLiteralDfa11_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -14372,7 +14393,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_2(12, 584, 96); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -14418,7 +14439,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_2(13, 494, 96); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_2(13, 656, 96); - return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14586,7 +14607,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_2(14, 575, 96); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_2(14, 592, 96); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -14688,7 +14709,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -14741,7 +14762,7 @@ private final int jjMoveStringLiteralDfa16_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -14841,7 +14862,7 @@ private final int jjMoveStringLiteralDfa17_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -14893,7 +14914,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14954,7 +14975,7 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15021,7 +15042,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15053,7 +15074,7 @@ private final int jjMoveStringLiteralDfa21_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -15147,7 +15168,7 @@ private final int jjMoveStringLiteralDfa22_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -15199,7 +15220,7 @@ private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -15266,7 +15287,7 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -15320,7 +15341,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -15341,7 +15362,7 @@ private final int jjMoveStringLiteralDfa26_2(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -15389,7 +15410,7 @@ private final int jjMoveStringLiteralDfa27_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_2(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -15416,7 +15437,7 @@ private final int jjMoveStringLiteralDfa28_2(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_2(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -15441,7 +15462,7 @@ private final int jjMoveStringLiteralDfa29_2(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_2(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -15466,7 +15487,7 @@ private final int jjMoveStringLiteralDfa30_2(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0L, active11, 0x200000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -15492,7 +15513,7 @@ private final int jjMoveStringLiteralDfa31_2(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_2(31, 129, 96); - return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x200000000000L); default : break; } @@ -15511,7 +15532,7 @@ private final int jjMoveStringLiteralDfa32_2(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_2(active11, 0x80000000000L); + return jjMoveStringLiteralDfa33_2(active11, 0x200000000000L); default : break; } @@ -15530,8 +15551,8 @@ private final int jjMoveStringLiteralDfa33_2(long old11, long active11) { case 84: case 116: - if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(33, 747, 96); + if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(33, 749, 96); break; default : break; @@ -15568,21 +15589,21 @@ else if (curChar == 46) jjCheckNAddTwoStates(56, 57); else if (curChar == 7) { - if (kind > 824) - kind = 824; + if (kind > 826) + kind = 826; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 23; if ((0x3ff000000000000L & l) != 0L) { - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(9, 15); } else if (curChar == 36) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -15595,8 +15616,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -15609,8 +15630,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -15625,8 +15646,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -15643,8 +15664,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 67; if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -15653,8 +15674,8 @@ else if (curChar == 38) case 92: if (curChar == 47) { - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); } else if (curChar == 42) @@ -15669,8 +15690,8 @@ else if (curChar == 39) jjCheckNAddStates(0, 2); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (curChar == 36) @@ -15691,8 +15712,8 @@ else if (curChar == 39) jjCheckNAddStates(32, 34); else if (curChar == 39) { - if (kind > 756) - kind = 756; + if (kind > 758) + kind = 758; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 64; @@ -15702,8 +15723,8 @@ else if (curChar == 39) case 97: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(57); } if ((0x3ff000000000000L & l) != 0L) @@ -15728,8 +15749,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 755) - kind = 755; + if (curChar == 39 && kind > 757) + kind = 757; break; case 7: if ((0x3ff000000000000L & l) != 0L) @@ -15753,8 +15774,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 11; break; case 13: - if (curChar == 39 && kind > 757) - kind = 757; + if (curChar == 39 && kind > 759) + kind = 759; break; case 17: if ((0xffffff7fffffffffL & l) != 0L) @@ -15772,30 +15793,30 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 20; break; case 22: - if (curChar == 39 && kind > 759) - kind = 759; + if (curChar == 39 && kind > 761) + kind = 761; break; case 23: if (curChar != 45) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; case 24: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; case 25: - if ((0x2400L & l) != 0L && kind > 810) - kind = 810; + if ((0x2400L & l) != 0L && kind > 812) + kind = 812; break; case 26: - if (curChar == 10 && kind > 810) - kind = 810; + if (curChar == 10 && kind > 812) + kind = 812; break; case 27: if (curChar == 13) @@ -15812,15 +15833,15 @@ else if (curChar == 39) case 34: if (curChar != 36) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -15838,8 +15859,8 @@ else if (curChar == 39) case 39: if (curChar != 36) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAddTwoStates(39, 40); break; case 40: @@ -15849,26 +15870,26 @@ else if (curChar == 39) case 41: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(41); break; case 42: - if (curChar == 7 && kind > 824) - kind = 824; + if (curChar == 7 && kind > 826) + kind = 826; break; case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(9, 15); break; case 44: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAdd(44); break; case 45: @@ -15882,8 +15903,8 @@ else if (curChar == 39) case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 750) - kind = 750; + if (kind > 752) + kind = 752; jjCheckNAdd(48); break; case 49: @@ -15897,22 +15918,22 @@ else if (curChar == 39) case 51: if (curChar != 46) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 53: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(35, 37); break; case 54: @@ -15930,8 +15951,8 @@ else if (curChar == 39) case 57: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(57); break; case 58: @@ -15951,12 +15972,12 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 60; break; case 62: - if (curChar == 39 && kind > 756) - kind = 756; + if (curChar == 39 && kind > 758) + kind = 758; break; case 64: - if (curChar == 39 && kind > 763) - kind = 763; + if (curChar == 39 && kind > 765) + kind = 765; break; case 67: case 69: @@ -15972,8 +15993,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 69; break; case 71: - if (curChar == 39 && kind > 758) - kind = 758; + if (curChar == 39 && kind > 760) + kind = 760; break; case 72: if (curChar == 38) @@ -15996,8 +16017,8 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 75; break; case 77: - if (curChar == 34 && kind > 821) - kind = 821; + if (curChar == 34 && kind > 823) + kind = 823; break; case 79: if (curChar == 32) @@ -16024,14 +16045,14 @@ else if (curChar == 39) jjstateSet[jjnewStateCnt++] = 91; break; case 91: - if ((0xffff7fffffffffffL & l) != 0L && kind > 808) - kind = 808; + if ((0xffff7fffffffffffL & l) != 0L && kind > 810) + kind = 810; break; case 93: if (curChar != 47) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(25, 27); break; default : break; @@ -16054,8 +16075,8 @@ else if (curChar == 96) jjCheckNAddTwoStates(30, 32); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if ((0x20000000200000L & l) != 0L) @@ -16076,8 +16097,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -16088,8 +16109,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -16100,8 +16121,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -16112,8 +16133,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -16124,8 +16145,8 @@ else if (curChar == 95) jjCheckNAddStates(0, 2); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } break; @@ -16136,13 +16157,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; else if ((0x1000000010L & l) != 0L) { - if (kind > 766) - kind = 766; + if (kind > 768) + kind = 768; } if ((0x10000000100000L & l) != 0L) { - if (kind > 767) - kind = 767; + if (kind > 769) + kind = 769; } break; case 63: @@ -16193,8 +16214,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(28, 31); break; case 24: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(25, 27); break; case 29: @@ -16214,21 +16235,21 @@ else if ((0x1000000010L & l) != 0L) jjstateSet[jjnewStateCnt++] = 31; break; case 33: - if (curChar == 96 && kind > 816) - kind = 816; + if (curChar == 96 && kind > 818) + kind = 818; break; case 34: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -16238,15 +16259,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(58, 59); break; case 41: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 41; break; case 46: @@ -16271,32 +16292,32 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(48, 55); break; case 80: - if ((0x1000000010L & l) != 0L && kind > 766) - kind = 766; + if ((0x1000000010L & l) != 0L && kind > 768) + kind = 768; break; case 82: - if ((0x10000000100000L & l) != 0L && kind > 767) - kind = 767; + if ((0x10000000100000L & l) != 0L && kind > 769) + kind = 769; break; case 84: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 85; break; case 85: - if ((0x8000000080000L & l) != 0L && kind > 768) - kind = 768; + if ((0x8000000080000L & l) != 0L && kind > 770) + kind = 770; break; case 87: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 88; break; case 88: - if ((0x400000004000L & l) != 0L && kind > 769) - kind = 769; + if ((0x400000004000L & l) != 0L && kind > 771) + kind = 771; break; case 91: - if (kind > 808) - kind = 808; + if (kind > 810) + kind = 810; break; default : break; } @@ -16316,8 +16337,8 @@ else if ((0x1000000010L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16326,8 +16347,8 @@ else if ((0x1000000010L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16338,8 +16359,8 @@ else if ((0x1000000010L & l) != 0L) case 96: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16350,8 +16371,8 @@ else if ((0x1000000010L & l) != 0L) case 95: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16362,8 +16383,8 @@ else if ((0x1000000010L & l) != 0L) case 66: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16374,8 +16395,8 @@ else if ((0x1000000010L & l) != 0L) case 16: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -16410,8 +16431,8 @@ else if ((0x1000000010L & l) != 0L) case 24: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(25, 27); break; case 30: @@ -16421,15 +16442,15 @@ else if ((0x1000000010L & l) != 0L) case 34: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 35: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(35); break; case 36: @@ -16439,15 +16460,15 @@ else if ((0x1000000010L & l) != 0L) case 39: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(58, 59); break; case 41: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 41; break; case 59: @@ -16463,8 +16484,8 @@ else if ((0x1000000010L & l) != 0L) jjAddStates(45, 47); break; case 91: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 808) - kind = 808; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) + kind = 810; break; default : break; } @@ -16488,195 +16509,195 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, switch (pos) { case 0: - if ((active12 & 0x4000080L) != 0L) - return 76; if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 1; } - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x1395ff27efffL) != 0L) + if ((active12 & 0x10000200L) != 0L) + return 76; + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e57fce7efffL) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 77; } - if ((active12 & 0x8000000L) != 0L) + if ((active12 & 0x20000000L) != 0L) return 58; - if ((active12 & 0x4L) != 0L) + if ((active12 & 0x10L) != 0L) return 78; - if ((active12 & 0x24000400000L) != 0L) + if ((active12 & 0x90001000000L) != 0L) return 74; if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; return 31; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x80000000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) return 77; - if ((active12 & 0x180000L) != 0L) + if ((active12 & 0x600000L) != 0L) return 11; - if ((active12 & 0x10000000L) != 0L) + if ((active12 & 0x40000000L) != 0L) return 79; return -1; case 1: - if ((active12 & 0x24000000000L) != 0L) - return 72; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) - return 77; - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0xfbf57eeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 1; } return 77; } + if ((active12 & 0x90000000000L) != 0L) + return 72; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + return 77; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x15fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 2; } return 77; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) return 77; return -1; case 3: - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x1ff9fefe0c38L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) + return 80; + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + return 77; + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 3; } return 77; } - if ((active2 & 0x8000000000000000L) != 0L) - return 80; - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) - return 77; return -1; case 4: - if ((active2 & 0x8000000000000000L) != 0L) - return 80; - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) - return 77; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0xf39f5de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 4; } return 77; } - return -1; - case 5: if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) return 77; - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0xf39f7ee0514L) != 0L) + return -1; + case 5: + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 5; } return 77; } + if ((active2 & 0x8000000000000000L) != 0L) + return 80; + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) + return 77; return -1; case 6: - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x909b7fa0014L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) + return 80; + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + return 77; + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 6; } return 77; } + return -1; + case 7: if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) return 77; - return -1; - case 7: - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x908a7f80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 7; } return 77; } - if ((active2 & 0x8000000000000000L) != 0L) - return 80; - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x110020004L) != 0L) - return 77; return -1; case 8: - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) - return 77; - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x90823e80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 8; } return 77; } + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + return 77; return -1; case 9: - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x10802800000L) != 0L) - return 77; - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 9; } return 77; } + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + return 77; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) return 77; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 10; } return 77; } return -1; case 11: - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) - return 77; - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 11; } return 77; } + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + return 77; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 12; return 77; } @@ -16684,31 +16705,31 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 13: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) + return 77; + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 13; return 77; } - if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) - return 77; return -1; case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 77; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 14; return 77; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 15; } return 77; @@ -16717,11 +16738,11 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 16; } return 77; @@ -16730,32 +16751,32 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) + return 77; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 17; return 77; } - if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 77; return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 77; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 18; } return 77; } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 19; return 77; } @@ -16763,29 +16784,29 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 20: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 20; return 77; } + if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) + return 77; return -1; case 21: - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 21; return 77; } + if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + return 77; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 22; return 77; } @@ -16793,39 +16814,39 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 23: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) + return 77; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 23; return 77; } - if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) - return 77; return -1; case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 24; return 77; } return -1; case 25: - if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) - return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 25; return 77; } + if ((active6 & 0xc000000L) != 0L || (active8 & 0x2018000000000000L) != 0L || (active11 & 0x200000L) != 0L) + return 77; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 26; return 77; } @@ -16833,9 +16854,9 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 27; return 77; } @@ -16843,45 +16864,45 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 28; return 77; } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 29; return 77; } return -1; case 30: - if ((active1 & 0x400000000000000L) != 0L) - return 77; - if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 30; return 77; } + if ((active1 & 0x400000000000000L) != 0L) + return 77; return -1; case 31: - if ((active2 & 0x2L) != 0L) - return 77; - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 31; return 77; } + if ((active2 & 0x2L) != 0L) + return 77; return -1; case 32: - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 819; + jjmatchedKind = 821; jjmatchedPos = 32; return 77; } @@ -16907,74 +16928,74 @@ private final int jjMoveStringLiteralDfa0_3() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 34: - return jjStartNfaWithStates_3(0, 796, 79); + return jjStartNfaWithStates_3(0, 798, 79); case 36: - return jjStartNfaWithStates_3(0, 799, 77); + return jjStartNfaWithStates_3(0, 801, 77); case 37: - return jjStopAtPos(0, 791); + return jjStopAtPos(0, 793); case 39: - return jjStartNfaWithStates_3(0, 795, 58); + return jjStartNfaWithStates_3(0, 797, 58); case 40: - return jjStopAtPos(0, 764); + return jjStopAtPos(0, 766); case 41: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 767); case 42: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); case 43: - return jjStopAtPos(0, 786); + return jjStopAtPos(0, 788); case 44: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 45: - jjmatchedKind = 787; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); + jjmatchedKind = 789; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); case 46: - jjmatchedKind = 775; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 777; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 47: - jjmatchedKind = 790; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x24000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); case 58: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 59: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 60: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); case 61: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 62: - jjmatchedKind = 778; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); + jjmatchedKind = 780; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); case 63: - return jjStopAtPos(0, 780); + return jjStopAtPos(0, 782); case 91: - return jjStopAtPos(0, 772); + return jjStopAtPos(0, 774); case 93: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 94: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 800); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_3(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_3(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_3(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -16987,51 +17008,51 @@ private final int jjMoveStringLiteralDfa0_3() return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x200fffL, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -17042,12 +17063,12 @@ private final int jjMoveStringLiteralDfa0_3() case 122: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); case 123: - return jjStartNfaWithStates_3(0, 770, 78); + return jjStartNfaWithStates_3(0, 772, 78); case 124: - jjmatchedKind = 797; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); + jjmatchedKind = 799; + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); case 125: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 773); default : return jjMoveNfa_3(0, 0); } @@ -17062,55 +17083,55 @@ private final int jjMoveStringLiteralDfa1_3(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x20000000000L) != 0L) + if ((active12 & 0x80000000000L) != 0L) { - jjmatchedKind = 809; + jjmatchedKind = 811; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x4000000000L); + return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); case 46: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 47: - if ((active12 & 0x8000000000L) != 0L) - return jjStopAtPos(1, 807); + if ((active12 & 0x20000000000L) != 0L) + return jjStopAtPos(1, 809); break; case 58: - if ((active12 & 0x100000000L) != 0L) - return jjStopAtPos(1, 800); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 61: - if ((active12 & 0x4000L) != 0L) - return jjStopAtPos(1, 782); - else if ((active12 & 0x8000L) != 0L) - return jjStopAtPos(1, 783); + if ((active12 & 0x10000L) != 0L) + return jjStopAtPos(1, 784); else if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); + else if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; case 62: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x100000L) != 0L) - return jjStopAtPos(1, 788); - else if ((active12 & 0x2000000L) != 0L) - return jjStopAtPos(1, 793); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x400000L) != 0L) + return jjStopAtPos(1, 790); + else if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 65: case 97: - return jjMoveStringLiteralDfa2_3(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_3(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_3(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_3(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -17129,7 +17150,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_3(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17153,7 +17174,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -17171,7 +17192,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_3(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -17185,7 +17206,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -17198,7 +17219,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -17206,10 +17227,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_3(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17222,8 +17243,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_3(1, 51, 77); return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x1000000L) != 0L) - return jjStopAtPos(1, 792); + if ((active12 & 0x4000000L) != 0L) + return jjStopAtPos(1, 794); break; default : break; @@ -17242,14 +17263,14 @@ private final int jjMoveStringLiteralDfa2_3(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x4000000000L) != 0L) - return jjStopAtPos(2, 806); + if ((active12 & 0x10000000000L) != 0L) + return jjStopAtPos(2, 808); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_3(2, 8, 77); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x50400006400L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -17262,7 +17283,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -17283,14 +17304,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_3(2, 385, 77); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_3(2, 406, 77); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_3(2, 20, 77); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_3(2, 388, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -17298,14 +17319,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_3(2, 37, 77); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_3(2, 301, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17334,12 +17355,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_3(2, 716, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_3(2, 616, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -17347,7 +17368,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_3(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -17378,7 +17399,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -17386,7 +17407,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -17412,7 +17433,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -17438,7 +17459,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -17455,7 +17476,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17486,7 +17507,7 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, return jjStartNfaWithStates_3(3, 686, 77); break; case 95: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -17496,7 +17517,7 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_3(3, 285, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); + return jjMoveStringLiteralDfa4_3(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -17580,7 +17601,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_3(3, 664, 77); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_3(3, 719, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_3(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -17590,7 +17611,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -17604,10 +17625,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); case 73: case 105: - return jjMoveStringLiteralDfa4_3(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); + return jjMoveStringLiteralDfa4_3(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -17643,9 +17664,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_3(3, 455, 77); - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(3, 737, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(3, 739, 77); + return jjMoveStringLiteralDfa4_3(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -17676,23 +17697,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(3, 738, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(3, 740, 77); + return jjMoveStringLiteralDfa4_3(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_3(3, 240, 77); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_3(3, 279, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa4_3(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_3(3, 181, 77); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_3(3, 537, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x2000020400L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); case 81: case 113: return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -17728,7 +17749,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); + return jjMoveStringLiteralDfa4_3(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -17739,7 +17760,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_3(3, 531, 77); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_3(3, 628, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -17759,15 +17780,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_3(3, 419, 77); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_3(3, 598, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_3(3, 442, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -17805,7 +17826,7 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, return jjStartNfaWithStates_3(4, 687, 77); break; case 95: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x1000000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); case 65: case 97: return jjMoveStringLiteralDfa5_3(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -17816,9 +17837,9 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(4, 742, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); + if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(4, 744, 77); + return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -17879,7 +17900,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); + return jjMoveStringLiteralDfa5_3(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -17889,7 +17910,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_3(4, 685, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -17911,7 +17932,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_3(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); + return jjMoveStringLiteralDfa5_3(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -17932,9 +17953,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(4, 748, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(4, 750, 77); + return jjMoveStringLiteralDfa5_3(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); case 77: case 109: return jjMoveStringLiteralDfa5_3(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -17951,7 +17972,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_3(4, 65, 77); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_3(4, 670, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); + return jjMoveStringLiteralDfa5_3(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); case 79: case 111: return jjMoveStringLiteralDfa5_3(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -18051,7 +18072,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -18059,11 +18080,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_3(4, 14, 77); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); case 88: case 120: - if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(4, 731, 77); + if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(4, 733, 77); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -18078,9 +18099,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_3(4, 188, 77); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_3(4, 198, 77); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(4, 743, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(4, 745, 77); + return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); case 90: case 122: return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -18101,7 +18122,7 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_3(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_3(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -18124,7 +18145,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_3(5, 447, 77); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_3(5, 602, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -18183,7 +18204,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_3(5, 671, 77); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_3(5, 676, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); + return jjMoveStringLiteralDfa6_3(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -18193,17 +18214,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_3(5, 247, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_3(5, 310, 77); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_3(5, 514, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_3(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + case 75: + case 107: + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -18212,7 +18236,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_3(5, 416, 77); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_3(5, 513, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -18248,15 +18272,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_3(5, 711, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_3(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_3(5, 490, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); case 81: case 113: return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18280,7 +18304,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -18299,7 +18323,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_3(5, 398, 77); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_3(5, 691, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -18338,13 +18362,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_3(5, 675, 77); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_3(5, 678, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_3(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x4L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -18368,7 +18392,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); default : break; } @@ -18390,10 +18414,10 @@ private final int jjMoveStringLiteralDfa6_3(long old0, long active0, long old1, return jjStartNfaWithStates_3(6, 464, 77); break; case 95: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_3(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa7_3(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); case 66: case 98: return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -18457,13 +18481,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_3(6, 665, 77); - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(6, 740, 77); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(6, 741, 77); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(6, 746, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x11000004L); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(6, 742, 77); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(6, 743, 77); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(6, 748, 77); + return jjMoveStringLiteralDfa7_3(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); case 70: case 102: return jjMoveStringLiteralDfa7_3(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18488,19 +18512,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_3(6, 499, 77); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_3(6, 698, 77); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(6, 734, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(6, 736, 77); + return jjMoveStringLiteralDfa7_3(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_3(6, 50, 77); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(6, 745, 77); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(6, 747, 77); return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_3(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); + return jjMoveStringLiteralDfa7_3(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -18557,7 +18581,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); case 79: case 111: return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -18594,7 +18618,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_3(6, 696, 77); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_3(6, 714, 77); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -18654,10 +18678,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_3(6, 697, 77); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_3(6, 712, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); + return jjMoveStringLiteralDfa7_3(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_3(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa7_3(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -18699,7 +18723,7 @@ private final int jjMoveStringLiteralDfa7_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_3(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_3(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_3(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -18723,8 +18747,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_3(7, 57, 77); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_3(7, 156, 77); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(7, 736, 77); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(7, 738, 77); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -18776,7 +18800,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_3(7, 660, 77); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_3(7, 721, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -18792,7 +18816,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_3(7, 395, 77); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_3(7, 642, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -18800,7 +18824,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_3(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18819,9 +18843,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_3(7, 359, 77); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_3(7, 581, 77); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(7, 732, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(7, 734, 77); + return jjMoveStringLiteralDfa8_3(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); case 77: case 109: return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -18834,10 +18858,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_3(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -18849,7 +18873,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_3(7, 554, 77); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_3(7, 706, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + return jjMoveStringLiteralDfa8_3(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -18871,7 +18895,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_3(7, 450, 77); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_3(7, 615, 77); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -18917,7 +18941,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_3(7, 518, 77); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_3(7, 627, 77); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(7, 726, 77); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); case 90: case 122: return jjMoveStringLiteralDfa8_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -18951,7 +18977,7 @@ private final int jjMoveStringLiteralDfa8_3(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_3(8, 618, 77); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -18960,8 +18986,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_3(8, 235, 77); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_3(8, 666, 77); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(8, 730, 77); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(8, 732, 77); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -19029,9 +19055,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(8, 735, 77); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(8, 737, 77); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -19039,7 +19065,7 @@ else if ((active11 & 0x80000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_3(8, 42, 77); - return jjMoveStringLiteralDfa9_3(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); + return jjMoveStringLiteralDfa9_3(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -19055,7 +19081,7 @@ else if ((active11 & 0x80000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -19081,7 +19107,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_3(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -19091,7 +19117,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); case 81: case 113: return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -19143,7 +19169,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); case 86: case 118: return jjMoveStringLiteralDfa9_3(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -19244,7 +19270,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_3(9, 727, 77); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_3(9, 729, 77); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(9, 731, 77); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -19285,7 +19313,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -19316,10 +19344,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_3(9, 458, 77); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_3(9, 648, 77); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(9, 739, 77); - else if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(9, 744, 77); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(9, 741, 77); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(9, 746, 77); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -19339,7 +19367,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_3(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); case 86: case 118: return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -19366,7 +19394,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); default : break; } @@ -19403,7 +19431,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_3(10, 341, 77); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_3(10, 667, 77); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -19424,8 +19452,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_3(10, 620, 77); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_3(10, 624, 77); - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(10, 733, 77); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(10, 735, 77); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -19468,8 +19496,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_3(10, 651, 77); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(10, 728, 77); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(10, 730, 77); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -19478,8 +19506,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_3(10, 604, 77); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(10, 726, 77); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(10, 728, 77); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -19555,7 +19583,7 @@ private final int jjMoveStringLiteralDfa11_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -19757,7 +19785,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_3(12, 584, 77); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -19803,7 +19831,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_3(13, 494, 77); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_3(13, 656, 77); - return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -19971,7 +19999,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_3(14, 575, 77); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_3(14, 592, 77); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -20073,7 +20101,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -20126,7 +20154,7 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -20226,7 +20254,7 @@ private final int jjMoveStringLiteralDfa17_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -20278,7 +20306,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -20339,7 +20367,7 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -20406,7 +20434,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -20438,7 +20466,7 @@ private final int jjMoveStringLiteralDfa21_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -20532,7 +20560,7 @@ private final int jjMoveStringLiteralDfa22_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -20584,7 +20612,7 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -20651,7 +20679,7 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -20705,7 +20733,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -20726,7 +20754,7 @@ private final int jjMoveStringLiteralDfa26_3(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -20774,7 +20802,7 @@ private final int jjMoveStringLiteralDfa27_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_3(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -20801,7 +20829,7 @@ private final int jjMoveStringLiteralDfa28_3(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_3(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -20826,7 +20854,7 @@ private final int jjMoveStringLiteralDfa29_3(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_3(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -20851,7 +20879,7 @@ private final int jjMoveStringLiteralDfa30_3(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0L, active11, 0x200000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -20877,7 +20905,7 @@ private final int jjMoveStringLiteralDfa31_3(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_3(31, 129, 77); - return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x200000000000L); default : break; } @@ -20896,7 +20924,7 @@ private final int jjMoveStringLiteralDfa32_3(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_3(active11, 0x80000000000L); + return jjMoveStringLiteralDfa33_3(active11, 0x200000000000L); default : break; } @@ -20915,8 +20943,8 @@ private final int jjMoveStringLiteralDfa33_3(long old11, long active11) { case 84: case 116: - if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(33, 747, 77); + if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(33, 749, 77); break; default : break; @@ -20947,8 +20975,8 @@ private final int jjMoveNfa_3(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 761) - kind = 761; + if (kind > 763) + kind = 763; } break; case 58: @@ -20956,12 +20984,22 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 762) - kind = 762; + if (kind > 764) + kind = 764; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; break; + case 76: + if ((0x3ff000000000000L & l) != 0L) + { + if (kind > 753) + kind = 753; + jjCheckNAdd(52); + } + if ((0x3ff000000000000L & l) != 0L) + jjCheckNAddTwoStates(51, 41); + break; case 1: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -20971,23 +21009,13 @@ else if (curChar == 39) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if (curChar == 36) jjCheckNAdd(27); break; - case 76: - if ((0x3ff000000000000L & l) != 0L) - { - if (kind > 751) - kind = 751; - jjCheckNAdd(52); - } - if ((0x3ff000000000000L & l) != 0L) - jjCheckNAddTwoStates(51, 41); - break; case 31: if ((0x7ff601000000000L & l) != 0L) jjCheckNAddTwoStates(25, 26); @@ -20997,8 +21025,8 @@ else if (curChar == 38) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if (curChar == 36) @@ -21021,8 +21049,8 @@ else if (curChar == 38) jjCheckNAddStates(68, 70); if ((0x3ff001000000000L & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if (curChar == 36) @@ -21037,8 +21065,8 @@ else if (curChar == 38) case 74: if (curChar == 47) { - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -21055,8 +21083,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 824) - kind = 824; + if (kind > 826) + kind = 826; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -21064,14 +21092,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } break; @@ -21088,8 +21116,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 755) - kind = 755; + if (curChar == 39 && kind > 757) + kind = 757; break; case 6: if (curChar == 34) @@ -21103,30 +21131,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 761) - kind = 761; + if (curChar == 34 && kind > 763) + kind = 763; break; case 11: if (curChar != 45) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 810) - kind = 810; + if ((0x2400L & l) != 0L && kind > 812) + kind = 812; break; case 14: - if (curChar == 10 && kind > 810) - kind = 810; + if (curChar == 10 && kind > 812) + kind = 812; break; case 15: if (curChar == 13) @@ -21143,15 +21171,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); break; case 23: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); break; case 24: @@ -21169,8 +21197,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -21180,8 +21208,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(29); break; case 32: @@ -21201,25 +21229,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 821) - kind = 821; + if (curChar == 34 && kind > 823) + kind = 823; break; case 37: - if (curChar == 7 && kind > 824) - kind = 824; + if (curChar == 7 && kind > 826) + kind = 826; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAdd(39); break; case 40: @@ -21233,8 +21261,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 750) - kind = 750; + if (kind > 752) + kind = 752; jjCheckNAdd(43); break; case 44: @@ -21248,22 +21276,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(93, 95); break; case 49: @@ -21281,8 +21309,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 53: @@ -21297,12 +21325,12 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 762) - kind = 762; + if (curChar == 39 && kind > 764) + kind = 764; break; case 59: - if (curChar == 39 && kind > 763) - kind = 763; + if (curChar == 39 && kind > 765) + kind = 765; break; case 61: if (curChar == 32) @@ -21329,14 +21357,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 808) - kind = 808; + if ((0xffff7fffffffffffL & l) != 0L && kind > 810) + kind = 810; break; case 75: if (curChar != 47) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); break; default : break; @@ -21371,8 +21399,8 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } break; @@ -21383,8 +21411,8 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } break; @@ -21395,13 +21423,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) { - if (kind > 766) - kind = 766; + if (kind > 768) + kind = 768; } if ((0x10000000100000L & l) != 0L) { - if (kind > 767) - kind = 767; + if (kind > 769) + kind = 769; } break; case 77: @@ -21411,8 +21439,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } break; @@ -21430,8 +21458,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -21454,8 +21482,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(71, 73); break; case 17: @@ -21474,21 +21502,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 817) - kind = 817; + if (curChar == 96 && kind > 819) + kind = 819; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); break; case 24: @@ -21498,15 +21526,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -21536,32 +21564,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 766) - kind = 766; + if ((0x1000000010L & l) != 0L && kind > 768) + kind = 768; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 767) - kind = 767; + if ((0x10000000100000L & l) != 0L && kind > 769) + kind = 769; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 768) - kind = 768; + if ((0x8000000080000L & l) != 0L && kind > 770) + kind = 770; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 769) - kind = 769; + if ((0x400000004000L & l) != 0L && kind > 771) + kind = 771; break; case 73: - if (kind > 808) - kind = 808; + if (kind > 810) + kind = 810; break; default : break; } @@ -21593,8 +21621,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21605,8 +21633,8 @@ else if ((0x100000001000000L & l) != 0L) case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21617,8 +21645,8 @@ else if ((0x100000001000000L & l) != 0L) case 77: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21634,8 +21662,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -21648,8 +21676,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(71, 73); break; case 18: @@ -21660,15 +21688,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 819) - kind = 819; + if (kind > 821) + kind = 821; jjCheckNAdd(23); break; case 24: @@ -21678,15 +21706,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -21699,8 +21727,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 808) - kind = 808; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) + kind = 810; break; default : break; } @@ -21744,7 +21772,7 @@ private final int jjMoveNfa_5(int startState, int curPos) { case 0: if (curChar == 47) - kind = 811; + kind = 813; break; case 1: if (curChar == 42) @@ -21800,82 +21828,82 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 0: if ((active10 & 0x3fffffe000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; return 31; } - if ((active12 & 0x4000080L) != 0L) + if ((active12 & 0x10000200L) != 0L) return 76; if ((active11 & 0x1000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; return 1; } - if ((active12 & 0x8000000L) != 0L) + if ((active12 & 0x20000000L) != 0L) return 58; - if ((active12 & 0x4L) != 0L) + if ((active12 & 0x10L) != 0L) return 77; - if ((active12 & 0x24000400000L) != 0L) + if ((active12 & 0x90001000000L) != 0L) return 74; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x1395ff27efffL) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e57fce7efffL) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; return 78; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x80000000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) return 78; - if ((active12 & 0x180000L) != 0L) + if ((active12 & 0x600000L) != 0L) return 11; - if ((active12 & 0x10000000L) != 0L) + if ((active12 & 0x40000000L) != 0L) return 79; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0xfbf57eeffffL) != 0L) + if ((active12 & 0x90000000000L) != 0L) + return 72; + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + return 78; + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) { if (jjmatchedPos != 1) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 1; } return 78; } - if ((active12 & 0x24000000000L) != 0L) - return 72; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) - return 78; return -1; case 2: - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) - return 78; - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x15fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) { if (jjmatchedPos != 2) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 2; } return 78; } + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) + return 78; return -1; case 3: - if ((active2 & 0x8000000000000000L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 3; } - return 80; + return 78; } - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x1ff9fefe0c38L) != 0L) + if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 3) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 3; } - return 78; + return 80; } - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) return 78; return -1; case 4: @@ -21883,138 +21911,138 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, { if (jjmatchedPos != 4) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 4; } return 80; } - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0xf39f5de05b4L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) + return 78; + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) { if (jjmatchedPos != 4) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 4; } return 78; } - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) - return 78; return -1; case 5: if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 5; } return 80; } - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0xf39f7ee0514L) != 0L) + if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) + return 78; + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) { if (jjmatchedPos != 5) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 5; } return 78; } - if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) - return 78; return -1; case 6: - if ((active2 & 0x8000000000000000L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 6; } - return 80; - } - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) return 78; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x909b7fa0014L) != 0L) + } + if ((active2 & 0x8000000000000000L) != 0L) { if (jjmatchedPos != 6) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 6; } - return 78; + return 80; } + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + return 78; return -1; case 7: - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x908a7f80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) { if (jjmatchedPos != 7) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 7; } return 78; } - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x110020004L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) return 78; if ((active2 & 0x8000000000000000L) != 0L) return 80; return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x90823e80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) { if (jjmatchedPos != 8) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 8; } return 78; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) return 78; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + return 78; + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) { if (jjmatchedPos != 9) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 9; } return 78; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x10802800000L) != 0L) - return 78; return -1; case 10: - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) + return 78; + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) { if (jjmatchedPos != 10) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 10; } return 78; } - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) - return 78; return -1; case 11: - if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) - return 78; - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 11) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 11; } return 78; } + if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x9a00000000002000L) != 0L || (active2 & 0x5L) != 0L || (active3 & 0x10000000000000L) != 0L || (active4 & 0x220000L) != 0L || (active5 & 0x2000000000040100L) != 0L || (active6 & 0x40000000000L) != 0L || (active7 & 0x40200000000000L) != 0L || (active8 & 0x500022001L) != 0L || (active9 & 0x2000000000c1050L) != 0L || (active10 & 0x8000L) != 0L || (active11 & 0x80010L) != 0L) + return 78; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 12; return 78; } @@ -22022,9 +22050,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 13: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 13; return 78; } @@ -22034,19 +22062,19 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 78; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 14; return 78; } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 15) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 15; } return 78; @@ -22055,11 +22083,11 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 16) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 16; } return 78; @@ -22068,62 +22096,62 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 17: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) + return 78; + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 17; return 78; } - if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) - return 78; return -1; case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { if (jjmatchedPos != 18) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 18; } return 78; } return -1; case 19: - if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) - return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 19; return 78; } + if ((active1 & 0x100L) != 0L || (active5 & 0x20000L) != 0L || (active7 & 0x80000000L) != 0L) + return 78; return -1; case 20: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) + return 78; + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 20; return 78; } - if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) - return 78; return -1; case 21: - if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) - return 78; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 21; return 78; } + if ((active2 & 0x2000L) != 0L || (active10 & 0xc0000000020L) != 0L) + return 78; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 22; return 78; } @@ -22131,9 +22159,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 23: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 23; return 78; } @@ -22143,17 +22171,17 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 78; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 24; return 78; } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 25; return 78; } @@ -22161,9 +22189,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 26; return 78; } @@ -22171,45 +22199,45 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 27; return 78; } return -1; case 28: - if ((active8 & 0x200000000000000L) != 0L) - return 78; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 28; return 78; } + if ((active8 & 0x200000000000000L) != 0L) + return 78; return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 29; return 78; } return -1; case 30: - if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L) + return 78; + if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 30; return 78; } - if ((active1 & 0x400000000000000L) != 0L) - return 78; return -1; case 31: - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 31; return 78; } @@ -22217,9 +22245,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 32: - if ((active11 & 0x80000000000L) != 0L) + if ((active11 & 0x200000000000L) != 0L) { - jjmatchedKind = 818; + jjmatchedKind = 820; jjmatchedPos = 32; return 78; } @@ -22245,74 +22273,74 @@ private final int jjMoveStringLiteralDfa0_4() switch(curChar) { case 33: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000L); case 34: - return jjStartNfaWithStates_4(0, 796, 79); + return jjStartNfaWithStates_4(0, 798, 79); case 36: - return jjStartNfaWithStates_4(0, 799, 78); + return jjStartNfaWithStates_4(0, 801, 78); case 37: - return jjStopAtPos(0, 791); + return jjStopAtPos(0, 793); case 39: - return jjStartNfaWithStates_4(0, 795, 58); + return jjStartNfaWithStates_4(0, 797, 58); case 40: - return jjStopAtPos(0, 764); + return jjStopAtPos(0, 766); case 41: - return jjStopAtPos(0, 765); + return jjStopAtPos(0, 767); case 42: - jjmatchedKind = 789; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000000L); + jjmatchedKind = 791; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000000000L); case 43: - return jjStopAtPos(0, 786); + return jjStopAtPos(0, 788); case 44: - return jjStopAtPos(0, 776); + return jjStopAtPos(0, 778); case 45: - jjmatchedKind = 787; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000L); + jjmatchedKind = 789; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000L); case 46: - jjmatchedKind = 775; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); + jjmatchedKind = 777; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L); case 47: - jjmatchedKind = 790; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x24000000000L); + jjmatchedKind = 792; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x90000000000L); case 58: - jjmatchedKind = 781; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L); + jjmatchedKind = 783; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x400000000L); case 59: - return jjStopAtPos(0, 774); + return jjStopAtPos(0, 776); case 60: - jjmatchedKind = 779; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x14000L); + jjmatchedKind = 781; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x50000L); case 61: - jjmatchedKind = 777; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2000000L); + jjmatchedKind = 779; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000000L); case 62: - jjmatchedKind = 778; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L); + jjmatchedKind = 780; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x20000L); case 63: - return jjStopAtPos(0, 780); + return jjStopAtPos(0, 782); case 91: - return jjStopAtPos(0, 772); + return jjStopAtPos(0, 774); case 93: - return jjStopAtPos(0, 773); + return jjStopAtPos(0, 775); case 94: - return jjStopAtPos(0, 798); + return jjStopAtPos(0, 800); case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_4(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_4(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_4(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -22325,51 +22353,51 @@ private final int jjMoveStringLiteralDfa0_4() return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x200fffL, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -22380,12 +22408,12 @@ private final int jjMoveStringLiteralDfa0_4() case 122: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x8000L, 0x0L); case 123: - return jjStartNfaWithStates_4(0, 770, 77); + return jjStartNfaWithStates_4(0, 772, 77); case 124: - jjmatchedKind = 797; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L); + jjmatchedKind = 799; + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L); case 125: - return jjStopAtPos(0, 771); + return jjStopAtPos(0, 773); default : return jjMoveNfa_4(0, 0); } @@ -22400,55 +22428,55 @@ private final int jjMoveStringLiteralDfa1_4(long active0, long active1, long act switch(curChar) { case 42: - if ((active12 & 0x20000000000L) != 0L) + if ((active12 & 0x80000000000L) != 0L) { - jjmatchedKind = 809; + jjmatchedKind = 811; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x4000000000L); + return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0x10000000000L); case 46: - if ((active12 & 0x4000000L) != 0L) - return jjStopAtPos(1, 794); + if ((active12 & 0x10000000L) != 0L) + return jjStopAtPos(1, 796); break; case 47: - if ((active12 & 0x8000000000L) != 0L) - return jjStopAtPos(1, 807); + if ((active12 & 0x20000000000L) != 0L) + return jjStopAtPos(1, 809); break; case 58: - if ((active12 & 0x100000000L) != 0L) - return jjStopAtPos(1, 800); + if ((active12 & 0x400000000L) != 0L) + return jjStopAtPos(1, 802); break; case 61: - if ((active12 & 0x4000L) != 0L) - return jjStopAtPos(1, 782); - else if ((active12 & 0x8000L) != 0L) - return jjStopAtPos(1, 783); + if ((active12 & 0x10000L) != 0L) + return jjStopAtPos(1, 784); else if ((active12 & 0x20000L) != 0L) return jjStopAtPos(1, 785); + else if ((active12 & 0x80000L) != 0L) + return jjStopAtPos(1, 787); break; case 62: - if ((active12 & 0x10000L) != 0L) - return jjStopAtPos(1, 784); - else if ((active12 & 0x100000L) != 0L) - return jjStopAtPos(1, 788); - else if ((active12 & 0x2000000L) != 0L) - return jjStopAtPos(1, 793); + if ((active12 & 0x40000L) != 0L) + return jjStopAtPos(1, 786); + else if ((active12 & 0x400000L) != 0L) + return jjStopAtPos(1, 790); + else if ((active12 & 0x8000000L) != 0L) + return jjStopAtPos(1, 795); break; case 65: case 97: - return jjMoveStringLiteralDfa2_4(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_4(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_4(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_4(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -22467,7 +22495,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_4(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22491,7 +22519,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -22509,7 +22537,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_4(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -22523,7 +22551,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x200c00L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -22536,7 +22564,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -22544,10 +22572,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_4(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22560,8 +22588,8 @@ else if ((active4 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(1, 51, 78); return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0x1c0000000000020L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x3c0000000000L, active10, 0x1000000L, active11, 0L, active12, 0L); case 124: - if ((active12 & 0x1000000L) != 0L) - return jjStopAtPos(1, 792); + if ((active12 & 0x4000000L) != 0L) + return jjStopAtPos(1, 794); break; default : break; @@ -22580,14 +22608,14 @@ private final int jjMoveStringLiteralDfa2_4(long old0, long active0, long old1, switch(curChar) { case 43: - if ((active12 & 0x4000000000L) != 0L) - return jjStopAtPos(2, 806); + if ((active12 & 0x10000000000L) != 0L) + return jjStopAtPos(2, 808); break; case 65: case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_4(2, 8, 78); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x50400006400L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -22600,7 +22628,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -22621,14 +22649,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_4(2, 385, 78); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_4(2, 406, 78); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_4(2, 20, 78); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_4(2, 388, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -22636,14 +22664,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_4(2, 37, 78); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_4(2, 301, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22672,12 +22700,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_4(2, 716, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_4(2, 616, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -22685,7 +22713,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_4(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -22716,7 +22744,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -22724,7 +22752,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -22750,7 +22778,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -22776,7 +22804,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -22793,7 +22821,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22824,7 +22852,7 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, return jjStartNfaWithStates_4(3, 686, 78); break; case 95: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -22834,7 +22862,7 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_4(3, 285, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -22918,7 +22946,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_4(3, 664, 78); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_4(3, 719, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -22928,7 +22956,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -22942,10 +22970,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); + return jjMoveStringLiteralDfa4_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); case 73: case 105: - return jjMoveStringLiteralDfa4_4(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); + return jjMoveStringLiteralDfa4_4(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -22981,9 +23009,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_4(3, 455, 78); - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(3, 737, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(3, 739, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -23014,23 +23042,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(3, 738, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(3, 740, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(3, 240, 78); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_4(3, 279, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_4(3, 181, 78); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(3, 537, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x2000020400L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); case 81: case 113: return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -23066,7 +23094,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); + return jjMoveStringLiteralDfa4_4(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -23077,7 +23105,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_4(3, 531, 78); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_4(3, 628, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -23097,15 +23125,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(3, 419, 78); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_4(3, 598, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_4(3, 442, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -23143,7 +23171,7 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, return jjStartNfaWithStates_4(4, 687, 78); break; case 95: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x1000000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); case 65: case 97: return jjMoveStringLiteralDfa5_4(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -23154,9 +23182,9 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(4, 742, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); + if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(4, 744, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -23217,7 +23245,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); + return jjMoveStringLiteralDfa5_4(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -23227,7 +23255,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_4(4, 685, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); + return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -23249,7 +23277,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_4(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); + return jjMoveStringLiteralDfa5_4(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -23270,9 +23298,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(4, 748, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(4, 750, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); case 77: case 109: return jjMoveStringLiteralDfa5_4(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -23289,7 +23317,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_4(4, 65, 78); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(4, 670, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); + return jjMoveStringLiteralDfa5_4(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); case 79: case 111: return jjMoveStringLiteralDfa5_4(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -23389,7 +23417,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -23397,11 +23425,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_4(4, 14, 78); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); case 88: case 120: - if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(4, 731, 78); + if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(4, 733, 78); return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -23416,9 +23444,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_4(4, 188, 78); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_4(4, 198, 78); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(4, 743, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(4, 745, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); case 90: case 122: return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -23439,7 +23467,7 @@ private final int jjMoveStringLiteralDfa5_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_4(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); + return jjMoveStringLiteralDfa6_4(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -23462,7 +23490,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(5, 447, 78); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(5, 602, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -23521,7 +23549,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_4(5, 671, 78); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(5, 676, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); + return jjMoveStringLiteralDfa6_4(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -23531,17 +23559,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_4(5, 247, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_4(5, 310, 78); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_4(5, 514, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_4(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); + case 75: + case 107: + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -23550,7 +23581,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_4(5, 416, 78); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_4(5, 513, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -23586,15 +23617,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_4(5, 711, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_4(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(5, 490, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); case 81: case 113: return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -23618,7 +23649,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -23637,7 +23668,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_4(5, 398, 78); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(5, 691, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -23676,13 +23707,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(5, 675, 78); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_4(5, 678, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_4(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x4L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -23706,7 +23737,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); default : break; } @@ -23728,10 +23759,10 @@ private final int jjMoveStringLiteralDfa6_4(long old0, long active0, long old1, return jjStartNfaWithStates_4(6, 464, 78); break; case 95: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_4(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa7_4(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); case 66: case 98: return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -23795,13 +23826,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(6, 665, 78); - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(6, 740, 78); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(6, 741, 78); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(6, 746, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x11000004L); + else if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(6, 742, 78); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(6, 743, 78); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(6, 748, 78); + return jjMoveStringLiteralDfa7_4(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); case 70: case 102: return jjMoveStringLiteralDfa7_4(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -23826,19 +23857,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(6, 499, 78); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_4(6, 698, 78); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(6, 734, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(6, 736, 78); + return jjMoveStringLiteralDfa7_4(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_4(6, 50, 78); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(6, 745, 78); + else if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(6, 747, 78); return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_4(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); + return jjMoveStringLiteralDfa7_4(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -23895,7 +23926,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); case 79: case 111: return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -23932,7 +23963,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_4(6, 696, 78); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_4(6, 714, 78); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -23992,10 +24023,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_4(6, 697, 78); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_4(6, 712, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); + return jjMoveStringLiteralDfa7_4(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_4(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa7_4(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); case 86: case 118: return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -24037,7 +24068,7 @@ private final int jjMoveStringLiteralDfa7_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_4(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_4(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); + return jjMoveStringLiteralDfa8_4(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -24061,8 +24092,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(7, 57, 78); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_4(7, 156, 78); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(7, 736, 78); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(7, 738, 78); return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -24114,7 +24145,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_4(7, 660, 78); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_4(7, 721, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -24130,7 +24161,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_4(7, 395, 78); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 642, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -24138,7 +24169,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_4(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -24157,9 +24188,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(7, 359, 78); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_4(7, 581, 78); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(7, 732, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(7, 734, 78); + return jjMoveStringLiteralDfa8_4(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); case 77: case 109: return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -24172,10 +24203,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_4(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -24187,7 +24218,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_4(7, 554, 78); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 706, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); + return jjMoveStringLiteralDfa8_4(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -24209,7 +24240,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 450, 78); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(7, 615, 78); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -24255,7 +24286,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_4(7, 518, 78); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(7, 627, 78); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(7, 726, 78); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); case 90: case 122: return jjMoveStringLiteralDfa8_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -24289,7 +24322,7 @@ private final int jjMoveStringLiteralDfa8_4(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(8, 618, 78); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -24298,8 +24331,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_4(8, 235, 78); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(8, 666, 78); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(8, 730, 78); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(8, 732, 78); return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -24367,9 +24400,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(8, 735, 78); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(8, 737, 78); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -24377,7 +24410,7 @@ else if ((active11 & 0x80000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(8, 42, 78); - return jjMoveStringLiteralDfa9_4(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); + return jjMoveStringLiteralDfa9_4(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -24393,7 +24426,7 @@ else if ((active11 & 0x80000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -24419,7 +24452,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_4(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -24429,7 +24462,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); case 81: case 113: return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -24481,7 +24514,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x800000000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); case 86: case 118: return jjMoveStringLiteralDfa9_4(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -24582,7 +24615,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_4(9, 727, 78); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(9, 729, 78); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); + else if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(9, 731, 78); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -24623,7 +24658,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -24654,10 +24689,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_4(9, 458, 78); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_4(9, 648, 78); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(9, 739, 78); - else if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(9, 744, 78); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(9, 741, 78); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(9, 746, 78); return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -24677,7 +24712,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); case 86: case 118: return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -24704,7 +24739,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); default : break; } @@ -24741,7 +24776,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_4(10, 341, 78); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_4(10, 667, 78); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -24762,8 +24797,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_4(10, 620, 78); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(10, 624, 78); - else if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(10, 733, 78); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(10, 735, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -24806,8 +24841,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_4(10, 651, 78); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(10, 728, 78); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(10, 730, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -24816,8 +24851,8 @@ else if ((active11 & 0x1000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_4(10, 604, 78); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(10, 726, 78); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(10, 728, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -24893,7 +24928,7 @@ private final int jjMoveStringLiteralDfa11_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -25095,7 +25130,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_4(12, 584, 78); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -25141,7 +25176,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_4(13, 494, 78); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_4(13, 656, 78); - return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25309,7 +25344,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(14, 575, 78); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_4(14, 592, 78); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -25411,7 +25446,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -25464,7 +25499,7 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -25564,7 +25599,7 @@ private final int jjMoveStringLiteralDfa17_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -25616,7 +25651,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25677,7 +25712,7 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25744,7 +25779,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25776,7 +25811,7 @@ private final int jjMoveStringLiteralDfa21_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -25870,7 +25905,7 @@ private final int jjMoveStringLiteralDfa22_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -25922,7 +25957,7 @@ private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -25989,7 +26024,7 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); default : break; } @@ -26043,7 +26078,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -26064,7 +26099,7 @@ private final int jjMoveStringLiteralDfa26_4(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -26112,7 +26147,7 @@ private final int jjMoveStringLiteralDfa27_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_4(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -26139,7 +26174,7 @@ private final int jjMoveStringLiteralDfa28_4(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_4(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -26164,7 +26199,7 @@ private final int jjMoveStringLiteralDfa29_4(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0L, active11, 0x200000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_4(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -26189,7 +26224,7 @@ private final int jjMoveStringLiteralDfa30_4(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0L, active11, 0x200000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -26215,7 +26250,7 @@ private final int jjMoveStringLiteralDfa31_4(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_4(31, 129, 78); - return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x80000000000L); + return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x200000000000L); default : break; } @@ -26234,7 +26269,7 @@ private final int jjMoveStringLiteralDfa32_4(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_4(active11, 0x80000000000L); + return jjMoveStringLiteralDfa33_4(active11, 0x200000000000L); default : break; } @@ -26253,8 +26288,8 @@ private final int jjMoveStringLiteralDfa33_4(long old11, long active11) { case 84: case 116: - if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(33, 747, 78); + if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(33, 749, 78); break; default : break; @@ -26285,8 +26320,8 @@ private final int jjMoveNfa_4(int startState, int curPos) jjCheckNAddStates(62, 64); else if (curChar == 34) { - if (kind > 761) - kind = 761; + if (kind > 763) + kind = 763; } break; case 58: @@ -26294,8 +26329,8 @@ else if (curChar == 34) jjCheckNAddStates(65, 67); else if (curChar == 39) { - if (kind > 762) - kind = 762; + if (kind > 764) + kind = 764; } if ((0xfc00f7faffffc9ffL & l) != 0L) jjstateSet[jjnewStateCnt++] = 59; @@ -26307,8 +26342,8 @@ else if (curChar == 39) jjCheckNAddStates(16, 18); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26319,8 +26354,8 @@ else if (curChar == 39) case 76: if ((0x3ff000000000000L & l) != 0L) { - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); } if ((0x3ff000000000000L & l) != 0L) @@ -26331,8 +26366,8 @@ else if (curChar == 39) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26357,8 +26392,8 @@ else if (curChar == 38) jjstateSet[jjnewStateCnt++] = 32; if ((0x3ff201000000000L & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if ((0x3ff001000000000L & l) != 0L) @@ -26369,8 +26404,8 @@ else if (curChar == 38) case 74: if (curChar == 47) { - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); } else if (curChar == 42) @@ -26381,8 +26416,8 @@ else if (curChar == 42) jjCheckNAddTwoStates(25, 26); if ((0x3ff201000000000L & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if (curChar == 36) @@ -26399,8 +26434,8 @@ else if (curChar == 46) jjCheckNAddTwoStates(51, 52); else if (curChar == 7) { - if (kind > 824) - kind = 824; + if (kind > 826) + kind = 826; } else if (curChar == 45) jjstateSet[jjnewStateCnt++] = 11; @@ -26408,14 +26443,14 @@ else if (curChar == 34) jjCheckNAddStates(62, 64); if ((0x3ff000000000000L & l) != 0L) { - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(80, 86); } else if (curChar == 36) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } break; @@ -26432,8 +26467,8 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 3; break; case 5: - if (curChar == 39 && kind > 755) - kind = 755; + if (curChar == 39 && kind > 757) + kind = 757; break; case 6: if (curChar == 34) @@ -26447,30 +26482,30 @@ else if (curChar == 36) jjCheckNAddStates(62, 64); break; case 10: - if (curChar == 34 && kind > 761) - kind = 761; + if (curChar == 34 && kind > 763) + kind = 763; break; case 11: if (curChar != 45) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); break; case 12: if ((0xffffffffffffdbffL & l) == 0L) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); break; case 13: - if ((0x2400L & l) != 0L && kind > 810) - kind = 810; + if ((0x2400L & l) != 0L && kind > 812) + kind = 812; break; case 14: - if (curChar == 10 && kind > 810) - kind = 810; + if (curChar == 10 && kind > 812) + kind = 812; break; case 15: if (curChar == 13) @@ -26487,15 +26522,15 @@ else if (curChar == 36) case 22: if (curChar != 36) break; - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); break; case 23: if ((0x3ff201000000000L & l) == 0L) break; - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); break; case 24: @@ -26513,8 +26548,8 @@ else if (curChar == 36) case 27: if (curChar != 36) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAddTwoStates(27, 28); break; case 28: @@ -26524,8 +26559,8 @@ else if (curChar == 36) case 29: if ((0x3ff001000000000L & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjCheckNAdd(29); break; case 32: @@ -26545,25 +26580,25 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 34; break; case 36: - if (curChar == 34 && kind > 821) - kind = 821; + if (curChar == 34 && kind > 823) + kind = 823; break; case 37: - if (curChar == 7 && kind > 824) - kind = 824; + if (curChar == 7 && kind > 826) + kind = 826; break; case 38: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAddStates(80, 86); break; case 39: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 749) - kind = 749; + if (kind > 751) + kind = 751; jjCheckNAdd(39); break; case 40: @@ -26577,8 +26612,8 @@ else if (curChar == 36) case 43: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 750) - kind = 750; + if (kind > 752) + kind = 752; jjCheckNAdd(43); break; case 44: @@ -26592,22 +26627,22 @@ else if (curChar == 36) case 46: if (curChar != 46) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(47); break; case 47: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(47); break; case 48: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAddStates(93, 95); break; case 49: @@ -26625,8 +26660,8 @@ else if (curChar == 36) case 52: if ((0x3ff000000000000L & l) == 0L) break; - if (kind > 751) - kind = 751; + if (kind > 753) + kind = 753; jjCheckNAdd(52); break; case 53: @@ -26641,12 +26676,12 @@ else if (curChar == 36) jjCheckNAddStates(65, 67); break; case 57: - if (curChar == 39 && kind > 762) - kind = 762; + if (curChar == 39 && kind > 764) + kind = 764; break; case 59: - if (curChar == 39 && kind > 763) - kind = 763; + if (curChar == 39 && kind > 765) + kind = 765; break; case 61: if (curChar == 32) @@ -26673,14 +26708,14 @@ else if (curChar == 36) jjstateSet[jjnewStateCnt++] = 73; break; case 73: - if ((0xffff7fffffffffffL & l) != 0L && kind > 808) - kind = 808; + if ((0xffff7fffffffffffL & l) != 0L && kind > 810) + kind = 810; break; case 75: if (curChar != 47) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjCheckNAddStates(71, 73); break; default : break; @@ -26715,8 +26750,8 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } break; @@ -26727,8 +26762,8 @@ else if (curChar == 92) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } break; @@ -26739,13 +26774,13 @@ else if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; else if ((0x1000000010L & l) != 0L) { - if (kind > 766) - kind = 766; + if (kind > 768) + kind = 768; } if ((0x10000000100000L & l) != 0L) { - if (kind > 767) - kind = 767; + if (kind > 769) + kind = 769; } break; case 31: @@ -26755,8 +26790,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddStates(68, 70); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } break; @@ -26765,8 +26800,8 @@ else if ((0x1000000010L & l) != 0L) jjCheckNAddTwoStates(25, 26); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } break; @@ -26779,8 +26814,8 @@ else if (curChar == 96) jjCheckNAddStates(87, 89); if ((0x7fffffe87fffffeL & l) != 0L) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if ((0x20000000200000L & l) != 0L) @@ -26803,8 +26838,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(62, 64); break; case 12: - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(71, 73); break; case 17: @@ -26823,21 +26858,21 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(87, 89); break; case 21: - if (curChar == 96 && kind > 817) - kind = 817; + if (curChar == 96 && kind > 819) + kind = 819; break; case 22: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); break; case 23: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); break; case 24: @@ -26851,15 +26886,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(108, 109); break; case 29: if ((0x7fffffe87fffffeL & l) == 0L) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 29; break; case 30: @@ -26889,32 +26924,32 @@ else if ((0x100000001000000L & l) != 0L) jjAddStates(100, 107); break; case 62: - if ((0x1000000010L & l) != 0L && kind > 766) - kind = 766; + if ((0x1000000010L & l) != 0L && kind > 768) + kind = 768; break; case 64: - if ((0x10000000100000L & l) != 0L && kind > 767) - kind = 767; + if ((0x10000000100000L & l) != 0L && kind > 769) + kind = 769; break; case 66: if ((0x10000000100000L & l) != 0L) jjstateSet[jjnewStateCnt++] = 67; break; case 67: - if ((0x8000000080000L & l) != 0L && kind > 768) - kind = 768; + if ((0x8000000080000L & l) != 0L && kind > 770) + kind = 770; break; case 69: if ((0x4000000040L & l) != 0L) jjstateSet[jjnewStateCnt++] = 70; break; case 70: - if ((0x400000004000L & l) != 0L && kind > 769) - kind = 769; + if ((0x400000004000L & l) != 0L && kind > 771) + kind = 771; break; case 73: - if (kind > 808) - kind = 808; + if (kind > 810) + kind = 810; break; default : break; } @@ -26946,8 +26981,8 @@ else if ((0x100000001000000L & l) != 0L) case 1: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26958,8 +26993,8 @@ else if ((0x100000001000000L & l) != 0L) case 78: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26970,8 +27005,8 @@ else if ((0x100000001000000L & l) != 0L) case 31: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26982,8 +27017,8 @@ else if ((0x100000001000000L & l) != 0L) case 80: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -26992,8 +27027,8 @@ else if ((0x100000001000000L & l) != 0L) case 0: if (jjCanMove_1(hiByte, i1, i2, l1, l2)) { - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); } if (jjCanMove_1(hiByte, i1, i2, l1, l2)) @@ -27006,8 +27041,8 @@ else if ((0x100000001000000L & l) != 0L) case 12: if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) break; - if (kind > 810) - kind = 810; + if (kind > 812) + kind = 812; jjAddStates(71, 73); break; case 18: @@ -27018,15 +27053,15 @@ else if ((0x100000001000000L & l) != 0L) case 22: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); break; case 23: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 818) - kind = 818; + if (kind > 820) + kind = 820; jjCheckNAdd(23); break; case 24: @@ -27040,15 +27075,15 @@ else if ((0x100000001000000L & l) != 0L) case 27: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjAddStates(108, 109); break; case 29: if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) break; - if (kind > 820) - kind = 820; + if (kind > 822) + kind = 822; jjstateSet[jjnewStateCnt++] = 29; break; case 33: @@ -27061,8 +27096,8 @@ else if ((0x100000001000000L & l) != 0L) jjCheckNAddStates(65, 67); break; case 73: - if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 808) - kind = 808; + if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 810) + kind = 810; break; default : break; } @@ -27179,12 +27214,13 @@ private static final boolean jjCanMove_1(int hiByte, int i1, int i2, long l1, lo null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, -null, null, null, null, null, null, null, null, null, "\50", "\51", null, null, null, -null, "\173", "\175", "\133", "\135", "\73", "\56", "\54", "\75", "\76", "\74", -"\77", "\72", "\74\75", "\76\75", "\74\76", "\41\75", "\53", "\55", "\55\76", "\52", -"\57", "\45", "\174\174", "\75\76", "\56\56", "\47", "\42", "\174", "\136", "\44", -"\72\72", null, null, null, null, null, "\57\52\53", "\52\57", null, null, null, null, -null, null, null, null, null, null, null, null, null, null, null, null, null, }; +null, null, null, null, null, null, null, null, null, null, null, "\50", "\51", null, +null, null, null, "\173", "\175", "\133", "\135", "\73", "\56", "\54", "\75", "\76", +"\74", "\77", "\72", "\74\75", "\76\75", "\74\76", "\41\75", "\53", "\55", "\55\76", +"\52", "\57", "\45", "\174\174", "\75\76", "\56\56", "\47", "\42", "\174", "\136", +"\44", "\72\72", null, null, null, null, null, "\57\52\53", "\52\57", null, null, +null, null, null, null, null, null, null, null, null, null, null, null, null, null, +null, }; public static final String[] lexStateNames = { "DEFAULT", "DQID", @@ -27227,31 +27263,32 @@ private static final boolean jjCanMove_1(int hiByte, int i1, int i2, long l1, lo -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, 6, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, }; static final long[] jjtoToken = { 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, - 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfef8ffffffffffffL, - 0x13fc0c1ffffffffL, + 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xfbe3ffffffffffffL, + 0x4ff0307ffffffffL, }; static final long[] jjtoSkip = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x1c3e00000000L, + 0x70f800000000L, }; static final long[] jjtoSpecial = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x180000000000L, + 0x600000000000L, }; static final long[] jjtoMore = { 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, - 0x230000000000L, + 0x8c0000000000L, }; protected SimpleCharStream input_stream; private final int[] jjrounds = new int[94]; @@ -27398,18 +27435,18 @@ public Token getNextToken() jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_5(); - if (jjmatchedPos == 0 && jjmatchedKind > 813) + if (jjmatchedPos == 0 && jjmatchedKind > 815) { - jjmatchedKind = 813; + jjmatchedKind = 815; } break; case 6: jjmatchedKind = 0x7fffffff; jjmatchedPos = 0; curPos = jjMoveStringLiteralDfa0_6(); - if (jjmatchedPos == 0 && jjmatchedKind > 813) + if (jjmatchedPos == 0 && jjmatchedKind > 815) { - jjmatchedKind = 813; + jjmatchedKind = 815; } break; } @@ -27485,13 +27522,13 @@ void SkipLexicalActions(Token matchedToken) { switch(jjmatchedKind) { - case 811 : + case 813 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); popState(); break; - case 812 : + case 814 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); @@ -27506,14 +27543,14 @@ void MoreLexicalActions() jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch(jjmatchedKind) { - case 808 : + case 810 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; pushState(); break; - case 809 : + case 811 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen)); @@ -27594,7 +27631,7 @@ void TokenLexicalActions(Token matchedToken) image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); afterTableName(); break; - case 818 : + case 820 : if (image == null) image = new StringBuffer(); image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlCustomParserTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlCustomParserTest.java index 6136504ab44cb..165c5c2804e89 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlCustomParserTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlCustomParserTest.java @@ -249,7 +249,9 @@ public void createTableWithOptions() throws SqlParseException { " data_region=my_data_region," + " key_type=my_key_type," + " value_type=my_value_type," + - " encrypted=true"; + " encrypted=true," + + " wrap_key=true," + + " wrap_value=true"; SqlNode node = parse(qry); @@ -268,6 +270,8 @@ public void createTableWithOptions() throws SqlParseException { assertThatStringOptionPresent(createTable.createOptionList().getList(), "KEY_TYPE", "MY_KEY_TYPE"); assertThatStringOptionPresent(createTable.createOptionList().getList(), "VALUE_TYPE", "MY_VALUE_TYPE"); assertThatBooleanOptionPresent(createTable.createOptionList().getList(), "ENCRYPTED", true); + assertThatBooleanOptionPresent(createTable.createOptionList().getList(), "WRAP_KEY", true); + assertThatBooleanOptionPresent(createTable.createOptionList().getList(), "WRAP_VALUE", true); } /** @@ -286,7 +290,9 @@ public void createTableWithOptionsQuoted() throws SqlParseException { " data_region= my_data_region," + " key_type=my_key_type," + " value_type=my_value_type," + - " encrypted=true" + + " encrypted=true," + + " wrap_key=true," + + " wrap_value=true" + "\""; SqlNode node = parse(qry); @@ -307,6 +313,8 @@ public void createTableWithOptionsQuoted() throws SqlParseException { assertThatStringOptionPresent(opts, "KEY_TYPE", "my_key_type"); assertThatStringOptionPresent(opts, "VALUE_TYPE", "my_value_type"); assertThatStringOptionPresent(opts, "ENCRYPTED", "true"); + assertThatStringOptionPresent(opts, "WRAP_KEY", "true"); + assertThatStringOptionPresent(opts, "WRAP_VALUE", "true"); assertParserThrows("create table my_table(id int) with \"unknown_key=val\"", SqlParseException.class); assertParserThrows("create table my_table(id int) with \"template\"", SqlParseException.class); From 5f4a5edcc2a5d58882c55f09cd0db8aa18864984 Mon Sep 17 00:00:00 2001 From: zstan Date: Tue, 21 Apr 2026 09:54:53 +0300 Subject: [PATCH 04/13] fix after review --- .../calcite/exec/ddl/DdlCommandHandler.java | 6 ++- .../prepare/ddl/CreateTableCommand.java | 4 +- .../prepare/ddl/DdlSqlToCommandConverter.java | 44 ++++++++----------- .../AbstractBasicIntegrationTest.java | 16 ++++++- .../integration/TableDdlIntegrationTest.java | 17 +++---- .../query/calcite/jdbc/JdbcQueryTest.java | 29 ++++++------ .../query/h2/sql/GridSqlQueryParser.java | 2 +- 7 files changed, 60 insertions(+), 58 deletions(-) diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java index 34e2e4eed1ce8..8cfb5083c08bf 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java @@ -199,9 +199,9 @@ private void checkKVWrappedParam(CreateTableCommand cmd) { } } - boolean wrapVal = cmd.wrapValue(); + Boolean wrapVal = cmd.wrapValue(); - if (!wrapVal) { + if (wrapVal != null && !wrapVal) { if (!cmd.primaryKeyColumns().isEmpty() && cmd.columns().size() - cmd.primaryKeyColumns().size() > 1) { throw new IgniteSQLException(WRAP_VALUE + " parameter cannot be \"false\" with multiple columns.", IgniteQueryErrorCode.PARSING); @@ -212,6 +212,8 @@ private void checkKVWrappedParam(CreateTableCommand cmd) { IgniteQueryErrorCode.PARSING); } } + else + cmd.wrapValue(true); // By default, value is always wrapped to allow for ALTER TABLE ADD COLUMN commands. } /** */ diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java index 5d1f1c763267a..8693da1b33a3f 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/CreateTableCommand.java @@ -50,7 +50,7 @@ public class CreateTableCommand implements DdlCommand { private Boolean wrapKey; /** Wrap value flag. */ - private boolean wrapValue = true; + private Boolean wrapValue; /** Name of cache value type. */ private String valTypeName; @@ -133,7 +133,7 @@ public void wrapKey(boolean wrapKey) { /** * @return wrap_value flag. */ - public boolean wrapValue() { + @Nullable public Boolean wrapValue() { return wrapValue; } diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java index a84919beb9d73..a7aa91f2060a4 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/prepare/ddl/DdlSqlToCommandConverter.java @@ -22,7 +22,6 @@ import java.util.Arrays; import java.util.HashSet; import java.util.List; -import java.util.Locale; import java.util.Map; import java.util.Set; import java.util.function.BiConsumer; @@ -87,13 +86,8 @@ public class DdlSqlToCommandConverter { private static final String SIMPLE_PREDICATE = "a simple identifier"; /** Processor that validates a value is a Sql Identifier. */ - private static final BiFunction VALUE_IS_IDENTIFIER_VALIDATOR = (opt, ctx) -> { - SqlNode val = opt.value(); - if (!(val instanceof SqlIdentifier) || !((SqlIdentifier)val).isSimple()) - throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); - - return ((SqlIdentifier)val).getSimple(); - }; + private static final BiFunction VALUE_IS_IDENTIFIER_VALIDATOR = + DdlSqlToCommandConverter::paramAsSimpleSqlIdentifier; /** Processor that validates that value can be parsed as boolean. */ private static final BiFunction VALUE_IS_BOOL_IDENTIFIER_VALIDATOR = @@ -102,16 +96,28 @@ public class DdlSqlToCommandConverter { if (val instanceof SqlLiteral) return ((SqlLiteral)val).booleanValue(); - if (!(val instanceof SqlIdentifier) || !((SqlIdentifier)val).isSimple()) - throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); + String simple = paramAsSimpleSqlIdentifier(opt, ctx); - String simple = ((SqlIdentifier)val).getSimple().toLowerCase(Locale.ROOT); - if (!"true".equals(simple) && !"false".equals(simple)) + if (!"true".equalsIgnoreCase(simple) && !"false".equalsIgnoreCase(simple)) throwOptionParsingException(opt, "Unexpected identifier: " + simple, ctx.query()); return Boolean.valueOf(((SqlIdentifier)val).getSimple()); }; + /** + * Shortcut for validating that option value is a simple identifier. + * + * @param opt An option to validate. + * @param ctx Planning context. + * @throws IgniteSQLException In case the param is not a simple identifier. + */ + private static String paramAsSimpleSqlIdentifier(IgniteSqlCreateTableOption opt, PlanningContext ctx) { + if (!(opt.value() instanceof SqlIdentifier) || !((SqlIdentifier)opt.value()).isSimple()) + throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); + + return ((SqlIdentifier)opt.value()).getSimple(); + } + /** Processor that unconditionally throws an AssertionException. */ private static final TableOptionProcessor UNSUPPORTED_OPTION_PROCESSOR = new TableOptionProcessor<>( null, @@ -467,20 +473,6 @@ private AlterTableDropCommand convertAlterTableDrop(IgniteSqlAlterTableDropColum return alterTblCmd; } - /** - * Short cut for validating that option value is a simple identifier. - * - * @param opt An option to validate. - * @param ctx Planning context. - * @throws IgniteSQLException In case the validation was failed. - */ - private String paramIsSqlIdentifierValidator(IgniteSqlCreateTableOption opt, PlanningContext ctx) { - if (!(opt.value() instanceof SqlIdentifier) || !((SqlIdentifier)opt.value()).isSimple()) - throwOptionParsingException(opt, SIMPLE_PREDICATE, ctx.query()); - - return ((SqlIdentifier)opt.value()).getSimple(); - } - /** * Creates a validator for an option which value should be value of given enumeration. * diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java index 7e64f3735759e..cabe00bdb2e21 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java @@ -19,6 +19,7 @@ import java.util.Collections; import java.util.List; +import java.util.concurrent.Callable; import org.apache.calcite.plan.RelOptCluster; import org.apache.calcite.rel.RelCollation; import org.apache.calcite.rex.RexNode; @@ -32,6 +33,7 @@ import org.apache.ignite.cache.query.annotations.QuerySqlField; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.internal.IgniteEx; +import org.apache.ignite.internal.processors.query.IgniteSQLException; import org.apache.ignite.internal.processors.query.QueryContext; import org.apache.ignite.internal.processors.query.QueryEngine; import org.apache.ignite.internal.processors.query.calcite.CalciteQueryProcessor; @@ -48,6 +50,7 @@ import org.apache.ignite.internal.thread.context.Scope; import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.internal.util.typedef.G; +import org.apache.ignite.testframework.GridTestUtils; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; import org.jetbrains.annotations.Nullable; @@ -174,7 +177,7 @@ protected QueryContext queryContext() { } /** - * Asserts that executeSql throws an exception. + * Asserts that {@link AbstractBasicIntegrationTest#sql(String, Object...)} throws an exception. * * @param sql Query. * @param cls Exception class. @@ -184,6 +187,17 @@ protected void assertThrows(String sql, Class cls, String m assertThrowsAnyCause(log, () -> sql(sql, args), cls, msg); } + /** + * Assert that closure throws an exception. + * + * @param call Closure. + * @param msg Optional message. + */ + @SuppressWarnings("ThrowableNotThrown") + protected static void assertThrowsSqlException(Callable call, @Nullable String msg) { + GridTestUtils.assertThrows(log, call, IgniteSQLException.class, msg); + } + /** */ protected void createAndPopulateTable() { createAndPopulateTable(client, 2, CacheMode.PARTITIONED); diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index 385771cc23629..0a338d8f33073 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -27,7 +27,6 @@ import java.util.List; import java.util.Map; import java.util.Set; -import java.util.concurrent.Callable; import java.util.function.Predicate; import java.util.stream.Collectors; import org.apache.ignite.IgniteCache; @@ -48,7 +47,6 @@ import org.apache.ignite.testframework.GridTestUtils; import org.hamcrest.CustomMatcher; import org.hamcrest.Matcher; -import org.jetbrains.annotations.Nullable; import org.junit.Test; import static org.apache.ignite.internal.processors.query.calcite.TestUtils.hasSize; @@ -445,23 +443,18 @@ public void testWrappingAlwaysOnWithComplexKV() { "WRAP_VALUE parameter cannot be \"false\" when VALUE_TYPE is defined."); } - /** */ - @SuppressWarnings("ThrowableNotThrown") - private static void assertThrowsSqlException(Callable call, @Nullable String msg) { - GridTestUtils.assertThrows(log, call, IgniteSQLException.class, msg); - } - /** * Test that {@code ADD COLUMN} fails. */ @Test public void testAlterTableFailOnSingleCacheValue() { - CacheConfiguration c = - new CacheConfiguration("ints").setIndexedTypes(Integer.class, Integer.class) - .setSqlSchema(QueryUtils.DFLT_SCHEMA); + CacheConfiguration ccfg = new CacheConfiguration<>("ints"); + ccfg + .setIndexedTypes(Integer.class, Integer.class) + .setSqlSchema(QueryUtils.DFLT_SCHEMA); try { - client.getOrCreateCache(c); + client.getOrCreateCache(ccfg); doTestAlterTableOnFlatValue("INTEGER"); } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java index 3201036c0772c..152f75bb38c32 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java @@ -33,6 +33,7 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; +import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; @@ -41,6 +42,9 @@ import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; import java.util.stream.Stream; +import javax.cache.Cache; +import org.apache.ignite.IgniteCache; +import org.apache.ignite.binary.BinaryObject; import org.apache.ignite.cache.query.annotations.QuerySqlTableFunction; import org.apache.ignite.calcite.CalciteQueryEngineConfiguration; import org.apache.ignite.configuration.CacheConfiguration; @@ -622,10 +626,19 @@ private void doTestKeyValueWrap(boolean wrapKey, boolean wrapVal, boolean testUu assertEqualsCollections(testUuid ? Arrays.asList(guid, guid) : Arrays.asList(1, "a"), resData); - Object key = createKeyForWrapTest(testUuid ? guid : 1, wrapKey); + IgniteCache cache = grid(0).cache(QueryUtils.createTableCacheName("PUBLIC", "T")); + cache = cache.withKeepBinary(); - Object val = grid(0).cache(QueryUtils.createTableCacheName("PUBLIC", "T")).withKeepBinary().get(key); + Iterator> it = cache.iterator(); + assertTrue(it.hasNext()); + Cache.Entry cacheItem = it.next(); + + Object key = cacheItem.getKey(); + + assertEquals(wrapKey, key instanceof BinaryObject); + + Object val = cache.get(key); assertNotNull(val); assertEquals(createValueForWrapTest(testUuid ? guid : "a", wrapVal), val); @@ -635,18 +648,6 @@ private void doTestKeyValueWrap(boolean wrapKey, boolean wrapVal, boolean testUu } } - /** - * @param key Key to wrap. - * @param wrap Whether key should be wrapped. - * @return (optionally wrapped) key. - */ - private Object createKeyForWrapTest(Object key, boolean wrap) { - if (!wrap) - return key; - - return grid(0).binary().builder(key instanceof UUID ? "tkey_guid" : "tkey").setField("id", key).build(); - } - /** * @param val Value to wrap. * @param wrap Whether value should be wrapped. diff --git a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlQueryParser.java b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlQueryParser.java index 6d55e238e4fdc..3941b80ffac4e 100644 --- a/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlQueryParser.java +++ b/modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/sql/GridSqlQueryParser.java @@ -1272,7 +1272,7 @@ private GridSqlCreateTable parseCreateTable(CreateTable createTbl) { res.wrapValue(false); } else - res.wrapValue(true); // By default value is always wrapped to allow for ALTER TABLE ADD COLUMN commands. + res.wrapValue(true); // By default, value is always wrapped to allow for ALTER TABLE ADD COLUMN commands. if (!F.isEmpty(res.valueTypeName()) && Objects.equals(res.keyTypeName(), res.valueTypeName())) { throw new IgniteSQLException("Key and value type names " + From b33ddc701dbda2bbfe66505002e49c2cbb638eaa Mon Sep 17 00:00:00 2001 From: zstan Date: Tue, 21 Apr 2026 10:43:14 +0300 Subject: [PATCH 05/13] minor --- .../processors/query/calcite/exec/ddl/DdlCommandHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java index 8cfb5083c08bf..072213bef0065 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java @@ -425,7 +425,7 @@ else if (!F.isEmpty(cmd.primaryKeyColumns()) && cmd.primaryKeyColumns().size() = res = new QueryEntityEx(res).implicitPk(true); } - if (!cmd.wrapValue()) { + if (cmd.wrapValue() != null && !cmd.wrapValue()) { ColumnDefinition valCol = null; for (ColumnDefinition col : cmd.columns()) { From f7dab8fa91a8121606cace52dd6a858e71c8bf23 Mon Sep 17 00:00:00 2001 From: zstan Date: Tue, 21 Apr 2026 18:14:41 +0300 Subject: [PATCH 06/13] fix after review 2 --- .../calcite/exec/ddl/DdlCommandHandler.java | 42 ++++-- .../AbstractBasicIntegrationTest.java | 8 +- .../integration/TableDdlIntegrationTest.java | 140 ++++++++++-------- .../query/calcite/jdbc/JdbcQueryTest.java | 3 - 4 files changed, 113 insertions(+), 80 deletions(-) diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java index 072213bef0065..5f4689dc31cfc 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/ddl/DdlCommandHandler.java @@ -187,17 +187,21 @@ private void handle0(CreateTableCommand cmd) throws IgniteCheckedException { private void checkKVWrappedParam(CreateTableCommand cmd) { Boolean wrapKey = cmd.wrapKey(); - if (wrapKey != null && !wrapKey) { - if (cmd.primaryKeyColumns().size() > 1) { - throw new IgniteSQLException(WRAP_KEY + " parameter cannot be \"false\" when composite primary key exists.", - IgniteQueryErrorCode.PARSING); - } + if (wrapKey != null) { + if (!wrapKey) { + if (cmd.primaryKeyColumns().size() > 1) { + throw new IgniteSQLException(WRAP_KEY + " parameter cannot be \"false\" when composite primary key exists.", + IgniteQueryErrorCode.PARSING); + } - if (!F.isEmpty(cmd.keyTypeName())) { - throw new IgniteSQLException(WRAP_KEY + " parameter cannot be \"false\" when " + KEY_TYPE + " is defined.", - IgniteQueryErrorCode.PARSING); + if (!F.isEmpty(cmd.keyTypeName())) { + throw new IgniteSQLException(WRAP_KEY + " parameter cannot be \"false\" when " + KEY_TYPE + " is defined.", + IgniteQueryErrorCode.PARSING); + } } } + else + cmd.wrapKey(!F.isEmpty(cmd.keyTypeName()) || cmd.primaryKeyColumns().size() > 1); Boolean wrapVal = cmd.wrapValue(); @@ -212,8 +216,7 @@ private void checkKVWrappedParam(CreateTableCommand cmd) { IgniteQueryErrorCode.PARSING); } } - else - cmd.wrapValue(true); // By default, value is always wrapped to allow for ALTER TABLE ADD COLUMN commands. + // By default, value is always wrapped to allow for ALTER TABLE ADD COLUMN commands. } /** */ @@ -348,7 +351,7 @@ private void handle0(AlterTableDropCommand cmd) throws IgniteCheckedException { /** */ private QueryEntity toQueryEntity(CreateTableCommand cmd) { - QueryEntity res = new QueryEntity(); + QueryEntityEx res = new QueryEntityEx(); res.setTableName(cmd.tableName()); @@ -408,21 +411,30 @@ private QueryEntity toQueryEntity(CreateTableCommand cmd) { if (!F.isEmpty(cmd.primaryKeyColumns())) { res.setKeyFields(new LinkedHashSet<>(cmd.primaryKeyColumns())); - res = new QueryEntityEx(res).setPreserveKeysOrder(true); + res.setPreserveKeysOrder(true); } } else if (!F.isEmpty(cmd.primaryKeyColumns()) && cmd.primaryKeyColumns().size() == 1) { String pkFieldName = cmd.primaryKeyColumns().get(0); - keyTypeName = res.getFields().get(pkFieldName); + if (cmd.wrapKey()) { + res.setKeyFields(Set.copyOf(cmd.primaryKeyColumns())); - res.setKeyFieldName(pkFieldName); + keyTypeName = QueryUtils.createTableKeyTypeName(valTypeName); + + res.setPreserveKeysOrder(true); + } + else { + keyTypeName = res.getFields().get(pkFieldName); + + res.setKeyFieldName(pkFieldName); + } } else { // if pk is not explicitly set, we create it ourselves keyTypeName = IgniteUuid.class.getName(); - res = new QueryEntityEx(res).implicitPk(true); + res.implicitPk(true); } if (cmd.wrapValue() != null && !cmd.wrapValue()) { diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java index 2fdcde7f66f8d..6134fa1ee53fd 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/AbstractBasicIntegrationTest.java @@ -19,7 +19,6 @@ import java.util.Collections; import java.util.List; -import java.util.concurrent.Callable; import org.apache.calcite.plan.RelOptCluster; import org.apache.calcite.rel.RelCollation; import org.apache.calcite.rex.RexNode; @@ -202,12 +201,13 @@ protected void assertThrows(IgniteEx ignite, String sql, Class call, @Nullable String msg) { - GridTestUtils.assertThrows(log, call, IgniteSQLException.class, msg); + protected void assertThrowsSqlException(String query, @Nullable String msg, Object... args) { + GridTestUtils.assertThrows(log, () -> sql(query, args), IgniteSQLException.class, msg); } /** */ diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index 0a338d8f33073..ac127d8f1d58b 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -358,18 +358,18 @@ public void createTableWithWrappedKeyVal() { { sql("create table my_table (id int, val varchar)"); - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + assertThrowsSqlException("create table my_table (id int, val varchar)", "Table already exists: MY_TABLE"); // WRAP_KEY, by default, this flag is set to false - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_key=true\"", "Table already exists: MY_TABLE"); // WRAP_VALUE, by default, this flag is set to true - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_value=false\"", "Table already exists: MY_TABLE"); - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\"", "Table already exists: MY_TABLE"); sql("DROP TABLE my_table"); @@ -378,14 +378,14 @@ public void createTableWithWrappedKeyVal() { { sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""); - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + assertThrowsSqlException("create table my_table (id int, val varchar)", "Table already exists: MY_TABLE"); // WRAP_VALUE, by default, this flag is set to true - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_value=false\"", "Table already exists: MY_TABLE"); - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\"", "Table already exists: MY_TABLE"); sql("DROP TABLE my_table"); @@ -394,14 +394,14 @@ public void createTableWithWrappedKeyVal() { { sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""); - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + assertThrowsSqlException("create table my_table (id int, val varchar)", "Table already exists: MY_TABLE"); // WRAP_VALUE, by default, this flag is set to true - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_key=true\"", "Table already exists: MY_TABLE"); - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\"", "Table already exists: MY_TABLE"); sql("DROP TABLE my_table"); @@ -410,15 +410,15 @@ public void createTableWithWrappedKeyVal() { { sql("create table my_table (id int, val varchar) WITH \"wrap_key=true, wrap_value=false\""); - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar)"), + assertThrowsSqlException("create table my_table (id int, val varchar)", "Table already exists: MY_TABLE"); // WRAP_VALUE, by default, this flag is set to true - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_key=true\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_key=true\"", "Table already exists: MY_TABLE"); // WRAP_VALUE, by default, this flag is set to true - assertThrowsSqlException(() -> sql("create table my_table (id int, val varchar) WITH \"wrap_value=false\""), + assertThrowsSqlException("create table my_table (id int, val varchar) WITH \"wrap_value=false\"", "Table already exists: MY_TABLE"); sql("DROP TABLE my_table"); @@ -428,18 +428,18 @@ public void createTableWithWrappedKeyVal() { /** Tests wrap=false is forbidden when key or value has more than one column. */ @Test public void testWrappingAlwaysOnWithComplexKV() { - assertThrowsSqlException(() -> sql("create table a (id int, x varchar, c bigint, primary key(id, c)) with \"wrap_key=false\""), + assertThrowsSqlException("create table a (id int, x varchar, c bigint, primary key(id, c)) with \"wrap_key=false\"", "WRAP_KEY parameter cannot be \"false\" when composite primary key exists."); - assertThrowsSqlException(() -> - sql("create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_key=false, key_type=custom\""), + assertThrowsSqlException( + "create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_key=false, key_type=custom\"", "WRAP_KEY parameter cannot be \"false\" when KEY_TYPE is defined."); - assertThrowsSqlException(() -> sql("create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_value=false\""), + assertThrowsSqlException("create table a (id int, x varchar, c bigint, primary key(id)) with \"wrap_value=false\"", "WRAP_VALUE parameter cannot be \"false\" with multiple columns."); - assertThrowsSqlException(() -> - sql("create table a (id int, x varchar, primary key(id)) with \"wrap_value=false, value_type=custom\""), + assertThrowsSqlException( + "create table a (id int, x varchar, primary key(id)) with \"wrap_value=false, value_type=custom\"", "WRAP_VALUE parameter cannot be \"false\" when VALUE_TYPE is defined."); } @@ -489,57 +489,81 @@ private void doTestAlterTableOnFlatValue(String tblName) { } /** - * Test single column PK without wrapping calculate correct inline size. + * Test single column PK with different wrapping params calculate correct inline size. + * PK index is always unwrapped if table was created via DDL. */ @Test - public void testInlineSizeNoWrap() { - try { - sql("CREATE TABLE IF NOT EXISTS T ( " + - " id varchar(15), " + - " col varchar(100), " + - " PRIMARY KEY(id) ) "); - assertEquals(18, sql( - "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); - } - finally { - sql("DROP TABLE IF EXISTS T"); + public void testInlineSizeKeyWrapParam() { + String query = "CREATE TABLE IF NOT EXISTS T ( " + + " id varchar(15), " + + " col varchar(100), " + + " PRIMARY KEY(id) ) "; + + { + try { + sql(query); + assertEquals(18, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } } - } - /** - * Test single column PK with wrapping calculate correct inline size. - */ - @Test - public void testInlineSizeWrap() { - try { - sql("CREATE TABLE IF NOT EXISTS T ( " + - " id varchar(15), " + - " col varchar(100), " + - " PRIMARY KEY(id) ) WITH \"wrap_key=true\""); - assertEquals(18, sql( - "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + { + try { + sql(query + "WITH \"wrap_key=true\""); + assertEquals(18, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } } - finally { - sql("DROP TABLE IF EXISTS T"); + + { + try { + sql(query + "WITH \"wrap_key=false\""); + assertEquals(18, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } } } /** - * Test two column PK with wrapping calculate correct inline size. + * Test two column PK with different wrapping params calculate correct inline size. + * PK index is always unwrapped if table was created via DDL. */ @Test - public void testInlineSizeWrapMultiPk() { - try { - sql("CREATE TABLE IF NOT EXISTS T ( " + - " id varchar(15), " + - " id2 uuid, " + - " col varchar(100), " + - " PRIMARY KEY(id, id2) ) WITH \"wrap_key=true\""); - assertEquals(35, sql( - "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + public void testInlineSizeMultiKeyWrapParam() { + String query = "CREATE TABLE IF NOT EXISTS T ( " + + " id varchar(15), " + + " id2 uuid, " + + " col varchar(100), " + + " PRIMARY KEY(id, id2) )"; + { + try { + sql(query); + assertEquals(35, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } } - finally { - sql("DROP TABLE IF EXISTS T"); + + { + try { + sql(query + "WITH \"wrap_key=true\""); + assertEquals(35, sql( + "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + } + finally { + sql("DROP TABLE IF EXISTS T"); + } } } diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java index 152f75bb38c32..a22e1c896439c 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/jdbc/JdbcQueryTest.java @@ -574,9 +574,6 @@ private void doTestKeyValueWrap(boolean wrapKey, boolean wrapVal, boolean testUu UUID guid = UUID.randomUUID(); - if (wrapKey) - sql += ",key_type=" + (testUuid ? "tkey_guid" : "tkey"); - if (wrapVal) sql += ",value_type=" + (testUuid ? "tval_guid" : "tval"); From 89645d4087c39da5adf1ab0dd47f1f62670514fc Mon Sep 17 00:00:00 2001 From: zstan Date: Wed, 22 Apr 2026 08:42:08 +0300 Subject: [PATCH 07/13] style --- .../integration/TableDdlIntegrationTest.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index ac127d8f1d58b..9c6359022429c 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -494,14 +494,14 @@ private void doTestAlterTableOnFlatValue(String tblName) { */ @Test public void testInlineSizeKeyWrapParam() { - String query = "CREATE TABLE IF NOT EXISTS T ( " + + String qry = "CREATE TABLE IF NOT EXISTS T ( " + " id varchar(15), " + " col varchar(100), " + " PRIMARY KEY(id) ) "; { try { - sql(query); + sql(qry); assertEquals(18, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); } @@ -512,7 +512,7 @@ public void testInlineSizeKeyWrapParam() { { try { - sql(query + "WITH \"wrap_key=true\""); + sql(qry + "WITH \"wrap_key=true\""); assertEquals(18, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); } @@ -523,7 +523,7 @@ public void testInlineSizeKeyWrapParam() { { try { - sql(query + "WITH \"wrap_key=false\""); + sql(qry + "WITH \"wrap_key=false\""); assertEquals(18, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); } @@ -539,14 +539,14 @@ public void testInlineSizeKeyWrapParam() { */ @Test public void testInlineSizeMultiKeyWrapParam() { - String query = "CREATE TABLE IF NOT EXISTS T ( " + + String qry = "CREATE TABLE IF NOT EXISTS T ( " + " id varchar(15), " + " id2 uuid, " + " col varchar(100), " + " PRIMARY KEY(id, id2) )"; { try { - sql(query); + sql(qry); assertEquals(35, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); } @@ -557,7 +557,7 @@ public void testInlineSizeMultiKeyWrapParam() { { try { - sql(query + "WITH \"wrap_key=true\""); + sql(qry + "WITH \"wrap_key=true\""); assertEquals(35, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); } From 4bfd3582aee4dea8662bd502912fc20dee8fb465 Mon Sep 17 00:00:00 2001 From: zstan Date: Thu, 23 Apr 2026 19:14:30 +0300 Subject: [PATCH 08/13] fix after review --- .../integration/TableDdlIntegrationTest.java | 54 +++++-------------- 1 file changed, 14 insertions(+), 40 deletions(-) diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index 9c6359022429c..61f7bccb29121 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -499,38 +499,19 @@ public void testInlineSizeKeyWrapParam() { " col varchar(100), " + " PRIMARY KEY(id) ) "; - { - try { - sql(qry); - assertEquals(18, sql( - "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); - } - finally { - sql("DROP TABLE IF EXISTS T"); - } - } + try { + for (String ddl : F.asList(qry, qry + "WITH \"wrap_key=true\"", qry + "WITH \"wrap_key=false\"")) { + sql(ddl); - { - try { - sql(qry + "WITH \"wrap_key=true\""); assertEquals(18, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); - } - finally { - sql("DROP TABLE IF EXISTS T"); - } - } - { - try { - sql(qry + "WITH \"wrap_key=false\""); - assertEquals(18, sql( - "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); - } - finally { sql("DROP TABLE IF EXISTS T"); } } + finally { + sql("DROP TABLE IF EXISTS T"); + } } /** @@ -544,27 +525,20 @@ public void testInlineSizeMultiKeyWrapParam() { " id2 uuid, " + " col varchar(100), " + " PRIMARY KEY(id, id2) )"; - { - try { - sql(qry); - assertEquals(35, sql( - "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); - } - finally { - sql("DROP TABLE IF EXISTS T"); - } - } - { - try { - sql(qry + "WITH \"wrap_key=true\""); + try { + for (String ddl : F.asList(qry, qry + "WITH \"wrap_key=true\"")) { + sql(ddl); + assertEquals(35, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); - } - finally { + sql("DROP TABLE IF EXISTS T"); } } + finally { + sql("DROP TABLE IF EXISTS T"); + } } /** From c0bd413dbc211698dd204785ee40045bba459529 Mon Sep 17 00:00:00 2001 From: zstan Date: Fri, 24 Apr 2026 10:11:15 +0300 Subject: [PATCH 09/13] fix --- .../query/calcite/integration/TableDdlIntegrationTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index 61f7bccb29121..e5334795d741e 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -503,7 +503,7 @@ public void testInlineSizeKeyWrapParam() { for (String ddl : F.asList(qry, qry + "WITH \"wrap_key=true\"", qry + "WITH \"wrap_key=false\"")) { sql(ddl); - assertEquals(18, sql( + assertEquals("Unexpected result for query [ddl=" + ddl + ']', 18, sql( "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); sql("DROP TABLE IF EXISTS T"); @@ -530,7 +530,7 @@ public void testInlineSizeMultiKeyWrapParam() { for (String ddl : F.asList(qry, qry + "WITH \"wrap_key=true\"")) { sql(ddl); - assertEquals(35, sql( + assertEquals(35, sql("Unexpected result for query [ddl=" + ddl + ']', "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); sql("DROP TABLE IF EXISTS T"); From d26816327816b8dcc3d6d8ca42206cdf8a4b3a12 Mon Sep 17 00:00:00 2001 From: zstan Date: Fri, 24 Apr 2026 10:32:06 +0300 Subject: [PATCH 10/13] fix test --- .../processors/query/calcite/sql/SqlReservedWordsTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java index 4137028bf7976..388935a59f4b7 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java @@ -114,6 +114,8 @@ public class SqlReservedWordsTest extends GridCommonAbstractTest { "WHEN", "WHERE", "WITH", + "WRAP_KEY", + "WRAP_VALUE", // Keywords added by Ignite. "IF", From 29fec6ecd189d2ec140d2e7451f811cc767dcd8f Mon Sep 17 00:00:00 2001 From: zstan Date: Fri, 24 Apr 2026 11:31:03 +0300 Subject: [PATCH 11/13] fix --- modules/calcite/src/main/codegen/config.fmpp | 6 +- .../sql/generated/IgniteSqlParserImpl.java | 2246 +++++++++-------- .../IgniteSqlParserImplConstants.java | 54 +- .../IgniteSqlParserImplTokenManager.java | 2232 ++++++++-------- .../calcite/sql/SqlReservedWordsTest.java | 2 - 5 files changed, 2288 insertions(+), 2252 deletions(-) diff --git a/modules/calcite/src/main/codegen/config.fmpp b/modules/calcite/src/main/codegen/config.fmpp index 98daca8807f68..9f057fb7b1f54 100644 --- a/modules/calcite/src/main/codegen/config.fmpp +++ b/modules/calcite/src/main/codegen/config.fmpp @@ -48,8 +48,6 @@ data: { "AFFINITY_KEY" "ATOMICITY" "WRITE_SYNCHRONIZATION_MODE" - "WRAP_KEY" - "WRAP_VALUE" "CACHE_GROUP" "CACHE_NAME" "DATA_REGION" @@ -74,6 +72,8 @@ data: { "ANALYZE", "MAX_CHANGED_PARTITION_ROWS_PERCENT", "TOTAL" + "WRAP_KEY" + "WRAP_VALUE" ] # List of non-reserved keywords to add; @@ -90,6 +90,8 @@ data: { "DATA_REGION" # "KEY_TYPE" // already presented in Calcite "VALUE_TYPE" + "WRAP_KEY" + "WRAP_VALUE" "ENCRYPTED" "PARALLEL" "INLINE_SIZE" diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java index f087485481d53..484dbdc1c1eb9 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImpl.java @@ -10406,205 +10406,207 @@ final public void NonReservedKeyWord0of3() throws ParseException { } else if (jj_2_1260(2)) { jj_consume_token(MAX_CHANGED_PARTITION_ROWS_PERCENT); } else if (jj_2_1261(2)) { - jj_consume_token(ALLOCATE); + jj_consume_token(WRAP_VALUE); } else if (jj_2_1262(2)) { - jj_consume_token(ARRAY_MAX_CARDINALITY); + jj_consume_token(ALLOW); } else if (jj_2_1263(2)) { - jj_consume_token(AT); + jj_consume_token(ASENSITIVE); } else if (jj_2_1264(2)) { - jj_consume_token(AVG); + jj_consume_token(ATOMIC); } else if (jj_2_1265(2)) { - jj_consume_token(BEGIN_PARTITION); + jj_consume_token(BEGIN); } else if (jj_2_1266(2)) { - jj_consume_token(BIT); + jj_consume_token(BIGINT); } else if (jj_2_1267(2)) { - jj_consume_token(CALL); + jj_consume_token(BLOB); } else if (jj_2_1268(2)) { - jj_consume_token(CASCADED); + jj_consume_token(CALLED); } else if (jj_2_1269(2)) { - jj_consume_token(CHAR); + jj_consume_token(CEIL); } else if (jj_2_1270(2)) { - jj_consume_token(CHAR_LENGTH); + jj_consume_token(CHARACTER); } else if (jj_2_1271(2)) { - jj_consume_token(CLOB); + jj_consume_token(CHECK); } else if (jj_2_1272(2)) { - jj_consume_token(COLLATE); + jj_consume_token(CLOSE); } else if (jj_2_1273(2)) { - jj_consume_token(CONDITION); + jj_consume_token(COLLECT); } else if (jj_2_1274(2)) { - jj_consume_token(CONVERT); + jj_consume_token(CONNECT); } else if (jj_2_1275(2)) { - jj_consume_token(COUNT); + jj_consume_token(CORR); } else if (jj_2_1276(2)) { - jj_consume_token(CUBE); + jj_consume_token(COVAR_POP); } else if (jj_2_1277(2)) { - jj_consume_token(CURRENT_CATALOG); + jj_consume_token(CUME_DIST); } else if (jj_2_1278(2)) { - jj_consume_token(CURRENT_ROLE); + jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); } else if (jj_2_1279(2)) { - jj_consume_token(CURSOR); + jj_consume_token(CURRENT_ROW); } else if (jj_2_1280(2)) { - jj_consume_token(DATETIME); + jj_consume_token(CYCLE); } else if (jj_2_1281(2)) { - jj_consume_token(DEC); + jj_consume_token(DAY); } else if (jj_2_1282(2)) { - jj_consume_token(DEFINE); + jj_consume_token(DECIMAL); } else if (jj_2_1283(2)) { - jj_consume_token(DESCRIBE); + jj_consume_token(DENSE_RANK); } else if (jj_2_1284(2)) { - jj_consume_token(DISCONNECT); + jj_consume_token(DETERMINISTIC); } else if (jj_2_1285(2)) { - jj_consume_token(EACH); + jj_consume_token(DOUBLE); } else if (jj_2_1286(2)) { - jj_consume_token(END); + jj_consume_token(ELEMENT); } else if (jj_2_1287(2)) { - jj_consume_token(END_PARTITION); + jj_consume_token(END_EXEC); } else if (jj_2_1288(2)) { - jj_consume_token(EVERY); + jj_consume_token(EQUALS); } else if (jj_2_1289(2)) { - jj_consume_token(EXP); + jj_consume_token(EXEC); } else if (jj_2_1290(2)) { - jj_consume_token(EXTRACT); + jj_consume_token(EXTEND); } else if (jj_2_1291(2)) { - jj_consume_token(FLOAT); + jj_consume_token(FILTER); } else if (jj_2_1292(2)) { - jj_consume_token(FRAME_ROW); + jj_consume_token(FLOOR); } else if (jj_2_1293(2)) { - jj_consume_token(FUSION); + jj_consume_token(FREE); } else if (jj_2_1294(2)) { - jj_consume_token(GRANT); + jj_consume_token(GET); } else if (jj_2_1295(2)) { - jj_consume_token(HOLD); + jj_consume_token(GROUPING); } else if (jj_2_1296(2)) { - jj_consume_token(IMPORT); + jj_consume_token(HOUR); } else if (jj_2_1297(2)) { - jj_consume_token(INOUT); + jj_consume_token(INDICATOR); } else if (jj_2_1298(2)) { - jj_consume_token(INTEGER); + jj_consume_token(INSENSITIVE); } else if (jj_2_1299(2)) { - jj_consume_token(JSON_ARRAYAGG); + jj_consume_token(INTERSECTION); } else if (jj_2_1300(2)) { - jj_consume_token(JSON_OBJECTAGG); + jj_consume_token(JSON_EXISTS); } else if (jj_2_1301(2)) { - jj_consume_token(JSON_VALUE); + jj_consume_token(JSON_QUERY); } else if (jj_2_1302(2)) { - jj_consume_token(LARGE); + jj_consume_token(LAG); } else if (jj_2_1303(2)) { - jj_consume_token(LEAD); + jj_consume_token(LAST_VALUE); } else if (jj_2_1304(2)) { - jj_consume_token(LOCAL); + jj_consume_token(LIKE_REGEX); } else if (jj_2_1305(2)) { - jj_consume_token(MATCHES); + jj_consume_token(LOWER); } else if (jj_2_1306(2)) { - jj_consume_token(MATCH_RECOGNIZE); + jj_consume_token(MATCH_CONDITION); } else if (jj_2_1307(2)) { - jj_consume_token(MEASURES); + jj_consume_token(MAX); } else if (jj_2_1308(2)) { - jj_consume_token(MIN); + jj_consume_token(MEMBER); } else if (jj_2_1309(2)) { - jj_consume_token(MODIFIES); + jj_consume_token(MINUTE); } else if (jj_2_1310(2)) { - jj_consume_token(MULTISET); + jj_consume_token(MODULE); } else if (jj_2_1311(2)) { - jj_consume_token(NCLOB); + jj_consume_token(NATIONAL); } else if (jj_2_1312(2)) { - jj_consume_token(NO); + jj_consume_token(NEW); } else if (jj_2_1313(2)) { - jj_consume_token(NTH_VALUE); + jj_consume_token(NONE); } else if (jj_2_1314(2)) { - jj_consume_token(NUMERIC); + jj_consume_token(NTILE); } else if (jj_2_1315(2)) { - jj_consume_token(OF); + jj_consume_token(OCCURRENCES_REGEX); } else if (jj_2_1316(2)) { - jj_consume_token(ONE); + jj_consume_token(OLD); } else if (jj_2_1317(2)) { - jj_consume_token(ORDINAL); + jj_consume_token(ONLY); } else if (jj_2_1318(2)) { - jj_consume_token(OVERLAPS); + jj_consume_token(OUT); } else if (jj_2_1319(2)) { - jj_consume_token(PATTERN); + jj_consume_token(OVERLAY); } else if (jj_2_1320(2)) { - jj_consume_token(PERCENTILE_CONT); + jj_consume_token(PER); } else if (jj_2_1321(2)) { - jj_consume_token(PERIOD); + jj_consume_token(PERCENTILE_DISC); } else if (jj_2_1322(2)) { - jj_consume_token(POSITION); + jj_consume_token(PERMUTE); } else if (jj_2_1323(2)) { - jj_consume_token(PRECEDES); + jj_consume_token(POSITION_REGEX); } else if (jj_2_1324(2)) { - jj_consume_token(PREV); + jj_consume_token(PRECISION); } else if (jj_2_1325(2)) { - jj_consume_token(RANGE); + jj_consume_token(PROCEDURE); } else if (jj_2_1326(2)) { - jj_consume_token(REAL); + jj_consume_token(RANK); } else if (jj_2_1327(2)) { - jj_consume_token(REFERENCES); + jj_consume_token(RECURSIVE); } else if (jj_2_1328(2)) { - jj_consume_token(REGR_AVGY); + jj_consume_token(REFERENCING); } else if (jj_2_1329(2)) { - jj_consume_token(REGR_R2); + jj_consume_token(REGR_COUNT); } else if (jj_2_1330(2)) { - jj_consume_token(REGR_SXY); + jj_consume_token(REGR_SLOPE); } else if (jj_2_1331(2)) { - jj_consume_token(RESET); + jj_consume_token(REGR_SYY); } else if (jj_2_1332(2)) { - jj_consume_token(RETURNS); + jj_consume_token(RESULT); } else if (jj_2_1333(2)) { - jj_consume_token(ROLLUP); + jj_consume_token(REVOKE); } else if (jj_2_1334(2)) { - jj_consume_token(RUNNING); + jj_consume_token(ROWS); } else if (jj_2_1335(2)) { - jj_consume_token(SAFE_ORDINAL); + jj_consume_token(SAFE_CAST); } else if (jj_2_1336(2)) { - jj_consume_token(SCROLL); + jj_consume_token(SAVEPOINT); } else if (jj_2_1337(2)) { - jj_consume_token(SEEK); + jj_consume_token(SEARCH); } else if (jj_2_1338(2)) { - jj_consume_token(SHOW); + jj_consume_token(SENSITIVE); } else if (jj_2_1339(2)) { - jj_consume_token(SMALLINT); + jj_consume_token(SIMILAR); } else if (jj_2_1340(2)) { - jj_consume_token(SQL); + jj_consume_token(SPECIFIC); } else if (jj_2_1341(2)) { - jj_consume_token(SQLWARNING); + jj_consume_token(SQLEXCEPTION); } else if (jj_2_1342(2)) { - jj_consume_token(STATIC); + jj_consume_token(SQRT); } else if (jj_2_1343(2)) { - jj_consume_token(STREAM); + jj_consume_token(STDDEV_POP); } else if (jj_2_1344(2)) { - jj_consume_token(SUBSTRING); + jj_consume_token(SUBMULTISET); } else if (jj_2_1345(2)) { - jj_consume_token(SUM); + jj_consume_token(SUBSTRING_REGEX); } else if (jj_2_1346(2)) { - jj_consume_token(SYSTEM_USER); + jj_consume_token(SYSTEM); } else if (jj_2_1347(2)) { - jj_consume_token(TIMESTAMP); + jj_consume_token(TABLESAMPLE); } else if (jj_2_1348(2)) { - jj_consume_token(TINYINT); + jj_consume_token(TIMEZONE_HOUR); } else if (jj_2_1349(2)) { - jj_consume_token(TRANSLATION); + jj_consume_token(TRANSLATE); } else if (jj_2_1350(2)) { - jj_consume_token(TRIM); + jj_consume_token(TREAT); } else if (jj_2_1351(2)) { - jj_consume_token(TRY_CAST); + jj_consume_token(TRIM_ARRAY); } else if (jj_2_1352(2)) { - jj_consume_token(UNKNOWN); + jj_consume_token(UESCAPE); } else if (jj_2_1353(2)) { - jj_consume_token(UUID); + jj_consume_token(UPPER); } else if (jj_2_1354(2)) { - jj_consume_token(VARBINARY); + jj_consume_token(VALUE); } else if (jj_2_1355(2)) { - jj_consume_token(VARYING); + jj_consume_token(VARIANT); } else if (jj_2_1356(2)) { - jj_consume_token(VERSIONING); + jj_consume_token(VAR_POP); } else if (jj_2_1357(2)) { - jj_consume_token(WINDOW); + jj_consume_token(WHENEVER); } else if (jj_2_1358(2)) { - jj_consume_token(YEAR); + jj_consume_token(WITHIN); } else if (jj_2_1359(2)) { - jj_consume_token(WEDNESDAY); + jj_consume_token(MONDAY); } else if (jj_2_1360(2)) { - jj_consume_token(SATURDAY); + jj_consume_token(THURSDAY); + } else if (jj_2_1361(2)) { + jj_consume_token(SUNDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -10613,448 +10615,448 @@ final public void NonReservedKeyWord0of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord1of3() throws ParseException { - if (jj_2_1361(2)) { + if (jj_2_1362(2)) { jj_consume_token(ABSENT); - } else if (jj_2_1362(2)) { - jj_consume_token(ADA); } else if (jj_2_1363(2)) { - jj_consume_token(AFTER); + jj_consume_token(ADA); } else if (jj_2_1364(2)) { - jj_consume_token(ARRAY_AGG); + jj_consume_token(AFTER); } else if (jj_2_1365(2)) { - jj_consume_token(ASSERTION); + jj_consume_token(ARRAY_AGG); } else if (jj_2_1366(2)) { - jj_consume_token(ATTRIBUTES); + jj_consume_token(ASSERTION); } else if (jj_2_1367(2)) { - jj_consume_token(BREADTH); + jj_consume_token(ATTRIBUTES); } else if (jj_2_1368(2)) { - jj_consume_token(CATALOG); + jj_consume_token(BREADTH); } else if (jj_2_1369(2)) { - jj_consume_token(CHAIN); + jj_consume_token(CATALOG); } else if (jj_2_1370(2)) { - jj_consume_token(CHARACTER_SET_CATALOG); + jj_consume_token(CHAIN); } else if (jj_2_1371(2)) { - jj_consume_token(CLASS_ORIGIN); + jj_consume_token(CHARACTER_SET_CATALOG); } else if (jj_2_1372(2)) { - jj_consume_token(COLLATION_CATALOG); + jj_consume_token(CLASS_ORIGIN); } else if (jj_2_1373(2)) { - jj_consume_token(COLUMN_NAME); + jj_consume_token(COLLATION_CATALOG); } else if (jj_2_1374(2)) { - jj_consume_token(COMMITTED); + jj_consume_token(COLUMN_NAME); } else if (jj_2_1375(2)) { - jj_consume_token(CONNECTION); + jj_consume_token(COMMITTED); } else if (jj_2_1376(2)) { - jj_consume_token(CONSTRAINT_NAME); + jj_consume_token(CONNECTION); } else if (jj_2_1377(2)) { - jj_consume_token(CONSTRUCTOR); + jj_consume_token(CONSTRAINT_NAME); } else if (jj_2_1378(2)) { - jj_consume_token(CURSOR_NAME); + jj_consume_token(CONSTRUCTOR); } else if (jj_2_1379(2)) { - jj_consume_token(DATE_DIFF); + jj_consume_token(CURSOR_NAME); } else if (jj_2_1380(2)) { - jj_consume_token(DATETIME_INTERVAL_CODE); + jj_consume_token(DATE_DIFF); } else if (jj_2_1381(2)) { - jj_consume_token(DAYOFWEEK); + jj_consume_token(DATETIME_INTERVAL_CODE); } else if (jj_2_1382(2)) { - jj_consume_token(DECADE); + jj_consume_token(DAYOFWEEK); } else if (jj_2_1383(2)) { - jj_consume_token(DEFERRED); + jj_consume_token(DECADE); } else if (jj_2_1384(2)) { - jj_consume_token(DEGREE); + jj_consume_token(DEFERRED); } else if (jj_2_1385(2)) { - jj_consume_token(DESC); + jj_consume_token(DEGREE); } else if (jj_2_1386(2)) { - jj_consume_token(DIAGNOSTICS); + jj_consume_token(DESC); } else if (jj_2_1387(2)) { - jj_consume_token(DOW); + jj_consume_token(DIAGNOSTICS); } else if (jj_2_1388(2)) { - jj_consume_token(DYNAMIC_FUNCTION); + jj_consume_token(DOW); } else if (jj_2_1389(2)) { - jj_consume_token(EPOCH); + jj_consume_token(DYNAMIC_FUNCTION); } else if (jj_2_1390(2)) { - jj_consume_token(EXCLUDE); + jj_consume_token(EPOCH); } else if (jj_2_1391(2)) { - jj_consume_token(FIRST); + jj_consume_token(EXCLUDE); } else if (jj_2_1392(2)) { - jj_consume_token(FORTRAN); + jj_consume_token(FIRST); } else if (jj_2_1393(2)) { - jj_consume_token(G); + jj_consume_token(FORTRAN); } else if (jj_2_1394(2)) { - jj_consume_token(GEOMETRY); + jj_consume_token(G); } else if (jj_2_1395(2)) { - jj_consume_token(GRANTED); + jj_consume_token(GEOMETRY); } else if (jj_2_1396(2)) { - jj_consume_token(HOP); + jj_consume_token(GRANTED); } else if (jj_2_1397(2)) { - jj_consume_token(ILIKE); + jj_consume_token(HOP); } else if (jj_2_1398(2)) { - jj_consume_token(IMPLEMENTATION); + jj_consume_token(ILIKE); } else if (jj_2_1399(2)) { - jj_consume_token(INCREMENT); + jj_consume_token(IMPLEMENTATION); } else if (jj_2_1400(2)) { - jj_consume_token(INSTANCE); + jj_consume_token(INCREMENT); } else if (jj_2_1401(2)) { - jj_consume_token(ISODOW); + jj_consume_token(INSTANCE); } else if (jj_2_1402(2)) { - jj_consume_token(JAVA); + jj_consume_token(ISODOW); } else if (jj_2_1403(2)) { - jj_consume_token(KEY); + jj_consume_token(JAVA); } else if (jj_2_1404(2)) { - jj_consume_token(LABEL); + jj_consume_token(KEY); } else if (jj_2_1405(2)) { - jj_consume_token(LEVEL); + jj_consume_token(LABEL); } else if (jj_2_1406(2)) { - jj_consume_token(M); + jj_consume_token(LEVEL); } else if (jj_2_1407(2)) { - jj_consume_token(MAXVALUE); + jj_consume_token(M); } else if (jj_2_1408(2)) { - jj_consume_token(MESSAGE_TEXT); + jj_consume_token(MAXVALUE); } else if (jj_2_1409(2)) { - jj_consume_token(MILLISECOND); + jj_consume_token(MESSAGE_TEXT); } else if (jj_2_1410(2)) { - jj_consume_token(MONTHS); + jj_consume_token(MILLISECOND); } else if (jj_2_1411(2)) { - jj_consume_token(NAME); + jj_consume_token(MONTHS); } else if (jj_2_1412(2)) { - jj_consume_token(NESTING); + jj_consume_token(NAME); } else if (jj_2_1413(2)) { - jj_consume_token(NULLS); + jj_consume_token(NESTING); } else if (jj_2_1414(2)) { - jj_consume_token(OCTETS); + jj_consume_token(NULLS); } else if (jj_2_1415(2)) { - jj_consume_token(ORDERING); + jj_consume_token(OCTETS); } else if (jj_2_1416(2)) { - jj_consume_token(OUTPUT); + jj_consume_token(ORDERING); } else if (jj_2_1417(2)) { - jj_consume_token(PARAMETER_MODE); + jj_consume_token(OUTPUT); } else if (jj_2_1418(2)) { - jj_consume_token(PARAMETER_SPECIFIC_CATALOG); + jj_consume_token(PARAMETER_MODE); } else if (jj_2_1419(2)) { - jj_consume_token(PARTIAL); + jj_consume_token(PARAMETER_SPECIFIC_CATALOG); } else if (jj_2_1420(2)) { - jj_consume_token(PASSTHROUGH); + jj_consume_token(PARTIAL); } else if (jj_2_1421(2)) { - jj_consume_token(PIVOT); + jj_consume_token(PASSTHROUGH); } else if (jj_2_1422(2)) { - jj_consume_token(PLI); + jj_consume_token(PIVOT); } else if (jj_2_1423(2)) { - jj_consume_token(PRIOR); + jj_consume_token(PLI); } else if (jj_2_1424(2)) { - jj_consume_token(QUARTER); + jj_consume_token(PRIOR); } else if (jj_2_1425(2)) { - jj_consume_token(RELATIVE); + jj_consume_token(QUARTER); } else if (jj_2_1426(2)) { - jj_consume_token(RESPECT); + jj_consume_token(RELATIVE); } else if (jj_2_1427(2)) { - jj_consume_token(RETURNED_CARDINALITY); + jj_consume_token(RESPECT); } else if (jj_2_1428(2)) { - jj_consume_token(RETURNED_SQLSTATE); + jj_consume_token(RETURNED_CARDINALITY); } else if (jj_2_1429(2)) { - jj_consume_token(ROLE); + jj_consume_token(RETURNED_SQLSTATE); } else if (jj_2_1430(2)) { - jj_consume_token(ROUTINE_NAME); + jj_consume_token(ROLE); } else if (jj_2_1431(2)) { - jj_consume_token(SCALAR); + jj_consume_token(ROUTINE_NAME); } else if (jj_2_1432(2)) { - jj_consume_token(SCHEMA_NAME); + jj_consume_token(SCALAR); } else if (jj_2_1433(2)) { - jj_consume_token(SCOPE_SCHEMA); + jj_consume_token(SCHEMA_NAME); } else if (jj_2_1434(2)) { - jj_consume_token(SECURITY); + jj_consume_token(SCOPE_SCHEMA); } else if (jj_2_1435(2)) { - jj_consume_token(SEQUENCE); + jj_consume_token(SECURITY); } else if (jj_2_1436(2)) { - jj_consume_token(SERVER_NAME); + jj_consume_token(SEQUENCE); } else if (jj_2_1437(2)) { - jj_consume_token(SIMPLE); + jj_consume_token(SERVER_NAME); } else if (jj_2_1438(2)) { - jj_consume_token(SPACE); + jj_consume_token(SIMPLE); } else if (jj_2_1439(2)) { - jj_consume_token(SQL_BINARY); + jj_consume_token(SPACE); } else if (jj_2_1440(2)) { - jj_consume_token(SQL_BOOLEAN); + jj_consume_token(SQL_BINARY); } else if (jj_2_1441(2)) { - jj_consume_token(SQL_DATE); + jj_consume_token(SQL_BOOLEAN); } else if (jj_2_1442(2)) { - jj_consume_token(SQL_FLOAT); + jj_consume_token(SQL_DATE); } else if (jj_2_1443(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); + jj_consume_token(SQL_FLOAT); } else if (jj_2_1444(2)) { - jj_consume_token(SQL_INTERVAL_HOUR); + jj_consume_token(SQL_INTERVAL_DAY_TO_HOUR); } else if (jj_2_1445(2)) { - jj_consume_token(SQL_INTERVAL_MINUTE); + jj_consume_token(SQL_INTERVAL_HOUR); } else if (jj_2_1446(2)) { - jj_consume_token(SQL_INTERVAL_SECOND); + jj_consume_token(SQL_INTERVAL_MINUTE); } else if (jj_2_1447(2)) { - jj_consume_token(SQL_LONGVARBINARY); + jj_consume_token(SQL_INTERVAL_SECOND); } else if (jj_2_1448(2)) { - jj_consume_token(SQL_NCHAR); + jj_consume_token(SQL_LONGVARBINARY); } else if (jj_2_1449(2)) { - jj_consume_token(SQL_NVARCHAR); + jj_consume_token(SQL_NCHAR); } else if (jj_2_1450(2)) { - jj_consume_token(SQL_TIME); + jj_consume_token(SQL_NVARCHAR); } else if (jj_2_1451(2)) { - jj_consume_token(SQL_TSI_DAY); + jj_consume_token(SQL_TIME); } else if (jj_2_1452(2)) { - jj_consume_token(SQL_TSI_MICROSECOND); + jj_consume_token(SQL_TSI_DAY); } else if (jj_2_1453(2)) { - jj_consume_token(SQL_TSI_QUARTER); + jj_consume_token(SQL_TSI_MICROSECOND); } else if (jj_2_1454(2)) { - jj_consume_token(SQL_TSI_YEAR); + jj_consume_token(SQL_TSI_QUARTER); } else if (jj_2_1455(2)) { - jj_consume_token(STATE); + jj_consume_token(SQL_TSI_YEAR); } else if (jj_2_1456(2)) { - jj_consume_token(STRUCTURE); + jj_consume_token(STATE); } else if (jj_2_1457(2)) { - jj_consume_token(SUBSTITUTE); + jj_consume_token(STRUCTURE); } else if (jj_2_1458(2)) { - jj_consume_token(TIES); + jj_consume_token(SUBSTITUTE); } else if (jj_2_1459(2)) { - jj_consume_token(TIMESTAMPADD); + jj_consume_token(TIES); } else if (jj_2_1460(2)) { - jj_consume_token(TIMESTAMP_TRUNC); + jj_consume_token(TIMESTAMPADD); } else if (jj_2_1461(2)) { - jj_consume_token(TRANSACTIONS_ACTIVE); + jj_consume_token(TIMESTAMP_TRUNC); } else if (jj_2_1462(2)) { - jj_consume_token(TRANSFORM); + jj_consume_token(TRANSACTIONS_ACTIVE); } else if (jj_2_1463(2)) { - jj_consume_token(TRIGGER_NAME); + jj_consume_token(TRANSFORM); } else if (jj_2_1464(2)) { - jj_consume_token(TYPE); + jj_consume_token(TRIGGER_NAME); } else if (jj_2_1465(2)) { - jj_consume_token(UNCONDITIONAL); + jj_consume_token(TYPE); } else if (jj_2_1466(2)) { - jj_consume_token(UNNAMED); + jj_consume_token(UNCONDITIONAL); } else if (jj_2_1467(2)) { - jj_consume_token(USER_DEFINED_TYPE_CODE); + jj_consume_token(UNNAMED); } else if (jj_2_1468(2)) { - jj_consume_token(UTF16); + jj_consume_token(USER_DEFINED_TYPE_CODE); } else if (jj_2_1469(2)) { - jj_consume_token(VERSION); + jj_consume_token(UTF16); } else if (jj_2_1470(2)) { - jj_consume_token(WEEKS); + jj_consume_token(VERSION); } else if (jj_2_1471(2)) { - jj_consume_token(WRITE); + jj_consume_token(WEEKS); } else if (jj_2_1472(2)) { - jj_consume_token(ZONE); + jj_consume_token(WRITE); } else if (jj_2_1473(2)) { - jj_consume_token(AFFINITY_KEY); + jj_consume_token(ZONE); } else if (jj_2_1474(2)) { - jj_consume_token(CACHE_GROUP); + jj_consume_token(AFFINITY_KEY); } else if (jj_2_1475(2)) { - jj_consume_token(VALUE_TYPE); + jj_consume_token(CACHE_GROUP); } else if (jj_2_1476(2)) { - jj_consume_token(INLINE_SIZE); + jj_consume_token(VALUE_TYPE); } else if (jj_2_1477(2)) { - jj_consume_token(PASSWORD); + jj_consume_token(INLINE_SIZE); } else if (jj_2_1478(2)) { - jj_consume_token(CONTINUOUS); + jj_consume_token(PASSWORD); } else if (jj_2_1479(2)) { - jj_consume_token(ASYNC); + jj_consume_token(CONTINUOUS); } else if (jj_2_1480(2)) { - jj_consume_token(REFRESH); + jj_consume_token(ASYNC); } else if (jj_2_1481(2)) { - jj_consume_token(TOTAL); + jj_consume_token(REFRESH); } else if (jj_2_1482(2)) { - jj_consume_token(ALLOW); + jj_consume_token(TOTAL); } else if (jj_2_1483(2)) { - jj_consume_token(ASENSITIVE); + jj_consume_token(ABS); } else if (jj_2_1484(2)) { - jj_consume_token(ATOMIC); + jj_consume_token(ARE); } else if (jj_2_1485(2)) { - jj_consume_token(BEGIN); + jj_consume_token(ASOF); } else if (jj_2_1486(2)) { - jj_consume_token(BIGINT); + jj_consume_token(AUTHORIZATION); } else if (jj_2_1487(2)) { - jj_consume_token(BLOB); + jj_consume_token(BEGIN_FRAME); } else if (jj_2_1488(2)) { - jj_consume_token(CALLED); + jj_consume_token(BINARY); } else if (jj_2_1489(2)) { - jj_consume_token(CEIL); + jj_consume_token(BOOLEAN); } else if (jj_2_1490(2)) { - jj_consume_token(CHARACTER); + jj_consume_token(CARDINALITY); } else if (jj_2_1491(2)) { - jj_consume_token(CHECK); + jj_consume_token(CEILING); } else if (jj_2_1492(2)) { - jj_consume_token(CLOSE); + jj_consume_token(CHARACTER_LENGTH); } else if (jj_2_1493(2)) { - jj_consume_token(COLLECT); + jj_consume_token(CLASSIFIER); } else if (jj_2_1494(2)) { - jj_consume_token(CONNECT); + jj_consume_token(COALESCE); } else if (jj_2_1495(2)) { - jj_consume_token(CORR); + jj_consume_token(COMMIT); } else if (jj_2_1496(2)) { - jj_consume_token(COVAR_POP); + jj_consume_token(CONTAINS); } else if (jj_2_1497(2)) { - jj_consume_token(CUME_DIST); + jj_consume_token(CORRESPONDING); } else if (jj_2_1498(2)) { - jj_consume_token(CURRENT_DEFAULT_TRANSFORM_GROUP); + jj_consume_token(COVAR_SAMP); } else if (jj_2_1499(2)) { - jj_consume_token(CURRENT_ROW); + jj_consume_token(CURRENT); } else if (jj_2_1500(2)) { - jj_consume_token(CYCLE); + jj_consume_token(CURRENT_PATH); } else if (jj_2_1501(2)) { - jj_consume_token(DAY); + jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); } else if (jj_2_1502(2)) { - jj_consume_token(DECIMAL); + jj_consume_token(DATE); } else if (jj_2_1503(2)) { - jj_consume_token(DENSE_RANK); + jj_consume_token(DEALLOCATE); } else if (jj_2_1504(2)) { - jj_consume_token(DETERMINISTIC); + jj_consume_token(DECLARE); } else if (jj_2_1505(2)) { - jj_consume_token(DOUBLE); + jj_consume_token(DEREF); } else if (jj_2_1506(2)) { - jj_consume_token(ELEMENT); + jj_consume_token(DISALLOW); } else if (jj_2_1507(2)) { - jj_consume_token(END_EXEC); + jj_consume_token(DYNAMIC); } else if (jj_2_1508(2)) { - jj_consume_token(EQUALS); + jj_consume_token(EMPTY); } else if (jj_2_1509(2)) { - jj_consume_token(EXEC); + jj_consume_token(END_FRAME); } else if (jj_2_1510(2)) { - jj_consume_token(EXTEND); + jj_consume_token(ESCAPE); } else if (jj_2_1511(2)) { - jj_consume_token(FILTER); + jj_consume_token(EXECUTE); } else if (jj_2_1512(2)) { - jj_consume_token(FLOOR); + jj_consume_token(EXTERNAL); } else if (jj_2_1513(2)) { - jj_consume_token(FREE); + jj_consume_token(FIRST_VALUE); } else if (jj_2_1514(2)) { - jj_consume_token(GET); + jj_consume_token(FOREIGN); } else if (jj_2_1515(2)) { - jj_consume_token(GROUPING); + jj_consume_token(FUNCTION); } else if (jj_2_1516(2)) { - jj_consume_token(HOUR); + jj_consume_token(GLOBAL); } else if (jj_2_1517(2)) { - jj_consume_token(INDICATOR); + jj_consume_token(GROUPS); } else if (jj_2_1518(2)) { - jj_consume_token(INSENSITIVE); + jj_consume_token(IDENTITY); } else if (jj_2_1519(2)) { - jj_consume_token(INTERSECTION); + jj_consume_token(INITIAL); } else if (jj_2_1520(2)) { - jj_consume_token(JSON_EXISTS); + jj_consume_token(INT); } else if (jj_2_1521(2)) { - jj_consume_token(JSON_QUERY); + jj_consume_token(JSON_ARRAY); } else if (jj_2_1522(2)) { - jj_consume_token(LAG); + jj_consume_token(JSON_OBJECT); } else if (jj_2_1523(2)) { - jj_consume_token(LAST_VALUE); + jj_consume_token(JSON_SCOPE); } else if (jj_2_1524(2)) { - jj_consume_token(LIKE_REGEX); + jj_consume_token(LANGUAGE); } else if (jj_2_1525(2)) { - jj_consume_token(LOWER); + jj_consume_token(LATERAL); } else if (jj_2_1526(2)) { - jj_consume_token(MATCH_CONDITION); + jj_consume_token(LN); } else if (jj_2_1527(2)) { - jj_consume_token(MAX); + jj_consume_token(MATCH); } else if (jj_2_1528(2)) { - jj_consume_token(MEMBER); + jj_consume_token(MATCH_NUMBER); } else if (jj_2_1529(2)) { - jj_consume_token(MINUTE); + jj_consume_token(MEASURE); } else if (jj_2_1530(2)) { - jj_consume_token(MODULE); + jj_consume_token(METHOD); } else if (jj_2_1531(2)) { - jj_consume_token(NATIONAL); + jj_consume_token(MOD); } else if (jj_2_1532(2)) { - jj_consume_token(NEW); + jj_consume_token(MONTH); } else if (jj_2_1533(2)) { - jj_consume_token(NONE); + jj_consume_token(NCHAR); } else if (jj_2_1534(2)) { - jj_consume_token(NTILE); + jj_consume_token(NEXT); } else if (jj_2_1535(2)) { - jj_consume_token(OCCURRENCES_REGEX); + jj_consume_token(NORMALIZE); } else if (jj_2_1536(2)) { - jj_consume_token(OLD); + jj_consume_token(NULLIF); } else if (jj_2_1537(2)) { - jj_consume_token(ONLY); + jj_consume_token(OCTET_LENGTH); } else if (jj_2_1538(2)) { - jj_consume_token(OUT); + jj_consume_token(OMIT); } else if (jj_2_1539(2)) { - jj_consume_token(OVERLAY); + jj_consume_token(OPEN); } else if (jj_2_1540(2)) { - jj_consume_token(PER); + jj_consume_token(OVER); } else if (jj_2_1541(2)) { - jj_consume_token(PERCENTILE_DISC); + jj_consume_token(PARAMETER); } else if (jj_2_1542(2)) { - jj_consume_token(PERMUTE); + jj_consume_token(PERCENT); } else if (jj_2_1543(2)) { - jj_consume_token(POSITION_REGEX); + jj_consume_token(PERCENT_RANK); } else if (jj_2_1544(2)) { - jj_consume_token(PRECISION); + jj_consume_token(PORTION); } else if (jj_2_1545(2)) { - jj_consume_token(PROCEDURE); + jj_consume_token(POWER); } else if (jj_2_1546(2)) { - jj_consume_token(RANK); + jj_consume_token(PREPARE); } else if (jj_2_1547(2)) { - jj_consume_token(RECURSIVE); + jj_consume_token(QUALIFY); } else if (jj_2_1548(2)) { - jj_consume_token(REFERENCING); + jj_consume_token(READS); } else if (jj_2_1549(2)) { - jj_consume_token(REGR_COUNT); + jj_consume_token(REF); } else if (jj_2_1550(2)) { - jj_consume_token(REGR_SLOPE); + jj_consume_token(REGR_AVGX); } else if (jj_2_1551(2)) { - jj_consume_token(REGR_SYY); + jj_consume_token(REGR_INTERCEPT); } else if (jj_2_1552(2)) { - jj_consume_token(RESULT); + jj_consume_token(REGR_SXX); } else if (jj_2_1553(2)) { - jj_consume_token(REVOKE); + jj_consume_token(RELEASE); } else if (jj_2_1554(2)) { - jj_consume_token(ROWS); + jj_consume_token(RETURN); } else if (jj_2_1555(2)) { - jj_consume_token(SAFE_CAST); + jj_consume_token(ROLLBACK); } else if (jj_2_1556(2)) { - jj_consume_token(SAVEPOINT); + jj_consume_token(ROW_NUMBER); } else if (jj_2_1557(2)) { - jj_consume_token(SEARCH); + jj_consume_token(SAFE_OFFSET); } else if (jj_2_1558(2)) { - jj_consume_token(SENSITIVE); + jj_consume_token(SCOPE); } else if (jj_2_1559(2)) { - jj_consume_token(SIMILAR); + jj_consume_token(SECOND); } else if (jj_2_1560(2)) { - jj_consume_token(SPECIFIC); + jj_consume_token(SESSION_USER); } else if (jj_2_1561(2)) { - jj_consume_token(SQLEXCEPTION); + jj_consume_token(SKIP_); } else if (jj_2_1562(2)) { - jj_consume_token(SQRT); + jj_consume_token(SPECIFICTYPE); } else if (jj_2_1563(2)) { - jj_consume_token(STDDEV_POP); + jj_consume_token(SQLSTATE); } else if (jj_2_1564(2)) { - jj_consume_token(SUBMULTISET); + jj_consume_token(START); } else if (jj_2_1565(2)) { - jj_consume_token(SUBSTRING_REGEX); + jj_consume_token(STDDEV_SAMP); } else if (jj_2_1566(2)) { - jj_consume_token(SYSTEM); + jj_consume_token(SUBSET); } else if (jj_2_1567(2)) { - jj_consume_token(TABLESAMPLE); + jj_consume_token(SUCCEEDS); } else if (jj_2_1568(2)) { - jj_consume_token(TIMEZONE_HOUR); + jj_consume_token(SYSTEM_TIME); } else if (jj_2_1569(2)) { - jj_consume_token(TRANSLATE); + jj_consume_token(TIME); } else if (jj_2_1570(2)) { - jj_consume_token(TREAT); + jj_consume_token(TIMEZONE_MINUTE); } else if (jj_2_1571(2)) { - jj_consume_token(TRIM_ARRAY); + jj_consume_token(TRANSLATE_REGEX); } else if (jj_2_1572(2)) { - jj_consume_token(UESCAPE); + jj_consume_token(TRIGGER); } else if (jj_2_1573(2)) { - jj_consume_token(UPPER); + jj_consume_token(TRUNCATE); } else if (jj_2_1574(2)) { - jj_consume_token(VALUE); + jj_consume_token(UNIQUE); } else if (jj_2_1575(2)) { - jj_consume_token(VARIANT); + jj_consume_token(UPSERT); } else if (jj_2_1576(2)) { - jj_consume_token(VAR_POP); + jj_consume_token(VALUE_OF); } else if (jj_2_1577(2)) { - jj_consume_token(WHENEVER); + jj_consume_token(VARCHAR); } else if (jj_2_1578(2)) { - jj_consume_token(WITHIN); + jj_consume_token(VAR_SAMP); } else if (jj_2_1579(2)) { - jj_consume_token(MONDAY); + jj_consume_token(WIDTH_BUCKET); } else if (jj_2_1580(2)) { - jj_consume_token(THURSDAY); + jj_consume_token(WITHOUT); } else if (jj_2_1581(2)) { - jj_consume_token(SUNDAY); + jj_consume_token(TUESDAY); + } else if (jj_2_1582(2)) { + jj_consume_token(FRIDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -11063,446 +11065,448 @@ final public void NonReservedKeyWord1of3() throws ParseException { /** @see #NonReservedKeyWord */ final public void NonReservedKeyWord2of3() throws ParseException { - if (jj_2_1582(2)) { + if (jj_2_1583(2)) { jj_consume_token(ABSOLUTE); - } else if (jj_2_1583(2)) { - jj_consume_token(ADD); } else if (jj_2_1584(2)) { - jj_consume_token(ALWAYS); + jj_consume_token(ADD); } else if (jj_2_1585(2)) { - jj_consume_token(ARRAY_CONCAT_AGG); + jj_consume_token(ALWAYS); } else if (jj_2_1586(2)) { - jj_consume_token(ASSIGNMENT); + jj_consume_token(ARRAY_CONCAT_AGG); } else if (jj_2_1587(2)) { - jj_consume_token(BEFORE); + jj_consume_token(ASSIGNMENT); } else if (jj_2_1588(2)) { - jj_consume_token(C); + jj_consume_token(BEFORE); } else if (jj_2_1589(2)) { - jj_consume_token(CATALOG_NAME); + jj_consume_token(C); } else if (jj_2_1590(2)) { - jj_consume_token(CHARACTERISTICS); + jj_consume_token(CATALOG_NAME); } else if (jj_2_1591(2)) { - jj_consume_token(CHARACTER_SET_NAME); + jj_consume_token(CHARACTERISTICS); } else if (jj_2_1592(2)) { - jj_consume_token(COBOL); + jj_consume_token(CHARACTER_SET_NAME); } else if (jj_2_1593(2)) { - jj_consume_token(COLLATION_NAME); + jj_consume_token(COBOL); } else if (jj_2_1594(2)) { - jj_consume_token(COMMAND_FUNCTION); + jj_consume_token(COLLATION_NAME); } else if (jj_2_1595(2)) { - jj_consume_token(CONDITIONAL); + jj_consume_token(COMMAND_FUNCTION); } else if (jj_2_1596(2)) { - jj_consume_token(CONNECTION_NAME); + jj_consume_token(CONDITIONAL); } else if (jj_2_1597(2)) { - jj_consume_token(CONSTRAINTS); + jj_consume_token(CONNECTION_NAME); } else if (jj_2_1598(2)) { - jj_consume_token(CONTAINS_SUBSTR); + jj_consume_token(CONSTRAINTS); } else if (jj_2_1599(2)) { - jj_consume_token(DATA); + jj_consume_token(CONTAINS_SUBSTR); } else if (jj_2_1600(2)) { - jj_consume_token(DATE_TRUNC); + jj_consume_token(DATA); } else if (jj_2_1601(2)) { - jj_consume_token(DATETIME_INTERVAL_PRECISION); + jj_consume_token(DATE_TRUNC); } else if (jj_2_1602(2)) { - jj_consume_token(DAYOFYEAR); + jj_consume_token(DATETIME_INTERVAL_PRECISION); } else if (jj_2_1603(2)) { - jj_consume_token(DEFAULTS); + jj_consume_token(DAYOFYEAR); } else if (jj_2_1604(2)) { - jj_consume_token(DEFINED); + jj_consume_token(DEFAULTS); } else if (jj_2_1605(2)) { - jj_consume_token(DEPTH); + jj_consume_token(DEFINED); } else if (jj_2_1606(2)) { - jj_consume_token(DESCRIPTION); + jj_consume_token(DEPTH); } else if (jj_2_1607(2)) { - jj_consume_token(DISPATCH); + jj_consume_token(DESCRIPTION); } else if (jj_2_1608(2)) { - jj_consume_token(DOY); + jj_consume_token(DISPATCH); } else if (jj_2_1609(2)) { - jj_consume_token(DYNAMIC_FUNCTION_CODE); + jj_consume_token(DOY); } else if (jj_2_1610(2)) { - jj_consume_token(ERROR); + jj_consume_token(DYNAMIC_FUNCTION_CODE); } else if (jj_2_1611(2)) { - jj_consume_token(EXCLUDING); + jj_consume_token(ERROR); } else if (jj_2_1612(2)) { - jj_consume_token(FOLLOWING); + jj_consume_token(EXCLUDING); } else if (jj_2_1613(2)) { - jj_consume_token(FOUND); + jj_consume_token(FOLLOWING); } else if (jj_2_1614(2)) { - jj_consume_token(GENERAL); + jj_consume_token(FOUND); } else if (jj_2_1615(2)) { - jj_consume_token(GO); + jj_consume_token(GENERAL); } else if (jj_2_1616(2)) { - jj_consume_token(GROUP_CONCAT); + jj_consume_token(GO); } else if (jj_2_1617(2)) { - jj_consume_token(HOURS); + jj_consume_token(GROUP_CONCAT); } else if (jj_2_1618(2)) { - jj_consume_token(IMMEDIATE); + jj_consume_token(HOURS); } else if (jj_2_1619(2)) { - jj_consume_token(INCLUDE); + jj_consume_token(IMMEDIATE); } else if (jj_2_1620(2)) { - jj_consume_token(INITIALLY); + jj_consume_token(INCLUDE); } else if (jj_2_1621(2)) { - jj_consume_token(INSTANTIABLE); + jj_consume_token(INITIALLY); } else if (jj_2_1622(2)) { - jj_consume_token(ISOLATION); + jj_consume_token(INSTANTIABLE); } else if (jj_2_1623(2)) { - jj_consume_token(JSON); + jj_consume_token(ISOLATION); } else if (jj_2_1624(2)) { - jj_consume_token(KEY_MEMBER); + jj_consume_token(JSON); } else if (jj_2_1625(2)) { - jj_consume_token(LAST); + jj_consume_token(KEY_MEMBER); } else if (jj_2_1626(2)) { - jj_consume_token(LIBRARY); + jj_consume_token(LAST); } else if (jj_2_1627(2)) { - jj_consume_token(MAP); + jj_consume_token(LIBRARY); } else if (jj_2_1628(2)) { - jj_consume_token(MESSAGE_LENGTH); + jj_consume_token(MAP); } else if (jj_2_1629(2)) { - jj_consume_token(MICROSECOND); + jj_consume_token(MESSAGE_LENGTH); } else if (jj_2_1630(2)) { - jj_consume_token(MINUTES); + jj_consume_token(MICROSECOND); } else if (jj_2_1631(2)) { - jj_consume_token(MORE_); + jj_consume_token(MINUTES); } else if (jj_2_1632(2)) { - jj_consume_token(NAMES); + jj_consume_token(MORE_); } else if (jj_2_1633(2)) { - jj_consume_token(NORMALIZED); + jj_consume_token(NAMES); } else if (jj_2_1634(2)) { - jj_consume_token(NUMBER); + jj_consume_token(NORMALIZED); } else if (jj_2_1635(2)) { - jj_consume_token(OPTION); + jj_consume_token(NUMBER); } else if (jj_2_1636(2)) { - jj_consume_token(ORDINALITY); + jj_consume_token(OPTION); } else if (jj_2_1637(2)) { - jj_consume_token(OVERRIDING); + jj_consume_token(ORDINALITY); } else if (jj_2_1638(2)) { - jj_consume_token(PARAMETER_NAME); + jj_consume_token(OVERRIDING); } else if (jj_2_1639(2)) { - jj_consume_token(PARAMETER_SPECIFIC_NAME); + jj_consume_token(PARAMETER_NAME); } else if (jj_2_1640(2)) { - jj_consume_token(PASCAL); + jj_consume_token(PARAMETER_SPECIFIC_NAME); } else if (jj_2_1641(2)) { - jj_consume_token(PAST); + jj_consume_token(PASCAL); } else if (jj_2_1642(2)) { - jj_consume_token(PLACING); + jj_consume_token(PAST); } else if (jj_2_1643(2)) { - jj_consume_token(PRECEDING); + jj_consume_token(PLACING); } else if (jj_2_1644(2)) { - jj_consume_token(PRIVILEGES); + jj_consume_token(PRECEDING); } else if (jj_2_1645(2)) { - jj_consume_token(QUARTERS); + jj_consume_token(PRIVILEGES); } else if (jj_2_1646(2)) { - jj_consume_token(REPEATABLE); + jj_consume_token(QUARTERS); } else if (jj_2_1647(2)) { - jj_consume_token(RESTART); + jj_consume_token(REPEATABLE); } else if (jj_2_1648(2)) { - jj_consume_token(RETURNED_LENGTH); + jj_consume_token(RESTART); } else if (jj_2_1649(2)) { - jj_consume_token(RETURNING); + jj_consume_token(RETURNED_LENGTH); } else if (jj_2_1650(2)) { - jj_consume_token(ROUTINE); + jj_consume_token(RETURNING); } else if (jj_2_1651(2)) { - jj_consume_token(ROUTINE_SCHEMA); + jj_consume_token(ROUTINE); } else if (jj_2_1652(2)) { - jj_consume_token(SCALE); + jj_consume_token(ROUTINE_SCHEMA); } else if (jj_2_1653(2)) { - jj_consume_token(SCOPE_CATALOGS); + jj_consume_token(SCALE); } else if (jj_2_1654(2)) { - jj_consume_token(SECONDS); + jj_consume_token(SCOPE_CATALOGS); } else if (jj_2_1655(2)) { - jj_consume_token(SELF); + jj_consume_token(SECONDS); } else if (jj_2_1656(2)) { - jj_consume_token(SERIALIZABLE); + jj_consume_token(SELF); } else if (jj_2_1657(2)) { - jj_consume_token(SESSION); + jj_consume_token(SERIALIZABLE); } else if (jj_2_1658(2)) { - jj_consume_token(SIZE); + jj_consume_token(SESSION); } else if (jj_2_1659(2)) { - jj_consume_token(SPECIFIC_NAME); + jj_consume_token(SIZE); } else if (jj_2_1660(2)) { - jj_consume_token(SQL_BIT); + jj_consume_token(SPECIFIC_NAME); } else if (jj_2_1661(2)) { - jj_consume_token(SQL_CHAR); + jj_consume_token(SQL_BIT); } else if (jj_2_1662(2)) { - jj_consume_token(SQL_DECIMAL); + jj_consume_token(SQL_CHAR); } else if (jj_2_1663(2)) { - jj_consume_token(SQL_INTEGER); + jj_consume_token(SQL_DECIMAL); } else if (jj_2_1664(2)) { - jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); + jj_consume_token(SQL_INTEGER); } else if (jj_2_1665(2)) { - jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); + jj_consume_token(SQL_INTERVAL_DAY_TO_MINUTE); } else if (jj_2_1666(2)) { - jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); + jj_consume_token(SQL_INTERVAL_HOUR_TO_MINUTE); } else if (jj_2_1667(2)) { - jj_consume_token(SQL_INTERVAL_YEAR); + jj_consume_token(SQL_INTERVAL_MINUTE_TO_SECOND); } else if (jj_2_1668(2)) { - jj_consume_token(SQL_LONGVARCHAR); + jj_consume_token(SQL_INTERVAL_YEAR); } else if (jj_2_1669(2)) { - jj_consume_token(SQL_NCLOB); + jj_consume_token(SQL_LONGVARCHAR); } else if (jj_2_1670(2)) { - jj_consume_token(SQL_REAL); + jj_consume_token(SQL_NCLOB); } else if (jj_2_1671(2)) { - jj_consume_token(SQL_TIMESTAMP); + jj_consume_token(SQL_REAL); } else if (jj_2_1672(2)) { - jj_consume_token(SQL_TSI_FRAC_SECOND); + jj_consume_token(SQL_TIMESTAMP); } else if (jj_2_1673(2)) { - jj_consume_token(SQL_TSI_MINUTE); + jj_consume_token(SQL_TSI_FRAC_SECOND); } else if (jj_2_1674(2)) { - jj_consume_token(SQL_TSI_SECOND); + jj_consume_token(SQL_TSI_MINUTE); } else if (jj_2_1675(2)) { - jj_consume_token(SQL_VARBINARY); + jj_consume_token(SQL_TSI_SECOND); } else if (jj_2_1676(2)) { - jj_consume_token(STATEMENT); + jj_consume_token(SQL_VARBINARY); } else if (jj_2_1677(2)) { - jj_consume_token(STYLE); + jj_consume_token(STATEMENT); } else if (jj_2_1678(2)) { - jj_consume_token(TABLE_NAME); + jj_consume_token(STYLE); } else if (jj_2_1679(2)) { - jj_consume_token(TIME_DIFF); + jj_consume_token(TABLE_NAME); } else if (jj_2_1680(2)) { - jj_consume_token(TIMESTAMPDIFF); + jj_consume_token(TIME_DIFF); } else if (jj_2_1681(2)) { - jj_consume_token(TOP_LEVEL_COUNT); + jj_consume_token(TIMESTAMPDIFF); } else if (jj_2_1682(2)) { - jj_consume_token(TRANSACTIONS_COMMITTED); + jj_consume_token(TOP_LEVEL_COUNT); } else if (jj_2_1683(2)) { - jj_consume_token(TRANSFORMS); + jj_consume_token(TRANSACTIONS_COMMITTED); } else if (jj_2_1684(2)) { - jj_consume_token(TRIGGER_SCHEMA); + jj_consume_token(TRANSFORMS); } else if (jj_2_1685(2)) { - jj_consume_token(UNBOUNDED); + jj_consume_token(TRIGGER_SCHEMA); } else if (jj_2_1686(2)) { - jj_consume_token(UNDER); + jj_consume_token(UNBOUNDED); } else if (jj_2_1687(2)) { - jj_consume_token(USAGE); + jj_consume_token(UNDER); } else if (jj_2_1688(2)) { - jj_consume_token(USER_DEFINED_TYPE_NAME); + jj_consume_token(USAGE); } else if (jj_2_1689(2)) { - jj_consume_token(UTF32); + jj_consume_token(USER_DEFINED_TYPE_NAME); } else if (jj_2_1690(2)) { - jj_consume_token(VIEW); + jj_consume_token(UTF32); } else if (jj_2_1691(2)) { - jj_consume_token(WORK); + jj_consume_token(VIEW); } else if (jj_2_1692(2)) { - jj_consume_token(XML); + jj_consume_token(WORK); } else if (jj_2_1693(2)) { - jj_consume_token(TEMPLATE); + jj_consume_token(XML); } else if (jj_2_1694(2)) { - jj_consume_token(ATOMICITY); + jj_consume_token(TEMPLATE); } else if (jj_2_1695(2)) { - jj_consume_token(CACHE_NAME); + jj_consume_token(ATOMICITY); } else if (jj_2_1696(2)) { - jj_consume_token(ENCRYPTED); + jj_consume_token(CACHE_NAME); } else if (jj_2_1697(2)) { - jj_consume_token(LOGGING); + jj_consume_token(ENCRYPTED); } else if (jj_2_1698(2)) { - jj_consume_token(KILL); + jj_consume_token(LOGGING); } else if (jj_2_1699(2)) { - jj_consume_token(SERVICE); + jj_consume_token(KILL); } else if (jj_2_1700(2)) { - jj_consume_token(QUERY); + jj_consume_token(SERVICE); } else if (jj_2_1701(2)) { - jj_consume_token(ANALYZE); + jj_consume_token(QUERY); } else if (jj_2_1702(2)) { - jj_consume_token(ABS); + jj_consume_token(ANALYZE); } else if (jj_2_1703(2)) { - jj_consume_token(ARE); + jj_consume_token(WRAP_KEY); } else if (jj_2_1704(2)) { - jj_consume_token(ASOF); + jj_consume_token(ALLOCATE); } else if (jj_2_1705(2)) { - jj_consume_token(AUTHORIZATION); + jj_consume_token(ARRAY_MAX_CARDINALITY); } else if (jj_2_1706(2)) { - jj_consume_token(BEGIN_FRAME); + jj_consume_token(AT); } else if (jj_2_1707(2)) { - jj_consume_token(BINARY); + jj_consume_token(AVG); } else if (jj_2_1708(2)) { - jj_consume_token(BOOLEAN); + jj_consume_token(BEGIN_PARTITION); } else if (jj_2_1709(2)) { - jj_consume_token(CARDINALITY); + jj_consume_token(BIT); } else if (jj_2_1710(2)) { - jj_consume_token(CEILING); + jj_consume_token(CALL); } else if (jj_2_1711(2)) { - jj_consume_token(CHARACTER_LENGTH); + jj_consume_token(CASCADED); } else if (jj_2_1712(2)) { - jj_consume_token(CLASSIFIER); + jj_consume_token(CHAR); } else if (jj_2_1713(2)) { - jj_consume_token(COALESCE); + jj_consume_token(CHAR_LENGTH); } else if (jj_2_1714(2)) { - jj_consume_token(COMMIT); + jj_consume_token(CLOB); } else if (jj_2_1715(2)) { - jj_consume_token(CONTAINS); + jj_consume_token(COLLATE); } else if (jj_2_1716(2)) { - jj_consume_token(CORRESPONDING); + jj_consume_token(CONDITION); } else if (jj_2_1717(2)) { - jj_consume_token(COVAR_SAMP); + jj_consume_token(CONVERT); } else if (jj_2_1718(2)) { - jj_consume_token(CURRENT); + jj_consume_token(COUNT); } else if (jj_2_1719(2)) { - jj_consume_token(CURRENT_PATH); + jj_consume_token(CUBE); } else if (jj_2_1720(2)) { - jj_consume_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE); + jj_consume_token(CURRENT_CATALOG); } else if (jj_2_1721(2)) { - jj_consume_token(DATE); + jj_consume_token(CURRENT_ROLE); } else if (jj_2_1722(2)) { - jj_consume_token(DEALLOCATE); + jj_consume_token(CURSOR); } else if (jj_2_1723(2)) { - jj_consume_token(DECLARE); + jj_consume_token(DATETIME); } else if (jj_2_1724(2)) { - jj_consume_token(DEREF); + jj_consume_token(DEC); } else if (jj_2_1725(2)) { - jj_consume_token(DISALLOW); + jj_consume_token(DEFINE); } else if (jj_2_1726(2)) { - jj_consume_token(DYNAMIC); + jj_consume_token(DESCRIBE); } else if (jj_2_1727(2)) { - jj_consume_token(EMPTY); + jj_consume_token(DISCONNECT); } else if (jj_2_1728(2)) { - jj_consume_token(END_FRAME); + jj_consume_token(EACH); } else if (jj_2_1729(2)) { - jj_consume_token(ESCAPE); + jj_consume_token(END); } else if (jj_2_1730(2)) { - jj_consume_token(EXECUTE); + jj_consume_token(END_PARTITION); } else if (jj_2_1731(2)) { - jj_consume_token(EXTERNAL); + jj_consume_token(EVERY); } else if (jj_2_1732(2)) { - jj_consume_token(FIRST_VALUE); + jj_consume_token(EXP); } else if (jj_2_1733(2)) { - jj_consume_token(FOREIGN); + jj_consume_token(EXTRACT); } else if (jj_2_1734(2)) { - jj_consume_token(FUNCTION); + jj_consume_token(FLOAT); } else if (jj_2_1735(2)) { - jj_consume_token(GLOBAL); + jj_consume_token(FRAME_ROW); } else if (jj_2_1736(2)) { - jj_consume_token(GROUPS); + jj_consume_token(FUSION); } else if (jj_2_1737(2)) { - jj_consume_token(IDENTITY); + jj_consume_token(GRANT); } else if (jj_2_1738(2)) { - jj_consume_token(INITIAL); + jj_consume_token(HOLD); } else if (jj_2_1739(2)) { - jj_consume_token(INT); + jj_consume_token(IMPORT); } else if (jj_2_1740(2)) { - jj_consume_token(JSON_ARRAY); + jj_consume_token(INOUT); } else if (jj_2_1741(2)) { - jj_consume_token(JSON_OBJECT); + jj_consume_token(INTEGER); } else if (jj_2_1742(2)) { - jj_consume_token(JSON_SCOPE); + jj_consume_token(JSON_ARRAYAGG); } else if (jj_2_1743(2)) { - jj_consume_token(LANGUAGE); + jj_consume_token(JSON_OBJECTAGG); } else if (jj_2_1744(2)) { - jj_consume_token(LATERAL); + jj_consume_token(JSON_VALUE); } else if (jj_2_1745(2)) { - jj_consume_token(LN); + jj_consume_token(LARGE); } else if (jj_2_1746(2)) { - jj_consume_token(MATCH); + jj_consume_token(LEAD); } else if (jj_2_1747(2)) { - jj_consume_token(MATCH_NUMBER); + jj_consume_token(LOCAL); } else if (jj_2_1748(2)) { - jj_consume_token(MEASURE); + jj_consume_token(MATCHES); } else if (jj_2_1749(2)) { - jj_consume_token(METHOD); + jj_consume_token(MATCH_RECOGNIZE); } else if (jj_2_1750(2)) { - jj_consume_token(MOD); + jj_consume_token(MEASURES); } else if (jj_2_1751(2)) { - jj_consume_token(MONTH); + jj_consume_token(MIN); } else if (jj_2_1752(2)) { - jj_consume_token(NCHAR); + jj_consume_token(MODIFIES); } else if (jj_2_1753(2)) { - jj_consume_token(NEXT); + jj_consume_token(MULTISET); } else if (jj_2_1754(2)) { - jj_consume_token(NORMALIZE); + jj_consume_token(NCLOB); } else if (jj_2_1755(2)) { - jj_consume_token(NULLIF); + jj_consume_token(NO); } else if (jj_2_1756(2)) { - jj_consume_token(OCTET_LENGTH); + jj_consume_token(NTH_VALUE); } else if (jj_2_1757(2)) { - jj_consume_token(OMIT); + jj_consume_token(NUMERIC); } else if (jj_2_1758(2)) { - jj_consume_token(OPEN); + jj_consume_token(OF); } else if (jj_2_1759(2)) { - jj_consume_token(OVER); + jj_consume_token(ONE); } else if (jj_2_1760(2)) { - jj_consume_token(PARAMETER); + jj_consume_token(ORDINAL); } else if (jj_2_1761(2)) { - jj_consume_token(PERCENT); + jj_consume_token(OVERLAPS); } else if (jj_2_1762(2)) { - jj_consume_token(PERCENT_RANK); + jj_consume_token(PATTERN); } else if (jj_2_1763(2)) { - jj_consume_token(PORTION); + jj_consume_token(PERCENTILE_CONT); } else if (jj_2_1764(2)) { - jj_consume_token(POWER); + jj_consume_token(PERIOD); } else if (jj_2_1765(2)) { - jj_consume_token(PREPARE); + jj_consume_token(POSITION); } else if (jj_2_1766(2)) { - jj_consume_token(QUALIFY); + jj_consume_token(PRECEDES); } else if (jj_2_1767(2)) { - jj_consume_token(READS); + jj_consume_token(PREV); } else if (jj_2_1768(2)) { - jj_consume_token(REF); + jj_consume_token(RANGE); } else if (jj_2_1769(2)) { - jj_consume_token(REGR_AVGX); + jj_consume_token(REAL); } else if (jj_2_1770(2)) { - jj_consume_token(REGR_INTERCEPT); + jj_consume_token(REFERENCES); } else if (jj_2_1771(2)) { - jj_consume_token(REGR_SXX); + jj_consume_token(REGR_AVGY); } else if (jj_2_1772(2)) { - jj_consume_token(RELEASE); + jj_consume_token(REGR_R2); } else if (jj_2_1773(2)) { - jj_consume_token(RETURN); + jj_consume_token(REGR_SXY); } else if (jj_2_1774(2)) { - jj_consume_token(ROLLBACK); + jj_consume_token(RESET); } else if (jj_2_1775(2)) { - jj_consume_token(ROW_NUMBER); + jj_consume_token(RETURNS); } else if (jj_2_1776(2)) { - jj_consume_token(SAFE_OFFSET); + jj_consume_token(ROLLUP); } else if (jj_2_1777(2)) { - jj_consume_token(SCOPE); + jj_consume_token(RUNNING); } else if (jj_2_1778(2)) { - jj_consume_token(SECOND); + jj_consume_token(SAFE_ORDINAL); } else if (jj_2_1779(2)) { - jj_consume_token(SESSION_USER); + jj_consume_token(SCROLL); } else if (jj_2_1780(2)) { - jj_consume_token(SKIP_); + jj_consume_token(SEEK); } else if (jj_2_1781(2)) { - jj_consume_token(SPECIFICTYPE); + jj_consume_token(SHOW); } else if (jj_2_1782(2)) { - jj_consume_token(SQLSTATE); + jj_consume_token(SMALLINT); } else if (jj_2_1783(2)) { - jj_consume_token(START); + jj_consume_token(SQL); } else if (jj_2_1784(2)) { - jj_consume_token(STDDEV_SAMP); + jj_consume_token(SQLWARNING); } else if (jj_2_1785(2)) { - jj_consume_token(SUBSET); + jj_consume_token(STATIC); } else if (jj_2_1786(2)) { - jj_consume_token(SUCCEEDS); + jj_consume_token(STREAM); } else if (jj_2_1787(2)) { - jj_consume_token(SYSTEM_TIME); + jj_consume_token(SUBSTRING); } else if (jj_2_1788(2)) { - jj_consume_token(TIME); + jj_consume_token(SUM); } else if (jj_2_1789(2)) { - jj_consume_token(TIMEZONE_MINUTE); + jj_consume_token(SYSTEM_USER); } else if (jj_2_1790(2)) { - jj_consume_token(TRANSLATE_REGEX); + jj_consume_token(TIMESTAMP); } else if (jj_2_1791(2)) { - jj_consume_token(TRIGGER); + jj_consume_token(TINYINT); } else if (jj_2_1792(2)) { - jj_consume_token(TRUNCATE); + jj_consume_token(TRANSLATION); } else if (jj_2_1793(2)) { - jj_consume_token(UNIQUE); + jj_consume_token(TRIM); } else if (jj_2_1794(2)) { - jj_consume_token(UPSERT); + jj_consume_token(TRY_CAST); } else if (jj_2_1795(2)) { - jj_consume_token(VALUE_OF); + jj_consume_token(UNKNOWN); } else if (jj_2_1796(2)) { - jj_consume_token(VARCHAR); + jj_consume_token(UUID); } else if (jj_2_1797(2)) { - jj_consume_token(VAR_SAMP); + jj_consume_token(VARBINARY); } else if (jj_2_1798(2)) { - jj_consume_token(WIDTH_BUCKET); + jj_consume_token(VARYING); } else if (jj_2_1799(2)) { - jj_consume_token(WITHOUT); + jj_consume_token(VERSIONING); } else if (jj_2_1800(2)) { - jj_consume_token(TUESDAY); + jj_consume_token(WINDOW); } else if (jj_2_1801(2)) { - jj_consume_token(FRIDAY); + jj_consume_token(YEAR); + } else if (jj_2_1802(2)) { + jj_consume_token(WEDNESDAY); + } else if (jj_2_1803(2)) { + jj_consume_token(SATURDAY); } else { jj_consume_token(-1); throw new ParseException(); @@ -24133,6 +24137,20 @@ final private boolean jj_2_1801(int xla) { finally { jj_save(1800, xla); } } + final private boolean jj_2_1802(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1802(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1801, xla); } + } + + final private boolean jj_2_1803(int xla) { + jj_la = xla; jj_lastpos = jj_scanpos = token; + try { return !jj_3_1803(); } + catch(LookaheadSuccess ls) { return true; } + finally { jj_save(1802, xla); } + } + final private boolean jj_3R_176() { return false; } @@ -30328,6 +30346,10 @@ final private boolean jj_3R_233() { return false; } + final private boolean jj_3R_410() { + return false; + } + final private boolean jj_3R_318() { Token xsp; xsp = jj_scanpos; @@ -30344,10 +30366,6 @@ final private boolean jj_3R_318() { return false; } - final private boolean jj_3R_410() { - return false; - } - final private boolean jj_3R_317() { if (jj_3R_81()) return true; return false; @@ -31766,11 +31784,21 @@ final private boolean jj_3_829() { return false; } + final private boolean jj_3_1803() { + if (jj_scan_token(SATURDAY)) return true; + return false; + } + final private boolean jj_3_38() { if (jj_scan_token(ALL)) return true; return false; } + final private boolean jj_3_1802() { + if (jj_scan_token(WEDNESDAY)) return true; + return false; + } + final private boolean jj_3R_82() { Token xsp; xsp = jj_scanpos; @@ -31782,7 +31810,7 @@ final private boolean jj_3R_82() { } final private boolean jj_3_1801() { - if (jj_scan_token(FRIDAY)) return true; + if (jj_scan_token(YEAR)) return true; return false; } @@ -31792,12 +31820,12 @@ final private boolean jj_3_37() { } final private boolean jj_3_1800() { - if (jj_scan_token(TUESDAY)) return true; + if (jj_scan_token(WINDOW)) return true; return false; } final private boolean jj_3_1799() { - if (jj_scan_token(WITHOUT)) return true; + if (jj_scan_token(VERSIONING)) return true; return false; } @@ -31813,12 +31841,12 @@ final private boolean jj_3_847() { } final private boolean jj_3_1798() { - if (jj_scan_token(WIDTH_BUCKET)) return true; + if (jj_scan_token(VARYING)) return true; return false; } final private boolean jj_3_1797() { - if (jj_scan_token(VAR_SAMP)) return true; + if (jj_scan_token(VARBINARY)) return true; return false; } @@ -31828,7 +31856,7 @@ final private boolean jj_3_359() { } final private boolean jj_3_1796() { - if (jj_scan_token(VARCHAR)) return true; + if (jj_scan_token(UUID)) return true; return false; } @@ -31838,7 +31866,7 @@ final private boolean jj_3_828() { } final private boolean jj_3_1795() { - if (jj_scan_token(VALUE_OF)) return true; + if (jj_scan_token(UNKNOWN)) return true; return false; } @@ -31854,17 +31882,17 @@ final private boolean jj_3_830() { } final private boolean jj_3_1794() { - if (jj_scan_token(UPSERT)) return true; + if (jj_scan_token(TRY_CAST)) return true; return false; } final private boolean jj_3_1793() { - if (jj_scan_token(UNIQUE)) return true; + if (jj_scan_token(TRIM)) return true; return false; } final private boolean jj_3_1792() { - if (jj_scan_token(TRUNCATE)) return true; + if (jj_scan_token(TRANSLATION)) return true; return false; } @@ -31874,7 +31902,7 @@ final private boolean jj_3R_194() { } final private boolean jj_3_1791() { - if (jj_scan_token(TRIGGER)) return true; + if (jj_scan_token(TINYINT)) return true; return false; } @@ -31884,7 +31912,7 @@ final private boolean jj_3_825() { } final private boolean jj_3_1790() { - if (jj_scan_token(TRANSLATE_REGEX)) return true; + if (jj_scan_token(TIMESTAMP)) return true; return false; } @@ -31894,7 +31922,7 @@ final private boolean jj_3_826() { } final private boolean jj_3_1789() { - if (jj_scan_token(TIMEZONE_MINUTE)) return true; + if (jj_scan_token(SYSTEM_USER)) return true; return false; } @@ -31905,17 +31933,17 @@ final private boolean jj_3_36() { } final private boolean jj_3_1788() { - if (jj_scan_token(TIME)) return true; + if (jj_scan_token(SUM)) return true; return false; } final private boolean jj_3_1787() { - if (jj_scan_token(SYSTEM_TIME)) return true; + if (jj_scan_token(SUBSTRING)) return true; return false; } final private boolean jj_3_1786() { - if (jj_scan_token(SUCCEEDS)) return true; + if (jj_scan_token(STREAM)) return true; return false; } @@ -31924,7 +31952,7 @@ final private boolean jj_3R_383() { } final private boolean jj_3_1785() { - if (jj_scan_token(SUBSET)) return true; + if (jj_scan_token(STATIC)) return true; return false; } @@ -31935,12 +31963,12 @@ final private boolean jj_3_846() { } final private boolean jj_3_1784() { - if (jj_scan_token(STDDEV_SAMP)) return true; + if (jj_scan_token(SQLWARNING)) return true; return false; } final private boolean jj_3_1783() { - if (jj_scan_token(START)) return true; + if (jj_scan_token(SQL)) return true; return false; } @@ -31950,7 +31978,7 @@ final private boolean jj_3_35() { } final private boolean jj_3_1782() { - if (jj_scan_token(SQLSTATE)) return true; + if (jj_scan_token(SMALLINT)) return true; return false; } @@ -31960,12 +31988,12 @@ final private boolean jj_3_824() { } final private boolean jj_3_1781() { - if (jj_scan_token(SPECIFICTYPE)) return true; + if (jj_scan_token(SHOW)) return true; return false; } final private boolean jj_3_1780() { - if (jj_scan_token(SKIP_)) return true; + if (jj_scan_token(SEEK)) return true; return false; } @@ -31981,12 +32009,12 @@ final private boolean jj_3_845() { } final private boolean jj_3_1779() { - if (jj_scan_token(SESSION_USER)) return true; + if (jj_scan_token(SCROLL)) return true; return false; } final private boolean jj_3_1778() { - if (jj_scan_token(SECOND)) return true; + if (jj_scan_token(SAFE_ORDINAL)) return true; return false; } @@ -32008,17 +32036,17 @@ final private boolean jj_3R_218() { } final private boolean jj_3_1777() { - if (jj_scan_token(SCOPE)) return true; + if (jj_scan_token(RUNNING)) return true; return false; } final private boolean jj_3_1776() { - if (jj_scan_token(SAFE_OFFSET)) return true; + if (jj_scan_token(ROLLUP)) return true; return false; } final private boolean jj_3_1775() { - if (jj_scan_token(ROW_NUMBER)) return true; + if (jj_scan_token(RETURNS)) return true; return false; } @@ -32029,12 +32057,12 @@ final private boolean jj_3_844() { } final private boolean jj_3_1774() { - if (jj_scan_token(ROLLBACK)) return true; + if (jj_scan_token(RESET)) return true; return false; } final private boolean jj_3_1773() { - if (jj_scan_token(RETURN)) return true; + if (jj_scan_token(REGR_SXY)) return true; return false; } @@ -32044,7 +32072,7 @@ final private boolean jj_3R_199() { } final private boolean jj_3_1772() { - if (jj_scan_token(RELEASE)) return true; + if (jj_scan_token(REGR_R2)) return true; return false; } @@ -32055,32 +32083,32 @@ final private boolean jj_3_823() { } final private boolean jj_3_1771() { - if (jj_scan_token(REGR_SXX)) return true; + if (jj_scan_token(REGR_AVGY)) return true; return false; } final private boolean jj_3_1770() { - if (jj_scan_token(REGR_INTERCEPT)) return true; + if (jj_scan_token(REFERENCES)) return true; return false; } final private boolean jj_3_1769() { - if (jj_scan_token(REGR_AVGX)) return true; + if (jj_scan_token(REAL)) return true; return false; } final private boolean jj_3_1768() { - if (jj_scan_token(REF)) return true; + if (jj_scan_token(RANGE)) return true; return false; } final private boolean jj_3_1767() { - if (jj_scan_token(READS)) return true; + if (jj_scan_token(PREV)) return true; return false; } final private boolean jj_3_1766() { - if (jj_scan_token(QUALIFY)) return true; + if (jj_scan_token(PRECEDES)) return true; return false; } @@ -32091,7 +32119,7 @@ final private boolean jj_3_843() { } final private boolean jj_3_1765() { - if (jj_scan_token(PREPARE)) return true; + if (jj_scan_token(POSITION)) return true; return false; } @@ -32102,12 +32130,12 @@ final private boolean jj_3_820() { } final private boolean jj_3_1764() { - if (jj_scan_token(POWER)) return true; + if (jj_scan_token(PERIOD)) return true; return false; } final private boolean jj_3_1763() { - if (jj_scan_token(PORTION)) return true; + if (jj_scan_token(PERCENTILE_CONT)) return true; return false; } @@ -32122,7 +32150,7 @@ final private boolean jj_3_822() { } final private boolean jj_3_1762() { - if (jj_scan_token(PERCENT_RANK)) return true; + if (jj_scan_token(PATTERN)) return true; return false; } @@ -32132,12 +32160,12 @@ final private boolean jj_3R_399() { } final private boolean jj_3_1761() { - if (jj_scan_token(PERCENT)) return true; + if (jj_scan_token(OVERLAPS)) return true; return false; } final private boolean jj_3_1760() { - if (jj_scan_token(PARAMETER)) return true; + if (jj_scan_token(ORDINAL)) return true; return false; } @@ -32147,17 +32175,17 @@ final private boolean jj_3R_193() { } final private boolean jj_3_1759() { - if (jj_scan_token(OVER)) return true; + if (jj_scan_token(ONE)) return true; return false; } final private boolean jj_3_1758() { - if (jj_scan_token(OPEN)) return true; + if (jj_scan_token(OF)) return true; return false; } final private boolean jj_3_1757() { - if (jj_scan_token(OMIT)) return true; + if (jj_scan_token(NUMERIC)) return true; return false; } @@ -32168,22 +32196,22 @@ final private boolean jj_3_821() { } final private boolean jj_3_1756() { - if (jj_scan_token(OCTET_LENGTH)) return true; + if (jj_scan_token(NTH_VALUE)) return true; return false; } final private boolean jj_3_1755() { - if (jj_scan_token(NULLIF)) return true; + if (jj_scan_token(NO)) return true; return false; } final private boolean jj_3_1754() { - if (jj_scan_token(NORMALIZE)) return true; + if (jj_scan_token(NCLOB)) return true; return false; } final private boolean jj_3_1753() { - if (jj_scan_token(NEXT)) return true; + if (jj_scan_token(MULTISET)) return true; return false; } @@ -32193,12 +32221,12 @@ final private boolean jj_3_816() { } final private boolean jj_3_1752() { - if (jj_scan_token(NCHAR)) return true; + if (jj_scan_token(MODIFIES)) return true; return false; } final private boolean jj_3_1751() { - if (jj_scan_token(MONTH)) return true; + if (jj_scan_token(MIN)) return true; return false; } @@ -32219,12 +32247,12 @@ final private boolean jj_3_815() { } final private boolean jj_3_1750() { - if (jj_scan_token(MOD)) return true; + if (jj_scan_token(MEASURES)) return true; return false; } final private boolean jj_3_1749() { - if (jj_scan_token(METHOD)) return true; + if (jj_scan_token(MATCH_RECOGNIZE)) return true; return false; } @@ -32245,22 +32273,22 @@ final private boolean jj_3R_189() { } final private boolean jj_3_1748() { - if (jj_scan_token(MEASURE)) return true; + if (jj_scan_token(MATCHES)) return true; return false; } final private boolean jj_3_1747() { - if (jj_scan_token(MATCH_NUMBER)) return true; + if (jj_scan_token(LOCAL)) return true; return false; } final private boolean jj_3_1746() { - if (jj_scan_token(MATCH)) return true; + if (jj_scan_token(LEAD)) return true; return false; } final private boolean jj_3_1745() { - if (jj_scan_token(LN)) return true; + if (jj_scan_token(LARGE)) return true; return false; } @@ -32276,27 +32304,27 @@ final private boolean jj_3_817() { } final private boolean jj_3_1744() { - if (jj_scan_token(LATERAL)) return true; + if (jj_scan_token(JSON_VALUE)) return true; return false; } final private boolean jj_3_1743() { - if (jj_scan_token(LANGUAGE)) return true; + if (jj_scan_token(JSON_OBJECTAGG)) return true; return false; } final private boolean jj_3_1742() { - if (jj_scan_token(JSON_SCOPE)) return true; + if (jj_scan_token(JSON_ARRAYAGG)) return true; return false; } final private boolean jj_3_1741() { - if (jj_scan_token(JSON_OBJECT)) return true; + if (jj_scan_token(INTEGER)) return true; return false; } final private boolean jj_3_1740() { - if (jj_scan_token(JSON_ARRAY)) return true; + if (jj_scan_token(INOUT)) return true; return false; } @@ -32307,7 +32335,7 @@ final private boolean jj_3_814() { } final private boolean jj_3_1739() { - if (jj_scan_token(INT)) return true; + if (jj_scan_token(IMPORT)) return true; return false; } @@ -32323,7 +32351,7 @@ final private boolean jj_3_32() { } final private boolean jj_3_1738() { - if (jj_scan_token(INITIAL)) return true; + if (jj_scan_token(HOLD)) return true; return false; } @@ -32333,12 +32361,12 @@ final private boolean jj_3_813() { } final private boolean jj_3_1737() { - if (jj_scan_token(IDENTITY)) return true; + if (jj_scan_token(GRANT)) return true; return false; } final private boolean jj_3_1736() { - if (jj_scan_token(GROUPS)) return true; + if (jj_scan_token(FUSION)) return true; return false; } @@ -32348,7 +32376,7 @@ final private boolean jj_3_31() { } final private boolean jj_3_1735() { - if (jj_scan_token(GLOBAL)) return true; + if (jj_scan_token(FRAME_ROW)) return true; return false; } @@ -32359,7 +32387,7 @@ final private boolean jj_3_356() { } final private boolean jj_3_1734() { - if (jj_scan_token(FUNCTION)) return true; + if (jj_scan_token(FLOAT)) return true; return false; } @@ -32374,7 +32402,7 @@ final private boolean jj_3_810() { } final private boolean jj_3_1733() { - if (jj_scan_token(FOREIGN)) return true; + if (jj_scan_token(EXTRACT)) return true; return false; } @@ -32390,12 +32418,12 @@ final private boolean jj_3_819() { } final private boolean jj_3_1732() { - if (jj_scan_token(FIRST_VALUE)) return true; + if (jj_scan_token(EXP)) return true; return false; } final private boolean jj_3_1731() { - if (jj_scan_token(EXTERNAL)) return true; + if (jj_scan_token(EVERY)) return true; return false; } @@ -32406,17 +32434,17 @@ final private boolean jj_3_355() { } final private boolean jj_3_1730() { - if (jj_scan_token(EXECUTE)) return true; + if (jj_scan_token(END_PARTITION)) return true; return false; } final private boolean jj_3_1729() { - if (jj_scan_token(ESCAPE)) return true; + if (jj_scan_token(END)) return true; return false; } final private boolean jj_3_1728() { - if (jj_scan_token(END_FRAME)) return true; + if (jj_scan_token(EACH)) return true; return false; } @@ -32433,12 +32461,12 @@ final private boolean jj_3_809() { } final private boolean jj_3_1727() { - if (jj_scan_token(EMPTY)) return true; + if (jj_scan_token(DISCONNECT)) return true; return false; } final private boolean jj_3_1726() { - if (jj_scan_token(DYNAMIC)) return true; + if (jj_scan_token(DESCRIBE)) return true; return false; } @@ -32448,22 +32476,22 @@ final private boolean jj_3_354() { } final private boolean jj_3_1725() { - if (jj_scan_token(DISALLOW)) return true; + if (jj_scan_token(DEFINE)) return true; return false; } final private boolean jj_3_1724() { - if (jj_scan_token(DEREF)) return true; + if (jj_scan_token(DEC)) return true; return false; } final private boolean jj_3_1723() { - if (jj_scan_token(DECLARE)) return true; + if (jj_scan_token(DATETIME)) return true; return false; } final private boolean jj_3_1722() { - if (jj_scan_token(DEALLOCATE)) return true; + if (jj_scan_token(CURSOR)) return true; return false; } @@ -32474,7 +32502,7 @@ final private boolean jj_3_812() { } final private boolean jj_3_1721() { - if (jj_scan_token(DATE)) return true; + if (jj_scan_token(CURRENT_ROLE)) return true; return false; } @@ -32484,22 +32512,22 @@ final private boolean jj_3_353() { } final private boolean jj_3_1720() { - if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; + if (jj_scan_token(CURRENT_CATALOG)) return true; return false; } final private boolean jj_3_1719() { - if (jj_scan_token(CURRENT_PATH)) return true; + if (jj_scan_token(CUBE)) return true; return false; } final private boolean jj_3_1718() { - if (jj_scan_token(CURRENT)) return true; + if (jj_scan_token(COUNT)) return true; return false; } final private boolean jj_3_1717() { - if (jj_scan_token(COVAR_SAMP)) return true; + if (jj_scan_token(CONVERT)) return true; return false; } @@ -32510,7 +32538,7 @@ final private boolean jj_3_811() { } final private boolean jj_3_1716() { - if (jj_scan_token(CORRESPONDING)) return true; + if (jj_scan_token(CONDITION)) return true; return false; } @@ -32526,7 +32554,7 @@ final private boolean jj_3R_181() { } final private boolean jj_3_1715() { - if (jj_scan_token(CONTAINS)) return true; + if (jj_scan_token(COLLATE)) return true; return false; } @@ -32537,12 +32565,12 @@ final private boolean jj_3_351() { } final private boolean jj_3_1714() { - if (jj_scan_token(COMMIT)) return true; + if (jj_scan_token(CLOB)) return true; return false; } final private boolean jj_3_1713() { - if (jj_scan_token(COALESCE)) return true; + if (jj_scan_token(CHAR_LENGTH)) return true; return false; } @@ -32555,17 +32583,17 @@ final private boolean jj_3R_190() { } final private boolean jj_3_1712() { - if (jj_scan_token(CLASSIFIER)) return true; + if (jj_scan_token(CHAR)) return true; return false; } final private boolean jj_3_1711() { - if (jj_scan_token(CHARACTER_LENGTH)) return true; + if (jj_scan_token(CASCADED)) return true; return false; } final private boolean jj_3_1710() { - if (jj_scan_token(CEILING)) return true; + if (jj_scan_token(CALL)) return true; return false; } @@ -32581,62 +32609,62 @@ final private boolean jj_3_818() { } final private boolean jj_3_1709() { - if (jj_scan_token(CARDINALITY)) return true; + if (jj_scan_token(BIT)) return true; return false; } final private boolean jj_3_1708() { - if (jj_scan_token(BOOLEAN)) return true; + if (jj_scan_token(BEGIN_PARTITION)) return true; return false; } final private boolean jj_3_1707() { - if (jj_scan_token(BINARY)) return true; + if (jj_scan_token(AVG)) return true; return false; } final private boolean jj_3_1706() { - if (jj_scan_token(BEGIN_FRAME)) return true; + if (jj_scan_token(AT)) return true; return false; } final private boolean jj_3_1705() { - if (jj_scan_token(AUTHORIZATION)) return true; + if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; return false; } final private boolean jj_3_1704() { - if (jj_scan_token(ASOF)) return true; + if (jj_scan_token(ALLOCATE)) return true; return false; } final private boolean jj_3_1703() { - if (jj_scan_token(ARE)) return true; + if (jj_scan_token(WRAP_KEY)) return true; return false; } final private boolean jj_3_1702() { - if (jj_scan_token(ABS)) return true; + if (jj_scan_token(ANALYZE)) return true; return false; } final private boolean jj_3_1701() { - if (jj_scan_token(ANALYZE)) return true; + if (jj_scan_token(QUERY)) return true; return false; } final private boolean jj_3_1700() { - if (jj_scan_token(QUERY)) return true; + if (jj_scan_token(SERVICE)) return true; return false; } final private boolean jj_3_1699() { - if (jj_scan_token(SERVICE)) return true; + if (jj_scan_token(KILL)) return true; return false; } final private boolean jj_3_1698() { - if (jj_scan_token(KILL)) return true; + if (jj_scan_token(LOGGING)) return true; return false; } @@ -32647,7 +32675,7 @@ final private boolean jj_3_841() { } final private boolean jj_3_1697() { - if (jj_scan_token(LOGGING)) return true; + if (jj_scan_token(ENCRYPTED)) return true; return false; } @@ -32658,12 +32686,12 @@ final private boolean jj_3_349() { } final private boolean jj_3_1696() { - if (jj_scan_token(ENCRYPTED)) return true; + if (jj_scan_token(CACHE_NAME)) return true; return false; } final private boolean jj_3_1695() { - if (jj_scan_token(CACHE_NAME)) return true; + if (jj_scan_token(ATOMICITY)) return true; return false; } @@ -32674,7 +32702,7 @@ final private boolean jj_3_808() { } final private boolean jj_3_1694() { - if (jj_scan_token(ATOMICITY)) return true; + if (jj_scan_token(TEMPLATE)) return true; return false; } @@ -32685,17 +32713,17 @@ final private boolean jj_3_29() { } final private boolean jj_3_1693() { - if (jj_scan_token(TEMPLATE)) return true; + if (jj_scan_token(XML)) return true; return false; } final private boolean jj_3_1692() { - if (jj_scan_token(XML)) return true; + if (jj_scan_token(WORK)) return true; return false; } final private boolean jj_3_1691() { - if (jj_scan_token(WORK)) return true; + if (jj_scan_token(VIEW)) return true; return false; } @@ -32706,32 +32734,32 @@ final private boolean jj_3_348() { } final private boolean jj_3_1690() { - if (jj_scan_token(VIEW)) return true; + if (jj_scan_token(UTF32)) return true; return false; } final private boolean jj_3_1689() { - if (jj_scan_token(UTF32)) return true; + if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; return false; } final private boolean jj_3_1688() { - if (jj_scan_token(USER_DEFINED_TYPE_NAME)) return true; + if (jj_scan_token(USAGE)) return true; return false; } final private boolean jj_3_1687() { - if (jj_scan_token(USAGE)) return true; + if (jj_scan_token(UNDER)) return true; return false; } final private boolean jj_3_1686() { - if (jj_scan_token(UNDER)) return true; + if (jj_scan_token(UNBOUNDED)) return true; return false; } final private boolean jj_3_1685() { - if (jj_scan_token(UNBOUNDED)) return true; + if (jj_scan_token(TRIGGER_SCHEMA)) return true; return false; } @@ -32759,32 +32787,32 @@ final private boolean jj_3_840() { } final private boolean jj_3_1684() { - if (jj_scan_token(TRIGGER_SCHEMA)) return true; + if (jj_scan_token(TRANSFORMS)) return true; return false; } final private boolean jj_3_1683() { - if (jj_scan_token(TRANSFORMS)) return true; + if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; return false; } final private boolean jj_3_1682() { - if (jj_scan_token(TRANSACTIONS_COMMITTED)) return true; + if (jj_scan_token(TOP_LEVEL_COUNT)) return true; return false; } final private boolean jj_3_1681() { - if (jj_scan_token(TOP_LEVEL_COUNT)) return true; + if (jj_scan_token(TIMESTAMPDIFF)) return true; return false; } final private boolean jj_3_1680() { - if (jj_scan_token(TIMESTAMPDIFF)) return true; + if (jj_scan_token(TIME_DIFF)) return true; return false; } final private boolean jj_3_1679() { - if (jj_scan_token(TIME_DIFF)) return true; + if (jj_scan_token(TABLE_NAME)) return true; return false; } @@ -32795,22 +32823,22 @@ final private boolean jj_3_352() { } final private boolean jj_3_1678() { - if (jj_scan_token(TABLE_NAME)) return true; + if (jj_scan_token(STYLE)) return true; return false; } final private boolean jj_3_1677() { - if (jj_scan_token(STYLE)) return true; + if (jj_scan_token(STATEMENT)) return true; return false; } final private boolean jj_3_1676() { - if (jj_scan_token(STATEMENT)) return true; + if (jj_scan_token(SQL_VARBINARY)) return true; return false; } final private boolean jj_3_1675() { - if (jj_scan_token(SQL_VARBINARY)) return true; + if (jj_scan_token(SQL_TSI_SECOND)) return true; return false; } @@ -32827,12 +32855,12 @@ final private boolean jj_3R_171() { } final private boolean jj_3_1674() { - if (jj_scan_token(SQL_TSI_SECOND)) return true; + if (jj_scan_token(SQL_TSI_MINUTE)) return true; return false; } final private boolean jj_3_1673() { - if (jj_scan_token(SQL_TSI_MINUTE)) return true; + if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; return false; } @@ -32843,7 +32871,7 @@ final private boolean jj_3_346() { } final private boolean jj_3_1672() { - if (jj_scan_token(SQL_TSI_FRAC_SECOND)) return true; + if (jj_scan_token(SQL_TIMESTAMP)) return true; return false; } @@ -32860,12 +32888,12 @@ final private boolean jj_3_807() { } final private boolean jj_3_1671() { - if (jj_scan_token(SQL_TIMESTAMP)) return true; + if (jj_scan_token(SQL_REAL)) return true; return false; } final private boolean jj_3_1670() { - if (jj_scan_token(SQL_REAL)) return true; + if (jj_scan_token(SQL_NCLOB)) return true; return false; } @@ -32875,7 +32903,7 @@ final private boolean jj_3_805() { } final private boolean jj_3_1669() { - if (jj_scan_token(SQL_NCLOB)) return true; + if (jj_scan_token(SQL_LONGVARCHAR)) return true; return false; } @@ -32886,32 +32914,32 @@ final private boolean jj_3_345() { } final private boolean jj_3_1668() { - if (jj_scan_token(SQL_LONGVARCHAR)) return true; + if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; return false; } final private boolean jj_3_1667() { - if (jj_scan_token(SQL_INTERVAL_YEAR)) return true; + if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; return false; } final private boolean jj_3_1666() { - if (jj_scan_token(SQL_INTERVAL_MINUTE_TO_SECOND)) return true; + if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; return false; } final private boolean jj_3_1665() { - if (jj_scan_token(SQL_INTERVAL_HOUR_TO_MINUTE)) return true; + if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; return false; } final private boolean jj_3_1664() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_MINUTE)) return true; + if (jj_scan_token(SQL_INTEGER)) return true; return false; } final private boolean jj_3_1663() { - if (jj_scan_token(SQL_INTEGER)) return true; + if (jj_scan_token(SQL_DECIMAL)) return true; return false; } @@ -32922,7 +32950,7 @@ final private boolean jj_3_344() { } final private boolean jj_3_1662() { - if (jj_scan_token(SQL_DECIMAL)) return true; + if (jj_scan_token(SQL_CHAR)) return true; return false; } @@ -32932,7 +32960,7 @@ final private boolean jj_3_804() { } final private boolean jj_3_1661() { - if (jj_scan_token(SQL_CHAR)) return true; + if (jj_scan_token(SQL_BIT)) return true; return false; } @@ -32947,17 +32975,17 @@ final private boolean jj_3_803() { } final private boolean jj_3_1660() { - if (jj_scan_token(SQL_BIT)) return true; + if (jj_scan_token(SPECIFIC_NAME)) return true; return false; } final private boolean jj_3_1659() { - if (jj_scan_token(SPECIFIC_NAME)) return true; + if (jj_scan_token(SIZE)) return true; return false; } final private boolean jj_3_1658() { - if (jj_scan_token(SIZE)) return true; + if (jj_scan_token(SESSION)) return true; return false; } @@ -32981,22 +33009,22 @@ final private boolean jj_3_838() { } final private boolean jj_3_1657() { - if (jj_scan_token(SESSION)) return true; + if (jj_scan_token(SERIALIZABLE)) return true; return false; } final private boolean jj_3_1656() { - if (jj_scan_token(SERIALIZABLE)) return true; + if (jj_scan_token(SELF)) return true; return false; } final private boolean jj_3_1655() { - if (jj_scan_token(SELF)) return true; + if (jj_scan_token(SECONDS)) return true; return false; } final private boolean jj_3_1654() { - if (jj_scan_token(SECONDS)) return true; + if (jj_scan_token(SCOPE_CATALOGS)) return true; return false; } @@ -33098,12 +33126,12 @@ final private boolean jj_3R_221() { } final private boolean jj_3_1653() { - if (jj_scan_token(SCOPE_CATALOGS)) return true; + if (jj_scan_token(SCALE)) return true; return false; } final private boolean jj_3_1652() { - if (jj_scan_token(SCALE)) return true; + if (jj_scan_token(ROUTINE_SCHEMA)) return true; return false; } @@ -33114,27 +33142,27 @@ final private boolean jj_3_342() { } final private boolean jj_3_1651() { - if (jj_scan_token(ROUTINE_SCHEMA)) return true; + if (jj_scan_token(ROUTINE)) return true; return false; } final private boolean jj_3_1650() { - if (jj_scan_token(ROUTINE)) return true; + if (jj_scan_token(RETURNING)) return true; return false; } final private boolean jj_3_1649() { - if (jj_scan_token(RETURNING)) return true; + if (jj_scan_token(RETURNED_LENGTH)) return true; return false; } final private boolean jj_3_1648() { - if (jj_scan_token(RETURNED_LENGTH)) return true; + if (jj_scan_token(RESTART)) return true; return false; } final private boolean jj_3_1647() { - if (jj_scan_token(RESTART)) return true; + if (jj_scan_token(REPEATABLE)) return true; return false; } @@ -33145,117 +33173,117 @@ final private boolean jj_3R_166() { } final private boolean jj_3_1646() { - if (jj_scan_token(REPEATABLE)) return true; + if (jj_scan_token(QUARTERS)) return true; return false; } final private boolean jj_3_1645() { - if (jj_scan_token(QUARTERS)) return true; + if (jj_scan_token(PRIVILEGES)) return true; return false; } final private boolean jj_3_1644() { - if (jj_scan_token(PRIVILEGES)) return true; + if (jj_scan_token(PRECEDING)) return true; return false; } final private boolean jj_3_1643() { - if (jj_scan_token(PRECEDING)) return true; + if (jj_scan_token(PLACING)) return true; return false; } final private boolean jj_3_1642() { - if (jj_scan_token(PLACING)) return true; + if (jj_scan_token(PAST)) return true; return false; } final private boolean jj_3_1641() { - if (jj_scan_token(PAST)) return true; + if (jj_scan_token(PASCAL)) return true; return false; } final private boolean jj_3_1640() { - if (jj_scan_token(PASCAL)) return true; + if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; return false; } final private boolean jj_3_1639() { - if (jj_scan_token(PARAMETER_SPECIFIC_NAME)) return true; + if (jj_scan_token(PARAMETER_NAME)) return true; return false; } final private boolean jj_3_1638() { - if (jj_scan_token(PARAMETER_NAME)) return true; + if (jj_scan_token(OVERRIDING)) return true; return false; } final private boolean jj_3_1637() { - if (jj_scan_token(OVERRIDING)) return true; + if (jj_scan_token(ORDINALITY)) return true; return false; } final private boolean jj_3_1636() { - if (jj_scan_token(ORDINALITY)) return true; + if (jj_scan_token(OPTION)) return true; return false; } final private boolean jj_3_1635() { - if (jj_scan_token(OPTION)) return true; + if (jj_scan_token(NUMBER)) return true; return false; } final private boolean jj_3_1634() { - if (jj_scan_token(NUMBER)) return true; + if (jj_scan_token(NORMALIZED)) return true; return false; } final private boolean jj_3_1633() { - if (jj_scan_token(NORMALIZED)) return true; + if (jj_scan_token(NAMES)) return true; return false; } final private boolean jj_3_1632() { - if (jj_scan_token(NAMES)) return true; + if (jj_scan_token(MORE_)) return true; return false; } final private boolean jj_3_1631() { - if (jj_scan_token(MORE_)) return true; + if (jj_scan_token(MINUTES)) return true; return false; } final private boolean jj_3_1630() { - if (jj_scan_token(MINUTES)) return true; + if (jj_scan_token(MICROSECOND)) return true; return false; } final private boolean jj_3_1629() { - if (jj_scan_token(MICROSECOND)) return true; + if (jj_scan_token(MESSAGE_LENGTH)) return true; return false; } final private boolean jj_3_1628() { - if (jj_scan_token(MESSAGE_LENGTH)) return true; + if (jj_scan_token(MAP)) return true; return false; } final private boolean jj_3_1627() { - if (jj_scan_token(MAP)) return true; + if (jj_scan_token(LIBRARY)) return true; return false; } final private boolean jj_3_1626() { - if (jj_scan_token(LIBRARY)) return true; + if (jj_scan_token(LAST)) return true; return false; } final private boolean jj_3_1625() { - if (jj_scan_token(LAST)) return true; + if (jj_scan_token(KEY_MEMBER)) return true; return false; } final private boolean jj_3_1624() { - if (jj_scan_token(KEY_MEMBER)) return true; + if (jj_scan_token(JSON)) return true; return false; } @@ -33266,7 +33294,7 @@ final private boolean jj_3_340() { } final private boolean jj_3_1623() { - if (jj_scan_token(JSON)) return true; + if (jj_scan_token(ISOLATION)) return true; return false; } @@ -33277,12 +33305,12 @@ final private boolean jj_3R_215() { } final private boolean jj_3_1622() { - if (jj_scan_token(ISOLATION)) return true; + if (jj_scan_token(INSTANTIABLE)) return true; return false; } final private boolean jj_3_1621() { - if (jj_scan_token(INSTANTIABLE)) return true; + if (jj_scan_token(INITIALLY)) return true; return false; } @@ -33293,12 +33321,12 @@ final private boolean jj_3R_170() { } final private boolean jj_3_1620() { - if (jj_scan_token(INITIALLY)) return true; + if (jj_scan_token(INCLUDE)) return true; return false; } final private boolean jj_3_1619() { - if (jj_scan_token(INCLUDE)) return true; + if (jj_scan_token(IMMEDIATE)) return true; return false; } @@ -33309,27 +33337,27 @@ final private boolean jj_3_341() { } final private boolean jj_3_1618() { - if (jj_scan_token(IMMEDIATE)) return true; + if (jj_scan_token(HOURS)) return true; return false; } final private boolean jj_3_1617() { - if (jj_scan_token(HOURS)) return true; + if (jj_scan_token(GROUP_CONCAT)) return true; return false; } final private boolean jj_3_1616() { - if (jj_scan_token(GROUP_CONCAT)) return true; + if (jj_scan_token(GO)) return true; return false; } final private boolean jj_3_1615() { - if (jj_scan_token(GO)) return true; + if (jj_scan_token(GENERAL)) return true; return false; } final private boolean jj_3_1614() { - if (jj_scan_token(GENERAL)) return true; + if (jj_scan_token(FOUND)) return true; return false; } @@ -33339,7 +33367,7 @@ final private boolean jj_3R_188() { } final private boolean jj_3_1613() { - if (jj_scan_token(FOUND)) return true; + if (jj_scan_token(FOLLOWING)) return true; return false; } @@ -33349,22 +33377,22 @@ final private boolean jj_3_799() { } final private boolean jj_3_1612() { - if (jj_scan_token(FOLLOWING)) return true; + if (jj_scan_token(EXCLUDING)) return true; return false; } final private boolean jj_3_1611() { - if (jj_scan_token(EXCLUDING)) return true; + if (jj_scan_token(ERROR)) return true; return false; } final private boolean jj_3_1610() { - if (jj_scan_token(ERROR)) return true; + if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; return false; } final private boolean jj_3_1609() { - if (jj_scan_token(DYNAMIC_FUNCTION_CODE)) return true; + if (jj_scan_token(DOY)) return true; return false; } @@ -33373,7 +33401,7 @@ final private boolean jj_3R_397() { } final private boolean jj_3_1608() { - if (jj_scan_token(DOY)) return true; + if (jj_scan_token(DISPATCH)) return true; return false; } @@ -33383,12 +33411,12 @@ final private boolean jj_3_28() { } final private boolean jj_3_1607() { - if (jj_scan_token(DISPATCH)) return true; + if (jj_scan_token(DESCRIPTION)) return true; return false; } final private boolean jj_3_1606() { - if (jj_scan_token(DESCRIPTION)) return true; + if (jj_scan_token(DEPTH)) return true; return false; } @@ -33398,12 +33426,12 @@ final private boolean jj_3_27() { } final private boolean jj_3_1605() { - if (jj_scan_token(DEPTH)) return true; + if (jj_scan_token(DEFINED)) return true; return false; } final private boolean jj_3_1604() { - if (jj_scan_token(DEFINED)) return true; + if (jj_scan_token(DEFAULTS)) return true; return false; } @@ -33417,12 +33445,12 @@ final private boolean jj_3_801() { } final private boolean jj_3_1603() { - if (jj_scan_token(DEFAULTS)) return true; + if (jj_scan_token(DAYOFYEAR)) return true; return false; } final private boolean jj_3_1602() { - if (jj_scan_token(DAYOFYEAR)) return true; + if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; return false; } @@ -33440,7 +33468,7 @@ final private boolean jj_3R_288() { } final private boolean jj_3_1601() { - if (jj_scan_token(DATETIME_INTERVAL_PRECISION)) return true; + if (jj_scan_token(DATE_TRUNC)) return true; return false; } @@ -33465,7 +33493,7 @@ final private boolean jj_3R_204() { } final private boolean jj_3_1600() { - if (jj_scan_token(DATE_TRUNC)) return true; + if (jj_scan_token(DATA)) return true; return false; } @@ -33475,22 +33503,22 @@ final private boolean jj_3_26() { } final private boolean jj_3_1599() { - if (jj_scan_token(DATA)) return true; + if (jj_scan_token(CONTAINS_SUBSTR)) return true; return false; } final private boolean jj_3_1598() { - if (jj_scan_token(CONTAINS_SUBSTR)) return true; + if (jj_scan_token(CONSTRAINTS)) return true; return false; } final private boolean jj_3_1597() { - if (jj_scan_token(CONSTRAINTS)) return true; + if (jj_scan_token(CONNECTION_NAME)) return true; return false; } final private boolean jj_3_1596() { - if (jj_scan_token(CONNECTION_NAME)) return true; + if (jj_scan_token(CONDITIONAL)) return true; return false; } @@ -33499,12 +33527,12 @@ final private boolean jj_3R_374() { } final private boolean jj_3_1595() { - if (jj_scan_token(CONDITIONAL)) return true; + if (jj_scan_token(COMMAND_FUNCTION)) return true; return false; } final private boolean jj_3_1594() { - if (jj_scan_token(COMMAND_FUNCTION)) return true; + if (jj_scan_token(COLLATION_NAME)) return true; return false; } @@ -33515,7 +33543,7 @@ final private boolean jj_3_339() { } final private boolean jj_3_1593() { - if (jj_scan_token(COLLATION_NAME)) return true; + if (jj_scan_token(COBOL)) return true; return false; } @@ -33526,7 +33554,7 @@ final private boolean jj_3_338() { } final private boolean jj_3_1592() { - if (jj_scan_token(COBOL)) return true; + if (jj_scan_token(CHARACTER_SET_NAME)) return true; return false; } @@ -33536,12 +33564,12 @@ final private boolean jj_3_25() { } final private boolean jj_3_1591() { - if (jj_scan_token(CHARACTER_SET_NAME)) return true; + if (jj_scan_token(CHARACTERISTICS)) return true; return false; } final private boolean jj_3_1590() { - if (jj_scan_token(CHARACTERISTICS)) return true; + if (jj_scan_token(CATALOG_NAME)) return true; return false; } @@ -33551,7 +33579,7 @@ final private boolean jj_3_24() { } final private boolean jj_3_1589() { - if (jj_scan_token(CATALOG_NAME)) return true; + if (jj_scan_token(C)) return true; return false; } @@ -33560,7 +33588,7 @@ final private boolean jj_3R_396() { } final private boolean jj_3_1588() { - if (jj_scan_token(C)) return true; + if (jj_scan_token(BEFORE)) return true; return false; } @@ -33580,22 +33608,22 @@ final private boolean jj_3R_175() { } final private boolean jj_3_1587() { - if (jj_scan_token(BEFORE)) return true; + if (jj_scan_token(ASSIGNMENT)) return true; return false; } final private boolean jj_3_1586() { - if (jj_scan_token(ASSIGNMENT)) return true; + if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; return false; } final private boolean jj_3_1585() { - if (jj_scan_token(ARRAY_CONCAT_AGG)) return true; + if (jj_scan_token(ALWAYS)) return true; return false; } final private boolean jj_3_1584() { - if (jj_scan_token(ALWAYS)) return true; + if (jj_scan_token(ADD)) return true; return false; } @@ -33615,7 +33643,7 @@ final private boolean jj_3R_257() { } final private boolean jj_3_1583() { - if (jj_scan_token(ADD)) return true; + if (jj_scan_token(ABSOLUTE)) return true; return false; } @@ -33625,11 +33653,6 @@ final private boolean jj_3_798() { return false; } - final private boolean jj_3_1582() { - if (jj_scan_token(ABSOLUTE)) return true; - return false; - } - final private boolean jj_3_21() { if (jj_3R_74()) return true; return false; @@ -33638,8 +33661,6 @@ final private boolean jj_3_21() { final private boolean jj_3R_341() { Token xsp; xsp = jj_scanpos; - if (jj_3_1582()) { - jj_scanpos = xsp; if (jj_3_1583()) { jj_scanpos = xsp; if (jj_3_1584()) { @@ -34076,7 +34097,12 @@ final private boolean jj_3R_341() { jj_scanpos = xsp; if (jj_3_1800()) { jj_scanpos = xsp; - if (jj_3_1801()) return true; + if (jj_3_1801()) { + jj_scanpos = xsp; + if (jj_3_1802()) { + jj_scanpos = xsp; + if (jj_3_1803()) return true; + } } } } @@ -34303,8 +34329,13 @@ final private boolean jj_3R_377() { return false; } + final private boolean jj_3_1582() { + if (jj_scan_token(FRIDAY)) return true; + return false; + } + final private boolean jj_3_1581() { - if (jj_scan_token(SUNDAY)) return true; + if (jj_scan_token(TUESDAY)) return true; return false; } @@ -34320,7 +34351,7 @@ final private boolean jj_3_18() { } final private boolean jj_3_1580() { - if (jj_scan_token(THURSDAY)) return true; + if (jj_scan_token(WITHOUT)) return true; return false; } @@ -34330,12 +34361,12 @@ final private boolean jj_3_336() { } final private boolean jj_3_1579() { - if (jj_scan_token(MONDAY)) return true; + if (jj_scan_token(WIDTH_BUCKET)) return true; return false; } final private boolean jj_3_1578() { - if (jj_scan_token(WITHIN)) return true; + if (jj_scan_token(VAR_SAMP)) return true; return false; } @@ -34355,17 +34386,17 @@ final private boolean jj_3_797() { } final private boolean jj_3_1577() { - if (jj_scan_token(WHENEVER)) return true; + if (jj_scan_token(VARCHAR)) return true; return false; } final private boolean jj_3_1576() { - if (jj_scan_token(VAR_POP)) return true; + if (jj_scan_token(VALUE_OF)) return true; return false; } final private boolean jj_3_1575() { - if (jj_scan_token(VARIANT)) return true; + if (jj_scan_token(UPSERT)) return true; return false; } @@ -34384,12 +34415,12 @@ final private boolean jj_3R_72() { } final private boolean jj_3_1574() { - if (jj_scan_token(VALUE)) return true; + if (jj_scan_token(UNIQUE)) return true; return false; } final private boolean jj_3_1573() { - if (jj_scan_token(UPPER)) return true; + if (jj_scan_token(TRUNCATE)) return true; return false; } @@ -34405,7 +34436,7 @@ final private boolean jj_3R_187() { } final private boolean jj_3_1572() { - if (jj_scan_token(UESCAPE)) return true; + if (jj_scan_token(TRIGGER)) return true; return false; } @@ -34415,7 +34446,7 @@ final private boolean jj_3_20() { } final private boolean jj_3_1571() { - if (jj_scan_token(TRIM_ARRAY)) return true; + if (jj_scan_token(TRANSLATE_REGEX)) return true; return false; } @@ -34425,7 +34456,7 @@ final private boolean jj_3_17() { } final private boolean jj_3_1570() { - if (jj_scan_token(TREAT)) return true; + if (jj_scan_token(TIMEZONE_MINUTE)) return true; return false; } @@ -34437,22 +34468,22 @@ final private boolean jj_3_796() { } final private boolean jj_3_1569() { - if (jj_scan_token(TRANSLATE)) return true; + if (jj_scan_token(TIME)) return true; return false; } final private boolean jj_3_1568() { - if (jj_scan_token(TIMEZONE_HOUR)) return true; + if (jj_scan_token(SYSTEM_TIME)) return true; return false; } final private boolean jj_3_1567() { - if (jj_scan_token(TABLESAMPLE)) return true; + if (jj_scan_token(SUCCEEDS)) return true; return false; } final private boolean jj_3_1566() { - if (jj_scan_token(SYSTEM)) return true; + if (jj_scan_token(SUBSET)) return true; return false; } @@ -34470,7 +34501,7 @@ final private boolean jj_3R_283() { } final private boolean jj_3_1565() { - if (jj_scan_token(SUBSTRING_REGEX)) return true; + if (jj_scan_token(STDDEV_SAMP)) return true; return false; } @@ -34480,7 +34511,7 @@ final private boolean jj_3_795() { } final private boolean jj_3_1564() { - if (jj_scan_token(SUBMULTISET)) return true; + if (jj_scan_token(START)) return true; return false; } @@ -34490,12 +34521,12 @@ final private boolean jj_3_19() { } final private boolean jj_3_1563() { - if (jj_scan_token(STDDEV_POP)) return true; + if (jj_scan_token(SQLSTATE)) return true; return false; } final private boolean jj_3_1562() { - if (jj_scan_token(SQRT)) return true; + if (jj_scan_token(SPECIFICTYPE)) return true; return false; } @@ -34517,7 +34548,7 @@ final private boolean jj_3R_73() { } final private boolean jj_3_1561() { - if (jj_scan_token(SQLEXCEPTION)) return true; + if (jj_scan_token(SKIP_)) return true; return false; } @@ -34527,12 +34558,12 @@ final private boolean jj_3_335() { } final private boolean jj_3_1560() { - if (jj_scan_token(SPECIFIC)) return true; + if (jj_scan_token(SESSION_USER)) return true; return false; } final private boolean jj_3_1559() { - if (jj_scan_token(SIMILAR)) return true; + if (jj_scan_token(SECOND)) return true; return false; } @@ -34542,22 +34573,22 @@ final private boolean jj_3_15() { } final private boolean jj_3_1558() { - if (jj_scan_token(SENSITIVE)) return true; + if (jj_scan_token(SCOPE)) return true; return false; } final private boolean jj_3_1557() { - if (jj_scan_token(SEARCH)) return true; + if (jj_scan_token(SAFE_OFFSET)) return true; return false; } final private boolean jj_3_1556() { - if (jj_scan_token(SAVEPOINT)) return true; + if (jj_scan_token(ROW_NUMBER)) return true; return false; } final private boolean jj_3_1555() { - if (jj_scan_token(SAFE_CAST)) return true; + if (jj_scan_token(ROLLBACK)) return true; return false; } @@ -34567,12 +34598,12 @@ final private boolean jj_3_790() { } final private boolean jj_3_1554() { - if (jj_scan_token(ROWS)) return true; + if (jj_scan_token(RETURN)) return true; return false; } final private boolean jj_3_1553() { - if (jj_scan_token(REVOKE)) return true; + if (jj_scan_token(RELEASE)) return true; return false; } @@ -34583,7 +34614,7 @@ final private boolean jj_3_332() { } final private boolean jj_3_1552() { - if (jj_scan_token(RESULT)) return true; + if (jj_scan_token(REGR_SXX)) return true; return false; } @@ -34593,7 +34624,7 @@ final private boolean jj_3R_186() { } final private boolean jj_3_1551() { - if (jj_scan_token(REGR_SYY)) return true; + if (jj_scan_token(REGR_INTERCEPT)) return true; return false; } @@ -34619,12 +34650,12 @@ final private boolean jj_3_794() { } final private boolean jj_3_1550() { - if (jj_scan_token(REGR_SLOPE)) return true; + if (jj_scan_token(REGR_AVGX)) return true; return false; } final private boolean jj_3_1549() { - if (jj_scan_token(REGR_COUNT)) return true; + if (jj_scan_token(REF)) return true; return false; } @@ -34633,7 +34664,7 @@ final private boolean jj_3R_287() { } final private boolean jj_3_1548() { - if (jj_scan_token(REFERENCING)) return true; + if (jj_scan_token(READS)) return true; return false; } @@ -34644,7 +34675,7 @@ final private boolean jj_3R_71() { } final private boolean jj_3_1547() { - if (jj_scan_token(RECURSIVE)) return true; + if (jj_scan_token(QUALIFY)) return true; return false; } @@ -34654,7 +34685,7 @@ final private boolean jj_3_793() { } final private boolean jj_3_1546() { - if (jj_scan_token(RANK)) return true; + if (jj_scan_token(PREPARE)) return true; return false; } @@ -34664,27 +34695,27 @@ final private boolean jj_3_791() { } final private boolean jj_3_1545() { - if (jj_scan_token(PROCEDURE)) return true; + if (jj_scan_token(POWER)) return true; return false; } final private boolean jj_3_1544() { - if (jj_scan_token(PRECISION)) return true; + if (jj_scan_token(PORTION)) return true; return false; } final private boolean jj_3_1543() { - if (jj_scan_token(POSITION_REGEX)) return true; + if (jj_scan_token(PERCENT_RANK)) return true; return false; } final private boolean jj_3_1542() { - if (jj_scan_token(PERMUTE)) return true; + if (jj_scan_token(PERCENT)) return true; return false; } final private boolean jj_3_1541() { - if (jj_scan_token(PERCENTILE_DISC)) return true; + if (jj_scan_token(PARAMETER)) return true; return false; } @@ -34694,7 +34725,7 @@ final private boolean jj_3_789() { } final private boolean jj_3_1540() { - if (jj_scan_token(PER)) return true; + if (jj_scan_token(OVER)) return true; return false; } @@ -34714,22 +34745,22 @@ final private boolean jj_3_792() { } final private boolean jj_3_1539() { - if (jj_scan_token(OVERLAY)) return true; + if (jj_scan_token(OPEN)) return true; return false; } final private boolean jj_3_1538() { - if (jj_scan_token(OUT)) return true; + if (jj_scan_token(OMIT)) return true; return false; } final private boolean jj_3_1537() { - if (jj_scan_token(ONLY)) return true; + if (jj_scan_token(OCTET_LENGTH)) return true; return false; } final private boolean jj_3_1536() { - if (jj_scan_token(OLD)) return true; + if (jj_scan_token(NULLIF)) return true; return false; } @@ -34747,7 +34778,7 @@ final private boolean jj_3R_282() { } final private boolean jj_3_1535() { - if (jj_scan_token(OCCURRENCES_REGEX)) return true; + if (jj_scan_token(NORMALIZE)) return true; return false; } @@ -34757,22 +34788,22 @@ final private boolean jj_3_334() { } final private boolean jj_3_1534() { - if (jj_scan_token(NTILE)) return true; + if (jj_scan_token(NEXT)) return true; return false; } final private boolean jj_3_1533() { - if (jj_scan_token(NONE)) return true; + if (jj_scan_token(NCHAR)) return true; return false; } final private boolean jj_3_1532() { - if (jj_scan_token(NEW)) return true; + if (jj_scan_token(MONTH)) return true; return false; } final private boolean jj_3_1531() { - if (jj_scan_token(NATIONAL)) return true; + if (jj_scan_token(MOD)) return true; return false; } @@ -34782,7 +34813,7 @@ final private boolean jj_3_8() { } final private boolean jj_3_1530() { - if (jj_scan_token(MODULE)) return true; + if (jj_scan_token(METHOD)) return true; return false; } @@ -34792,7 +34823,7 @@ final private boolean jj_3_12() { } final private boolean jj_3_1529() { - if (jj_scan_token(MINUTE)) return true; + if (jj_scan_token(MEASURE)) return true; return false; } @@ -34803,27 +34834,27 @@ final private boolean jj_3R_174() { } final private boolean jj_3_1528() { - if (jj_scan_token(MEMBER)) return true; + if (jj_scan_token(MATCH_NUMBER)) return true; return false; } final private boolean jj_3_1527() { - if (jj_scan_token(MAX)) return true; + if (jj_scan_token(MATCH)) return true; return false; } final private boolean jj_3_1526() { - if (jj_scan_token(MATCH_CONDITION)) return true; + if (jj_scan_token(LN)) return true; return false; } final private boolean jj_3_1525() { - if (jj_scan_token(LOWER)) return true; + if (jj_scan_token(LATERAL)) return true; return false; } final private boolean jj_3_1524() { - if (jj_scan_token(LIKE_REGEX)) return true; + if (jj_scan_token(LANGUAGE)) return true; return false; } @@ -34843,32 +34874,32 @@ final private boolean jj_3_9() { } final private boolean jj_3_1523() { - if (jj_scan_token(LAST_VALUE)) return true; + if (jj_scan_token(JSON_SCOPE)) return true; return false; } final private boolean jj_3_1522() { - if (jj_scan_token(LAG)) return true; + if (jj_scan_token(JSON_OBJECT)) return true; return false; } final private boolean jj_3_1521() { - if (jj_scan_token(JSON_QUERY)) return true; + if (jj_scan_token(JSON_ARRAY)) return true; return false; } final private boolean jj_3_1520() { - if (jj_scan_token(JSON_EXISTS)) return true; + if (jj_scan_token(INT)) return true; return false; } final private boolean jj_3_1519() { - if (jj_scan_token(INTERSECTION)) return true; + if (jj_scan_token(INITIAL)) return true; return false; } final private boolean jj_3_1518() { - if (jj_scan_token(INSENSITIVE)) return true; + if (jj_scan_token(IDENTITY)) return true; return false; } @@ -34883,17 +34914,17 @@ final private boolean jj_3_11() { } final private boolean jj_3_1517() { - if (jj_scan_token(INDICATOR)) return true; + if (jj_scan_token(GROUPS)) return true; return false; } final private boolean jj_3_1516() { - if (jj_scan_token(HOUR)) return true; + if (jj_scan_token(GLOBAL)) return true; return false; } final private boolean jj_3_1515() { - if (jj_scan_token(GROUPING)) return true; + if (jj_scan_token(FUNCTION)) return true; return false; } @@ -34923,12 +34954,12 @@ final private boolean jj_3R_278() { } final private boolean jj_3_1514() { - if (jj_scan_token(GET)) return true; + if (jj_scan_token(FOREIGN)) return true; return false; } final private boolean jj_3_1513() { - if (jj_scan_token(FREE)) return true; + if (jj_scan_token(FIRST_VALUE)) return true; return false; } @@ -34937,12 +34968,12 @@ final private boolean jj_3R_404() { } final private boolean jj_3_1512() { - if (jj_scan_token(FLOOR)) return true; + if (jj_scan_token(EXTERNAL)) return true; return false; } final private boolean jj_3_1511() { - if (jj_scan_token(FILTER)) return true; + if (jj_scan_token(EXECUTE)) return true; return false; } @@ -34952,32 +34983,32 @@ final private boolean jj_3_5() { } final private boolean jj_3_1510() { - if (jj_scan_token(EXTEND)) return true; + if (jj_scan_token(ESCAPE)) return true; return false; } final private boolean jj_3_1509() { - if (jj_scan_token(EXEC)) return true; + if (jj_scan_token(END_FRAME)) return true; return false; } final private boolean jj_3_1508() { - if (jj_scan_token(EQUALS)) return true; + if (jj_scan_token(EMPTY)) return true; return false; } final private boolean jj_3_1507() { - if (jj_scan_token(END_EXEC)) return true; + if (jj_scan_token(DYNAMIC)) return true; return false; } final private boolean jj_3_1506() { - if (jj_scan_token(ELEMENT)) return true; + if (jj_scan_token(DISALLOW)) return true; return false; } final private boolean jj_3_1505() { - if (jj_scan_token(DOUBLE)) return true; + if (jj_scan_token(DEREF)) return true; return false; } @@ -34994,12 +35025,12 @@ final private boolean jj_3R_346() { } final private boolean jj_3_1504() { - if (jj_scan_token(DETERMINISTIC)) return true; + if (jj_scan_token(DECLARE)) return true; return false; } final private boolean jj_3_1503() { - if (jj_scan_token(DENSE_RANK)) return true; + if (jj_scan_token(DEALLOCATE)) return true; return false; } @@ -35010,7 +35041,7 @@ final private boolean jj_3R_165() { } final private boolean jj_3_1502() { - if (jj_scan_token(DECIMAL)) return true; + if (jj_scan_token(DATE)) return true; return false; } @@ -35022,67 +35053,67 @@ final private boolean jj_3R_277() { } final private boolean jj_3_1501() { - if (jj_scan_token(DAY)) return true; + if (jj_scan_token(CURRENT_TRANSFORM_GROUP_FOR_TYPE)) return true; return false; } final private boolean jj_3_1500() { - if (jj_scan_token(CYCLE)) return true; + if (jj_scan_token(CURRENT_PATH)) return true; return false; } final private boolean jj_3_1499() { - if (jj_scan_token(CURRENT_ROW)) return true; + if (jj_scan_token(CURRENT)) return true; return false; } final private boolean jj_3_1498() { - if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; + if (jj_scan_token(COVAR_SAMP)) return true; return false; } final private boolean jj_3_1497() { - if (jj_scan_token(CUME_DIST)) return true; + if (jj_scan_token(CORRESPONDING)) return true; return false; } final private boolean jj_3_1496() { - if (jj_scan_token(COVAR_POP)) return true; + if (jj_scan_token(CONTAINS)) return true; return false; } final private boolean jj_3_1495() { - if (jj_scan_token(CORR)) return true; + if (jj_scan_token(COMMIT)) return true; return false; } final private boolean jj_3_1494() { - if (jj_scan_token(CONNECT)) return true; + if (jj_scan_token(COALESCE)) return true; return false; } final private boolean jj_3_1493() { - if (jj_scan_token(COLLECT)) return true; + if (jj_scan_token(CLASSIFIER)) return true; return false; } final private boolean jj_3_1492() { - if (jj_scan_token(CLOSE)) return true; + if (jj_scan_token(CHARACTER_LENGTH)) return true; return false; } final private boolean jj_3_1491() { - if (jj_scan_token(CHECK)) return true; + if (jj_scan_token(CEILING)) return true; return false; } final private boolean jj_3_1490() { - if (jj_scan_token(CHARACTER)) return true; + if (jj_scan_token(CARDINALITY)) return true; return false; } final private boolean jj_3_1489() { - if (jj_scan_token(CEIL)) return true; + if (jj_scan_token(BOOLEAN)) return true; return false; } @@ -35093,37 +35124,37 @@ final private boolean jj_3R_79() { } final private boolean jj_3_1488() { - if (jj_scan_token(CALLED)) return true; + if (jj_scan_token(BINARY)) return true; return false; } final private boolean jj_3_1487() { - if (jj_scan_token(BLOB)) return true; + if (jj_scan_token(BEGIN_FRAME)) return true; return false; } final private boolean jj_3_1486() { - if (jj_scan_token(BIGINT)) return true; + if (jj_scan_token(AUTHORIZATION)) return true; return false; } final private boolean jj_3_1485() { - if (jj_scan_token(BEGIN)) return true; + if (jj_scan_token(ASOF)) return true; return false; } final private boolean jj_3_1484() { - if (jj_scan_token(ATOMIC)) return true; + if (jj_scan_token(ARE)) return true; return false; } final private boolean jj_3_1483() { - if (jj_scan_token(ASENSITIVE)) return true; + if (jj_scan_token(ABS)) return true; return false; } final private boolean jj_3_1482() { - if (jj_scan_token(ALLOW)) return true; + if (jj_scan_token(TOTAL)) return true; return false; } @@ -35133,32 +35164,32 @@ final private boolean jj_3R_286() { } final private boolean jj_3_1481() { - if (jj_scan_token(TOTAL)) return true; + if (jj_scan_token(REFRESH)) return true; return false; } final private boolean jj_3_1480() { - if (jj_scan_token(REFRESH)) return true; + if (jj_scan_token(ASYNC)) return true; return false; } final private boolean jj_3_1479() { - if (jj_scan_token(ASYNC)) return true; + if (jj_scan_token(CONTINUOUS)) return true; return false; } final private boolean jj_3_1478() { - if (jj_scan_token(CONTINUOUS)) return true; + if (jj_scan_token(PASSWORD)) return true; return false; } final private boolean jj_3_1477() { - if (jj_scan_token(PASSWORD)) return true; + if (jj_scan_token(INLINE_SIZE)) return true; return false; } final private boolean jj_3_1476() { - if (jj_scan_token(INLINE_SIZE)) return true; + if (jj_scan_token(VALUE_TYPE)) return true; return false; } @@ -35168,22 +35199,22 @@ final private boolean jj_3R_371() { } final private boolean jj_3_1475() { - if (jj_scan_token(VALUE_TYPE)) return true; + if (jj_scan_token(CACHE_GROUP)) return true; return false; } final private boolean jj_3_1474() { - if (jj_scan_token(CACHE_GROUP)) return true; + if (jj_scan_token(AFFINITY_KEY)) return true; return false; } final private boolean jj_3_1473() { - if (jj_scan_token(AFFINITY_KEY)) return true; + if (jj_scan_token(ZONE)) return true; return false; } final private boolean jj_3_1472() { - if (jj_scan_token(ZONE)) return true; + if (jj_scan_token(WRITE)) return true; return false; } @@ -35194,12 +35225,12 @@ final private boolean jj_3_788() { } final private boolean jj_3_1471() { - if (jj_scan_token(WRITE)) return true; + if (jj_scan_token(WEEKS)) return true; return false; } final private boolean jj_3_1470() { - if (jj_scan_token(WEEKS)) return true; + if (jj_scan_token(VERSION)) return true; return false; } @@ -35209,37 +35240,37 @@ final private boolean jj_3R_415() { } final private boolean jj_3_1469() { - if (jj_scan_token(VERSION)) return true; + if (jj_scan_token(UTF16)) return true; return false; } final private boolean jj_3_1468() { - if (jj_scan_token(UTF16)) return true; + if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; return false; } final private boolean jj_3_1467() { - if (jj_scan_token(USER_DEFINED_TYPE_CODE)) return true; + if (jj_scan_token(UNNAMED)) return true; return false; } final private boolean jj_3_1466() { - if (jj_scan_token(UNNAMED)) return true; + if (jj_scan_token(UNCONDITIONAL)) return true; return false; } final private boolean jj_3_1465() { - if (jj_scan_token(UNCONDITIONAL)) return true; + if (jj_scan_token(TYPE)) return true; return false; } final private boolean jj_3_1464() { - if (jj_scan_token(TYPE)) return true; + if (jj_scan_token(TRIGGER_NAME)) return true; return false; } final private boolean jj_3_1463() { - if (jj_scan_token(TRIGGER_NAME)) return true; + if (jj_scan_token(TRANSFORM)) return true; return false; } @@ -35250,27 +35281,27 @@ final private boolean jj_3_330() { } final private boolean jj_3_1462() { - if (jj_scan_token(TRANSFORM)) return true; + if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; return false; } final private boolean jj_3_1461() { - if (jj_scan_token(TRANSACTIONS_ACTIVE)) return true; + if (jj_scan_token(TIMESTAMP_TRUNC)) return true; return false; } final private boolean jj_3_1460() { - if (jj_scan_token(TIMESTAMP_TRUNC)) return true; + if (jj_scan_token(TIMESTAMPADD)) return true; return false; } final private boolean jj_3_1459() { - if (jj_scan_token(TIMESTAMPADD)) return true; + if (jj_scan_token(TIES)) return true; return false; } final private boolean jj_3_1458() { - if (jj_scan_token(TIES)) return true; + if (jj_scan_token(SUBSTITUTE)) return true; return false; } @@ -35295,12 +35326,12 @@ final private boolean jj_3R_375() { } final private boolean jj_3_1457() { - if (jj_scan_token(SUBSTITUTE)) return true; + if (jj_scan_token(STRUCTURE)) return true; return false; } final private boolean jj_3_1456() { - if (jj_scan_token(STRUCTURE)) return true; + if (jj_scan_token(STATE)) return true; return false; } @@ -35315,7 +35346,7 @@ final private boolean jj_3R_179() { } final private boolean jj_3_1455() { - if (jj_scan_token(STATE)) return true; + if (jj_scan_token(SQL_TSI_YEAR)) return true; return false; } @@ -35326,12 +35357,12 @@ final private boolean jj_3_787() { } final private boolean jj_3_1454() { - if (jj_scan_token(SQL_TSI_YEAR)) return true; + if (jj_scan_token(SQL_TSI_QUARTER)) return true; return false; } final private boolean jj_3_1453() { - if (jj_scan_token(SQL_TSI_QUARTER)) return true; + if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; return false; } @@ -35346,7 +35377,7 @@ final private boolean jj_3_327() { } final private boolean jj_3_1452() { - if (jj_scan_token(SQL_TSI_MICROSECOND)) return true; + if (jj_scan_token(SQL_TSI_DAY)) return true; return false; } @@ -35366,7 +35397,7 @@ final private boolean jj_3_326() { } final private boolean jj_3_1451() { - if (jj_scan_token(SQL_TSI_DAY)) return true; + if (jj_scan_token(SQL_TIME)) return true; return false; } @@ -35376,17 +35407,17 @@ final private boolean jj_3_1() { } final private boolean jj_3_1450() { - if (jj_scan_token(SQL_TIME)) return true; + if (jj_scan_token(SQL_NVARCHAR)) return true; return false; } final private boolean jj_3_1449() { - if (jj_scan_token(SQL_NVARCHAR)) return true; + if (jj_scan_token(SQL_NCHAR)) return true; return false; } final private boolean jj_3_1448() { - if (jj_scan_token(SQL_NCHAR)) return true; + if (jj_scan_token(SQL_LONGVARBINARY)) return true; return false; } @@ -35405,7 +35436,7 @@ final private boolean jj_3_4() { } final private boolean jj_3_1447() { - if (jj_scan_token(SQL_LONGVARBINARY)) return true; + if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; return false; } @@ -35420,12 +35451,12 @@ final private boolean jj_3R_154() { } final private boolean jj_3_1446() { - if (jj_scan_token(SQL_INTERVAL_SECOND)) return true; + if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; return false; } final private boolean jj_3_1445() { - if (jj_scan_token(SQL_INTERVAL_MINUTE)) return true; + if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; return false; } @@ -35436,12 +35467,12 @@ final private boolean jj_3_786() { } final private boolean jj_3_1444() { - if (jj_scan_token(SQL_INTERVAL_HOUR)) return true; + if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; return false; } final private boolean jj_3_1443() { - if (jj_scan_token(SQL_INTERVAL_DAY_TO_HOUR)) return true; + if (jj_scan_token(SQL_FLOAT)) return true; return false; } @@ -35456,22 +35487,22 @@ final private boolean jj_3_785() { } final private boolean jj_3_1442() { - if (jj_scan_token(SQL_FLOAT)) return true; + if (jj_scan_token(SQL_DATE)) return true; return false; } final private boolean jj_3_1441() { - if (jj_scan_token(SQL_DATE)) return true; + if (jj_scan_token(SQL_BOOLEAN)) return true; return false; } final private boolean jj_3_1440() { - if (jj_scan_token(SQL_BOOLEAN)) return true; + if (jj_scan_token(SQL_BINARY)) return true; return false; } final private boolean jj_3_1439() { - if (jj_scan_token(SQL_BINARY)) return true; + if (jj_scan_token(SPACE)) return true; return false; } @@ -35486,22 +35517,22 @@ final private boolean jj_3R_372() { } final private boolean jj_3_1438() { - if (jj_scan_token(SPACE)) return true; + if (jj_scan_token(SIMPLE)) return true; return false; } final private boolean jj_3_1437() { - if (jj_scan_token(SIMPLE)) return true; + if (jj_scan_token(SERVER_NAME)) return true; return false; } final private boolean jj_3_1436() { - if (jj_scan_token(SERVER_NAME)) return true; + if (jj_scan_token(SEQUENCE)) return true; return false; } final private boolean jj_3_1435() { - if (jj_scan_token(SEQUENCE)) return true; + if (jj_scan_token(SECURITY)) return true; return false; } @@ -35512,22 +35543,22 @@ final private boolean jj_3_325() { } final private boolean jj_3_1434() { - if (jj_scan_token(SECURITY)) return true; + if (jj_scan_token(SCOPE_SCHEMA)) return true; return false; } final private boolean jj_3_1433() { - if (jj_scan_token(SCOPE_SCHEMA)) return true; + if (jj_scan_token(SCHEMA_NAME)) return true; return false; } final private boolean jj_3_1432() { - if (jj_scan_token(SCHEMA_NAME)) return true; + if (jj_scan_token(SCALAR)) return true; return false; } final private boolean jj_3_1431() { - if (jj_scan_token(SCALAR)) return true; + if (jj_scan_token(ROUTINE_NAME)) return true; return false; } @@ -35538,12 +35569,12 @@ final private boolean jj_3_784() { } final private boolean jj_3_1430() { - if (jj_scan_token(ROUTINE_NAME)) return true; + if (jj_scan_token(ROLE)) return true; return false; } final private boolean jj_3_1429() { - if (jj_scan_token(ROLE)) return true; + if (jj_scan_token(RETURNED_SQLSTATE)) return true; return false; } @@ -35553,52 +35584,52 @@ final private boolean jj_3_783() { } final private boolean jj_3_1428() { - if (jj_scan_token(RETURNED_SQLSTATE)) return true; + if (jj_scan_token(RETURNED_CARDINALITY)) return true; return false; } final private boolean jj_3_1427() { - if (jj_scan_token(RETURNED_CARDINALITY)) return true; + if (jj_scan_token(RESPECT)) return true; return false; } final private boolean jj_3_1426() { - if (jj_scan_token(RESPECT)) return true; + if (jj_scan_token(RELATIVE)) return true; return false; } final private boolean jj_3_1425() { - if (jj_scan_token(RELATIVE)) return true; + if (jj_scan_token(QUARTER)) return true; return false; } final private boolean jj_3_1424() { - if (jj_scan_token(QUARTER)) return true; + if (jj_scan_token(PRIOR)) return true; return false; } final private boolean jj_3_1423() { - if (jj_scan_token(PRIOR)) return true; + if (jj_scan_token(PLI)) return true; return false; } final private boolean jj_3_1422() { - if (jj_scan_token(PLI)) return true; + if (jj_scan_token(PIVOT)) return true; return false; } final private boolean jj_3_1421() { - if (jj_scan_token(PIVOT)) return true; + if (jj_scan_token(PASSTHROUGH)) return true; return false; } final private boolean jj_3_1420() { - if (jj_scan_token(PASSTHROUGH)) return true; + if (jj_scan_token(PARTIAL)) return true; return false; } final private boolean jj_3_1419() { - if (jj_scan_token(PARTIAL)) return true; + if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; return false; } @@ -35609,7 +35640,7 @@ final private boolean jj_3R_70() { } final private boolean jj_3_1418() { - if (jj_scan_token(PARAMETER_SPECIFIC_CATALOG)) return true; + if (jj_scan_token(PARAMETER_MODE)) return true; return false; } @@ -35619,12 +35650,12 @@ final private boolean jj_3_782() { } final private boolean jj_3_1417() { - if (jj_scan_token(PARAMETER_MODE)) return true; + if (jj_scan_token(OUTPUT)) return true; return false; } final private boolean jj_3_1416() { - if (jj_scan_token(OUTPUT)) return true; + if (jj_scan_token(ORDERING)) return true; return false; } @@ -35634,22 +35665,22 @@ final private boolean jj_3_781() { } final private boolean jj_3_1415() { - if (jj_scan_token(ORDERING)) return true; + if (jj_scan_token(OCTETS)) return true; return false; } final private boolean jj_3_1414() { - if (jj_scan_token(OCTETS)) return true; + if (jj_scan_token(NULLS)) return true; return false; } final private boolean jj_3_1413() { - if (jj_scan_token(NULLS)) return true; + if (jj_scan_token(NESTING)) return true; return false; } final private boolean jj_3_1412() { - if (jj_scan_token(NESTING)) return true; + if (jj_scan_token(NAME)) return true; return false; } @@ -35664,27 +35695,27 @@ final private boolean jj_3R_275() { } final private boolean jj_3_1411() { - if (jj_scan_token(NAME)) return true; + if (jj_scan_token(MONTHS)) return true; return false; } final private boolean jj_3_1410() { - if (jj_scan_token(MONTHS)) return true; + if (jj_scan_token(MILLISECOND)) return true; return false; } final private boolean jj_3_1409() { - if (jj_scan_token(MILLISECOND)) return true; + if (jj_scan_token(MESSAGE_TEXT)) return true; return false; } final private boolean jj_3_1408() { - if (jj_scan_token(MESSAGE_TEXT)) return true; + if (jj_scan_token(MAXVALUE)) return true; return false; } final private boolean jj_3_1407() { - if (jj_scan_token(MAXVALUE)) return true; + if (jj_scan_token(M)) return true; return false; } @@ -35695,32 +35726,32 @@ final private boolean jj_3R_147() { } final private boolean jj_3_1406() { - if (jj_scan_token(M)) return true; + if (jj_scan_token(LEVEL)) return true; return false; } final private boolean jj_3_1405() { - if (jj_scan_token(LEVEL)) return true; + if (jj_scan_token(LABEL)) return true; return false; } final private boolean jj_3_1404() { - if (jj_scan_token(LABEL)) return true; + if (jj_scan_token(KEY)) return true; return false; } final private boolean jj_3_1403() { - if (jj_scan_token(KEY)) return true; + if (jj_scan_token(JAVA)) return true; return false; } final private boolean jj_3_1402() { - if (jj_scan_token(JAVA)) return true; + if (jj_scan_token(ISODOW)) return true; return false; } final private boolean jj_3_1401() { - if (jj_scan_token(ISODOW)) return true; + if (jj_scan_token(INSTANCE)) return true; return false; } @@ -35730,12 +35761,12 @@ final private boolean jj_3_323() { } final private boolean jj_3_1400() { - if (jj_scan_token(INSTANCE)) return true; + if (jj_scan_token(INCREMENT)) return true; return false; } final private boolean jj_3_1399() { - if (jj_scan_token(INCREMENT)) return true; + if (jj_scan_token(IMPLEMENTATION)) return true; return false; } @@ -35745,12 +35776,12 @@ final private boolean jj_3_322() { } final private boolean jj_3_1398() { - if (jj_scan_token(IMPLEMENTATION)) return true; + if (jj_scan_token(ILIKE)) return true; return false; } final private boolean jj_3_1397() { - if (jj_scan_token(ILIKE)) return true; + if (jj_scan_token(HOP)) return true; return false; } @@ -35761,12 +35792,12 @@ final private boolean jj_3_321() { } final private boolean jj_3_1396() { - if (jj_scan_token(HOP)) return true; + if (jj_scan_token(GRANTED)) return true; return false; } final private boolean jj_3_1395() { - if (jj_scan_token(GRANTED)) return true; + if (jj_scan_token(GEOMETRY)) return true; return false; } @@ -35777,22 +35808,22 @@ final private boolean jj_3_320() { } final private boolean jj_3_1394() { - if (jj_scan_token(GEOMETRY)) return true; + if (jj_scan_token(G)) return true; return false; } final private boolean jj_3_1393() { - if (jj_scan_token(G)) return true; + if (jj_scan_token(FORTRAN)) return true; return false; } final private boolean jj_3_1392() { - if (jj_scan_token(FORTRAN)) return true; + if (jj_scan_token(FIRST)) return true; return false; } final private boolean jj_3_1391() { - if (jj_scan_token(FIRST)) return true; + if (jj_scan_token(EXCLUDE)) return true; return false; } @@ -35807,7 +35838,7 @@ final private boolean jj_3_750() { } final private boolean jj_3_1390() { - if (jj_scan_token(EXCLUDE)) return true; + if (jj_scan_token(EPOCH)) return true; return false; } @@ -35817,7 +35848,7 @@ final private boolean jj_3_742() { } final private boolean jj_3_1389() { - if (jj_scan_token(EPOCH)) return true; + if (jj_scan_token(DYNAMIC_FUNCTION)) return true; return false; } @@ -35854,7 +35885,7 @@ final private boolean jj_3_780() { } final private boolean jj_3_1388() { - if (jj_scan_token(DYNAMIC_FUNCTION)) return true; + if (jj_scan_token(DOW)) return true; return false; } @@ -35869,7 +35900,7 @@ final private boolean jj_3_779() { } final private boolean jj_3_1387() { - if (jj_scan_token(DOW)) return true; + if (jj_scan_token(DIAGNOSTICS)) return true; return false; } @@ -35884,7 +35915,7 @@ final private boolean jj_3_778() { } final private boolean jj_3_1386() { - if (jj_scan_token(DIAGNOSTICS)) return true; + if (jj_scan_token(DESC)) return true; return false; } @@ -35894,7 +35925,7 @@ final private boolean jj_3_777() { } final private boolean jj_3_1385() { - if (jj_scan_token(DESC)) return true; + if (jj_scan_token(DEGREE)) return true; return false; } @@ -35914,7 +35945,7 @@ final private boolean jj_3_776() { } final private boolean jj_3_1384() { - if (jj_scan_token(DEGREE)) return true; + if (jj_scan_token(DEFERRED)) return true; return false; } @@ -35929,7 +35960,7 @@ final private boolean jj_3_775() { } final private boolean jj_3_1383() { - if (jj_scan_token(DEFERRED)) return true; + if (jj_scan_token(DECADE)) return true; return false; } @@ -35949,7 +35980,7 @@ final private boolean jj_3_774() { } final private boolean jj_3_1382() { - if (jj_scan_token(DECADE)) return true; + if (jj_scan_token(DAYOFWEEK)) return true; return false; } @@ -35964,7 +35995,7 @@ final private boolean jj_3_773() { } final private boolean jj_3_1381() { - if (jj_scan_token(DAYOFWEEK)) return true; + if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; return false; } @@ -35974,7 +36005,7 @@ final private boolean jj_3_772() { } final private boolean jj_3_1380() { - if (jj_scan_token(DATETIME_INTERVAL_CODE)) return true; + if (jj_scan_token(DATE_DIFF)) return true; return false; } @@ -35984,7 +36015,7 @@ final private boolean jj_3_771() { } final private boolean jj_3_1379() { - if (jj_scan_token(DATE_DIFF)) return true; + if (jj_scan_token(CURSOR_NAME)) return true; return false; } @@ -35994,7 +36025,7 @@ final private boolean jj_3_770() { } final private boolean jj_3_1378() { - if (jj_scan_token(CURSOR_NAME)) return true; + if (jj_scan_token(CONSTRUCTOR)) return true; return false; } @@ -36009,7 +36040,7 @@ final private boolean jj_3_769() { } final private boolean jj_3_1377() { - if (jj_scan_token(CONSTRUCTOR)) return true; + if (jj_scan_token(CONSTRAINT_NAME)) return true; return false; } @@ -36034,7 +36065,7 @@ final private boolean jj_3_768() { } final private boolean jj_3_1376() { - if (jj_scan_token(CONSTRAINT_NAME)) return true; + if (jj_scan_token(CONNECTION)) return true; return false; } @@ -36059,7 +36090,7 @@ final private boolean jj_3_767() { } final private boolean jj_3_1375() { - if (jj_scan_token(CONNECTION)) return true; + if (jj_scan_token(COMMITTED)) return true; return false; } @@ -36079,7 +36110,7 @@ final private boolean jj_3_766() { } final private boolean jj_3_1374() { - if (jj_scan_token(COMMITTED)) return true; + if (jj_scan_token(COLUMN_NAME)) return true; return false; } @@ -36104,7 +36135,7 @@ final private boolean jj_3_765() { } final private boolean jj_3_1373() { - if (jj_scan_token(COLUMN_NAME)) return true; + if (jj_scan_token(COLLATION_CATALOG)) return true; return false; } @@ -36129,7 +36160,7 @@ final private boolean jj_3_764() { } final private boolean jj_3_1372() { - if (jj_scan_token(COLLATION_CATALOG)) return true; + if (jj_scan_token(CLASS_ORIGIN)) return true; return false; } @@ -36149,7 +36180,7 @@ final private boolean jj_3_763() { } final private boolean jj_3_1371() { - if (jj_scan_token(CLASS_ORIGIN)) return true; + if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; return false; } @@ -36169,7 +36200,7 @@ final private boolean jj_3_762() { } final private boolean jj_3_1370() { - if (jj_scan_token(CHARACTER_SET_CATALOG)) return true; + if (jj_scan_token(CHAIN)) return true; return false; } @@ -36189,7 +36220,7 @@ final private boolean jj_3_761() { } final private boolean jj_3_1369() { - if (jj_scan_token(CHAIN)) return true; + if (jj_scan_token(CATALOG)) return true; return false; } @@ -36209,7 +36240,7 @@ final private boolean jj_3_760() { } final private boolean jj_3_1368() { - if (jj_scan_token(CATALOG)) return true; + if (jj_scan_token(BREADTH)) return true; return false; } @@ -36229,7 +36260,7 @@ final private boolean jj_3_759() { } final private boolean jj_3_1367() { - if (jj_scan_token(BREADTH)) return true; + if (jj_scan_token(ATTRIBUTES)) return true; return false; } @@ -36260,7 +36291,7 @@ final private boolean jj_3_758() { } final private boolean jj_3_1366() { - if (jj_scan_token(ATTRIBUTES)) return true; + if (jj_scan_token(ASSERTION)) return true; return false; } @@ -36285,7 +36316,7 @@ final private boolean jj_3_757() { } final private boolean jj_3_1365() { - if (jj_scan_token(ASSERTION)) return true; + if (jj_scan_token(ARRAY_AGG)) return true; return false; } @@ -36305,7 +36336,7 @@ final private boolean jj_3_756() { } final private boolean jj_3_1364() { - if (jj_scan_token(ARRAY_AGG)) return true; + if (jj_scan_token(AFTER)) return true; return false; } @@ -36325,7 +36356,7 @@ final private boolean jj_3_755() { } final private boolean jj_3_1363() { - if (jj_scan_token(AFTER)) return true; + if (jj_scan_token(ADA)) return true; return false; } @@ -36345,7 +36376,7 @@ final private boolean jj_3_754() { } final private boolean jj_3_1362() { - if (jj_scan_token(ADA)) return true; + if (jj_scan_token(ABSENT)) return true; return false; } @@ -36374,11 +36405,6 @@ final private boolean jj_3_753() { return false; } - final private boolean jj_3_1361() { - if (jj_scan_token(ABSENT)) return true; - return false; - } - final private boolean jj_3_717() { if (jj_scan_token(SQL_CHAR)) return true; return false; @@ -36407,8 +36433,6 @@ final private boolean jj_3_751() { final private boolean jj_3R_340() { Token xsp; xsp = jj_scanpos; - if (jj_3_1361()) { - jj_scanpos = xsp; if (jj_3_1362()) { jj_scanpos = xsp; if (jj_3_1363()) { @@ -36847,7 +36871,9 @@ final private boolean jj_3R_340() { jj_scanpos = xsp; if (jj_3_1580()) { jj_scanpos = xsp; - if (jj_3_1581()) return true; + if (jj_3_1581()) { + jj_scanpos = xsp; + if (jj_3_1582()) return true; } } } @@ -37093,8 +37119,13 @@ final private boolean jj_3_715() { return false; } + final private boolean jj_3_1361() { + if (jj_scan_token(SUNDAY)) return true; + return false; + } + final private boolean jj_3_1360() { - if (jj_scan_token(SATURDAY)) return true; + if (jj_scan_token(THURSDAY)) return true; return false; } @@ -37112,7 +37143,7 @@ final private boolean jj_3R_185() { } final private boolean jj_3_1359() { - if (jj_scan_token(WEDNESDAY)) return true; + if (jj_scan_token(MONDAY)) return true; return false; } @@ -37123,22 +37154,22 @@ final private boolean jj_3_317() { } final private boolean jj_3_1358() { - if (jj_scan_token(YEAR)) return true; + if (jj_scan_token(WITHIN)) return true; return false; } final private boolean jj_3_1357() { - if (jj_scan_token(WINDOW)) return true; + if (jj_scan_token(WHENEVER)) return true; return false; } final private boolean jj_3_1356() { - if (jj_scan_token(VERSIONING)) return true; + if (jj_scan_token(VAR_POP)) return true; return false; } final private boolean jj_3_1355() { - if (jj_scan_token(VARYING)) return true; + if (jj_scan_token(VARIANT)) return true; return false; } @@ -37149,17 +37180,17 @@ final private boolean jj_3_716() { } final private boolean jj_3_1354() { - if (jj_scan_token(VARBINARY)) return true; + if (jj_scan_token(VALUE)) return true; return false; } final private boolean jj_3_1353() { - if (jj_scan_token(UUID)) return true; + if (jj_scan_token(UPPER)) return true; return false; } final private boolean jj_3_1352() { - if (jj_scan_token(UNKNOWN)) return true; + if (jj_scan_token(UESCAPE)) return true; return false; } @@ -37169,7 +37200,7 @@ final private boolean jj_3_714() { } final private boolean jj_3_1351() { - if (jj_scan_token(TRY_CAST)) return true; + if (jj_scan_token(TRIM_ARRAY)) return true; return false; } @@ -37179,7 +37210,7 @@ final private boolean jj_3_710() { } final private boolean jj_3_1350() { - if (jj_scan_token(TRIM)) return true; + if (jj_scan_token(TREAT)) return true; return false; } @@ -37197,22 +37228,22 @@ final private boolean jj_3_713() { } final private boolean jj_3_1349() { - if (jj_scan_token(TRANSLATION)) return true; + if (jj_scan_token(TRANSLATE)) return true; return false; } final private boolean jj_3_1348() { - if (jj_scan_token(TINYINT)) return true; + if (jj_scan_token(TIMEZONE_HOUR)) return true; return false; } final private boolean jj_3_1347() { - if (jj_scan_token(TIMESTAMP)) return true; + if (jj_scan_token(TABLESAMPLE)) return true; return false; } final private boolean jj_3_1346() { - if (jj_scan_token(SYSTEM_USER)) return true; + if (jj_scan_token(SYSTEM)) return true; return false; } @@ -37229,7 +37260,7 @@ final private boolean jj_3R_281() { } final private boolean jj_3_1345() { - if (jj_scan_token(SUM)) return true; + if (jj_scan_token(SUBSTRING_REGEX)) return true; return false; } @@ -37240,22 +37271,22 @@ final private boolean jj_3_312() { } final private boolean jj_3_1344() { - if (jj_scan_token(SUBSTRING)) return true; + if (jj_scan_token(SUBMULTISET)) return true; return false; } final private boolean jj_3_1343() { - if (jj_scan_token(STREAM)) return true; + if (jj_scan_token(STDDEV_POP)) return true; return false; } final private boolean jj_3_1342() { - if (jj_scan_token(STATIC)) return true; + if (jj_scan_token(SQRT)) return true; return false; } final private boolean jj_3_1341() { - if (jj_scan_token(SQLWARNING)) return true; + if (jj_scan_token(SQLEXCEPTION)) return true; return false; } @@ -37266,32 +37297,32 @@ final private boolean jj_3_311() { } final private boolean jj_3_1340() { - if (jj_scan_token(SQL)) return true; + if (jj_scan_token(SPECIFIC)) return true; return false; } final private boolean jj_3_1339() { - if (jj_scan_token(SMALLINT)) return true; + if (jj_scan_token(SIMILAR)) return true; return false; } final private boolean jj_3_1338() { - if (jj_scan_token(SHOW)) return true; + if (jj_scan_token(SENSITIVE)) return true; return false; } final private boolean jj_3_1337() { - if (jj_scan_token(SEEK)) return true; + if (jj_scan_token(SEARCH)) return true; return false; } final private boolean jj_3_1336() { - if (jj_scan_token(SCROLL)) return true; + if (jj_scan_token(SAVEPOINT)) return true; return false; } final private boolean jj_3_1335() { - if (jj_scan_token(SAFE_ORDINAL)) return true; + if (jj_scan_token(SAFE_CAST)) return true; return false; } @@ -37300,12 +37331,12 @@ final private boolean jj_3R_284() { } final private boolean jj_3_1334() { - if (jj_scan_token(RUNNING)) return true; + if (jj_scan_token(ROWS)) return true; return false; } final private boolean jj_3_1333() { - if (jj_scan_token(ROLLUP)) return true; + if (jj_scan_token(REVOKE)) return true; return false; } @@ -37320,7 +37351,7 @@ final private boolean jj_3_709() { } final private boolean jj_3_1332() { - if (jj_scan_token(RETURNS)) return true; + if (jj_scan_token(RESULT)) return true; return false; } @@ -37330,12 +37361,12 @@ final private boolean jj_3_707() { } final private boolean jj_3_1331() { - if (jj_scan_token(RESET)) return true; + if (jj_scan_token(REGR_SYY)) return true; return false; } final private boolean jj_3_1330() { - if (jj_scan_token(REGR_SXY)) return true; + if (jj_scan_token(REGR_SLOPE)) return true; return false; } @@ -37346,17 +37377,17 @@ final private boolean jj_3_308() { } final private boolean jj_3_1329() { - if (jj_scan_token(REGR_R2)) return true; + if (jj_scan_token(REGR_COUNT)) return true; return false; } final private boolean jj_3_1328() { - if (jj_scan_token(REGR_AVGY)) return true; + if (jj_scan_token(REFERENCING)) return true; return false; } final private boolean jj_3_1327() { - if (jj_scan_token(REFERENCES)) return true; + if (jj_scan_token(RECURSIVE)) return true; return false; } @@ -37366,7 +37397,7 @@ final private boolean jj_3_307() { } final private boolean jj_3_1326() { - if (jj_scan_token(REAL)) return true; + if (jj_scan_token(RANK)) return true; return false; } @@ -37382,7 +37413,7 @@ final private boolean jj_3_708() { } final private boolean jj_3_1325() { - if (jj_scan_token(RANGE)) return true; + if (jj_scan_token(PROCEDURE)) return true; return false; } @@ -37392,17 +37423,17 @@ final private boolean jj_3_306() { } final private boolean jj_3_1324() { - if (jj_scan_token(PREV)) return true; + if (jj_scan_token(PRECISION)) return true; return false; } final private boolean jj_3_1323() { - if (jj_scan_token(PRECEDES)) return true; + if (jj_scan_token(POSITION_REGEX)) return true; return false; } final private boolean jj_3_1322() { - if (jj_scan_token(POSITION)) return true; + if (jj_scan_token(PERMUTE)) return true; return false; } @@ -37418,12 +37449,12 @@ final private boolean jj_3R_280() { } final private boolean jj_3_1321() { - if (jj_scan_token(PERIOD)) return true; + if (jj_scan_token(PERCENTILE_DISC)) return true; return false; } final private boolean jj_3_1320() { - if (jj_scan_token(PERCENTILE_CONT)) return true; + if (jj_scan_token(PER)) return true; return false; } @@ -37443,22 +37474,22 @@ final private boolean jj_3_310() { } final private boolean jj_3_1319() { - if (jj_scan_token(PATTERN)) return true; + if (jj_scan_token(OVERLAY)) return true; return false; } final private boolean jj_3_1318() { - if (jj_scan_token(OVERLAPS)) return true; + if (jj_scan_token(OUT)) return true; return false; } final private boolean jj_3_1317() { - if (jj_scan_token(ORDINAL)) return true; + if (jj_scan_token(ONLY)) return true; return false; } final private boolean jj_3_1316() { - if (jj_scan_token(ONE)) return true; + if (jj_scan_token(OLD)) return true; return false; } @@ -37468,27 +37499,27 @@ final private boolean jj_3_305() { } final private boolean jj_3_1315() { - if (jj_scan_token(OF)) return true; + if (jj_scan_token(OCCURRENCES_REGEX)) return true; return false; } final private boolean jj_3_1314() { - if (jj_scan_token(NUMERIC)) return true; + if (jj_scan_token(NTILE)) return true; return false; } final private boolean jj_3_1313() { - if (jj_scan_token(NTH_VALUE)) return true; + if (jj_scan_token(NONE)) return true; return false; } final private boolean jj_3_1312() { - if (jj_scan_token(NO)) return true; + if (jj_scan_token(NEW)) return true; return false; } final private boolean jj_3_1311() { - if (jj_scan_token(NCLOB)) return true; + if (jj_scan_token(NATIONAL)) return true; return false; } @@ -37498,7 +37529,7 @@ final private boolean jj_3_706() { } final private boolean jj_3_1310() { - if (jj_scan_token(MULTISET)) return true; + if (jj_scan_token(MODULE)) return true; return false; } @@ -37509,7 +37540,7 @@ final private boolean jj_3_304() { } final private boolean jj_3_1309() { - if (jj_scan_token(MODIFIES)) return true; + if (jj_scan_token(MINUTE)) return true; return false; } @@ -37519,7 +37550,7 @@ final private boolean jj_3_705() { } final private boolean jj_3_1308() { - if (jj_scan_token(MIN)) return true; + if (jj_scan_token(MEMBER)) return true; return false; } @@ -37533,7 +37564,7 @@ final private boolean jj_3R_403() { } final private boolean jj_3_1307() { - if (jj_scan_token(MEASURES)) return true; + if (jj_scan_token(MAX)) return true; return false; } @@ -37548,7 +37579,7 @@ final private boolean jj_3_704() { } final private boolean jj_3_1306() { - if (jj_scan_token(MATCH_RECOGNIZE)) return true; + if (jj_scan_token(MATCH_CONDITION)) return true; return false; } @@ -37558,12 +37589,12 @@ final private boolean jj_3_303() { } final private boolean jj_3_1305() { - if (jj_scan_token(MATCHES)) return true; + if (jj_scan_token(LOWER)) return true; return false; } final private boolean jj_3_1304() { - if (jj_scan_token(LOCAL)) return true; + if (jj_scan_token(LIKE_REGEX)) return true; return false; } @@ -37576,12 +37607,12 @@ final private boolean jj_3_703() { } final private boolean jj_3_1303() { - if (jj_scan_token(LEAD)) return true; + if (jj_scan_token(LAST_VALUE)) return true; return false; } final private boolean jj_3_1302() { - if (jj_scan_token(LARGE)) return true; + if (jj_scan_token(LAG)) return true; return false; } @@ -37591,7 +37622,7 @@ final private boolean jj_3_702() { } final private boolean jj_3_1301() { - if (jj_scan_token(JSON_VALUE)) return true; + if (jj_scan_token(JSON_QUERY)) return true; return false; } @@ -37607,7 +37638,7 @@ final private boolean jj_3R_329() { } final private boolean jj_3_1300() { - if (jj_scan_token(JSON_OBJECTAGG)) return true; + if (jj_scan_token(JSON_EXISTS)) return true; return false; } @@ -37617,12 +37648,12 @@ final private boolean jj_3_701() { } final private boolean jj_3_1299() { - if (jj_scan_token(JSON_ARRAYAGG)) return true; + if (jj_scan_token(INTERSECTION)) return true; return false; } final private boolean jj_3_1298() { - if (jj_scan_token(INTEGER)) return true; + if (jj_scan_token(INSENSITIVE)) return true; return false; } @@ -37632,12 +37663,12 @@ final private boolean jj_3_700() { } final private boolean jj_3_1297() { - if (jj_scan_token(INOUT)) return true; + if (jj_scan_token(INDICATOR)) return true; return false; } final private boolean jj_3_1296() { - if (jj_scan_token(IMPORT)) return true; + if (jj_scan_token(HOUR)) return true; return false; } @@ -37652,12 +37683,12 @@ final private boolean jj_3_699() { } final private boolean jj_3_1295() { - if (jj_scan_token(HOLD)) return true; + if (jj_scan_token(GROUPING)) return true; return false; } final private boolean jj_3_1294() { - if (jj_scan_token(GRANT)) return true; + if (jj_scan_token(GET)) return true; return false; } @@ -37672,12 +37703,12 @@ final private boolean jj_3_698() { } final private boolean jj_3_1293() { - if (jj_scan_token(FUSION)) return true; + if (jj_scan_token(FREE)) return true; return false; } final private boolean jj_3_1292() { - if (jj_scan_token(FRAME_ROW)) return true; + if (jj_scan_token(FLOOR)) return true; return false; } @@ -37687,42 +37718,42 @@ final private boolean jj_3_697() { } final private boolean jj_3_1291() { - if (jj_scan_token(FLOAT)) return true; + if (jj_scan_token(FILTER)) return true; return false; } final private boolean jj_3_1290() { - if (jj_scan_token(EXTRACT)) return true; + if (jj_scan_token(EXTEND)) return true; return false; } final private boolean jj_3_1289() { - if (jj_scan_token(EXP)) return true; + if (jj_scan_token(EXEC)) return true; return false; } final private boolean jj_3_1288() { - if (jj_scan_token(EVERY)) return true; + if (jj_scan_token(EQUALS)) return true; return false; } final private boolean jj_3_1287() { - if (jj_scan_token(END_PARTITION)) return true; + if (jj_scan_token(END_EXEC)) return true; return false; } final private boolean jj_3_1286() { - if (jj_scan_token(END)) return true; + if (jj_scan_token(ELEMENT)) return true; return false; } final private boolean jj_3_1285() { - if (jj_scan_token(EACH)) return true; + if (jj_scan_token(DOUBLE)) return true; return false; } final private boolean jj_3_1284() { - if (jj_scan_token(DISCONNECT)) return true; + if (jj_scan_token(DETERMINISTIC)) return true; return false; } @@ -37732,22 +37763,22 @@ final private boolean jj_3_696() { } final private boolean jj_3_1283() { - if (jj_scan_token(DESCRIBE)) return true; + if (jj_scan_token(DENSE_RANK)) return true; return false; } final private boolean jj_3_1282() { - if (jj_scan_token(DEFINE)) return true; + if (jj_scan_token(DECIMAL)) return true; return false; } final private boolean jj_3_1281() { - if (jj_scan_token(DEC)) return true; + if (jj_scan_token(DAY)) return true; return false; } final private boolean jj_3_1280() { - if (jj_scan_token(DATETIME)) return true; + if (jj_scan_token(CYCLE)) return true; return false; } @@ -37794,57 +37825,57 @@ final private boolean jj_3R_184() { } final private boolean jj_3_1279() { - if (jj_scan_token(CURSOR)) return true; + if (jj_scan_token(CURRENT_ROW)) return true; return false; } final private boolean jj_3_1278() { - if (jj_scan_token(CURRENT_ROLE)) return true; + if (jj_scan_token(CURRENT_DEFAULT_TRANSFORM_GROUP)) return true; return false; } final private boolean jj_3_1277() { - if (jj_scan_token(CURRENT_CATALOG)) return true; + if (jj_scan_token(CUME_DIST)) return true; return false; } final private boolean jj_3_1276() { - if (jj_scan_token(CUBE)) return true; + if (jj_scan_token(COVAR_POP)) return true; return false; } final private boolean jj_3_1275() { - if (jj_scan_token(COUNT)) return true; + if (jj_scan_token(CORR)) return true; return false; } final private boolean jj_3_1274() { - if (jj_scan_token(CONVERT)) return true; + if (jj_scan_token(CONNECT)) return true; return false; } final private boolean jj_3_1273() { - if (jj_scan_token(CONDITION)) return true; + if (jj_scan_token(COLLECT)) return true; return false; } final private boolean jj_3_1272() { - if (jj_scan_token(COLLATE)) return true; + if (jj_scan_token(CLOSE)) return true; return false; } final private boolean jj_3_1271() { - if (jj_scan_token(CLOB)) return true; + if (jj_scan_token(CHECK)) return true; return false; } final private boolean jj_3_1270() { - if (jj_scan_token(CHAR_LENGTH)) return true; + if (jj_scan_token(CHARACTER)) return true; return false; } final private boolean jj_3_1269() { - if (jj_scan_token(CHAR)) return true; + if (jj_scan_token(CEIL)) return true; return false; } @@ -37860,12 +37891,12 @@ final private boolean jj_3_692() { } final private boolean jj_3_1268() { - if (jj_scan_token(CASCADED)) return true; + if (jj_scan_token(CALLED)) return true; return false; } final private boolean jj_3_1267() { - if (jj_scan_token(CALL)) return true; + if (jj_scan_token(BLOB)) return true; return false; } @@ -37875,12 +37906,12 @@ final private boolean jj_3_691() { } final private boolean jj_3_1266() { - if (jj_scan_token(BIT)) return true; + if (jj_scan_token(BIGINT)) return true; return false; } final private boolean jj_3_1265() { - if (jj_scan_token(BEGIN_PARTITION)) return true; + if (jj_scan_token(BEGIN)) return true; return false; } @@ -37890,12 +37921,12 @@ final private boolean jj_3_690() { } final private boolean jj_3_1264() { - if (jj_scan_token(AVG)) return true; + if (jj_scan_token(ATOMIC)) return true; return false; } final private boolean jj_3_1263() { - if (jj_scan_token(AT)) return true; + if (jj_scan_token(ASENSITIVE)) return true; return false; } @@ -37911,12 +37942,12 @@ final private boolean jj_3R_146() { } final private boolean jj_3_1262() { - if (jj_scan_token(ARRAY_MAX_CARDINALITY)) return true; + if (jj_scan_token(ALLOW)) return true; return false; } final private boolean jj_3_1261() { - if (jj_scan_token(ALLOCATE)) return true; + if (jj_scan_token(WRAP_VALUE)) return true; return false; } @@ -39209,7 +39240,10 @@ final private boolean jj_3R_339() { jj_scanpos = xsp; if (jj_3_1359()) { jj_scanpos = xsp; - if (jj_3_1360()) return true; + if (jj_3_1360()) { + jj_scanpos = xsp; + if (jj_3_1361()) return true; + } } } } @@ -40091,7 +40125,7 @@ private static void jj_la1_24() { private static void jj_la1_25() { jj_la1_25 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,}; } - final private JJCalls[] jj_2_rtns = new JJCalls[1801]; + final private JJCalls[] jj_2_rtns = new JJCalls[1803]; private boolean jj_rescan = false; private int jj_gc = 0; @@ -40383,7 +40417,7 @@ final public void disable_tracing() { final private void jj_rescan_token() { jj_rescan = true; - for (int i = 0; i < 1801; i++) { + for (int i = 0; i < 1803; i++) { try { JJCalls p = jj_2_rtns[i]; do { @@ -42191,6 +42225,8 @@ final private void jj_rescan_token() { case 1798: jj_3_1799(); break; case 1799: jj_3_1800(); break; case 1800: jj_3_1801(); break; + case 1801: jj_3_1802(); break; + case 1802: jj_3_1803(); break; } } p = p.next; diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java index f2c224e610798..78b09f59423ea 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplConstants.java @@ -729,31 +729,31 @@ public interface IgniteSqlParserImplConstants { int AFFINITY_KEY = 723; int ATOMICITY = 724; int WRITE_SYNCHRONIZATION_MODE = 725; - int WRAP_KEY = 726; - int WRAP_VALUE = 727; - int CACHE_GROUP = 728; - int CACHE_NAME = 729; - int DATA_REGION = 730; - int VALUE_TYPE = 731; - int ENCRYPTED = 732; - int INDEX = 733; - int PARALLEL = 734; - int INLINE_SIZE = 735; - int LOGGING = 736; - int NOLOGGING = 737; - int PASSWORD = 738; - int KILL = 739; - int SCAN = 740; - int CONTINUOUS = 741; - int SERVICE = 742; - int COMPUTE = 743; - int ASYNC = 744; - int QUERY = 745; - int STATISTICS = 746; - int REFRESH = 747; - int ANALYZE = 748; - int MAX_CHANGED_PARTITION_ROWS_PERCENT = 749; - int TOTAL = 750; + int CACHE_GROUP = 726; + int CACHE_NAME = 727; + int DATA_REGION = 728; + int VALUE_TYPE = 729; + int ENCRYPTED = 730; + int INDEX = 731; + int PARALLEL = 732; + int INLINE_SIZE = 733; + int LOGGING = 734; + int NOLOGGING = 735; + int PASSWORD = 736; + int KILL = 737; + int SCAN = 738; + int CONTINUOUS = 739; + int SERVICE = 740; + int COMPUTE = 741; + int ASYNC = 742; + int QUERY = 743; + int STATISTICS = 744; + int REFRESH = 745; + int ANALYZE = 746; + int MAX_CHANGED_PARTITION_ROWS_PERCENT = 747; + int TOTAL = 748; + int WRAP_KEY = 749; + int WRAP_VALUE = 750; int UNSIGNED_INTEGER_LITERAL = 751; int APPROX_NUMERIC_LITERAL = 752; int DECIMAL_NUMERIC_LITERAL = 753; @@ -1558,8 +1558,6 @@ public interface IgniteSqlParserImplConstants { "\"AFFINITY_KEY\"", "\"ATOMICITY\"", "\"WRITE_SYNCHRONIZATION_MODE\"", - "\"WRAP_KEY\"", - "\"WRAP_VALUE\"", "\"CACHE_GROUP\"", "\"CACHE_NAME\"", "\"DATA_REGION\"", @@ -1583,6 +1581,8 @@ public interface IgniteSqlParserImplConstants { "\"ANALYZE\"", "\"MAX_CHANGED_PARTITION_ROWS_PERCENT\"", "\"TOTAL\"", + "\"WRAP_KEY\"", + "\"WRAP_VALUE\"", "", "", "", diff --git a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java index b81f9f3d784c6..3f1d0ac764b51 100644 --- a/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java +++ b/modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/sql/generated/IgniteSqlParserImplTokenManager.java @@ -144,7 +144,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, switch (pos) { case 0: - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x4000000L) != 0L) { jjmatchedKind = 821; return 16; @@ -153,7 +153,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 94; if ((active12 & 0x20000000L) != 0L) return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x80000000L) != 0L) { jjmatchedKind = 821; return 95; @@ -167,7 +167,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } if ((active12 & 0x40000000L) != 0L) return 96; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ece7efffL) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x73957b27efffL) != 0L) { jjmatchedKind = 821; return 97; @@ -177,7 +177,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, jjmatchedKind = 821; return 66; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x200000000L) != 0L) return 97; if ((active12 & 0x10000200L) != 0L) return 98; @@ -185,7 +185,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 23; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x6fbf57eeffffL) != 0L) { if (jjmatchedPos != 1) { @@ -196,11 +196,11 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } if ((active12 & 0x90000000000L) != 0L) return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) return 97; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x75fffffeefffL) != 0L) { if (jjmatchedPos != 2) { @@ -209,13 +209,13 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return 97; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) return 97; return -1; case 3: - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) return 97; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7ff9fefe0c38L) != 0L) { if (jjmatchedPos != 3) { @@ -228,9 +228,9 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 99; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) return 97; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x6f39f5de05b4L) != 0L) { if (jjmatchedPos != 4) { @@ -243,7 +243,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 99; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x6f39f7ee0514L) != 0L) { if (jjmatchedPos != 5) { @@ -258,11 +258,11 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 99; return -1; case 6: - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x6909b7fa0014L) != 0L) { if (jjmatchedPos != 6) { @@ -273,11 +273,11 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 7: - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x200110020004L) != 0L) return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x4908a7f80010L) != 0L) { if (jjmatchedPos != 7) { @@ -288,7 +288,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x490823e80010L) != 0L) { if (jjmatchedPos != 8) { @@ -297,11 +297,11 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return 97; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) return 97; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) { if (jjmatchedPos != 9) { @@ -310,13 +310,13 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return 97; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x410802800000L) != 0L) return 97; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) return 97; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) { if (jjmatchedPos != 10) { @@ -327,7 +327,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 11) { @@ -340,7 +340,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 12; @@ -352,7 +352,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) return 97; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 13; @@ -362,7 +362,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 97; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 14; @@ -370,7 +370,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 15) { @@ -383,7 +383,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 16) { @@ -398,7 +398,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 17; @@ -408,7 +408,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 18) { @@ -419,7 +419,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 19; @@ -431,7 +431,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 20; @@ -439,7 +439,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 21; @@ -449,7 +449,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 22; @@ -461,7 +461,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 23; @@ -471,7 +471,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 24; @@ -479,7 +479,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 25; @@ -489,7 +489,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 26; @@ -499,7 +499,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 27; @@ -509,7 +509,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 28; @@ -517,7 +517,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 29; @@ -527,7 +527,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 97; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 30; @@ -535,7 +535,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, } return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 31; @@ -545,7 +545,7 @@ private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, return 97; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 32; @@ -634,20 +634,20 @@ private final int jjMoveStringLiteralDfa0_1() case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_1(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_1(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_1(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -660,51 +660,51 @@ private final int jjMoveStringLiteralDfa0_1() return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); + return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x600000200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -773,19 +773,19 @@ else if ((active12 & 0x8000000L) != 0L) break; case 65: case 97: - return jjMoveStringLiteralDfa2_1(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_1(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_1(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_1(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -804,7 +804,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_1(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -828,7 +828,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -846,7 +846,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_1(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -860,7 +860,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x600000200c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -873,7 +873,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -881,10 +881,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_1(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_1(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_1(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -924,7 +924,7 @@ private final int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_1(2, 8, 97); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x650400006400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -937,7 +937,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -958,14 +958,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_1(2, 385, 97); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_1(2, 406, 97); - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_1(2, 20, 97); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_1(2, 388, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -973,14 +973,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_1(2, 37, 97); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_1(2, 301, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1009,12 +1009,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_1(2, 716, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_1(2, 616, 97); - return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -1022,7 +1022,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_1(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -1053,7 +1053,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -1061,7 +1061,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -1087,7 +1087,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -1113,7 +1113,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -1130,7 +1130,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_1(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_1(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -1161,7 +1161,7 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, return jjStartNfaWithStates_1(3, 686, 97); break; case 95: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -1171,7 +1171,7 @@ private final int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_1(3, 285, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -1255,7 +1255,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_1(3, 664, 97); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_1(3, 719, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -1265,7 +1265,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -1279,10 +1279,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); + return jjMoveStringLiteralDfa4_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); case 73: case 105: - return jjMoveStringLiteralDfa4_1(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_1(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -1318,9 +1318,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_1(3, 455, 97); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_1(3, 739, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_1(3, 737, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -1351,23 +1351,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_1(3, 740, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_1(3, 738, 97); + return jjMoveStringLiteralDfa4_1(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_1(3, 240, 97); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_1(3, 279, 97); - return jjMoveStringLiteralDfa4_1(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_1(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_1(3, 181, 97); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(3, 537, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x602000020400L); case 81: case 113: return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -1403,7 +1403,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_1(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_1(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -1414,7 +1414,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_1(3, 531, 97); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_1(3, 628, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -1434,15 +1434,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_1(3, 419, 97); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_1(3, 598, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_1(3, 442, 97); - return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -1480,7 +1480,7 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, return jjStartNfaWithStates_1(4, 687, 97); break; case 95: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x600001000000L); case 65: case 97: return jjMoveStringLiteralDfa5_1(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -1491,9 +1491,9 @@ private final int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_1(4, 744, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_1(4, 742, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -1554,7 +1554,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_1(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); + return jjMoveStringLiteralDfa5_1(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -1564,7 +1564,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_1(4, 685, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa5_1(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -1586,7 +1586,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_1(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_1(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -1607,9 +1607,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_1(4, 750, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_1(4, 748, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); case 77: case 109: return jjMoveStringLiteralDfa5_1(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -1626,7 +1626,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_1(4, 65, 97); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_1(4, 670, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_1(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); case 79: case 111: return jjMoveStringLiteralDfa5_1(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -1726,7 +1726,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -1734,11 +1734,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_1(4, 14, 97); - return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_1(4, 733, 97); + if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_1(4, 731, 97); return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -1753,9 +1753,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_1(4, 188, 97); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_1(4, 198, 97); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_1(4, 745, 97); - return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_1(4, 743, 97); + return jjMoveStringLiteralDfa5_1(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); case 90: case 122: return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -1776,7 +1776,7 @@ private final int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_1(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); + return jjMoveStringLiteralDfa6_1(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -1799,7 +1799,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_1(5, 447, 97); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(5, 602, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -1858,7 +1858,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_1(5, 671, 97); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_1(5, 676, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + return jjMoveStringLiteralDfa6_1(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -1868,20 +1868,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_1(5, 247, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_1(5, 310, 97); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_1(5, 514, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_1(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); case 75: case 107: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -1890,7 +1890,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_1(5, 416, 97); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_1(5, 513, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -1926,15 +1926,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_1(5, 711, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_1(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(5, 490, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); case 81: case 113: return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -1958,7 +1958,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_1(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -1977,7 +1977,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_1(5, 398, 97); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(5, 691, 97); - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -2016,13 +2016,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_1(5, 675, 97); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_1(5, 678, 97); - return jjMoveStringLiteralDfa6_1(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_1(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x400000000004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -2046,7 +2046,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); default : break; } @@ -2068,10 +2068,10 @@ private final int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, return jjStartNfaWithStates_1(6, 464, 97); break; case 95: - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_1(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); + return jjMoveStringLiteralDfa7_1(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x480000000000L); case 66: case 98: return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -2135,13 +2135,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(6, 665, 97); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_1(6, 742, 97); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_1(6, 743, 97); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_1(6, 748, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_1(6, 740, 97); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_1(6, 741, 97); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_1(6, 746, 97); + return jjMoveStringLiteralDfa7_1(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x200011000004L); case 70: case 102: return jjMoveStringLiteralDfa7_1(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -2166,19 +2166,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(6, 499, 97); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_1(6, 698, 97); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_1(6, 736, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_1(6, 734, 97); + return jjMoveStringLiteralDfa7_1(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_1(6, 50, 97); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_1(6, 747, 97); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_1(6, 745, 97); return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_1(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_1(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -2235,7 +2235,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); case 79: case 111: return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -2272,7 +2272,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_1(6, 696, 97); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_1(6, 714, 97); - return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -2332,10 +2332,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_1(6, 697, 97); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_1(6, 712, 97); - return jjMoveStringLiteralDfa7_1(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); + return jjMoveStringLiteralDfa7_1(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_1(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_1(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); case 86: case 118: return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -2377,7 +2377,7 @@ private final int jjMoveStringLiteralDfa7_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_1(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_1(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -2401,8 +2401,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_1(7, 57, 97); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_1(7, 156, 97); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_1(7, 738, 97); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_1(7, 736, 97); return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -2454,7 +2454,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_1(7, 660, 97); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_1(7, 721, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -2470,7 +2470,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_1(7, 395, 97); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 642, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -2478,7 +2478,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_1(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -2497,9 +2497,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(7, 359, 97); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_1(7, 581, 97); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_1(7, 734, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_1(7, 732, 97); + return jjMoveStringLiteralDfa8_1(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x400000000000L); case 77: case 109: return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -2512,10 +2512,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_1(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -2527,7 +2527,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_1(7, 554, 97); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 706, 97); - return jjMoveStringLiteralDfa8_1(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_1(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -2549,7 +2549,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_1(7, 450, 97); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_1(7, 615, 97); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -2595,9 +2595,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_1(7, 518, 97); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_1(7, 627, 97); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_1(7, 726, 97); - return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_1(7, 749, 97); + return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); case 90: case 122: return jjMoveStringLiteralDfa8_1(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -2631,7 +2631,7 @@ private final int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(8, 618, 97); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -2640,8 +2640,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_1(8, 235, 97); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_1(8, 666, 97); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_1(8, 732, 97); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_1(8, 730, 97); return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -2709,9 +2709,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_1(8, 737, 97); - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_1(8, 735, 97); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -2719,7 +2719,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_1(8, 42, 97); - return jjMoveStringLiteralDfa9_1(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); + return jjMoveStringLiteralDfa9_1(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -2735,7 +2735,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -2761,7 +2761,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_1(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -2771,7 +2771,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); case 81: case 113: return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -2823,7 +2823,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); + return jjMoveStringLiteralDfa9_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x400800000000L); case 86: case 118: return jjMoveStringLiteralDfa9_1(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -2924,9 +2924,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_1(9, 727, 97); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_1(9, 729, 97); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_1(9, 731, 97); - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_1(9, 750, 97); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -2967,7 +2967,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -2998,10 +2998,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_1(9, 458, 97); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_1(9, 648, 97); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_1(9, 741, 97); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_1(9, 746, 97); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_1(9, 739, 97); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_1(9, 744, 97); return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -3021,7 +3021,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); case 86: case 118: return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -3048,7 +3048,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); default : break; } @@ -3085,7 +3085,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_1(10, 341, 97); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_1(10, 667, 97); - return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -3106,8 +3106,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_1(10, 620, 97); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_1(10, 624, 97); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_1(10, 735, 97); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_1(10, 733, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -3150,8 +3150,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_1(10, 651, 97); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_1(10, 730, 97); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_1(10, 728, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -3160,8 +3160,8 @@ else if ((active11 & 0x4000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_1(10, 604, 97); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_1(10, 728, 97); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_1(10, 726, 97); return jjMoveStringLiteralDfa11_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -3237,7 +3237,7 @@ private final int jjMoveStringLiteralDfa11_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -3439,7 +3439,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_1(12, 584, 97); - return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_1(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -3485,7 +3485,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_1(13, 494, 97); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_1(13, 656, 97); - return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_1(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_1(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -3653,7 +3653,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_1(14, 575, 97); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_1(14, 592, 97); - return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -3755,7 +3755,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -3808,7 +3808,7 @@ private final int jjMoveStringLiteralDfa16_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_1(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -3908,7 +3908,7 @@ private final int jjMoveStringLiteralDfa17_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_1(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -3960,7 +3960,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_1(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_1(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -4021,7 +4021,7 @@ private final int jjMoveStringLiteralDfa19_1(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_1(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4088,7 +4088,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_1(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -4120,7 +4120,7 @@ private final int jjMoveStringLiteralDfa21_1(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -4214,7 +4214,7 @@ private final int jjMoveStringLiteralDfa22_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_1(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -4266,7 +4266,7 @@ private final int jjMoveStringLiteralDfa23_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -4333,7 +4333,7 @@ private final int jjMoveStringLiteralDfa24_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); default : break; } @@ -4387,7 +4387,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_1(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -4408,7 +4408,7 @@ private final int jjMoveStringLiteralDfa26_1(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -4456,7 +4456,7 @@ private final int jjMoveStringLiteralDfa27_1(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_1(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -4483,7 +4483,7 @@ private final int jjMoveStringLiteralDfa28_1(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_1(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_1(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -4508,7 +4508,7 @@ private final int jjMoveStringLiteralDfa29_1(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_1(active1, 0L, active2, 0L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_1(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -4533,7 +4533,7 @@ private final int jjMoveStringLiteralDfa30_1(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_1(active1, 0L, active2, 0L, active11, 0x80000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -4559,7 +4559,7 @@ private final int jjMoveStringLiteralDfa31_1(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_1(31, 129, 97); - return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_1(active2, 0L, active11, 0x80000000000L); default : break; } @@ -4578,7 +4578,7 @@ private final int jjMoveStringLiteralDfa32_1(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_1(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_1(active11, 0x80000000000L); default : break; } @@ -4597,8 +4597,8 @@ private final int jjMoveStringLiteralDfa33_1(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_1(33, 749, 97); + if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_1(33, 747, 97); break; default : break; @@ -5619,7 +5619,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, switch (pos) { case 0: - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x4000000L) != 0L) { jjmatchedKind = 821; return 16; @@ -5628,7 +5628,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 94; if ((active12 & 0x20000000L) != 0L) return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x80000000L) != 0L) { jjmatchedKind = 821; return 95; @@ -5642,7 +5642,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } if ((active12 & 0x40L) != 0L) return 96; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ece7efffL) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x73957b27efffL) != 0L) { jjmatchedKind = 821; return 97; @@ -5652,7 +5652,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, jjmatchedKind = 821; return 66; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x200000000L) != 0L) return 97; if ((active12 & 0x10000200L) != 0L) return 98; @@ -5660,7 +5660,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 23; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x6fbf57eeffffL) != 0L) { if (jjmatchedPos != 1) { @@ -5671,11 +5671,11 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } if ((active12 & 0x90000000000L) != 0L) return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) return 97; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x75fffffeefffL) != 0L) { if (jjmatchedPos != 2) { @@ -5684,13 +5684,13 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return 97; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) return 97; return -1; case 3: - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) return 97; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7ff9fefe0c38L) != 0L) { if (jjmatchedPos != 3) { @@ -5703,9 +5703,9 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 99; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) return 97; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x6f39f5de05b4L) != 0L) { if (jjmatchedPos != 4) { @@ -5718,7 +5718,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 99; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x6f39f7ee0514L) != 0L) { if (jjmatchedPos != 5) { @@ -5733,11 +5733,11 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 99; return -1; case 6: - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x6909b7fa0014L) != 0L) { if (jjmatchedPos != 6) { @@ -5748,11 +5748,11 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 7: - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x200110020004L) != 0L) return 97; if ((active2 & 0x8000000000000000L) != 0L) return 99; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x4908a7f80010L) != 0L) { if (jjmatchedPos != 7) { @@ -5763,7 +5763,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x490823e80010L) != 0L) { if (jjmatchedPos != 8) { @@ -5772,11 +5772,11 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return 97; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) return 97; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) { if (jjmatchedPos != 9) { @@ -5785,13 +5785,13 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return 97; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x410802800000L) != 0L) return 97; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) return 97; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) { if (jjmatchedPos != 10) { @@ -5802,7 +5802,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 11) { @@ -5815,7 +5815,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 12; @@ -5827,7 +5827,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) return 97; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 13; @@ -5837,7 +5837,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 97; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 14; @@ -5845,7 +5845,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 15) { @@ -5858,7 +5858,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 16) { @@ -5873,7 +5873,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 17; @@ -5883,7 +5883,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 97; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 18) { @@ -5894,7 +5894,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 19; @@ -5906,7 +5906,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 20; @@ -5914,7 +5914,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 21; @@ -5924,7 +5924,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 22; @@ -5936,7 +5936,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 23; @@ -5946,7 +5946,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 24; @@ -5954,7 +5954,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 25; @@ -5964,7 +5964,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 26; @@ -5974,7 +5974,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 27; @@ -5984,7 +5984,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 97; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 28; @@ -5992,7 +5992,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 29; @@ -6002,7 +6002,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 97; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 30; @@ -6010,7 +6010,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, } return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 31; @@ -6020,7 +6020,7 @@ private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, return 97; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 32; @@ -6103,20 +6103,20 @@ private final int jjMoveStringLiteralDfa0_0() case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_0(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_0(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_0(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -6129,51 +6129,51 @@ private final int jjMoveStringLiteralDfa0_0() return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); + return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x600000200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -6242,19 +6242,19 @@ else if ((active12 & 0x8000000L) != 0L) break; case 65: case 97: - return jjMoveStringLiteralDfa2_0(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_0(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_0(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_0(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -6273,7 +6273,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_0(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6297,7 +6297,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -6315,7 +6315,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_0(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -6329,7 +6329,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x600000200c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -6342,7 +6342,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -6350,10 +6350,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_0(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_0(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_0(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6393,7 +6393,7 @@ private final int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_0(2, 8, 97); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x650400006400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -6406,7 +6406,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -6427,14 +6427,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_0(2, 385, 97); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_0(2, 406, 97); - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_0(2, 20, 97); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_0(2, 388, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -6442,14 +6442,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_0(2, 37, 97); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_0(2, 301, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6478,12 +6478,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_0(2, 716, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_0(2, 616, 97); - return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -6491,7 +6491,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_0(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -6522,7 +6522,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -6530,7 +6530,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -6556,7 +6556,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -6582,7 +6582,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -6599,7 +6599,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_0(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_0(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -6630,7 +6630,7 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, return jjStartNfaWithStates_0(3, 686, 97); break; case 95: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -6640,7 +6640,7 @@ private final int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_0(3, 285, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -6724,7 +6724,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_0(3, 664, 97); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_0(3, 719, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -6734,7 +6734,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -6748,10 +6748,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); + return jjMoveStringLiteralDfa4_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); case 73: case 105: - return jjMoveStringLiteralDfa4_0(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_0(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -6787,9 +6787,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_0(3, 455, 97); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_0(3, 739, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_0(3, 737, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -6820,23 +6820,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_0(3, 740, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_0(3, 738, 97); + return jjMoveStringLiteralDfa4_0(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_0(3, 240, 97); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_0(3, 279, 97); - return jjMoveStringLiteralDfa4_0(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_0(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_0(3, 181, 97); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(3, 537, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x602000020400L); case 81: case 113: return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -6872,7 +6872,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_0(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_0(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -6883,7 +6883,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_0(3, 531, 97); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_0(3, 628, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -6903,15 +6903,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_0(3, 419, 97); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_0(3, 598, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_0(3, 442, 97); - return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -6949,7 +6949,7 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, return jjStartNfaWithStates_0(4, 687, 97); break; case 95: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x600001000000L); case 65: case 97: return jjMoveStringLiteralDfa5_0(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -6960,9 +6960,9 @@ private final int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_0(4, 744, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_0(4, 742, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -7023,7 +7023,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_0(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); + return jjMoveStringLiteralDfa5_0(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -7033,7 +7033,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_0(4, 685, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa5_0(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -7055,7 +7055,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_0(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_0(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -7076,9 +7076,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_0(4, 750, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_0(4, 748, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); case 77: case 109: return jjMoveStringLiteralDfa5_0(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -7095,7 +7095,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_0(4, 65, 97); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_0(4, 670, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_0(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); case 79: case 111: return jjMoveStringLiteralDfa5_0(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -7195,7 +7195,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -7203,11 +7203,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_0(4, 14, 97); - return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_0(4, 733, 97); + if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_0(4, 731, 97); return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -7222,9 +7222,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_0(4, 188, 97); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_0(4, 198, 97); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_0(4, 745, 97); - return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_0(4, 743, 97); + return jjMoveStringLiteralDfa5_0(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); case 90: case 122: return jjMoveStringLiteralDfa5_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -7245,7 +7245,7 @@ private final int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_0(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); + return jjMoveStringLiteralDfa6_0(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -7268,7 +7268,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_0(5, 447, 97); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(5, 602, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -7327,7 +7327,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_0(5, 671, 97); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_0(5, 676, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + return jjMoveStringLiteralDfa6_0(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -7337,20 +7337,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_0(5, 247, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_0(5, 310, 97); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_0(5, 514, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_0(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); case 75: case 107: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -7359,7 +7359,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_0(5, 416, 97); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_0(5, 513, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -7395,15 +7395,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_0(5, 711, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_0(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(5, 490, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); case 81: case 113: return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7427,7 +7427,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_0(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -7446,7 +7446,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_0(5, 398, 97); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(5, 691, 97); - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -7485,13 +7485,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_0(5, 675, 97); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_0(5, 678, 97); - return jjMoveStringLiteralDfa6_0(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_0(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x400000000004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -7515,7 +7515,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); default : break; } @@ -7537,10 +7537,10 @@ private final int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, return jjStartNfaWithStates_0(6, 464, 97); break; case 95: - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_0(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); + return jjMoveStringLiteralDfa7_0(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x480000000000L); case 66: case 98: return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -7604,13 +7604,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(6, 665, 97); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_0(6, 742, 97); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_0(6, 743, 97); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_0(6, 748, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_0(6, 740, 97); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_0(6, 741, 97); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_0(6, 746, 97); + return jjMoveStringLiteralDfa7_0(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x200011000004L); case 70: case 102: return jjMoveStringLiteralDfa7_0(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7635,19 +7635,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(6, 499, 97); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_0(6, 698, 97); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_0(6, 736, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_0(6, 734, 97); + return jjMoveStringLiteralDfa7_0(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_0(6, 50, 97); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_0(6, 747, 97); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_0(6, 745, 97); return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_0(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_0(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -7704,7 +7704,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); case 79: case 111: return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -7741,7 +7741,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_0(6, 696, 97); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_0(6, 714, 97); - return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -7801,10 +7801,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_0(6, 697, 97); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_0(6, 712, 97); - return jjMoveStringLiteralDfa7_0(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); + return jjMoveStringLiteralDfa7_0(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_0(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_0(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); case 86: case 118: return jjMoveStringLiteralDfa7_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -7846,7 +7846,7 @@ private final int jjMoveStringLiteralDfa7_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_0(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_0(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -7870,8 +7870,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_0(7, 57, 97); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_0(7, 156, 97); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_0(7, 738, 97); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_0(7, 736, 97); return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -7923,7 +7923,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_0(7, 660, 97); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_0(7, 721, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -7939,7 +7939,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_0(7, 395, 97); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 642, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -7947,7 +7947,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_0(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -7966,9 +7966,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(7, 359, 97); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_0(7, 581, 97); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_0(7, 734, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_0(7, 732, 97); + return jjMoveStringLiteralDfa8_0(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x400000000000L); case 77: case 109: return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -7981,10 +7981,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_0(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -7996,7 +7996,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_0(7, 554, 97); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 706, 97); - return jjMoveStringLiteralDfa8_0(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_0(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -8018,7 +8018,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_0(7, 450, 97); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_0(7, 615, 97); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -8064,9 +8064,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_0(7, 518, 97); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_0(7, 627, 97); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_0(7, 726, 97); - return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_0(7, 749, 97); + return jjMoveStringLiteralDfa8_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); case 90: case 122: return jjMoveStringLiteralDfa8_0(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -8100,7 +8100,7 @@ private final int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(8, 618, 97); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -8109,8 +8109,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_0(8, 235, 97); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_0(8, 666, 97); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_0(8, 732, 97); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_0(8, 730, 97); return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -8178,9 +8178,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_0(8, 737, 97); - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_0(8, 735, 97); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -8188,7 +8188,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_0(8, 42, 97); - return jjMoveStringLiteralDfa9_0(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); + return jjMoveStringLiteralDfa9_0(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -8204,7 +8204,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -8230,7 +8230,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_0(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -8240,7 +8240,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); case 81: case 113: return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -8292,7 +8292,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); + return jjMoveStringLiteralDfa9_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x400800000000L); case 86: case 118: return jjMoveStringLiteralDfa9_0(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -8393,9 +8393,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_0(9, 727, 97); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_0(9, 729, 97); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_0(9, 731, 97); - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_0(9, 750, 97); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -8436,7 +8436,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -8467,10 +8467,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_0(9, 458, 97); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_0(9, 648, 97); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_0(9, 741, 97); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_0(9, 746, 97); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_0(9, 739, 97); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_0(9, 744, 97); return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -8490,7 +8490,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); case 86: case 118: return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -8517,7 +8517,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); default : break; } @@ -8554,7 +8554,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_0(10, 341, 97); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_0(10, 667, 97); - return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -8575,8 +8575,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_0(10, 620, 97); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_0(10, 624, 97); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_0(10, 735, 97); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_0(10, 733, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -8619,8 +8619,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_0(10, 651, 97); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_0(10, 730, 97); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_0(10, 728, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -8629,8 +8629,8 @@ else if ((active11 & 0x4000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_0(10, 604, 97); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_0(10, 728, 97); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_0(10, 726, 97); return jjMoveStringLiteralDfa11_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -8706,7 +8706,7 @@ private final int jjMoveStringLiteralDfa11_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -8908,7 +8908,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_0(12, 584, 97); - return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_0(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -8954,7 +8954,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_0(13, 494, 97); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_0(13, 656, 97); - return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_0(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_0(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9122,7 +9122,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_0(14, 575, 97); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_0(14, 592, 97); - return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -9224,7 +9224,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -9277,7 +9277,7 @@ private final int jjMoveStringLiteralDfa16_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_0(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -9377,7 +9377,7 @@ private final int jjMoveStringLiteralDfa17_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_0(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -9429,7 +9429,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_0(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_0(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -9490,7 +9490,7 @@ private final int jjMoveStringLiteralDfa19_0(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_0(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9557,7 +9557,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_0(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -9589,7 +9589,7 @@ private final int jjMoveStringLiteralDfa21_0(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -9683,7 +9683,7 @@ private final int jjMoveStringLiteralDfa22_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_0(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -9735,7 +9735,7 @@ private final int jjMoveStringLiteralDfa23_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -9802,7 +9802,7 @@ private final int jjMoveStringLiteralDfa24_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); default : break; } @@ -9856,7 +9856,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_0(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -9877,7 +9877,7 @@ private final int jjMoveStringLiteralDfa26_0(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -9925,7 +9925,7 @@ private final int jjMoveStringLiteralDfa27_0(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_0(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -9952,7 +9952,7 @@ private final int jjMoveStringLiteralDfa28_0(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_0(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_0(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -9977,7 +9977,7 @@ private final int jjMoveStringLiteralDfa29_0(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_0(active1, 0L, active2, 0L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_0(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -10002,7 +10002,7 @@ private final int jjMoveStringLiteralDfa30_0(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_0(active1, 0L, active2, 0L, active11, 0x80000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -10028,7 +10028,7 @@ private final int jjMoveStringLiteralDfa31_0(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_0(31, 129, 97); - return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_0(active2, 0L, active11, 0x80000000000L); default : break; } @@ -10047,7 +10047,7 @@ private final int jjMoveStringLiteralDfa32_0(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_0(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_0(active11, 0x80000000000L); default : break; } @@ -10066,8 +10066,8 @@ private final int jjMoveStringLiteralDfa33_0(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_0(33, 749, 97); + if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_0(33, 747, 97); break; default : break; @@ -11106,7 +11106,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, switch (pos) { case 0: - if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x10000000L) != 0L) + if ((active2 & 0xfe00000000000000L) != 0L || (active3 & 0x7ffffL) != 0L || (active11 & 0x4000000L) != 0L) { jjmatchedKind = 821; return 16; @@ -11115,7 +11115,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 94; if ((active12 & 0x20000000L) != 0L) return 63; - if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x200000000L) != 0L) + if ((active5 & 0x7fffff000000000L) != 0L || (active11 & 0x80000000L) != 0L) { jjmatchedKind = 821; return 95; @@ -11127,7 +11127,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, jjmatchedKind = 821; return 1; } - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e55ece7efffL) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0x1ffffffffffffc0L) != 0L || (active3 & 0xff8001fffff80000L) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xf800000000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x73957b27efffL) != 0L) { jjmatchedKind = 821; return 96; @@ -11137,7 +11137,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, jjmatchedKind = 821; return 66; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x200000000L) != 0L) return 96; if ((active12 & 0x10000200L) != 0L) return 97; @@ -11145,7 +11145,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 23; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x6fbf57eeffffL) != 0L) { if (jjmatchedPos != 1) { @@ -11156,11 +11156,11 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } if ((active12 & 0x90000000000L) != 0L) return 90; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) return 96; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x75fffffeefffL) != 0L) { if (jjmatchedPos != 2) { @@ -11169,13 +11169,13 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return 96; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) return 96; return -1; case 3: - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) return 96; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7ff9fefe0c38L) != 0L) { if (jjmatchedPos != 3) { @@ -11188,9 +11188,9 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 98; return -1; case 4: - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) return 96; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x6f39f5de05b4L) != 0L) { if (jjmatchedPos != 4) { @@ -11203,7 +11203,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 98; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x6f39f7ee0514L) != 0L) { if (jjmatchedPos != 5) { @@ -11218,11 +11218,11 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 98; return -1; case 6: - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x6909b7fa0014L) != 0L) { if (jjmatchedPos != 6) { @@ -11233,11 +11233,11 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 7: - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x200110020004L) != 0L) return 96; if ((active2 & 0x8000000000000000L) != 0L) return 98; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x4908a7f80010L) != 0L) { if (jjmatchedPos != 7) { @@ -11248,7 +11248,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x490823e80010L) != 0L) { if (jjmatchedPos != 8) { @@ -11257,11 +11257,11 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return 96; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) return 96; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) { if (jjmatchedPos != 9) { @@ -11270,13 +11270,13 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return 96; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x410802800000L) != 0L) return 96; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) return 96; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) { if (jjmatchedPos != 10) { @@ -11287,7 +11287,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 11) { @@ -11300,7 +11300,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 12; @@ -11312,7 +11312,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) return 96; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 13; @@ -11322,7 +11322,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 96; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 14; @@ -11330,7 +11330,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 15) { @@ -11343,7 +11343,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 16) { @@ -11358,7 +11358,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 96; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 17; @@ -11368,7 +11368,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 96; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 18) { @@ -11379,7 +11379,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 19; @@ -11391,7 +11391,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 20; @@ -11399,7 +11399,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 21; @@ -11409,7 +11409,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 22; @@ -11421,7 +11421,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 23; @@ -11431,7 +11431,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 24; @@ -11439,7 +11439,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 25; @@ -11449,7 +11449,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 26; @@ -11459,7 +11459,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 27; @@ -11469,7 +11469,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 96; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 28; @@ -11477,7 +11477,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 29; @@ -11487,7 +11487,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 96; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 30; @@ -11495,7 +11495,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, } return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 31; @@ -11505,7 +11505,7 @@ private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, return 96; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 32; @@ -11588,20 +11588,20 @@ private final int jjMoveStringLiteralDfa0_2() case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_2(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_2(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_2(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -11614,51 +11614,51 @@ private final int jjMoveStringLiteralDfa0_2() return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); + return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x600000200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_2(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -11727,19 +11727,19 @@ else if ((active12 & 0x8000000L) != 0L) break; case 65: case 97: - return jjMoveStringLiteralDfa2_2(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_2(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_2(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_2(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -11758,7 +11758,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_2(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11782,7 +11782,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -11800,7 +11800,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_2(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -11814,7 +11814,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x600000200c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -11827,7 +11827,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -11835,10 +11835,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_2(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_2(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_2(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11878,7 +11878,7 @@ private final int jjMoveStringLiteralDfa2_2(long old0, long active0, long old1, case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_2(2, 8, 96); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x650400006400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -11891,7 +11891,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -11912,14 +11912,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_2(2, 385, 96); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_2(2, 406, 96); - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_2(2, 20, 96); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_2(2, 388, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -11927,14 +11927,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_2(2, 37, 96); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_2(2, 301, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -11963,12 +11963,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_2(2, 716, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_2(2, 616, 96); - return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -11976,7 +11976,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_2(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -12007,7 +12007,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -12015,7 +12015,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -12041,7 +12041,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -12067,7 +12067,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -12084,7 +12084,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_2(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_2(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -12115,7 +12115,7 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, return jjStartNfaWithStates_2(3, 686, 96); break; case 95: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -12125,7 +12125,7 @@ private final int jjMoveStringLiteralDfa3_2(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_2(3, 285, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -12209,7 +12209,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_2(3, 664, 96); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_2(3, 719, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -12219,7 +12219,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -12233,10 +12233,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); + return jjMoveStringLiteralDfa4_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); case 73: case 105: - return jjMoveStringLiteralDfa4_2(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_2(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -12272,9 +12272,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_2(3, 455, 96); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_2(3, 739, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_2(3, 737, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -12305,23 +12305,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_2(3, 740, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_2(3, 738, 96); + return jjMoveStringLiteralDfa4_2(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_2(3, 240, 96); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_2(3, 279, 96); - return jjMoveStringLiteralDfa4_2(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_2(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_2(3, 181, 96); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(3, 537, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x602000020400L); case 81: case 113: return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -12357,7 +12357,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_2(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_2(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -12368,7 +12368,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_2(3, 531, 96); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_2(3, 628, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -12388,15 +12388,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_2(3, 419, 96); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_2(3, 598, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_2(3, 442, 96); - return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_2(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -12434,7 +12434,7 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, return jjStartNfaWithStates_2(4, 687, 96); break; case 95: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x600001000000L); case 65: case 97: return jjMoveStringLiteralDfa5_2(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -12445,9 +12445,9 @@ private final int jjMoveStringLiteralDfa4_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_2(4, 744, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_2(4, 742, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -12508,7 +12508,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_2(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); + return jjMoveStringLiteralDfa5_2(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -12518,7 +12518,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_2(4, 685, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa5_2(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -12540,7 +12540,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_2(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_2(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -12561,9 +12561,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_2(4, 750, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_2(4, 748, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); case 77: case 109: return jjMoveStringLiteralDfa5_2(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -12580,7 +12580,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_2(4, 65, 96); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_2(4, 670, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_2(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); case 79: case 111: return jjMoveStringLiteralDfa5_2(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -12680,7 +12680,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -12688,11 +12688,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_2(4, 14, 96); - return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_2(4, 733, 96); + if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_2(4, 731, 96); return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -12707,9 +12707,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_2(4, 188, 96); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_2(4, 198, 96); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_2(4, 745, 96); - return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_2(4, 743, 96); + return jjMoveStringLiteralDfa5_2(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); case 90: case 122: return jjMoveStringLiteralDfa5_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -12730,7 +12730,7 @@ private final int jjMoveStringLiteralDfa5_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_2(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); + return jjMoveStringLiteralDfa6_2(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -12753,7 +12753,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_2(5, 447, 96); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(5, 602, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -12812,7 +12812,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_2(5, 671, 96); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_2(5, 676, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + return jjMoveStringLiteralDfa6_2(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -12822,20 +12822,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_2(5, 247, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_2(5, 310, 96); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_2(5, 514, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_2(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); case 75: case 107: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -12844,7 +12844,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_2(5, 416, 96); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_2(5, 513, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -12880,15 +12880,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_2(5, 711, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_2(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(5, 490, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); case 81: case 113: return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -12912,7 +12912,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_2(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -12931,7 +12931,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_2(5, 398, 96); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(5, 691, 96); - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -12970,13 +12970,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_2(5, 675, 96); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_2(5, 678, 96); - return jjMoveStringLiteralDfa6_2(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_2(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x400000000004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -13000,7 +13000,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); default : break; } @@ -13022,10 +13022,10 @@ private final int jjMoveStringLiteralDfa6_2(long old0, long active0, long old1, return jjStartNfaWithStates_2(6, 464, 96); break; case 95: - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_2(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); + return jjMoveStringLiteralDfa7_2(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x480000000000L); case 66: case 98: return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -13089,13 +13089,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(6, 665, 96); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_2(6, 742, 96); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_2(6, 743, 96); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_2(6, 748, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_2(6, 740, 96); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_2(6, 741, 96); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_2(6, 746, 96); + return jjMoveStringLiteralDfa7_2(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x200011000004L); case 70: case 102: return jjMoveStringLiteralDfa7_2(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -13120,19 +13120,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(6, 499, 96); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_2(6, 698, 96); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_2(6, 736, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_2(6, 734, 96); + return jjMoveStringLiteralDfa7_2(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_2(6, 50, 96); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_2(6, 747, 96); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_2(6, 745, 96); return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_2(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_2(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -13189,7 +13189,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); case 79: case 111: return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -13226,7 +13226,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_2(6, 696, 96); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_2(6, 714, 96); - return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -13286,10 +13286,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_2(6, 697, 96); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_2(6, 712, 96); - return jjMoveStringLiteralDfa7_2(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); + return jjMoveStringLiteralDfa7_2(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_2(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_2(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); case 86: case 118: return jjMoveStringLiteralDfa7_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -13331,7 +13331,7 @@ private final int jjMoveStringLiteralDfa7_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_2(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_2(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -13355,8 +13355,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_2(7, 57, 96); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_2(7, 156, 96); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_2(7, 738, 96); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_2(7, 736, 96); return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -13408,7 +13408,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_2(7, 660, 96); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_2(7, 721, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -13424,7 +13424,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_2(7, 395, 96); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 642, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -13432,7 +13432,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_2(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -13451,9 +13451,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(7, 359, 96); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_2(7, 581, 96); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_2(7, 734, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_2(7, 732, 96); + return jjMoveStringLiteralDfa8_2(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x400000000000L); case 77: case 109: return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -13466,10 +13466,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_2(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -13481,7 +13481,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_2(7, 554, 96); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 706, 96); - return jjMoveStringLiteralDfa8_2(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_2(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -13503,7 +13503,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_2(7, 450, 96); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_2(7, 615, 96); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -13549,9 +13549,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_2(7, 518, 96); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_2(7, 627, 96); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_2(7, 726, 96); - return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_2(7, 749, 96); + return jjMoveStringLiteralDfa8_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); case 90: case 122: return jjMoveStringLiteralDfa8_2(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -13585,7 +13585,7 @@ private final int jjMoveStringLiteralDfa8_2(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(8, 618, 96); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -13594,8 +13594,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_2(8, 235, 96); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_2(8, 666, 96); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_2(8, 732, 96); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_2(8, 730, 96); return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -13663,9 +13663,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_2(8, 737, 96); - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_2(8, 735, 96); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -13673,7 +13673,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_2(8, 42, 96); - return jjMoveStringLiteralDfa9_2(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); + return jjMoveStringLiteralDfa9_2(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -13689,7 +13689,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -13715,7 +13715,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_2(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -13725,7 +13725,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); case 81: case 113: return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -13777,7 +13777,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); + return jjMoveStringLiteralDfa9_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x400800000000L); case 86: case 118: return jjMoveStringLiteralDfa9_2(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -13878,9 +13878,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_2(9, 727, 96); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_2(9, 729, 96); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_2(9, 731, 96); - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_2(9, 750, 96); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -13921,7 +13921,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -13952,10 +13952,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_2(9, 458, 96); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_2(9, 648, 96); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_2(9, 741, 96); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_2(9, 746, 96); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_2(9, 739, 96); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_2(9, 744, 96); return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -13975,7 +13975,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); case 86: case 118: return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -14002,7 +14002,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); default : break; } @@ -14039,7 +14039,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_2(10, 341, 96); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_2(10, 667, 96); - return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -14060,8 +14060,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_2(10, 620, 96); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_2(10, 624, 96); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_2(10, 735, 96); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_2(10, 733, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -14104,8 +14104,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_2(10, 651, 96); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_2(10, 730, 96); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_2(10, 728, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -14114,8 +14114,8 @@ else if ((active11 & 0x4000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_2(10, 604, 96); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_2(10, 728, 96); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_2(10, 726, 96); return jjMoveStringLiteralDfa11_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -14191,7 +14191,7 @@ private final int jjMoveStringLiteralDfa11_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -14393,7 +14393,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_2(12, 584, 96); - return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_2(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -14439,7 +14439,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_2(13, 494, 96); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_2(13, 656, 96); - return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_2(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_2(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14607,7 +14607,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_2(14, 575, 96); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_2(14, 592, 96); - return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -14709,7 +14709,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -14762,7 +14762,7 @@ private final int jjMoveStringLiteralDfa16_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_2(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -14862,7 +14862,7 @@ private final int jjMoveStringLiteralDfa17_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_2(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -14914,7 +14914,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_2(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_2(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -14975,7 +14975,7 @@ private final int jjMoveStringLiteralDfa19_2(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_2(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15042,7 +15042,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_2(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -15074,7 +15074,7 @@ private final int jjMoveStringLiteralDfa21_2(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -15168,7 +15168,7 @@ private final int jjMoveStringLiteralDfa22_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_2(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -15220,7 +15220,7 @@ private final int jjMoveStringLiteralDfa23_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -15287,7 +15287,7 @@ private final int jjMoveStringLiteralDfa24_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); default : break; } @@ -15341,7 +15341,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_2(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -15362,7 +15362,7 @@ private final int jjMoveStringLiteralDfa26_2(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -15410,7 +15410,7 @@ private final int jjMoveStringLiteralDfa27_2(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_2(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -15437,7 +15437,7 @@ private final int jjMoveStringLiteralDfa28_2(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_2(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_2(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -15462,7 +15462,7 @@ private final int jjMoveStringLiteralDfa29_2(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_2(active1, 0L, active2, 0L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_2(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -15487,7 +15487,7 @@ private final int jjMoveStringLiteralDfa30_2(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_2(active1, 0L, active2, 0L, active11, 0x80000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -15513,7 +15513,7 @@ private final int jjMoveStringLiteralDfa31_2(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_2(31, 129, 96); - return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_2(active2, 0L, active11, 0x80000000000L); default : break; } @@ -15532,7 +15532,7 @@ private final int jjMoveStringLiteralDfa32_2(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_2(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_2(active11, 0x80000000000L); default : break; } @@ -15551,8 +15551,8 @@ private final int jjMoveStringLiteralDfa33_2(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_2(33, 749, 96); + if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_2(33, 747, 96); break; default : break; @@ -16516,7 +16516,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } if ((active12 & 0x10000200L) != 0L) return 76; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e57fce7efffL) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x7395ff27efffL) != 0L) { jjmatchedKind = 821; return 77; @@ -16532,7 +16532,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, jjmatchedKind = 821; return 31; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x200000000L) != 0L) return 77; if ((active12 & 0x600000L) != 0L) return 11; @@ -16540,7 +16540,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 79; return -1; case 1: - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x6fbf57eeffffL) != 0L) { if (jjmatchedPos != 1) { @@ -16551,11 +16551,11 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } if ((active12 & 0x90000000000L) != 0L) return 72; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) return 77; return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x75fffffeefffL) != 0L) { if (jjmatchedPos != 2) { @@ -16564,15 +16564,15 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return 77; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) return 77; return -1; case 3: if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) return 77; - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7ff9fefe0c38L) != 0L) { if (jjmatchedPos != 3) { @@ -16583,7 +16583,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 4: - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x6f39f5de05b4L) != 0L) { if (jjmatchedPos != 4) { @@ -16594,11 +16594,11 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) return 77; return -1; case 5: - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x6f39f7ee0514L) != 0L) { if (jjmatchedPos != 5) { @@ -16615,9 +16615,9 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 6: if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) return 77; - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x6909b7fa0014L) != 0L) { if (jjmatchedPos != 6) { @@ -16630,9 +16630,9 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 7: if ((active2 & 0x8000000000000000L) != 0L) return 80; - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x200110020004L) != 0L) return 77; - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x4908a7f80010L) != 0L) { if (jjmatchedPos != 7) { @@ -16643,7 +16643,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x490823e80010L) != 0L) { if (jjmatchedPos != 8) { @@ -16652,11 +16652,11 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return 77; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) return 77; return -1; case 9: - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) { if (jjmatchedPos != 9) { @@ -16665,13 +16665,13 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return 77; } - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x410802800000L) != 0L) return 77; return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) return 77; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) { if (jjmatchedPos != 10) { @@ -16682,7 +16682,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 11) { @@ -16695,7 +16695,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 12; @@ -16707,7 +16707,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 13: if ((active1 & 0x4000000000200000L) != 0L || (active2 & 0x8000L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x10000L) != 0L || (active6 & 0x8000003000000L) != 0L || (active7 & 0x4000400000008000L) != 0L || (active9 & 0x800000000024000L) != 0L || (active10 & 0x10000L) != 0L) return 77; - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 13; @@ -16717,7 +16717,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 77; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 14; @@ -16725,7 +16725,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 15) { @@ -16738,7 +16738,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 16) { @@ -16753,7 +16753,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 77; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 17; @@ -16763,7 +16763,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 77; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 18) { @@ -16774,7 +16774,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 19; @@ -16784,7 +16784,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 20: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 20; @@ -16794,7 +16794,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 21; @@ -16804,7 +16804,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 22; @@ -16816,7 +16816,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 23: if ((active8 & 0x4000000000000L) != 0L || (active10 & 0x100000000040L) != 0L) return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 23; @@ -16826,7 +16826,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 24; @@ -16834,7 +16834,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 25; @@ -16844,7 +16844,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 26; @@ -16854,7 +16854,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 27; @@ -16864,7 +16864,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, case 28: if ((active8 & 0x200000000000000L) != 0L) return 77; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 28; @@ -16872,7 +16872,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 29; @@ -16880,7 +16880,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, } return -1; case 30: - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 30; @@ -16890,7 +16890,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 31; @@ -16900,7 +16900,7 @@ private final int jjStopStringLiteralDfa_3(int pos, long active0, long active1, return 77; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 821; jjmatchedPos = 32; @@ -16982,20 +16982,20 @@ private final int jjMoveStringLiteralDfa0_3() case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_3(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_3(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_3(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -17008,51 +17008,51 @@ private final int jjMoveStringLiteralDfa0_3() return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); + return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x600000200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_3(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -17119,19 +17119,19 @@ else if ((active12 & 0x8000000L) != 0L) break; case 65: case 97: - return jjMoveStringLiteralDfa2_3(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_3(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_3(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_3(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -17150,7 +17150,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_3(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17174,7 +17174,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -17192,7 +17192,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_3(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -17206,7 +17206,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x600000200c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -17219,7 +17219,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -17227,10 +17227,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_3(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_3(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_3(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17270,7 +17270,7 @@ private final int jjMoveStringLiteralDfa2_3(long old0, long active0, long old1, case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_3(2, 8, 77); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x650400006400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -17283,7 +17283,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -17304,14 +17304,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_3(2, 385, 77); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_3(2, 406, 77); - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_3(2, 20, 77); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_3(2, 388, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -17319,14 +17319,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_3(2, 37, 77); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_3(2, 301, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17355,12 +17355,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_3(2, 716, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_3(2, 616, 77); - return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -17368,7 +17368,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_3(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -17399,7 +17399,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -17407,7 +17407,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -17433,7 +17433,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -17459,7 +17459,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -17476,7 +17476,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_3(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_3(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -17507,7 +17507,7 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, return jjStartNfaWithStates_3(3, 686, 77); break; case 95: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -17517,7 +17517,7 @@ private final int jjMoveStringLiteralDfa3_3(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_3(3, 285, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); + return jjMoveStringLiteralDfa4_3(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -17601,7 +17601,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_3(3, 664, 77); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_3(3, 719, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + return jjMoveStringLiteralDfa4_3(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -17611,7 +17611,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -17625,10 +17625,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); + return jjMoveStringLiteralDfa4_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); case 73: case 105: - return jjMoveStringLiteralDfa4_3(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_3(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -17664,9 +17664,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_3(3, 455, 77); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_3(3, 739, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_3(3, 737, 77); + return jjMoveStringLiteralDfa4_3(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -17697,23 +17697,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_3(3, 740, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_3(3, 738, 77); + return jjMoveStringLiteralDfa4_3(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_3(3, 240, 77); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_3(3, 279, 77); - return jjMoveStringLiteralDfa4_3(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_3(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_3(3, 181, 77); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_3(3, 537, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x602000020400L); case 81: case 113: return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -17749,7 +17749,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_3(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_3(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -17760,7 +17760,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_3(3, 531, 77); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_3(3, 628, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -17780,15 +17780,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_3(3, 419, 77); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_3(3, 598, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_3(3, 442, 77); - return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_3(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -17826,7 +17826,7 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, return jjStartNfaWithStates_3(4, 687, 77); break; case 95: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x600001000000L); case 65: case 97: return jjMoveStringLiteralDfa5_3(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -17837,9 +17837,9 @@ private final int jjMoveStringLiteralDfa4_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_3(4, 744, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_3(4, 742, 77); + return jjMoveStringLiteralDfa5_3(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -17900,7 +17900,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_3(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); + return jjMoveStringLiteralDfa5_3(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -17910,7 +17910,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_3(4, 685, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa5_3(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -17932,7 +17932,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_3(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_3(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -17953,9 +17953,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_3(4, 750, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_3(4, 748, 77); + return jjMoveStringLiteralDfa5_3(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); case 77: case 109: return jjMoveStringLiteralDfa5_3(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -17972,7 +17972,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_3(4, 65, 77); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_3(4, 670, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_3(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); case 79: case 111: return jjMoveStringLiteralDfa5_3(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -18072,7 +18072,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -18080,11 +18080,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_3(4, 14, 77); - return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_3(4, 733, 77); + if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_3(4, 731, 77); return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -18099,9 +18099,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_3(4, 188, 77); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_3(4, 198, 77); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_3(4, 745, 77); - return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_3(4, 743, 77); + return jjMoveStringLiteralDfa5_3(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); case 90: case 122: return jjMoveStringLiteralDfa5_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -18122,7 +18122,7 @@ private final int jjMoveStringLiteralDfa5_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_3(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); + return jjMoveStringLiteralDfa6_3(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -18145,7 +18145,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_3(5, 447, 77); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_3(5, 602, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -18204,7 +18204,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_3(5, 671, 77); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_3(5, 676, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + return jjMoveStringLiteralDfa6_3(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -18214,20 +18214,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_3(5, 247, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_3(5, 310, 77); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_3(5, 514, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_3(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); case 75: case 107: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -18236,7 +18236,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_3(5, 416, 77); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_3(5, 513, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -18272,15 +18272,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_3(5, 711, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_3(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_3(5, 490, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); case 81: case 113: return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18304,7 +18304,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_3(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -18323,7 +18323,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_3(5, 398, 77); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_3(5, 691, 77); - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -18362,13 +18362,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_3(5, 675, 77); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_3(5, 678, 77); - return jjMoveStringLiteralDfa6_3(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_3(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x400000000004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -18392,7 +18392,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); default : break; } @@ -18414,10 +18414,10 @@ private final int jjMoveStringLiteralDfa6_3(long old0, long active0, long old1, return jjStartNfaWithStates_3(6, 464, 77); break; case 95: - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_3(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); + return jjMoveStringLiteralDfa7_3(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x480000000000L); case 66: case 98: return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -18481,13 +18481,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_3(6, 665, 77); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_3(6, 742, 77); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_3(6, 743, 77); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_3(6, 748, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_3(6, 740, 77); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_3(6, 741, 77); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_3(6, 746, 77); + return jjMoveStringLiteralDfa7_3(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x200011000004L); case 70: case 102: return jjMoveStringLiteralDfa7_3(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18512,19 +18512,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_3(6, 499, 77); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_3(6, 698, 77); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_3(6, 736, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_3(6, 734, 77); + return jjMoveStringLiteralDfa7_3(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_3(6, 50, 77); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_3(6, 747, 77); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_3(6, 745, 77); return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_3(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_3(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -18581,7 +18581,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); case 79: case 111: return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -18618,7 +18618,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_3(6, 696, 77); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_3(6, 714, 77); - return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -18678,10 +18678,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_3(6, 697, 77); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_3(6, 712, 77); - return jjMoveStringLiteralDfa7_3(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); + return jjMoveStringLiteralDfa7_3(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_3(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_3(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); case 86: case 118: return jjMoveStringLiteralDfa7_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -18723,7 +18723,7 @@ private final int jjMoveStringLiteralDfa7_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_3(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_3(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -18747,8 +18747,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_3(7, 57, 77); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_3(7, 156, 77); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_3(7, 738, 77); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_3(7, 736, 77); return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -18800,7 +18800,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_3(7, 660, 77); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_3(7, 721, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -18816,7 +18816,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_3(7, 395, 77); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_3(7, 642, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -18824,7 +18824,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_3(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -18843,9 +18843,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_3(7, 359, 77); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_3(7, 581, 77); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_3(7, 734, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_3(7, 732, 77); + return jjMoveStringLiteralDfa8_3(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x400000000000L); case 77: case 109: return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -18858,10 +18858,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_3(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -18873,7 +18873,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_3(7, 554, 77); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_3(7, 706, 77); - return jjMoveStringLiteralDfa8_3(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_3(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -18895,7 +18895,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_3(7, 450, 77); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_3(7, 615, 77); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -18941,9 +18941,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_3(7, 518, 77); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_3(7, 627, 77); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_3(7, 726, 77); - return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_3(7, 749, 77); + return jjMoveStringLiteralDfa8_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); case 90: case 122: return jjMoveStringLiteralDfa8_3(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -18977,7 +18977,7 @@ private final int jjMoveStringLiteralDfa8_3(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_3(8, 618, 77); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -18986,8 +18986,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_3(8, 235, 77); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_3(8, 666, 77); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_3(8, 732, 77); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_3(8, 730, 77); return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -19055,9 +19055,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_3(8, 737, 77); - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_3(8, 735, 77); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -19065,7 +19065,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_3(8, 42, 77); - return jjMoveStringLiteralDfa9_3(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); + return jjMoveStringLiteralDfa9_3(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -19081,7 +19081,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -19107,7 +19107,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_3(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -19117,7 +19117,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); case 81: case 113: return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -19169,7 +19169,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); + return jjMoveStringLiteralDfa9_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x400800000000L); case 86: case 118: return jjMoveStringLiteralDfa9_3(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -19270,9 +19270,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_3(9, 727, 77); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_3(9, 729, 77); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_3(9, 731, 77); - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_3(9, 750, 77); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -19313,7 +19313,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -19344,10 +19344,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_3(9, 458, 77); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_3(9, 648, 77); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_3(9, 741, 77); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_3(9, 746, 77); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_3(9, 739, 77); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_3(9, 744, 77); return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -19367,7 +19367,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_3(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); case 86: case 118: return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -19394,7 +19394,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); default : break; } @@ -19431,7 +19431,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_3(10, 341, 77); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_3(10, 667, 77); - return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -19452,8 +19452,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_3(10, 620, 77); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_3(10, 624, 77); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_3(10, 735, 77); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_3(10, 733, 77); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -19496,8 +19496,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_3(10, 651, 77); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_3(10, 730, 77); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_3(10, 728, 77); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -19506,8 +19506,8 @@ else if ((active11 & 0x4000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_3(10, 604, 77); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_3(10, 728, 77); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_3(10, 726, 77); return jjMoveStringLiteralDfa11_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -19583,7 +19583,7 @@ private final int jjMoveStringLiteralDfa11_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -19785,7 +19785,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_3(12, 584, 77); - return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_3(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -19831,7 +19831,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_3(13, 494, 77); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_3(13, 656, 77); - return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_3(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_3(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -19999,7 +19999,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_3(14, 575, 77); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_3(14, 592, 77); - return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -20101,7 +20101,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -20154,7 +20154,7 @@ private final int jjMoveStringLiteralDfa16_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_3(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -20254,7 +20254,7 @@ private final int jjMoveStringLiteralDfa17_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_3(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -20306,7 +20306,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_3(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_3(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -20367,7 +20367,7 @@ private final int jjMoveStringLiteralDfa19_3(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_3(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -20434,7 +20434,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_3(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -20466,7 +20466,7 @@ private final int jjMoveStringLiteralDfa21_3(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -20560,7 +20560,7 @@ private final int jjMoveStringLiteralDfa22_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_3(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -20612,7 +20612,7 @@ private final int jjMoveStringLiteralDfa23_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -20679,7 +20679,7 @@ private final int jjMoveStringLiteralDfa24_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); default : break; } @@ -20733,7 +20733,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_3(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -20754,7 +20754,7 @@ private final int jjMoveStringLiteralDfa26_3(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -20802,7 +20802,7 @@ private final int jjMoveStringLiteralDfa27_3(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_3(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -20829,7 +20829,7 @@ private final int jjMoveStringLiteralDfa28_3(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_3(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_3(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -20854,7 +20854,7 @@ private final int jjMoveStringLiteralDfa29_3(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_3(active1, 0L, active2, 0L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_3(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -20879,7 +20879,7 @@ private final int jjMoveStringLiteralDfa30_3(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_3(active1, 0L, active2, 0L, active11, 0x80000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -20905,7 +20905,7 @@ private final int jjMoveStringLiteralDfa31_3(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_3(31, 129, 77); - return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_3(active2, 0L, active11, 0x80000000000L); default : break; } @@ -20924,7 +20924,7 @@ private final int jjMoveStringLiteralDfa32_3(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_3(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_3(active11, 0x80000000000L); default : break; } @@ -20943,8 +20943,8 @@ private final int jjMoveStringLiteralDfa33_3(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_3(33, 749, 77); + if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_3(33, 747, 77); break; default : break; @@ -21844,12 +21844,12 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 77; if ((active12 & 0x90001000000L) != 0L) return 74; - if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x4e57fce7efffL) != 0L) + if ((active0 & 0xfffc000000000L) != 0L || (active2 & 0xffffffffffffffc0L) != 0L || (active3 & 0xff8001ffffffffffL) != 0L || (active4 & 0xfffff0ffffffffffL) != 0L || (active5 & 0xfffffff000000003L) != 0L || (active6 & 0xffffffffffffffffL) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffefffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffc000001ffffffL) != 0L || (active11 & 0x7395ff27efffL) != 0L) { jjmatchedKind = 820; return 78; } - if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0x31a803180000L) != 0L || (active12 & 0x200000000L) != 0L) + if ((active0 & 0xfff0003ffffffff8L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fL) != 0L || (active3 & 0x7ffe0000000000L) != 0L || (active4 & 0xf0000000000L) != 0L || (active5 & 0xffffffffcL) != 0L || (active8 & 0x100000L) != 0L || (active11 & 0xc6a00d80000L) != 0L || (active12 & 0x200000000L) != 0L) return 78; if ((active12 & 0x600000L) != 0L) return 11; @@ -21859,9 +21859,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 1: if ((active12 & 0x90000000000L) != 0L) return 72; - if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x4102a0110000L) != 0L) + if ((active0 & 0x8000ffe000000L) != 0L || (active3 & 0x1800000000000L) != 0L || (active4 & 0x100000001ffffff0L) != 0L || (active5 & 0x8007c00000000000L) != 0L || (active6 & 0x3e39L) != 0L || (active10 & 0x3L) != 0L || (active11 & 0x1040a8110000L) != 0L) return 78; - if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x3efd5feeffffL) != 0L) + if ((active0 & 0xffe7fff001fffff0L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0xffffffffffffffffL) != 0L || (active3 & 0xfffe7dffffffffffL) != 0L || (active4 & 0xeffffeffe000000fL) != 0L || (active5 & 0x7ff83ffffffffffbL) != 0L || (active6 & 0xffffffffffffc1c6L) != 0L || (active7 & 0xffffffffffffffffL) != 0L || (active8 & 0xffffffffffffffffL) != 0L || (active9 & 0xffffffffffffffffL) != 0L || (active10 & 0xfffffffffffffffcL) != 0L || (active11 & 0x6fbf57eeffffL) != 0L) { if (jjmatchedPos != 1) { @@ -21872,7 +21872,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 2: - if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x57fffffeefffL) != 0L) + if ((active0 & 0xffe7bfdef5e98c80L) != 0L || (active1 & 0xffffffffffffffffL) != 0L || (active2 & 0x3fe5fffffe10ffffL) != 0L || (active3 & 0xfbff5dff0fff3ffcL) != 0L || (active4 & 0xefffd0fffd03ffefL) != 0L || (active5 & 0x7ffbafffc07ff3f3L) != 0L || (active6 & 0xfffee03fffbc7de5L) != 0L || (active7 & 0xfff87ffffffff1ffL) != 0L || (active8 & 0x1ffe3ffffL) != 0L || (active9 & 0xfffffeffffc00000L) != 0L || (active10 & 0xfffffffffffffffeL) != 0L || (active11 & 0x75fffffeefffL) != 0L) { if (jjmatchedPos != 2) { @@ -21881,11 +21881,11 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return 78; } - if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0x280000001000L) != 0L) + if ((active0 & 0x402008167370L) != 0L || (active2 & 0xc01a000001ef0000L) != 0L || (active3 & 0x4002000f000c003L) != 0L || (active4 & 0x2e0000fc0000L) != 0L || (active5 & 0x410003f800c08L) != 0L || (active6 & 0x11fc000438012L) != 0L || (active7 & 0x7800000000e00L) != 0L || (active8 & 0xfffffffe001c0000L) != 0L || (active9 & 0x100003fffffL) != 0L || (active11 & 0xa0000001000L) != 0L) return 78; return -1; case 3: - if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7fe7fbfe0c38L) != 0L) + if ((active0 & 0x33853fdef1e9ece0L) != 0L || (active1 & 0xffdf3fffffffb803L) != 0L || (active2 & 0x35c5fc3fffd6003fL) != 0L || (active3 & 0xe1fe5d97efffa7ffL) != 0L || (active4 & 0xe9c4dc001d7bffefL) != 0L || (active5 & 0x7e1b0fcdf77ffbf3L) != 0L || (active6 & 0xfbfe7fa7ff837d81L) != 0L || (active7 & 0xfffb7efffffffd0fL) != 0L || (active8 & 0xfffffffdf4d3fd7fL) != 0L || (active9 & 0x800bfeffffbfffffL) != 0L || (active10 & 0x5ffda0fffef1fffeL) != 0L || (active11 & 0x7ff9fefe0c38L) != 0L) { if (jjmatchedPos != 3) { @@ -21903,7 +21903,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return 80; } - if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x180400e3c7L) != 0L) + if ((active0 & 0xcc62800004000000L) != 0L || (active1 & 0x20c000000047fcL) != 0L || (active2 & 0xa2003c00008ffc0L) != 0L || (active3 & 0x1a01006800001800L) != 0L || (active4 & 0x63b00ffe0800000L) != 0L || (active5 & 0x1e0a03200000000L) != 0L || (active6 & 0x4008018003c0064L) != 0L || (active7 & 0x40100000000f0L) != 0L || (active8 & 0xb280280L) != 0L || (active9 & 0x7ff4000000400000L) != 0L || (active10 & 0xa0025f00010e0000L) != 0L || (active11 & 0x60100e3c7L) != 0L) return 78; return -1; case 4: @@ -21916,9 +21916,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return 80; } - if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x430028204809L) != 0L) + if ((active0 & 0x38001e8cc00L) != 0L || (active1 & 0x11000000028802L) != 0L || (active2 & 0x1000001800000020L) != 0L || (active3 & 0x907e000107d80054L) != 0L || (active4 & 0xe880900000003800L) != 0L || (active5 & 0x1100629800083f2L) != 0L || (active6 & 0x1010200000010c00L) != 0L || (active7 & 0xe40000c002000048L) != 0L || (active8 & 0x20100001L) != 0L || (active9 & 0x1c00103800000L) != 0L || (active10 & 0x1da0a060001000L) != 0L || (active11 & 0x10c00a204809L) != 0L) return 78; - if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x3ce7d7de05b4L) != 0L) + if ((active0 & 0xb3c53c5ef00120e0L) != 0L || (active1 & 0xffcebffffffd37f9L) != 0L || (active2 & 0x25c5ffa7ffd6fe9fL) != 0L || (active3 & 0x61805d96e827b7abL) != 0L || (active4 & 0x5564cff1d7bc7efL) != 0L || (active5 & 0x7ecb09c4777f7801L) != 0L || (active6 & 0xebee5fa7ffba7181L) != 0L || (active7 & 0x1bfb7e3ffdfffd07L) != 0L || (active8 & 0xfffffffdd4c3fd7eL) != 0L || (active9 & 0xffca3efefc3fffffL) != 0L || (active10 & 0x5fe01e5f9ef5effeL) != 0L || (active11 & 0x6f39f5de05b4L) != 0L) { if (jjmatchedPos != 4) { @@ -21940,7 +21940,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } if ((active0 & 0x403042000100a0L) != 0L || (active1 & 0x8000033000000L) != 0L || (active2 & 0x50003e0400018L) != 0L || (active3 & 0x40c04110202121a8L) != 0L || (active4 & 0x40000004008008L) != 0L || (active5 & 0x4a80000163084000L) != 0L || (active6 & 0x8000080100024181L) != 0L || (active7 & 0x1a00043fe0000000L) != 0L || (active8 & 0x1080c11eL) != 0L || (active9 & 0x3a0824000000L) != 0L || (active10 & 0x8005880800000L) != 0L || (active11 & 0x1000a0L) != 0L) return 78; - if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x3ce7dfee0514L) != 0L) + if ((active0 & 0xb3850f1cf1c02040L) != 0L || (active1 & 0xffc6bfffccfd37f9L) != 0L || (active2 & 0x25c0ffa41f96fe87L) != 0L || (active3 & 0x21341c86c9069603L) != 0L || (active4 & 0xc5164cff197b47e7L) != 0L || (active5 & 0x344b09c414773be1L) != 0L || (active6 & 0x6bee57a6ffb83800L) != 0L || (active7 & 0xc1fb7a001dfffd07L) != 0L || (active8 & 0xfffffffdc4433c61L) != 0L || (active9 & 0xffcb84f6da3fffffL) != 0L || (active10 & 0x5ff01e071e75effeL) != 0L || (active11 & 0x6f39f7ee0514L) != 0L) { if (jjmatchedPos != 5) { @@ -21951,7 +21951,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 6: - if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x2426dffa0014L) != 0L) + if ((active0 & 0x80071cf1c02040L) != 0L || (active1 & 0x469ff1ee7937f8L) != 0L || (active2 & 0x2000ff841816fe90L) != 0L || (active3 & 0x2130188609020503L) != 0L || (active4 & 0xc4024cff107341c7L) != 0L || (active5 & 0x304b00c414770b80L) != 0L || (active6 & 0x62ec0004bfa80800L) != 0L || (active7 & 0xd1f3020f90befd00L) != 0L || (active8 & 0xffffff7dc400bc41L) != 0L || (active9 & 0x7fcbb4f6da3fffffL) != 0L || (active10 & 0x40d01e001c340ffeL) != 0L || (active11 & 0x6909b7fa0014L) != 0L) { if (jjmatchedPos != 6) { @@ -21969,11 +21969,11 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return 80; } - if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x18c100040500L) != 0L) + if ((active0 & 0xb305080000000000L) != 0L || (active1 & 0xff80200e00840001L) != 0L || (active2 & 0x5c00020c7800007L) != 0L || (active3 & 0x40400c0049200L) != 0L || (active4 & 0x114000009080620L) != 0L || (active5 & 0x400090002003061L) != 0L || (active6 & 0x90257a240103100L) != 0L || (active7 & 0x878100d410007L) != 0L || (active8 & 0x8000430030L) != 0L || (active9 & 0x8000000000000000L) != 0L || (active10 & 0x1f2000070241e000L) != 0L || (active11 & 0x63040040500L) != 0L) return 78; return -1; case 7: - if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x24229fb80010L) != 0L) + if ((active0 & 0x2080071cf1c00000L) != 0L || (active1 & 0xff4683fdee7837f8L) != 0L || (active2 & 0x1802f0408160617L) != 0L || (active3 & 0x110080609000503L) != 0L || (active4 & 0xc40204ff103245c7L) != 0L || (active5 & 0x300b004000770380L) != 0L || (active6 & 0x60c00704bfa02000L) != 0L || (active7 & 0xd173700f8082fd00L) != 0L || (active8 & 0xffffe2740002ac01L) != 0L || (active9 & 0x7fc3b476da3ffe5fL) != 0L || (active10 & 0x50801e001c05cffaL) != 0L || (active11 & 0x4908a7f80010L) != 0L) { if (jjmatchedPos != 7) { @@ -21982,13 +21982,13 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return 78; } - if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x440420004L) != 0L) + if ((active0 & 0x200000000002040L) != 0L || (active1 & 0x1c0000010000L) != 0L || (active2 & 0x2000d0801400f880L) != 0L || (active3 & 0x2020108000020000L) != 0L || (active4 & 0x480000410000L) != 0L || (active5 & 0x40008414002800L) != 0L || (active6 & 0x22c000000080800L) != 0L || (active7 & 0x800200103c0004L) != 0L || (active8 & 0x1d09c4001040L) != 0L || (active9 & 0x80080000001a0L) != 0L || (active10 & 0x50000000300004L) != 0L || (active11 & 0x200110020004L) != 0L) return 78; if ((active2 & 0x8000000000000000L) != 0L) return 80; return -1; case 8: - if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x24208fa80010L) != 0L) + if ((active0 & 0x20800310d1800000L) != 0L || (active1 & 0xff048bfc0e003008L) != 0L || (active2 & 0x1802f040810f417L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x40204ff00024004L) != 0L || (active5 & 0x3000004000770380L) != 0L || (active6 & 0x2008070400202000L) != 0L || (active7 & 0xd06270078082cc00L) != 0L || (active8 & 0xffff62758002a001L) != 0L || (active9 & 0x6081b016583fff59L) != 0L || (active10 & 0x10001e001805c87aL) != 0L || (active11 & 0x490823e80010L) != 0L) { if (jjmatchedPos != 8) { @@ -21997,13 +21997,13 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return 78; } - if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x210100000L) != 0L) + if ((active0 & 0x40c20400000L) != 0L || (active1 & 0x420001e07807f0L) != 0L || (active2 & 0x60200L) != 0L || (active3 & 0x100080408000501L) != 0L || (active4 & 0xc0000000103005c3L) != 0L || (active5 & 0xb000000000000L) != 0L || (active6 & 0x40c00000bf800000L) != 0L || (active7 & 0x111000800003100L) != 0L || (active8 & 0x800000000c00L) != 0L || (active9 & 0x1f42046082000006L) != 0L || (active10 & 0x4080000004000780L) != 0L || (active11 & 0x84100000L) != 0L) return 78; return -1; case 9: - if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x4200a800000L) != 0L) + if ((active0 & 0x8d0000000L) != 0L || (active1 & 0x401fc00001400L) != 0L || (active2 & 0x220408100400L) != 0L || (active4 & 0x40204e300000000L) != 0L || (active5 & 0x2004000400000L) != 0L || (active6 & 0x2000000000202000L) != 0L || (active7 & 0x8002000000824400L) != 0L || (active8 & 0x407000000000L) != 0L || (active9 & 0x80801048000000L) != 0L || (active10 & 0x1000000000040100L) != 0L || (active11 & 0x410802800000L) != 0L) return 78; - if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x200085280010L) != 0L) + if ((active0 & 0x2080031001800000L) != 0L || (active1 & 0xff008a018e7023e8L) != 0L || (active2 & 0x1800d000000f017L) != 0L || (active3 & 0x10000201000002L) != 0L || (active4 & 0x8000001c00224006L) != 0L || (active5 & 0x3000000000370380L) != 0L || (active6 & 0x807043f000000L) != 0L || (active7 & 0x5060700780008800L) != 0L || (active8 & 0xffff22058002a001L) != 0L || (active9 & 0x7e013046103fff59L) != 0L || (active10 & 0x1e001801cc7aL) != 0L || (active11 & 0x80021680010L) != 0L) { if (jjmatchedPos != 9) { @@ -22014,9 +22014,9 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 10: - if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x85000000L) != 0L) + if ((active0 & 0x80010000000000L) != 0L || (active1 & 0x2000030082000008L) != 0L || (active2 & 0x90000000010L) != 0L || (active3 & 0x201000000L) != 0L || (active4 & 0x1c00004002L) != 0L || (active5 & 0x300000L) != 0L || (active6 & 0x400000000L) != 0L || (active7 & 0x1020000000000800L) != 0L || (active8 & 0x1220000008000L) != 0L || (active9 & 0x1300410200608L) != 0L || (active10 & 0x8000878L) != 0L || (active11 & 0x21400000L) != 0L) return 78; - if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x200000280010L) != 0L) + if ((active0 & 0x2000021001800000L) != 0L || (active1 & 0xdf0088e90c7023e0L) != 0L || (active2 & 0x18004000000f007L) != 0L || (active3 & 0x10000000000002L) != 0L || (active4 & 0x8000000200220004L) != 0L || (active5 & 0x3000000000070380L) != 0L || (active6 & 0x807003f000000L) != 0L || (active7 & 0x4040700780008000L) != 0L || (active8 & 0xfffe000580022001L) != 0L || (active9 & 0x7e000042001ff951L) != 0L || (active10 & 0x1e001001c402L) != 0L || (active11 & 0x80000280010L) != 0L) { if (jjmatchedPos != 10) { @@ -22027,7 +22027,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 11: - if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x21001800000L) != 0L || (active1 & 0x450088e90c7003e0L) != 0L || (active2 & 0x18004000000f002L) != 0L || (active3 & 0x2L) != 0L || (active4 & 0x8000001200000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000080000000L) != 0L || (active9 & 0x7c0000420013e901L) != 0L || (active10 & 0x1e0010014472L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 11) { @@ -22040,7 +22040,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 12: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x450008e90c7003e0L) != 0L || (active2 & 0x18000000000e003L) != 0L || (active4 & 0x8000001000000004L) != 0L || (active5 & 0x1000000000030280L) != 0L || (active6 & 0x803003f000000L) != 0L || (active7 & 0x4000500780008000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5800004200036801L) != 0L || (active10 & 0x1e0000014472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 12; @@ -22050,7 +22050,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 13: - if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x20001800000L) != 0L || (active1 & 0x50008e90c5003e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020280L) != 0L || (active6 & 0x3003c000000L) != 0L || (active7 & 0x100780000000L) != 0L || (active8 & 0xfffe000000000000L) != 0L || (active9 & 0x5000004200012801L) != 0L || (active10 & 0x1e0000004472L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 13; @@ -22062,7 +22062,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 14: if ((active0 & 0x20000000000L) != 0L || (active1 & 0x100084800000200L) != 0L || (active5 & 0x280L) != 0L || (active6 & 0x30000000000L) != 0L || (active7 & 0x100100000000L) != 0L || (active8 & 0x8000000000000000L) != 0L || (active9 & 0x5000004200010000L) != 0L || (active10 & 0x4402L) != 0L) return 78; - if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1800000L) != 0L || (active1 & 0x40000a10c5001e0L) != 0L || (active2 & 0x180000000006003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7ffe000000000000L) != 0L || (active9 & 0x2801L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 14; @@ -22070,7 +22070,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 15: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x40000a0001001c0L) != 0L || (active2 & 0x6003L) != 0L || (active5 & 0x1000000000020000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x680000000L) != 0L || (active8 & 0x7fe0000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 15) { @@ -22083,7 +22083,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 16: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x4000020080001c0L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0xf1c000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 16) { @@ -22098,7 +22098,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 17: if ((active1 & 0x2000000080L) != 0L || (active8 & 0x400000000000000L) != 0L) return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x2bdc000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x1e0000000070L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 17; @@ -22108,7 +22108,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 18: if ((active8 & 0xb00000000000000L) != 0L || (active9 & 0x2800L) != 0L || (active10 & 0x10L) != 0L) return 78; - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000140L) != 0L || (active2 & 0x100000000006002L) != 0L || (active5 & 0x20000L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x280000000L) != 0L || (active8 & 0x20dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { if (jjmatchedPos != 18) { @@ -22119,7 +22119,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 19: - if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active0 & 0x1000000L) != 0L || (active1 & 0x400000008000040L) != 0L || (active2 & 0x100000000006002L) != 0L || (active6 & 0x3c000000L) != 0L || (active7 & 0x200000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 19; @@ -22131,7 +22131,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 20: if ((active0 & 0x1000000L) != 0L || (active1 & 0x8000040L) != 0L || (active2 & 0x100000000000000L) != 0L || (active7 & 0x200000000L) != 0L) return 78; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x6002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x1e0000000060L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 20; @@ -22139,7 +22139,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 21: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x3c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 21; @@ -22149,7 +22149,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 22: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22dc000000000000L) != 0L || (active10 & 0x120000000040L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 22; @@ -22159,7 +22159,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 23: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0x2c000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active10 & 0x20000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 23; @@ -22171,7 +22171,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 24: if ((active6 & 0x20000000L) != 0L || (active10 & 0x20000000000L) != 0L) return 78; - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x200000200000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active6 & 0xc000000L) != 0L || (active8 & 0x22d8000000000000L) != 0L || (active11 & 0x80000200000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 24; @@ -22179,7 +22179,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 25: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x4002L) != 0L || (active8 & 0x2c0000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 25; @@ -22189,7 +22189,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 26: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 26; @@ -22199,7 +22199,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 27: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active8 & 0x200000000000000L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 27; @@ -22207,7 +22207,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 28: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 28; @@ -22217,7 +22217,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 29: - if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active1 & 0x400000000000000L) != 0L || (active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 29; @@ -22227,7 +22227,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, case 30: if ((active1 & 0x400000000000000L) != 0L) return 78; - if ((active2 & 0x2L) != 0L || (active11 & 0x200000000000L) != 0L) + if ((active2 & 0x2L) != 0L || (active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 30; @@ -22235,7 +22235,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, } return -1; case 31: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 31; @@ -22245,7 +22245,7 @@ private final int jjStopStringLiteralDfa_4(int pos, long active0, long active1, return 78; return -1; case 32: - if ((active11 & 0x200000000000L) != 0L) + if ((active11 & 0x80000000000L) != 0L) { jjmatchedKind = 820; jjmatchedPos = 32; @@ -22327,20 +22327,20 @@ private final int jjMoveStringLiteralDfa0_4() case 65: case 97: jjmatchedKind = 3; - return jjMoveStringLiteralDfa1_4(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000180000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x3ffffffff0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x44000180000L, 0x0L); case 66: case 98: return jjMoveStringLiteralDfa1_4(0xfffc000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000L, 0x0L); case 67: case 99: jjmatchedKind = 52; - return jjMoveStringLiteralDfa1_4(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa003000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0xffe0000000000000L, 0xffffffffffffffffL, 0x3fL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x2800c00000L, 0x0L); case 68: case 100: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x1ffffffffffffc0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000000L, 0x0L); case 69: case 101: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x10000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0xfe00000000000000L, 0x7ffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x4000000L, 0x0L); case 70: case 102: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x1fffff80000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); @@ -22353,51 +22353,51 @@ private final int jjMoveStringLiteralDfa0_4() return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x1f80000000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 73: case 105: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xa0010000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0xe000000000000000L, 0x1fffffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x28010000L, 0x0L); case 74: case 106: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xffe0000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 75: case 107: jjmatchedKind = 296; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x800000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xe0000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); case 76: case 108: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x100000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0xfffff00000000000L, 0x3L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x40000000L, 0x0L); case 77: case 109: jjmatchedKind = 322; - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x200000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffff8L, 0x0L, 0x0L, 0x100000L, 0x0L, 0x0L, 0x80000000000L, 0x0L); case 78: case 110: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x200000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7fffff000000000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x80000000L, 0x0L); case 79: case 111: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xf800000000000000L, 0x3fffffL, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L); case 80: case 112: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x440000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffc00000L, 0x0L, 0x0L, 0x0L, 0x0L, 0x110000000L, 0x0L); case 81: case 113: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x7L, 0x0L, 0x0L, 0x0L, 0x8000000000L, 0x0L); case 82: case 114: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x80000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffffffffff8L, 0x0L, 0x0L, 0x0L, 0x20000000000L, 0x0L); case 83: case 115: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x45000000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xfff0000000000000L, 0xffffffffffefffffL, 0x3fffffffffffL, 0x0L, 0x11400000000L, 0x0L); case 84: case 116: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x400000020000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xffffc00000000000L, 0x1ffffffL, 0x100000020000L, 0x0L); case 85: case 117: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3fffffe000000L, 0x0L, 0x0L); case 86: case 118: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x8000000L, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x3ffc000000000000L, 0x2000000L, 0x0L); case 87: case 119: - return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0xe00fffL, 0x0L); + return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0xc000000000000000L, 0x600000200fffL, 0x0L); case 88: case 120: return jjMoveStringLiteralDfa1_4(0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x0L, 0x1000L, 0x0L); @@ -22464,19 +22464,19 @@ else if ((active12 & 0x8000000L) != 0L) break; case 65: case 97: - return jjMoveStringLiteralDfa2_4(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x20044f040000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x3fe0000000000000L, active1, 0L, active2, 0x2000000000fffc0L, active3, 0x80000000080000L, active4, 0x7f00020000000L, active5, 0x1f000000ff8L, active6, 0x3fffc00000L, active7, 0x1f0000000000018L, active8, 0L, active9, 0x1c00000000000L, active10, 0x7fc000000000000L, active11, 0x80113c40000L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa2_4(active0, 0x70L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x800000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 67: case 99: - return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x1000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x80L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x7000060000000000L, active6, 0L, active7, 0xfe00000000000000L, active8, 0x3L, active9, 0L, active10, 0L, active11, 0x400000000L, active12, 0L); case 68: case 100: return jjMoveStringLiteralDfa2_4(active0, 0x700L, active1, 0L, active2, 0L, active3, 0x2000000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); case 69: case 101: - return jjMoveStringLiteralDfa2_4(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x84000026001L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xc0000fc000000000L, active1, 0x1L, active2, 0x7fffff00000L, active3, 0x3c0000100000L, active4, 0xf80e0000000000L, active5, 0x3800000ff000L, active6, 0x1fc000000000L, active7, 0x3fffffffe0L, active8, 0xffffcL, active9, 0x2000000000000L, active10, 0xd800000002000000L, active11, 0x21000026001L, active12, 0L); case 70: case 102: if ((active5 & 0x8000000000000000L) != 0L) @@ -22495,7 +22495,7 @@ else if ((active11 & 0x10000L) != 0L) return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0xffeL, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x200000L, active9, 0xc000000000000L, active10, 0L, active11, 0xeL, active12, 0L); case 73: case 105: - return jjMoveStringLiteralDfa2_4(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x8000001f0L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x700000000000L, active1, 0L, active2, 0xf80000000000L, active3, 0x100000001e00000L, active4, 0xf00000000000000L, active5, 0x7f00000L, active6, 0x200000000000L, active7, 0x4000000000L, active8, 0x1d00000L, active9, 0xfff0000000000000L, active10, 0x2000000000000000L, active11, 0x2000001f0L, active12, 0L); case 75: case 107: return jjMoveStringLiteralDfa2_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22519,7 +22519,7 @@ else if ((active6 & 0x8L) != 0L) jjmatchedKind = 387; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x1000b0000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x60000L, active1, 0L, active2, 0xe000000000000000L, active3, 0x3L, active4, 0x1ffffe0L, active5, 0L, active6, 0x30L, active7, 0L, active8, 0L, active9, 0L, active10, 0xffc000000L, active11, 0x4002c000000L, active12, 0L); case 79: case 111: if ((active3 & 0x800000000000L) != 0L) @@ -22537,7 +22537,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 640; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x40a300008200L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x3000000000000L, active1, 0x7ffffffff0000L, active2, 0x1f000000000000L, active3, 0x1e010001f8000000L, active4, 0xe000000040000000L, active5, 0x78003f8000003L, active6, 0x1e000000000000L, active7, 0x7ff0000000000L, active8, 0x18000000L, active9, 0L, active10, 0x2L, active11, 0x1028c0008200L, active12, 0L); case 80: case 112: return jjMoveStringLiteralDfa2_4(active0, 0x80000L, active1, 0L, active2, 0L, active3, 0x4L, active4, 0L, active5, 0L, active6, 0x1c0L, active7, 0L, active8, 0x1e0000000L, active9, 0L, active10, 0x7000000000L, active11, 0L, active12, 0L); @@ -22551,7 +22551,7 @@ else if ((active10 & 0x1L) != 0L) jjmatchedKind = 393; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0xe00c00L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x4000001f00000L, active1, 0x18000000000000L, active2, 0x20000000000000L, active3, 0x7e003e00000010L, active4, 0L, active5, 0L, active6, 0x7fe0000000003c00L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3ffffcL, active11, 0x600000200c00L, active12, 0L); case 83: case 115: if ((active0 & 0x2000000L) != 0L) @@ -22564,7 +22564,7 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 281; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xfc000000L, active1, 0L, active2, 0L, active3, 0x20L, active4, 0xff9c000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x3f8000000000L, active11, 0x4000000000L, active12, 0L); case 84: case 116: if ((active0 & 0x100000000L) != 0L) @@ -22572,10 +22572,10 @@ else if ((active4 & 0x2000000L) != 0L) jjmatchedKind = 32; jjmatchedPos = 1; } - return jjMoveStringLiteralDfa2_4(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x40000100000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0xe00000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x18000000000000L, active6, 0x4000L, active7, 0L, active8, 0L, active9, 0x1ff800000L, active10, 0x1c00000000000L, active11, 0x10000100000L, active12, 0L); case 85: case 117: - return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x20000000000L, active12, 0L); + return jjMoveStringLiteralDfa2_4(active0, 0x1000000000L, active1, 0xffe0000000000000L, active2, 0x1fL, active3, 0x1c000000000L, active4, 0L, active5, 0x7e0000c00000000L, active6, 0x8000000000038000L, active7, 0x8000000000007L, active8, 0L, active9, 0x3fe00000000L, active10, 0x2000000c00000L, active11, 0x8000000000L, active12, 0L); case 86: case 118: return jjMoveStringLiteralDfa2_4(active0, 0x2000000000L, active1, 0L, active2, 0L, active3, 0x40L, active4, 0L, active5, 0L, active6, 0x3c0000L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22615,7 +22615,7 @@ private final int jjMoveStringLiteralDfa2_4(long old0, long active0, long old1, case 97: if ((active0 & 0x100L) != 0L) return jjStartNfaWithStates_4(2, 8, 78); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x141000c06400L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x137feL, active2, 0x80000100000L, active3, 0x6000600000000L, active4, 0x18000000000000L, active5, 0x3000L, active6, 0xc00000000000L, active7, 0x6000000000000e7L, active8, 0x24000004L, active9, 0x7800000L, active10, 0x8000000ffcL, active11, 0x650400006400L, active12, 0L); case 66: case 98: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x20000000020000L, active2, 0L, active3, 0L, active4, 0x100100000000000L, active5, 0L, active6, 0x8000000000000000L, active7, 0L, active8, 0L, active9, 0x1c07e00000000L, active10, 0x4000000L, active11, 0L, active12, 0L); @@ -22628,7 +22628,7 @@ else if ((active2 & 0x200000L) != 0L) jjmatchedKind = 149; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x13040000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x2200000001c00020L, active3, 0x7a0L, active4, 0xe0000000000000e0L, active5, 0x1000000000100001L, active6, 0L, active7, 0x100L, active8, 0x78L, active9, 0x8000000000L, active10, 0x18000000L, active11, 0x4c40000L, active12, 0L); case 68: case 100: if ((active0 & 0x200L) != 0L) @@ -22649,14 +22649,14 @@ else if ((active6 & 0x2L) != 0L) return jjStartNfaWithStates_4(2, 385, 78); else if ((active6 & 0x400000L) != 0L) return jjStartNfaWithStates_4(2, 406, 78); - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x20000010L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0x8000000000000000L, active3, 0x3L, active4, 0x100L, active5, 0x30000000L, active6, 0x3c00L, active7, 0L, active8, 0L, active9, 0x18000000L, active10, 0x4000001020000000L, active11, 0x8000010L, active12, 0L); case 69: case 101: if ((active0 & 0x100000L) != 0L) return jjStartNfaWithStates_4(2, 20, 78); else if ((active6 & 0x10L) != 0L) return jjStartNfaWithStates_4(2, 388, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x2000000000fL, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x4000010000000L, active1, 0x8000000000800L, active2, 0x400000000000000L, active3, 0x2100000800001840L, active4, 0L, active5, 0L, active6, 0x7e00000003c0040L, active7, 0L, active8, 0x1c0000080L, active9, 0x14000000000000L, active10, 0xa0001f0000401000L, active11, 0x800000000fL, active12, 0L); case 70: case 102: if ((active7 & 0x200L) != 0L) @@ -22664,14 +22664,14 @@ else if ((active6 & 0x10L) != 0L) jjmatchedKind = 457; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x80000080000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x4000000000L, active1, 0L, active2, 0xfe000000L, active3, 0L, active4, 0x20000000000000L, active5, 0L, active6, 0x1L, active7, 0x70000000000c00L, active8, 0L, active9, 0L, active10, 0x1c00000000000L, active11, 0x20000080000L, active12, 0L); case 71: case 103: if ((active0 & 0x2000000000L) != 0L) return jjStartNfaWithStates_4(2, 37, 78); else if ((active4 & 0x200000000000L) != 0L) return jjStartNfaWithStates_4(2, 301, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x138000000000L, active1, 0L, active2, 0x100000000L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40001ff000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000L, active12, 0L); case 72: case 104: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x8020000000000L, active6, 0x4000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22700,12 +22700,12 @@ else if ((active8 & 0x200000000L) != 0L) } else if ((active11 & 0x1000L) != 0L) return jjStartNfaWithStates_4(2, 716, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0xa88000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x60000000006000L, active1, 0x3fc0000L, active2, 0x200000000L, active3, 0x200004008280000L, active4, 0L, active5, 0x1e0040400600000L, active6, 0x20L, active7, 0x70000600000L, active8, 0xfffffffc00000300L, active9, 0x3fffffL, active10, 0x1c000000000000L, active11, 0x2a2000000L, active12, 0L); case 77: case 109: if ((active9 & 0x10000000000L) != 0L) return jjStartNfaWithStates_4(2, 616, 78); - return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x8000020000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x400L, active1, 0x4000003c000000L, active2, 0x1000000000000L, active3, 0L, active4, 0x800000000000003L, active5, 0x600003800004000L, active6, 0L, active7, 0L, active8, 0x8c00000L, active9, 0x7fe2040000000000L, active10, 0x800000L, active11, 0x2000020000L, active12, 0L); case 78: case 110: if ((active5 & 0x800000L) != 0L) @@ -22713,7 +22713,7 @@ else if ((active11 & 0x1000L) != 0L) jjmatchedKind = 343; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x2000008020L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x200000000000L, active1, 0x3fffc0000001L, active2, 0x1c0000400000000L, active3, 0x40000c8000400000L, active4, 0x40400000000800L, active5, 0x8041c7000000L, active6, 0L, active7, 0x8000000000018L, active8, 0x100400L, active9, 0x8000020000000000L, active10, 0xc00000000L, active11, 0x800008020L, active12, 0L); case 79: case 111: return jjMoveStringLiteralDfa3_4(active0, 0x1800204000000L, active1, 0x1000000000c000L, active2, 0x20000000000000L, active3, 0x78502006000004L, active4, 0xff9c001000L, active5, 0L, active6, 0x4000000000000000L, active7, 0xe000000000000000L, active8, 0x200001L, active9, 0L, active10, 0L, active11, 0x100000L, active12, 0L); @@ -22744,7 +22744,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 422; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x4040000200L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x80040001e00000L, active1, 0xff80c00000000000L, active2, 0x300000001fL, active3, 0xe1800010L, active4, 0x800000000000L, active5, 0x3000200008000L, active6, 0x21f80ff800000L, active7, 0L, active8, 0xe002L, active9, 0xe0400000L, active10, 0x1fe0000000000000L, active11, 0x1010000200L, active12, 0L); case 83: case 115: if ((active0 & 0x10L) != 0L) @@ -22752,7 +22752,7 @@ else if ((active6 & 0x4000000000L) != 0L) jjmatchedKind = 4; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x400000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0xf00000060000060L, active1, 0L, active2, 0x800f3c000000000L, active3, 0x10000000000L, active4, 0x300000003c000L, active5, 0x80000070000L, active6, 0xc000f00000000L, active7, 0x3e000000L, active8, 0x30000L, active9, 0x380000000000L, active10, 0x4002000000L, active11, 0x100000000L, active12, 0L); case 84: case 116: if ((active0 & 0x400000000000L) != 0L) @@ -22778,7 +22778,7 @@ else if ((active8 & 0x40000L) != 0L) jjmatchedKind = 530; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x4000040001c0L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x3002081c00008880L, active1, 0L, active2, 0x4000000ffc0L, active3, 0x1000000170000L, active4, 0x4000000f80000L, active5, 0x60000180000803f0L, active6, 0x3000030180L, active7, 0x80001fc0000000L, active8, 0x80000L, active9, 0L, active10, 0L, active11, 0x1000010001c0L, active12, 0L); case 85: case 117: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0x1000000000000L, active2, 0x4000000000000L, active3, 0x1800000100000008L, active4, 0L, active5, 0L, active6, 0L, active7, 0x780000000000L, active8, 0x10000000L, active9, 0x8000000000000L, active10, 0x180000L, active11, 0L, active12, 0L); @@ -22804,7 +22804,7 @@ else if ((active7 & 0x800000000000L) != 0L) jjmatchedKind = 330; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x200000000800L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L, active12, 0L); case 89: case 121: if ((active0 & 0x40000L) != 0L) @@ -22821,7 +22821,7 @@ else if ((active4 & 0x20000000000L) != 0L) jjmatchedKind = 297; jjmatchedPos = 2; } - return jjMoveStringLiteralDfa3_4(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x10000000000L, active12, 0L); + return jjMoveStringLiteralDfa3_4(active0, 0x80000000L, active1, 0L, active2, 0xe0000L, active3, 0L, active4, 0xc0000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100000000L, active10, 0x200000L, active11, 0x4000000000L, active12, 0L); case 90: case 122: return jjMoveStringLiteralDfa3_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000L, active9, 0L, active10, 0L, active11, 0L, active12, 0L); @@ -22852,7 +22852,7 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, return jjStartNfaWithStates_4(3, 686, 78); break; case 95: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x3L, active4, 0xc0000000000L, active5, 0x8000000000000L, active6, 0L, active7, 0x3000000000000L, active8, 0xffffffe000000000L, active9, 0x3fffffL, active10, 0x60000000200002L, active11, 0x80000000000L); case 65: case 97: if ((active2 & 0x40L) != 0L) @@ -22862,7 +22862,7 @@ private final int jjMoveStringLiteralDfa3_4(long old0, long active0, long old1, } else if ((active4 & 0x20000000L) != 0L) return jjStartNfaWithStates_4(3, 285, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x400044000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x3004200001e10000L, active1, 0xe000000000000L, active2, 0x1c1100006400080L, active3, 0x2400028L, active4, 0xe000000000000000L, active5, 0x20000000001L, active6, 0x3f800000L, active7, 0x200000L, active8, 0x800L, active9, 0L, active10, 0x1400001000L, active11, 0x100011000000L); case 66: case 98: if ((active0 & 0x800000000000L) != 0L) @@ -22946,7 +22946,7 @@ else if ((active10 & 0x1000000L) != 0L) return jjStartNfaWithStates_4(3, 664, 78); else if ((active11 & 0x8000L) != 0L) return jjStartNfaWithStates_4(3, 719, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x20000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x20008820L, active1, 0x40000000000000L, active2, 0x4121800fe00L, active3, 0xc0040030180L, active4, 0x48410000078c803L, active5, 0x6c00002000000002L, active6, 0x10000000014c00L, active7, 0x1970000002c00c00L, active8, 0x400000100L, active9, 0x7fc0000020000000L, active10, 0x6820000000L, active11, 0x8000000L); case 70: case 102: if ((active0 & 0x4000000L) != 0L) @@ -22956,7 +22956,7 @@ else if ((active8 & 0x200L) != 0L) break; case 71: case 103: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x100000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x80000000000L, active3, 0L, active4, 0x40c00000000000L, active5, 0x8000L, active6, 0L, active7, 0x8L, active8, 0L, active9, 0L, active10, 0x800001e000L, active11, 0x40000000L); case 72: case 104: if ((active0 & 0x2000000000000L) != 0L) @@ -22970,10 +22970,10 @@ else if ((active11 & 0x40L) != 0L) jjmatchedKind = 710; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x3000180L); + return jjMoveStringLiteralDfa4_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x80000L, active6, 0L, active7, 0x4000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0xc00180L); case 73: case 105: - return jjMoveStringLiteralDfa4_4(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x80080000L); + return jjMoveStringLiteralDfa4_4(active0, 0x138040000480L, active1, 0x2L, active2, 0x20e0800000L, active3, 0x80010000000000L, active4, 0x800000000000100L, active5, 0x8010000000L, active6, 0xc080000003180L, active7, 0L, active8, 0x402000L, active9, 0x40000000L, active10, 0x200000200000004L, active11, 0x20080000L); case 75: case 107: if ((active7 & 0x10L) != 0L) @@ -23009,9 +23009,9 @@ else if ((active5 & 0x20000000000000L) != 0L) } else if ((active7 & 0x80L) != 0L) return jjStartNfaWithStates_4(3, 455, 78); - else if ((active11 & 0x800000000L) != 0L) - return jjStartNfaWithStates_4(3, 739, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x100000000000L); + else if ((active11 & 0x200000000L) != 0L) + return jjStartNfaWithStates_4(3, 737, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x8041000000080000L, active1, 0xfd0000L, active2, 0x1100020L, active3, 0x8008600L, active4, 0x10000064L, active5, 0x1d0000000600000L, active6, 0x8000000000000000L, active7, 0x600060001000001L, active8, 0x4000000L, active9, 0x1c00100000000L, active10, 0L, active11, 0x40000000000L); case 77: case 109: if ((active3 & 0x2000000000L) != 0L) @@ -23042,23 +23042,23 @@ else if ((active11 & 0x2L) != 0L) jjmatchedKind = 705; jjmatchedPos = 3; } - else if ((active11 & 0x1000000000L) != 0L) - return jjStartNfaWithStates_4(3, 740, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x10000000004L); + else if ((active11 & 0x400000000L) != 0L) + return jjStartNfaWithStates_4(3, 738, 78); + return jjMoveStringLiteralDfa4_4(active0, 0x40010000000L, active1, 0x1000e00000000L, active2, 0L, active3, 0x2006000100000000L, active4, 0xff00000000L, active5, 0L, active6, 0L, active7, 0x8000000000000L, active8, 0L, active9, 0L, active10, 0x4000200100100ff8L, active11, 0x4000000004L); case 79: case 111: if ((active3 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(3, 240, 78); else if ((active4 & 0x800000L) != 0L) return jjStartNfaWithStates_4(3, 279, 78); - return jjMoveStringLiteralDfa4_4(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa4_4(active0, 0x4000006040L, active1, 0x20000L, active2, 0x2000000000060000L, active3, 0x4000000004000010L, active4, 0x1000008L, active5, 0x44000000000L, active6, 0x1000200000000000L, active7, 0x2000000000L, active8, 0x1aL, active9, 0L, active10, 0x5c000000L, active11, 0x80000000L); case 80: case 112: if ((active2 & 0x20000000000000L) != 0L) return jjStartNfaWithStates_4(3, 181, 78); else if ((active8 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(3, 537, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x8000c20400L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0x400000000000L, active3, 0L, active4, 0L, active5, 0x800000000L, active6, 0x100000000020000L, active7, 0xe000000004000000L, active8, 0x800001L, active9, 0x2000000000000L, active10, 0L, active11, 0x602000020400L); case 81: case 113: return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x80000000L, active11, 0L); @@ -23094,7 +23094,7 @@ else if ((active11 & 0x2000L) != 0L) jjmatchedKind = 717; jjmatchedPos = 3; } - return jjMoveStringLiteralDfa4_4(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0xa0010004008L); + return jjMoveStringLiteralDfa4_4(active0, 0xc00000000L, active1, 0xff808000000007f8L, active2, 0x100000007L, active3, 0x1100000000040040L, active4, 0x100000000000080L, active5, 0x100000L, active6, 0x380000L, active7, 0x1ff006L, active8, 0x10000004L, active9, 0x8000000800000L, active10, 0x1e0000000000L, active11, 0x28004004008L); case 83: case 115: if ((active2 & 0x80000L) != 0L) @@ -23105,7 +23105,7 @@ else if ((active8 & 0x80000L) != 0L) return jjStartNfaWithStates_4(3, 531, 78); else if ((active9 & 0x10000000000000L) != 0L) return jjStartNfaWithStates_4(3, 628, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1003f00000b000L, active2, 0x400000018L, active3, 0x1882000L, active4, 0L, active5, 0x73000L, active6, 0x200000600000001L, active7, 0L, active8, 0x800030400L, active9, 0x7800000000L, active10, 0x1800000000400000L, active11, 0x100000000L); case 84: case 116: if ((active0 & 0x800000000000000L) != 0L) @@ -23125,15 +23125,15 @@ else if ((active6 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(3, 419, 78); else if ((active9 & 0x400000L) != 0L) return jjStartNfaWithStates_4(3, 598, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x42000200810L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x1c0000000001L, active2, 0x1000800800000000L, active3, 0x80200000L, active4, 0x2000000030600L, active5, 0x80580000000L, active6, 0x20020c0000000L, active7, 0x780018000000L, active8, 0x20L, active9, 0x380007000000L, active10, 0L, active11, 0x10800200810L); case 85: case 117: - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x8000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x3000000L, active2, 0L, active3, 0x78000000000000L, active4, 0x3000L, active5, 0x1000010023000000L, active6, 0L, active7, 0x80001fe0000100L, active8, 0x101040L, active9, 0x80000000L, active10, 0x1c000000000000L, active11, 0x2000000L); case 86: case 118: if ((active6 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_4(3, 442, 78); - return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x4000000000L); + return jjMoveStringLiteralDfa4_4(active0, 0L, active1, 0x200000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x4000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0xc000L, active9, 0L, active10, 0L, active11, 0x1000000000L); case 87: case 119: if ((active8 & 0x200000L) != 0L) @@ -23171,7 +23171,7 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, return jjStartNfaWithStates_4(4, 687, 78); break; case 95: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x4c00000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x40000000000008L, active2, 0x600L, active3, 0x200000000L, active4, 0x40200ff00000000L, active5, 0L, active6, 0L, active7, 0x700000001ff000L, active8, 0L, active9, 0xc0000000000000L, active10, 0x1e0000040000L, active11, 0x600001000000L); case 65: case 97: return jjMoveStringLiteralDfa5_4(active0, 0x300000000000000L, active1, 0xc000c7c07f0L, active2, 0x400001000000L, active3, 0x100401020048000L, active4, 0x100000010030000L, active5, 0x43000044070800L, active6, 0x900000100000000L, active7, 0x200000009c00000L, active8, 0x1000002000L, active9, 0x20020000000L, active10, 0x200000002000000L, active11, 0L); @@ -23182,9 +23182,9 @@ private final int jjMoveStringLiteralDfa4_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x80L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000L, active8, 0x3e000000000L, active9, 0L, active10, 0L, active11, 0L); case 67: case 99: - if ((active11 & 0x10000000000L) != 0L) - return jjStartNfaWithStates_4(4, 744, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x200000000000L); + if ((active11 & 0x4000000000L) != 0L) + return jjStartNfaWithStates_4(4, 742, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x2000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x100L, active5, 0x800000000000000L, active6, 0L, active7, 0x1000000000000L, active8, 0xc0010000104L, active9, 0x80000000L, active10, 0x300000L, active11, 0x80000000000L); case 68: case 100: if ((active3 & 0x100000000L) != 0L) @@ -23245,7 +23245,7 @@ else if ((active11 & 0x800L) != 0L) jjmatchedKind = 715; jjmatchedPos = 4; } - return jjMoveStringLiteralDfa5_4(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x8000b200004L); + return jjMoveStringLiteralDfa5_4(active0, 0x41080000000000L, active1, 0xff80a00e00810000L, active2, 0x8400000500000007L, active3, 0x100400200000L, active4, 0x8000084L, active5, 0x200000000404000L, active6, 0x426007a000000001L, active7, 0xc000000004000000L, active8, 0xd001L, active9, 0x1bc881a000000L, active10, 0x4018000000000000L, active11, 0x20002e00004L); case 70: case 102: if ((active2 & 0x1000000000L) != 0L) @@ -23255,7 +23255,7 @@ else if ((active11 & 0x800L) != 0L) case 103: if ((active10 & 0x200000000000L) != 0L) return jjStartNfaWithStates_4(4, 685, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x200000000L); + return jjMoveStringLiteralDfa5_4(active0, 0x40000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x80000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x1e000L, active11, 0x80000000L); case 72: case 104: if ((active2 & 0x800000000L) != 0L) @@ -23277,7 +23277,7 @@ else if ((active5 & 0x80000000L) != 0L) return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000003e0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x100000000000000L, active11, 0x10L); case 73: case 105: - return jjMoveStringLiteralDfa5_4(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x46100100080L); + return jjMoveStringLiteralDfa5_4(active0, 0x8080000e00000000L, active1, 0x1001f0000000L, active2, 0x1800000000000L, active3, 0x40000000L, active4, 0x10000000000600L, active5, 0x80080400200000L, active6, 0xa0824002c0000000L, active7, 0x8780000000001L, active8, 0x3fff0001c0030420L, active9, 0x8000000004000000L, active10, 0x1c80000000000000L, active11, 0x11840100080L); case 75: case 107: if ((active1 & 0x800L) != 0L) @@ -23298,9 +23298,9 @@ else if ((active4 & 0x2000000000000000L) != 0L) jjmatchedKind = 317; jjmatchedPos = 4; } - else if ((active11 & 0x400000000000L) != 0L) - return jjStartNfaWithStates_4(4, 750, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x40020000L); + else if ((active11 & 0x100000000000L) != 0L) + return jjStartNfaWithStates_4(4, 748, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x3000000000000040L, active1, 0L, active2, 0x4100000100000L, active3, 0x8L, active4, 0xc000000000000000L, active5, 0x20000000L, active6, 0x180000L, active7, 0x20000000L, active8, 0xc000000004c00002L, active9, 0x200000001L, active10, 0x800006L, active11, 0x10020000L); case 77: case 109: return jjMoveStringLiteralDfa5_4(active0, 0x80000000L, active1, 0x3000000L, active2, 0x1c0000000800000L, active3, 0L, active4, 0x40000000000L, active5, 0L, active6, 0x3f800000L, active7, 0x1800000000000000L, active8, 0L, active9, 0L, active10, 0x408000000L, active11, 0L); @@ -23317,7 +23317,7 @@ else if ((active1 & 0x2L) != 0L) return jjStartNfaWithStates_4(4, 65, 78); else if ((active10 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(4, 670, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x80080000L); + return jjMoveStringLiteralDfa5_4(active0, 0x130000000020L, active1, 0L, active2, 0x800e0000000L, active3, 0x80000000010000L, active4, 0x4000L, active5, 0L, active6, 0x3000L, active7, 0x2000000000000L, active8, 0x18L, active9, 0x4000001eL, active10, 0x10000000L, active11, 0x20080000L); case 79: case 111: return jjMoveStringLiteralDfa5_4(active0, 0x41000000080L, active1, 0L, active2, 0x200000000018L, active3, 0x10008000000L, active4, 0x4000000L, active5, 0x8000180000L, active6, 0x80000000180L, active7, 0L, active8, 0L, active9, 0x2000000000000L, active10, 0x100000000L, active11, 0x120L); @@ -23417,7 +23417,7 @@ else if ((active10 & 0x1000L) != 0L) return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x803f000000000L, active2, 0x20000f800L, active3, 0x2004008001002000L, active4, 0x40080000000000L, active5, 0x6000000003000001L, active6, 0xc000400000000L, active7, 0x200006L, active8, 0x800000000L, active9, 0x70000fff80L, active10, 0x1000000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x8000040000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0x1L, active2, 0x6000000L, active3, 0x1600L, active4, 0x400000000060L, active5, 0x3000L, active6, 0x100000020000L, active7, 0x40000000000L, active8, 0L, active9, 0x400000000L, active10, 0x84000000L, active11, 0x2000040000L); case 86: case 118: return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0x2000000000L, active3, 0L, active4, 0L, active5, 0x8000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x300000L, active10, 0x200000000L, active11, 0L); @@ -23425,11 +23425,11 @@ else if ((active10 & 0x1000L) != 0L) case 119: if ((active0 & 0x4000L) != 0L) return jjStartNfaWithStates_4(4, 14, 78); - return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000000L); + return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000L); case 88: case 120: - if ((active11 & 0x20000000L) != 0L) - return jjStartNfaWithStates_4(4, 733, 78); + if ((active11 & 0x8000000L) != 0L) + return jjStartNfaWithStates_4(4, 731, 78); return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x400000000L, active9, 0L, active10, 0L, active11, 0L); case 89: case 121: @@ -23444,9 +23444,9 @@ else if ((active2 & 0x1000000000000000L) != 0L) return jjStartNfaWithStates_4(4, 188, 78); else if ((active3 & 0x40L) != 0L) return jjStartNfaWithStates_4(4, 198, 78); - else if ((active11 & 0x20000000000L) != 0L) - return jjStartNfaWithStates_4(4, 745, 78); - return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100010000000L); + else if ((active11 & 0x8000000000L) != 0L) + return jjStartNfaWithStates_4(4, 743, 78); + return jjMoveStringLiteralDfa5_4(active0, 0x1c10000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40004000000L); case 90: case 122: return jjMoveStringLiteralDfa5_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x6000000000000000L, active10, 0L, active11, 0L); @@ -23467,7 +23467,7 @@ private final int jjMoveStringLiteralDfa5_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa6_4(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0xb200010L); + return jjMoveStringLiteralDfa6_4(active0, 0x30001c00000L, active1, 0x6000000002000L, active2, 0x400000000L, active3, 0x10000401000000L, active4, 0L, active5, 0x2000000000000380L, active6, 0L, active7, 0xc000000000000000L, active8, 0x1L, active9, 0x800000000000L, active10, 0x10000000000000L, active11, 0x2e00010L); case 65: case 97: if ((active7 & 0x800000000000000L) != 0L) @@ -23490,7 +23490,7 @@ else if ((active6 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(5, 447, 78); else if ((active9 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(5, 602, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x4000100000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0xe008007f0L, active2, 0L, active3, 0x40000L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000005004000L, active8, 0x400000000L, active9, 0x6L, active10, 0L, active11, 0x1000100000L); case 68: case 100: if ((active0 & 0x40000000000000L) != 0L) @@ -23549,7 +23549,7 @@ else if ((active10 & 0x80000000L) != 0L) return jjStartNfaWithStates_4(5, 671, 78); else if ((active10 & 0x1000000000L) != 0L) return jjStartNfaWithStates_4(5, 676, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x80000400L); + return jjMoveStringLiteralDfa6_4(active0, 0x80080000000L, active1, 0L, active2, 0x20c0000000L, active3, 0x4000000000000L, active4, 0x40401080000L, active5, 0x4002000060L, active6, 0x3f800000L, active7, 0xc06L, active8, 0x200000000000L, active9, 0x8000000020L, active10, 0x40001e002L, active11, 0x20000400L); case 70: case 102: if ((active5 & 0x80000000000000L) != 0L) @@ -23559,20 +23559,20 @@ else if ((active10 & 0x1000000000L) != 0L) case 103: if ((active3 & 0x80000000000000L) != 0L) return jjStartNfaWithStates_4(5, 247, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x200000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x40000000L, active4, 0L, active5, 0x70000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x40000000L, active10, 0L, active11, 0x80000000L); case 72: case 104: if ((active4 & 0x40000000000000L) != 0L) return jjStartNfaWithStates_4(5, 310, 78); else if ((active8 & 0x4L) != 0L) return jjStartNfaWithStates_4(5, 514, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0x400000000L, active7, 0L, active8, 0x40000000000L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 73: case 105: return jjMoveStringLiteralDfa6_4(active0, 0x10000000L, active1, 0xc0000001000L, active2, 0x21c003800000f800L, active3, 0x2020008000008000L, active4, 0x3L, active5, 0x400000010000000L, active6, 0xc000000200800L, active7, 0x10208000L, active8, 0xe004000040L, active9, 0x1000000380L, active10, 0x4L, active11, 0x80000L); case 75: case 107: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x400000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); case 76: case 108: if ((active3 & 0x400000000000L) != 0L) @@ -23581,7 +23581,7 @@ else if ((active6 & 0x100000000L) != 0L) return jjStartNfaWithStates_4(5, 416, 78); else if ((active8 & 0x2L) != 0L) return jjStartNfaWithStates_4(5, 513, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x40000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x8L, active2, 0x100006000000L, active3, 0L, active4, 0L, active5, 0x3000004000800L, active6, 0x2000000000000000L, active7, 0L, active8, 0x890000002000L, active9, 0x400000000L, active10, 0xe00L, active11, 0x10000000L); case 77: case 109: if ((active9 & 0x20000000L) != 0L) @@ -23617,15 +23617,15 @@ else if ((active7 & 0x40000000L) != 0L) } else if ((active11 & 0x80L) != 0L) return jjStartNfaWithStates_4(5, 711, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x2100000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x8080000040000000L, active1, 0xff8010000e000000L, active2, 0x400a00000000007L, active3, 0x20000L, active4, 0x10000000030000L, active5, 0x88000400000L, active6, 0x478200000100L, active7, 0x8781f80000000L, active8, 0x3fff000000001000L, active9, 0x8000000000000000L, active10, 0x680000004000000L, active11, 0x840000000L); case 79: case 111: - return jjMoveStringLiteralDfa6_4(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x3000000000000000L, active1, 0L, active2, 0x80000100000L, active3, 0L, active4, 0x1800000000L, active5, 0x1L, active6, 0x2000000000000L, active7, 0x161000000000000L, active8, 0xc000420000030020L, active9, 0x6000000000000001L, active10, 0x1820000200000000L, active11, 0x100000000L); case 80: case 112: if ((active7 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(5, 490, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x10040000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x2000000L, active11, 0x4040000L); case 81: case 113: return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -23649,7 +23649,7 @@ else if ((active8 & 0x4000L) != 0L) jjmatchedKind = 526; jjmatchedPos = 5; } - return jjMoveStringLiteralDfa6_4(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x1000000000L, active1, 0x23f000000001L, active2, 0x19000010L, active3, 0x100000000000001L, active4, 0x500000000000000L, active5, 0x1000000000003000L, active6, 0xb00002000000000L, active7, 0x8010000L, active8, 0x1000008000L, active9, 0x2006000000000L, active10, 0L, active11, 0x1000000L); case 83: case 115: if ((active0 & 0x10000L) != 0L) @@ -23668,7 +23668,7 @@ else if ((active6 & 0x4000L) != 0L) return jjStartNfaWithStates_4(5, 398, 78); else if ((active10 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(5, 691, 78); - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0xc0000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0x800000010000L, active2, 0L, active3, 0x200000000L, active4, 0x4000304000L, active5, 0x400300000L, active6, 0x80000000000000L, active7, 0x5e0100L, active8, 0L, active9, 0x10000000ffc00L, active10, 0x4000000000000000L, active11, 0x30000000000L); case 84: case 116: if ((active0 & 0x20L) != 0L) @@ -23707,13 +23707,13 @@ else if ((active10 & 0x800000000L) != 0L) return jjStartNfaWithStates_4(5, 675, 78); else if ((active10 & 0x4000000000L) != 0L) return jjStartNfaWithStates_4(5, 678, 78); - return jjMoveStringLiteralDfa6_4(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x8000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0x4000020000000L, active1, 0x1e07c0000L, active2, 0x400000000400L, active3, 0x100000001100L, active4, 0xc000000010000000L, active5, 0L, active6, 0x100080000000L, active7, 0x800000L, active8, 0x400L, active9, 0x1f80040080000000L, active10, 0L, active11, 0x2000000000L); case 85: case 117: return jjMoveStringLiteralDfa6_4(active0, 0x40000000040L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x2000000000000L, active8, 0L, active9, 0x8L, active10, 0L, active11, 0x100L); case 86: case 118: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x800004L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000400000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x18000010L, active10, 0L, active11, 0x400000000004L); case 87: case 119: if ((active4 & 0x4000000L) != 0L) @@ -23737,7 +23737,7 @@ else if ((active9 & 0x20000000000L) != 0L) return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0x40000L, active3, 0L, active4, 0x80000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x100000000000L); + return jjMoveStringLiteralDfa6_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x40000000000L); default : break; } @@ -23759,10 +23759,10 @@ private final int jjMoveStringLiteralDfa6_4(long old0, long active0, long old1, return jjStartNfaWithStates_4(6, 464, 78); break; case 95: - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000000L, active2, 0x10L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x1000000000000000L, active8, 0x8000L, active9, 0x300058000000L, active10, 0L, active11, 0x20000000L); case 65: case 97: - return jjMoveStringLiteralDfa7_4(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x200000800000L); + return jjMoveStringLiteralDfa7_4(active0, 0x80000000400000L, active1, 0x1f000000000L, active2, 0x8000000L, active3, 0x20001L, active4, 0x2008000400003L, active5, 0x8000000000L, active6, 0L, active7, 0x90000000800000L, active8, 0x40000000000L, active9, 0x1f0b000000000070L, active10, 0x80000000000e00L, active11, 0x480000000000L); case 66: case 98: return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x8000000000L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x10L); @@ -23826,13 +23826,13 @@ else if ((active7 & 0x80000000000L) != 0L) } else if ((active10 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(6, 665, 78); - else if ((active11 & 0x4000000000L) != 0L) - return jjStartNfaWithStates_4(6, 742, 78); - else if ((active11 & 0x8000000000L) != 0L) - return jjStartNfaWithStates_4(6, 743, 78); - else if ((active11 & 0x100000000000L) != 0L) - return jjStartNfaWithStates_4(6, 748, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x44400004L); + else if ((active11 & 0x1000000000L) != 0L) + return jjStartNfaWithStates_4(6, 740, 78); + else if ((active11 & 0x2000000000L) != 0L) + return jjStartNfaWithStates_4(6, 741, 78); + else if ((active11 & 0x40000000000L) != 0L) + return jjStartNfaWithStates_4(6, 746, 78); + return jjMoveStringLiteralDfa7_4(active0, 0x200000000000000L, active1, 0x8L, active2, 0x8000000010060000L, active3, 0x200000000L, active4, 0x400000000300084L, active5, 0x1000000410372000L, active6, 0x2020000000000000L, active7, 0x700780000000L, active8, 0x400000000L, active9, 0x2000000L, active10, 0x1e0000000000L, active11, 0x200011000004L); case 70: case 102: return jjMoveStringLiteralDfa7_4(active0, 0x10000000000L, active1, 0x1000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x20000000000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -23857,19 +23857,19 @@ else if ((active7 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(6, 499, 78); else if ((active10 & 0x400000000000000L) != 0L) return jjStartNfaWithStates_4(6, 698, 78); - else if ((active11 & 0x100000000L) != 0L) - return jjStartNfaWithStates_4(6, 736, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x1000000L); + else if ((active11 & 0x40000000L) != 0L) + return jjStartNfaWithStates_4(6, 734, 78); + return jjMoveStringLiteralDfa7_4(active0, 0x2000000000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x2000000000L, active9, 0L, active10, 0L, active11, 0x400000L); case 72: case 104: if ((active0 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_4(6, 50, 78); - else if ((active11 & 0x80000000000L) != 0L) - return jjStartNfaWithStates_4(6, 747, 78); + else if ((active11 & 0x20000000000L) != 0L) + return jjStartNfaWithStates_4(6, 745, 78); return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x2L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa7_4(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x200100000L); + return jjMoveStringLiteralDfa7_4(active0, 0x1020000000L, active1, 0x400001c0780000L, active2, 0x40000000200L, active3, 0x8000500L, active4, 0xc000000010004040L, active5, 0x3000000000000L, active6, 0xc0000080000000L, active7, 0x100000800000100L, active8, 0x1c0002400L, active9, 0x400060000ffc00L, active10, 0x18000000L, active11, 0x80100000L); case 76: case 108: if ((active2 & 0x800000L) != 0L) @@ -23926,7 +23926,7 @@ else if ((active10 & 0x800000000000000L) != 0L) jjmatchedKind = 699; jjmatchedPos = 6; } - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x2000000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0xc0000000000L, active2, 0x2000200000000000L, active3, 0x20000000000000L, active4, 0L, active5, 0x400100L, active6, 0x800L, active7, 0x8000000000008c00L, active8, 0xc000005004020000L, active9, 0x6000800000000201L, active10, 0x1000000000000004L, active11, 0x800000L); case 79: case 111: return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0x2000L, active2, 0x100000000000L, active3, 0x8000000000L, active4, 0L, active5, 0L, active6, 0xc000000000000L, active7, 0x4000L, active8, 0x8b0000000000L, active9, 0L, active10, 0x10000000000180L, active11, 0L); @@ -23963,7 +23963,7 @@ else if ((active10 & 0x100000000000000L) != 0L) return jjStartNfaWithStates_4(6, 696, 78); else if ((active11 & 0x400L) != 0L) return jjStartNfaWithStates_4(6, 714, 78); - return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x400000000L); + return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0x400000400L, active3, 0x100400000002L, active4, 0x300000000L, active5, 0x200L, active6, 0x400000000L, active7, 0x40000000000004L, active8, 0L, active9, 0x80040000300000L, active10, 0x5c000L, active11, 0x100000000L); case 83: case 115: if ((active5 & 0x40L) != 0L) @@ -24023,10 +24023,10 @@ else if ((active10 & 0x200000000000000L) != 0L) return jjStartNfaWithStates_4(6, 697, 78); else if ((active11 & 0x100L) != 0L) return jjStartNfaWithStates_4(6, 712, 78); - return jjMoveStringLiteralDfa7_4(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x400180a0000L); + return jjMoveStringLiteralDfa7_4(active0, 0x90002040L, active1, 0xff00000c200007f0L, active2, 0x4000007L, active3, 0x2000080000000000L, active4, 0x20100L, active5, 0L, active6, 0x7003f800000L, active7, 0L, active8, 0x3fff100800000840L, active9, 0x1400000000L, active10, 0x100000L, active11, 0x100060a0000L); case 85: case 117: - return jjMoveStringLiteralDfa7_4(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa7_4(active0, 0xc00000000L, active1, 0x120000000000L, active2, 0L, active3, 0L, active4, 0x2000000000L, active5, 0x4000800L, active6, 0x4000000000000000L, active7, 0x1000000000000L, active8, 0x400000000000L, active9, 0x80000000L, active10, 0L, active11, 0x800000000L); case 86: case 118: return jjMoveStringLiteralDfa7_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0x200000000000000L, active7, 0x203000L, active8, 0L, active9, 0L, active10, 0x2L, active11, 0L); @@ -24068,7 +24068,7 @@ private final int jjMoveStringLiteralDfa7_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa8_4(active0, 0x2000000000000000L, active1, 0xff0000000c000000L, active2, 0x180000000000007L, active3, 0L, active4, 0L, active5, 0x70000L, active6, 0x40000000000L, active7, 0x700000000000L, active8, 0x20000L, active9, 0xffc00L, active10, 0x1c000L, active11, 0L); case 65: case 97: - return jjMoveStringLiteralDfa8_4(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x2000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x20001000000L, active1, 0x4000000000000L, active2, 0x400140000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0xc000000000000000L, active8, 0x804000000000L, active9, 0x800040000002L, active10, 0x4000000000000000L, active11, 0x800000L); case 66: case 98: if ((active8 & 0x10000000000L) != 0L) @@ -24092,8 +24092,8 @@ else if ((active8 & 0x40000000L) != 0L) return jjStartNfaWithStates_4(7, 57, 78); else if ((active2 & 0x10000000L) != 0L) return jjStartNfaWithStates_4(7, 156, 78); - else if ((active11 & 0x400000000L) != 0L) - return jjStartNfaWithStates_4(7, 738, 78); + else if ((active11 & 0x100000000L) != 0L) + return jjStartNfaWithStates_4(7, 736, 78); return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x40000780000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 69: case 101: @@ -24145,7 +24145,7 @@ else if ((active10 & 0x100000L) != 0L) return jjStartNfaWithStates_4(7, 660, 78); else if ((active11 & 0x20000L) != 0L) return jjStartNfaWithStates_4(7, 721, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x10000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x40000000L, active1, 0x200007f0L, active2, 0x20000002f000L, active3, 0x80000000000L, active4, 0x2000000000L, active5, 0x2000000000000200L, active6, 0x3f800000L, active7, 0L, active8, 0x3fff000000000000L, active9, 0x6000000000000108L, active10, 0x4000002L, active11, 0x4000000L); case 70: case 102: if ((active10 & 0x10000000000000L) != 0L) @@ -24161,7 +24161,7 @@ else if ((active6 & 0x800L) != 0L) return jjStartNfaWithStates_4(7, 395, 78); else if ((active10 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 642, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x4000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x400000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x400000000000000L, active5, 0L, active6, 0x2000000000000000L, active7, 0x3000L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0x1000000L); case 72: case 104: if ((active2 & 0x400000000000L) != 0L) @@ -24169,7 +24169,7 @@ else if ((active10 & 0x4L) != 0L) return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x100000000000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa8_4(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x40000000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x10000000L, active1, 0x1fc00001000L, active2, 0L, active3, 0L, active4, 0x400020000L, active5, 0x400000L, active6, 0x30000202000L, active7, 0L, active8, 0x203000000000L, active9, 0x40400000000L, active10, 0x1000000000000000L, active11, 0x10000000000L); case 74: case 106: return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x1800000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -24188,9 +24188,9 @@ else if ((active5 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(7, 359, 78); else if ((active9 & 0x20L) != 0L) return jjStartNfaWithStates_4(7, 581, 78); - else if ((active11 & 0x40000000L) != 0L) - return jjStartNfaWithStates_4(7, 734, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x800000L); + else if ((active11 & 0x10000000L) != 0L) + return jjStartNfaWithStates_4(7, 732, 78); + return jjMoveStringLiteralDfa8_4(active0, 0x80040000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0x2008000000400L, active5, 0L, active6, 0L, active7, 0L, active8, 0x20000000000L, active9, 0x40L, active10, 0L, active11, 0x400000000000L); case 77: case 109: return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0x1L, active4, 0xc000000000000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x1f01000000000000L, active10, 0L, active11, 0L); @@ -24203,10 +24203,10 @@ else if ((active6 & 0x4000000000000L) != 0L) jjmatchedKind = 434; jjmatchedPos = 7; } - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x200200000000L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x2000008L, active2, 0x40000000010L, active3, 0x8000400L, active4, 0xc4L, active5, 0x1000000000000000L, active6, 0x48000000000000L, active7, 0x1101000800000000L, active8, 0x8000L, active9, 0x6002000000L, active10, 0L, active11, 0x80080000000L); case 79: case 111: - return jjMoveStringLiteralDfa8_4(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x2000000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x20800000L, active1, 0x28001c0780000L, active2, 0L, active3, 0x10000400000100L, active4, 0x4010000100L, active5, 0x4000000080L, active6, 0x80000480000000L, active7, 0x20000L, active8, 0x800L, active9, 0x4L, active10, 0L, active11, 0x800000000L); case 80: case 112: if ((active10 & 0x40000000000000L) != 0L) @@ -24218,7 +24218,7 @@ else if ((active6 & 0x4000000000000L) != 0L) return jjStartNfaWithStates_4(7, 554, 78); else if ((active11 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 706, 78); - return jjMoveStringLiteralDfa8_4(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x1000000L); + return jjMoveStringLiteralDfa8_4(active0, 0x10080000000L, active1, 0x2000L, active2, 0L, active3, 0L, active4, 0x300000000L, active5, 0L, active6, 0x4000000000000000L, active7, 0L, active8, 0L, active9, 0x2000080000010L, active10, 0x80000000040180L, active11, 0x400000L); case 83: case 115: if ((active1 & 0x40000000000L) != 0L) @@ -24240,7 +24240,7 @@ else if ((active7 & 0x4L) != 0L) return jjStartNfaWithStates_4(7, 450, 78); else if ((active9 & 0x8000000000L) != 0L) return jjStartNfaWithStates_4(7, 615, 78); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0x40080000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x10000000000000L, active8, 0L, active9, 0x210000000L, active10, 0L, active11, 0x20000000L); case 84: case 116: if ((active2 & 0x800000000000L) != 0L) @@ -24286,9 +24286,9 @@ else if ((active8 & 0x40L) != 0L) return jjStartNfaWithStates_4(7, 518, 78); else if ((active9 & 0x8000000000000L) != 0L) return jjStartNfaWithStates_4(7, 627, 78); - else if ((active11 & 0x400000L) != 0L) - return jjStartNfaWithStates_4(7, 726, 78); - return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x8280000L); + else if ((active11 & 0x200000000000L) != 0L) + return jjStartNfaWithStates_4(7, 749, 78); + return jjMoveStringLiteralDfa8_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x200L, active10, 0L, active11, 0x2280000L); case 90: case 122: return jjMoveStringLiteralDfa8_4(active0, 0x1000000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x3000000000000L, active6, 0L, active7, 0L, active8, 0x2000L, active9, 0L, active10, 0L, active11, 0L); @@ -24322,7 +24322,7 @@ private final int jjMoveStringLiteralDfa8_4(long old0, long active0, long old1, case 99: if ((active9 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(8, 618, 78); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x40000000010L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x100000000000000L, active2, 0x200000000000L, active3, 0L, active4, 0L, active5, 0x1000000000000200L, active6, 0L, active7, 0x100000000000L, active8, 0L, active9, 0x10L, active10, 0x4000L, active11, 0x10000000010L); case 68: case 100: if ((active1 & 0x20000000L) != 0L) @@ -24331,8 +24331,8 @@ else if ((active3 & 0x80000000000L) != 0L) return jjStartNfaWithStates_4(8, 235, 78); else if ((active10 & 0x4000000L) != 0L) return jjStartNfaWithStates_4(8, 666, 78); - else if ((active11 & 0x10000000L) != 0L) - return jjStartNfaWithStates_4(8, 732, 78); + else if ((active11 & 0x4000000L) != 0L) + return jjStartNfaWithStates_4(8, 730, 78); return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x600000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x400L, active10, 0L, active11, 0L); case 69: case 101: @@ -24400,9 +24400,9 @@ else if ((active9 & 0x2000000000L) != 0L) jjmatchedKind = 613; jjmatchedPos = 8; } - else if ((active11 & 0x200000000L) != 0L) - return jjStartNfaWithStates_4(8, 737, 78); - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x200000000000L); + else if ((active11 & 0x80000000L) != 0L) + return jjStartNfaWithStates_4(8, 735, 78); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1000000000000L, active9, 0x4040000000L, active10, 0L, active11, 0x80000000000L); case 72: case 104: return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x1L, active9, 0x201000L, active10, 0L, active11, 0L); @@ -24410,7 +24410,7 @@ else if ((active11 & 0x200000000L) != 0L) case 105: if ((active0 & 0x40000000000L) != 0L) return jjStartNfaWithStates_4(8, 42, 78); - return jjMoveStringLiteralDfa9_4(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x84000000L); + return jjMoveStringLiteralDfa9_4(active0, 0x80000080000000L, active1, 0x2000L, active2, 0xd0000000000L, active3, 0x2L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0x40000000000800L, active8, 0L, active9, 0x100000100200L, active10, 0x1e0010000878L, active11, 0x21000000L); case 75: case 107: if ((active2 & 0x20000L) != 0L) @@ -24426,7 +24426,7 @@ else if ((active11 & 0x200000000L) != 0L) jjmatchedKind = 647; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x2000000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x4000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0L, active7, 0x8000000000000000L, active8, 0x200000000000L, active9, 0x80000000e000L, active10, 0x100L, active11, 0x800000L); case 78: case 110: if ((active0 & 0x20000000L) != 0L) @@ -24452,7 +24452,7 @@ else if ((active6 & 0x80000000000000L) != 0L) return jjMoveStringLiteralDfa9_4(active0, 0x2000000040800000L, active1, 0x81f180700000L, active2, 0x400000400L, active3, 0x10000000000000L, active4, 0L, active5, 0x2000004000000080L, active6, 0x200000L, active7, 0x200000004000L, active8, 0x3000000000L, active9, 0x80000000000000L, active10, 0x1000000000008000L, active11, 0x200000L); case 79: case 111: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0xc00000000L, active2, 0x20000000000L, active3, 0x200000000L, active4, 0L, active5, 0x320000L, active6, 0L, active7, 0L, active8, 0L, active9, 0x8000000L, active10, 0L, active11, 0x400000L); case 80: case 112: if ((active1 & 0x2000000000000L) != 0L) @@ -24462,7 +24462,7 @@ else if ((active9 & 0x100000000000000L) != 0L) jjmatchedKind = 632; jjmatchedPos = 8; } - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x8000000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x800000000000000L, active2, 0L, active3, 0L, active4, 0x4000000000L, active5, 0L, active6, 0L, active7, 0x20000L, active8, 0L, active9, 0x1e01000000000000L, active10, 0L, active11, 0x2000000L); case 81: case 113: return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0L); @@ -24514,7 +24514,7 @@ else if ((active9 & 0x2000000L) != 0L) return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0x8000020000000000L, active2, 0x100003L, active3, 0L, active4, 0x200004L, active5, 0x40000L, active6, 0x2000L, active7, 0x4000000000000000L, active8, 0x500000000L, active9, 0x1000000000L, active10, 0x8000000L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x2000800000L); + return jjMoveStringLiteralDfa9_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0x2008000000000L, active5, 0x400000L, active6, 0x400000000L, active7, 0L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0x400800000000L); case 86: case 118: return jjMoveStringLiteralDfa9_4(active0, 0x10000000L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xc000000000000000L, active9, 0x1L, active10, 0L, active11, 0L); @@ -24615,9 +24615,9 @@ else if ((active11 & 0x800000L) != 0L) return jjStartNfaWithStates_4(9, 727, 78); else if ((active11 & 0x2000000L) != 0L) return jjStartNfaWithStates_4(9, 729, 78); - else if ((active11 & 0x8000000L) != 0L) - return jjStartNfaWithStates_4(9, 731, 78); - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x200000000000L); + else if ((active11 & 0x400000000000L) != 0L) + return jjStartNfaWithStates_4(9, 750, 78); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000050000L, active6, 0x30000000000L, active7, 0x20000000000000L, active8, 0x1000000000001L, active9, 0x2004000e0000L, active10, 0x8000000L, active11, 0x80000000000L); case 71: case 103: if ((active6 & 0x200000L) != 0L) @@ -24658,7 +24658,7 @@ else if ((active10 & 0x1000000000000000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x800000000L, active2, 0L, active3, 0x200000000L, active4, 0L, active5, 0x300000L, active6, 0L, active7, 0x40000000000800L, active8, 0x80000000L, active9, 0x100200L, active10, 0x1e0000000000L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x4000000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x3000020000000000L, active2, 0x10000000000L, active3, 0L, active4, 0L, active5, 0x200L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0x200009000L, active10, 0x10000878L, active11, 0x1000000L); case 80: case 112: if ((active1 & 0x4000000000000L) != 0L) @@ -24689,10 +24689,10 @@ else if ((active7 & 0x400L) != 0L) return jjStartNfaWithStates_4(9, 458, 78); else if ((active10 & 0x100L) != 0L) return jjStartNfaWithStates_4(9, 648, 78); - else if ((active11 & 0x2000000000L) != 0L) - return jjStartNfaWithStates_4(9, 741, 78); - else if ((active11 & 0x40000000000L) != 0L) - return jjStartNfaWithStates_4(9, 746, 78); + else if ((active11 & 0x800000000L) != 0L) + return jjStartNfaWithStates_4(9, 739, 78); + else if ((active11 & 0x10000000000L) != 0L) + return jjStartNfaWithStates_4(9, 744, 78); return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0x80000000000L, active2, 0x40000000004L, active3, 0L, active4, 0x8000000000000000L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0x20000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: @@ -24712,7 +24712,7 @@ else if ((active8 & 0x2000000000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0x80021000000000L, active1, 0x1e000000008L, active2, 0x8000L, active3, 0x2L, active4, 0x400000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x100L, active10, 0L, active11, 0L); case 85: case 117: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x1000000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0xc000000L, active2, 0x180000000000000L, active3, 0x1000000L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0x10000L, active10, 0L, active11, 0x400000L); case 86: case 118: return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x4000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x3ffe000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -24739,7 +24739,7 @@ else if ((active10 & 0x40000L) != 0L) return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0x200000000L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 90: case 122: - return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000L); + return jjMoveStringLiteralDfa10_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x20000000L); default : break; } @@ -24776,7 +24776,7 @@ else if ((active5 & 0x200000L) != 0L) return jjStartNfaWithStates_4(10, 341, 78); else if ((active10 & 0x8000000L) != 0L) return jjStartNfaWithStates_4(10, 667, 78); - return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0xa00000000000000L, active10, 0L, active11, 0x80000000000L); case 69: case 101: if ((active0 & 0x10000000000L) != 0L) @@ -24797,8 +24797,8 @@ else if ((active9 & 0x100000000000L) != 0L) return jjStartNfaWithStates_4(10, 620, 78); else if ((active9 & 0x1000000000000L) != 0L) return jjStartNfaWithStates_4(10, 624, 78); - else if ((active11 & 0x80000000L) != 0L) - return jjStartNfaWithStates_4(10, 735, 78); + else if ((active11 & 0x20000000L) != 0L) + return jjStartNfaWithStates_4(10, 733, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0x4L, active3, 0L, active4, 0L, active5, 0x100L, active6, 0x8000000000000L, active7, 0x100000000L, active8, 0x20000L, active9, 0x40000L, active10, 0x1e0000000000L, active11, 0x80010L); case 70: case 102: @@ -24841,8 +24841,8 @@ else if ((active10 & 0x8L) != 0L) } else if ((active10 & 0x800L) != 0L) return jjStartNfaWithStates_4(10, 651, 78); - else if ((active11 & 0x4000000L) != 0L) - return jjStartNfaWithStates_4(10, 730, 78); + else if ((active11 & 0x1000000L) != 0L) + return jjStartNfaWithStates_4(10, 728, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0x10c200000L, active2, 0x180000000006000L, active3, 0L, active4, 0L, active5, 0x10000L, active6, 0x40002000000L, active7, 0L, active8, 0L, active9, 0xc040L, active10, 0x10000070L, active11, 0L); case 79: case 111: @@ -24851,8 +24851,8 @@ else if ((active11 & 0x4000000L) != 0L) case 112: if ((active9 & 0x10000000L) != 0L) return jjStartNfaWithStates_4(10, 604, 78); - else if ((active11 & 0x1000000L) != 0L) - return jjStartNfaWithStates_4(10, 728, 78); + else if ((active11 & 0x400000L) != 0L) + return jjStartNfaWithStates_4(10, 726, 78); return jjMoveStringLiteralDfa11_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x100000000L, active9, 0L, active10, 0L, active11, 0L); case 81: case 113: @@ -24928,7 +24928,7 @@ private final int jjMoveStringLiteralDfa11_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa12_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0x1000000000000000L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 65: case 97: if ((active8 & 0x1L) != 0L) @@ -25130,7 +25130,7 @@ else if ((active3 & 0x2L) != 0L) case 112: if ((active9 & 0x100L) != 0L) return jjStartNfaWithStates_4(12, 584, 78); - return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa13_4(active0, 0L, active1, 0L, active2, 0L, active3, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0x8000L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 82: case 114: if ((active9 & 0x2000000000000000L) != 0L) @@ -25176,7 +25176,7 @@ else if ((active7 & 0x400000000000L) != 0L) return jjStartNfaWithStates_4(13, 494, 78); else if ((active10 & 0x10000L) != 0L) return jjStartNfaWithStates_4(13, 656, 78); - return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa14_4(active0, 0x800000L, active1, 0x100000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000000L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 66: case 98: return jjMoveStringLiteralDfa14_4(active0, 0L, active1, 0x100000000L, active2, 0L, active4, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25344,7 +25344,7 @@ else if ((active8 & 0x8000000000000000L) != 0L) return jjStartNfaWithStates_4(14, 575, 78); else if ((active9 & 0x10000L) != 0L) return jjStartNfaWithStates_4(14, 592, 78); - return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa15_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000000000L); case 83: case 115: if ((active1 & 0x200L) != 0L) @@ -25446,7 +25446,7 @@ else if ((active9 & 0x1L) != 0L) return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0L, active8, 0x4000000000000000L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0x400000000L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa16_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0xe0000000000000L, active9, 0L, active10, 0L, active11, 0L); @@ -25499,7 +25499,7 @@ private final int jjMoveStringLiteralDfa16_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0x100L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0x38000000L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0x80000000000L); case 76: case 108: return jjMoveStringLiteralDfa17_4(active0, 0L, active1, 0L, active2, 0x6000L, active5, 0L, active6, 0x4000000L, active7, 0x80000000L, active8, 0L, active9, 0L, active10, 0x40L, active11, 0L); @@ -25599,7 +25599,7 @@ private final int jjMoveStringLiteralDfa17_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 84: case 116: - return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0x31c000000000000L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 86: case 118: return jjMoveStringLiteralDfa18_4(active0, 0L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0x10L, active11, 0L); @@ -25651,7 +25651,7 @@ else if ((active10 & 0x10L) != 0L) return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0L, active2, 0x2L, active5, 0L, active6, 0L, active7, 0x200000000L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); case 73: case 105: - return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa19_4(active0, 0x1000000L, active1, 0L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0x80000200000L); case 76: case 108: return jjMoveStringLiteralDfa19_4(active0, 0L, active1, 0x40L, active2, 0L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active9, 0L, active10, 0L, active11, 0L); @@ -25712,7 +25712,7 @@ private final int jjMoveStringLiteralDfa19_4(long old0, long active0, long old1, return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x400000000000000L, active2, 0L, active5, 0L, active6, 0x10000000L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0x40L, active2, 0x2000L, active5, 0L, active6, 0x4000000L, active7, 0L, active8, 0x20c0000000000000L, active10, 0x40000000000L, active11, 0x80000200000L); case 82: case 114: return jjMoveStringLiteralDfa20_4(active0, 0L, active1, 0L, active2, 0x4002L, active5, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25779,7 +25779,7 @@ else if ((active2 & 0x100000000000000L) != 0L) return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0x8000000000000L, active10, 0x80000000000L, active11, 0L); case 78: case 110: - return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 79: case 111: return jjMoveStringLiteralDfa21_4(active0, 0L, active1, 0L, active2, 0x2L, active6, 0L, active7, 0L, active8, 0L, active10, 0L, active11, 0L); @@ -25811,7 +25811,7 @@ private final int jjMoveStringLiteralDfa21_4(long old0, long active0, long old1, switch(curChar) { case 95: - return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000200000L); case 65: case 97: return jjMoveStringLiteralDfa22_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0x20000000040L, active11, 0L); @@ -25905,7 +25905,7 @@ private final int jjMoveStringLiteralDfa22_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0x2L, active6, 0L, active8, 0L, active10, 0L, active11, 0L); case 82: case 114: - return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa23_4(active1, 0L, active2, 0L, active6, 0x4000000L, active8, 0L, active10, 0L, active11, 0L); @@ -25957,7 +25957,7 @@ private final int jjMoveStringLiteralDfa23_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x2040000000000000L, active10, 0L, active11, 0L); case 79: case 111: - return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x200000200000L); + return jjMoveStringLiteralDfa24_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x10000000000000L, active10, 0x20000000000L, active11, 0x80000200000L); case 82: case 114: if ((active8 & 0x4000000000000L) != 0L) @@ -26024,7 +26024,7 @@ private final int jjMoveStringLiteralDfa24_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active10, 0L, active11, 0L); case 87: case 119: - return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa25_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active10, 0L, active11, 0x80000000000L); default : break; } @@ -26078,7 +26078,7 @@ else if ((active11 & 0x200000L) != 0L) return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0x4002L, active6, 0L, active8, 0L, active11, 0L); case 83: case 115: - return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0L, active11, 0x80000000000L); case 84: case 116: return jjMoveStringLiteralDfa26_4(active1, 0L, active2, 0L, active6, 0L, active8, 0x40000000000000L, active11, 0L); @@ -26099,7 +26099,7 @@ private final int jjMoveStringLiteralDfa26_4(long old1, long active1, long old2, switch(curChar) { case 95: - return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa27_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 68: case 100: if ((active8 & 0x80000000000000L) != 0L) @@ -26147,7 +26147,7 @@ private final int jjMoveStringLiteralDfa27_4(long old1, long active1, long old2, return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0x200000000000000L, active11, 0L); case 80: case 112: - return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa28_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 82: case 114: return jjMoveStringLiteralDfa28_4(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -26174,7 +26174,7 @@ private final int jjMoveStringLiteralDfa28_4(long old1, long active1, long old2, break; case 69: case 101: - return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa29_4(active1, 0L, active2, 0L, active8, 0L, active11, 0x80000000000L); case 79: case 111: return jjMoveStringLiteralDfa29_4(active1, 0x400000000000000L, active2, 0L, active8, 0L, active11, 0L); @@ -26199,7 +26199,7 @@ private final int jjMoveStringLiteralDfa29_4(long old1, long active1, long old2, { case 82: case 114: - return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa30_4(active1, 0L, active2, 0L, active11, 0x80000000000L); case 85: case 117: return jjMoveStringLiteralDfa30_4(active1, 0x400000000000000L, active2, 0L, active11, 0L); @@ -26224,7 +26224,7 @@ private final int jjMoveStringLiteralDfa30_4(long old1, long active1, long old2, { case 67: case 99: - return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa31_4(active1, 0L, active2, 0L, active11, 0x80000000000L); case 80: case 112: if ((active1 & 0x400000000000000L) != 0L) @@ -26250,7 +26250,7 @@ private final int jjMoveStringLiteralDfa31_4(long old1, long active1, long old2, case 101: if ((active2 & 0x2L) != 0L) return jjStartNfaWithStates_4(31, 129, 78); - return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x200000000000L); + return jjMoveStringLiteralDfa32_4(active2, 0L, active11, 0x80000000000L); default : break; } @@ -26269,7 +26269,7 @@ private final int jjMoveStringLiteralDfa32_4(long old2, long active2, long old11 { case 78: case 110: - return jjMoveStringLiteralDfa33_4(active11, 0x200000000000L); + return jjMoveStringLiteralDfa33_4(active11, 0x80000000000L); default : break; } @@ -26288,8 +26288,8 @@ private final int jjMoveStringLiteralDfa33_4(long old11, long active11) { case 84: case 116: - if ((active11 & 0x200000000000L) != 0L) - return jjStartNfaWithStates_4(33, 749, 78); + if ((active11 & 0x80000000000L) != 0L) + return jjStartNfaWithStates_4(33, 747, 78); break; default : break; diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java index 388935a59f4b7..4137028bf7976 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/sql/SqlReservedWordsTest.java @@ -114,8 +114,6 @@ public class SqlReservedWordsTest extends GridCommonAbstractTest { "WHEN", "WHERE", "WITH", - "WRAP_KEY", - "WRAP_VALUE", // Keywords added by Ignite. "IF", From 87d119f84301995d10353ea56f4f420980bab646 Mon Sep 17 00:00:00 2001 From: zstan Date: Fri, 24 Apr 2026 11:38:09 +0300 Subject: [PATCH 12/13] fix --- modules/calcite/src/main/codegen/config.fmpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/calcite/src/main/codegen/config.fmpp b/modules/calcite/src/main/codegen/config.fmpp index 9f057fb7b1f54..66ee08a8324c1 100644 --- a/modules/calcite/src/main/codegen/config.fmpp +++ b/modules/calcite/src/main/codegen/config.fmpp @@ -53,6 +53,8 @@ data: { "DATA_REGION" # "KEY_TYPE" // already presented in Calcite "VALUE_TYPE" + "WRAP_KEY" + "WRAP_VALUE" "ENCRYPTED" "INDEX" "PARALLEL" @@ -72,8 +74,6 @@ data: { "ANALYZE", "MAX_CHANGED_PARTITION_ROWS_PERCENT", "TOTAL" - "WRAP_KEY" - "WRAP_VALUE" ] # List of non-reserved keywords to add; From 1338ffcd20c3196c0d3d2ce0c0fda828a2e143b6 Mon Sep 17 00:00:00 2001 From: zstan Date: Wed, 29 Apr 2026 08:55:38 +0300 Subject: [PATCH 13/13] fix --- .../query/calcite/integration/TableDdlIntegrationTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java index e5334795d741e..d6718d14a10e0 100644 --- a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java +++ b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/TableDdlIntegrationTest.java @@ -524,14 +524,14 @@ public void testInlineSizeMultiKeyWrapParam() { " id varchar(15), " + " id2 uuid, " + " col varchar(100), " + - " PRIMARY KEY(id, id2) )"; + " PRIMARY KEY(id, id2) ) "; try { for (String ddl : F.asList(qry, qry + "WITH \"wrap_key=true\"")) { sql(ddl); - assertEquals(35, sql("Unexpected result for query [ddl=" + ddl + ']', - "select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); + assertEquals("Unexpected result for query [ddl=" + ddl + ']', 35, + sql("select INLINE_SIZE from SYS.INDEXES where TABLE_NAME = 'T' and IS_PK = true").get(0).get(0)); sql("DROP TABLE IF EXISTS T"); }